From 1b1944f924c0e7db96cabb49b9197101e3cb817e Mon Sep 17 00:00:00 2001 From: RajMandaliya Date: Thu, 23 Jul 2026 02:16:40 -0700 Subject: [PATCH] refactor: split BmcInfo into BmcEndpoint (ingestion) and BmcStatus (observed) Mirrors the pattern established in #2847 (Machine config/status split): add new, more precisely-scoped messages, populate them alongside the existing flat field, and mark the old field deprecated rather than removing it, so existing consumers are unaffected until a follow-up migration. - Add BmcEndpoint (ip, mac, port, machine_interface_id) on Machine -- ingestion-time connection details, not operator-mutable. - Add BmcStatus (version, firmware_version) on MachineStatus -- observed/runtime state. - Deprecate BmcInfo/Machine.bmc_info, kept fully populated for compatibility. - Regenerated the rest-api Go mirror (nico_nico.proto, nico_nico.pb.go) via make core-proto, matching the same sync step #2847 performed. Verified: clean build across every crate that touches BmcInfo (api-model, api-db, api-web, health, site-explorer, machine-controller, spdm-controller, admin-cli, rpc-utils) and the full rest-api Go module. Addresses #3516. Signed-off-by: RajMandaliya --- crates/rpc/build.rs | 8 + crates/rpc/proto/forge.proto | 28 +- crates/rpc/src/model/bmc_info.rs | 20 + crates/rpc/src/model/machine/mod.rs | 4 +- rest-api/proto/core/gen/v1/nico_nico.pb.go | 9978 ++++++++++---------- rest-api/proto/core/src/v1/nico_nico.proto | 28 +- 6 files changed, 5159 insertions(+), 4907 deletions(-) diff --git a/crates/rpc/build.rs b/crates/rpc/build.rs index d7714bd1b5..093fdd626e 100644 --- a/crates/rpc/build.rs +++ b/crates/rpc/build.rs @@ -557,6 +557,14 @@ fn main() -> Result<(), Box> { "forge.BmcInfo", "#[derive(serde::Serialize, serde::Deserialize)]", ) + .type_attribute( + "forge.BmcEndpoint", + "#[derive(serde::Serialize, serde::Deserialize)]", + ) + .type_attribute( + "forge.BmcStatus", + "#[derive(serde::Serialize, serde::Deserialize)]", + ) .type_attribute( "forge.bmc_meta_data_update_request.DataItem", "#[derive(serde::Deserialize, serde::Serialize)]", diff --git a/crates/rpc/proto/forge.proto b/crates/rpc/proto/forge.proto index 6f0aa901ad..aea7e9eb46 100644 --- a/crates/rpc/proto/forge.proto +++ b/crates/rpc/proto/forge.proto @@ -3648,7 +3648,10 @@ enum MachineType { POWER_SHELF = 3; } +// Deprecated: use BmcEndpoint (ingestion-time fields, on Machine) and +// BmcStatus (observed fields, on MachineStatus) instead. message BmcInfo { + option deprecated = true; optional string ip = 1; optional string mac = 2; optional string version = 3; @@ -3657,6 +3660,20 @@ message BmcInfo { optional common.MachineInterfaceId machine_interface_id = 6; } +// BMC connection details established at ingestion; not operator-mutable. +message BmcEndpoint { + optional string ip = 1; + optional string mac = 2; + optional uint32 port = 3; + optional common.MachineInterfaceId machine_interface_id = 4; +} + +// BMC observed/runtime state. +message BmcStatus { + optional string version = 2; + optional string firmware_version = 3; +} + message SwitchNvosInfo { optional string ip = 1; optional string mac = 2; @@ -3708,6 +3725,9 @@ message MachineStatus { optional string last_scout_observed_version = 22; optional InstanceNetworkRestrictions instance_network_restrictions = 23; LifecycleStatus lifecycle = 24; + + // BMC observed/runtime state. + optional BmcStatus bmc_status = 25; } message Machine { @@ -3748,8 +3768,9 @@ message Machine { // Machine type (DPU or HOST). Set at ingestion time; not operator-mutable. MachineType machine_type = 11; - // BMC connection details. Discovered at ingestion time; not operator-mutable. - BmcInfo bmc_info = 12; + // Deprecated: use bmc (BmcEndpoint) instead. + // TODO: change to reserved once rest-api uses BmcEndpoint + BmcInfo bmc_info = 12 [deprecated = true]; // Deprecated: use status.last_reboot_time // TODO: change to reserved once rest-api uses MachineStatus @@ -3887,6 +3908,9 @@ message Machine { MachineConfig config = 50; MachineStatus status = 51; + + // BMC connection details established at ingestion; not operator-mutable. + BmcEndpoint bmc = 52; } message DpfMachineState { diff --git a/crates/rpc/src/model/bmc_info.rs b/crates/rpc/src/model/bmc_info.rs index 1d5ac129af..1edef73ab9 100644 --- a/crates/rpc/src/model/bmc_info.rs +++ b/crates/rpc/src/model/bmc_info.rs @@ -65,6 +65,26 @@ impl From for rpc::BmcInfo { } } +impl From for rpc::BmcEndpoint { + fn from(value: BmcInfo) -> Self { + rpc::BmcEndpoint { + machine_interface_id: value.machine_interface_id, + ip: value.ip.map(|ip| ip.to_string()), + port: value.port.map(|p| p as u32), + mac: value.mac.map(|mac| mac.to_string()), + } + } +} + +impl From for rpc::BmcStatus { + fn from(value: BmcInfo) -> Self { + rpc::BmcStatus { + version: value.version, + firmware_version: value.firmware_version, + } + } +} + impl From for UserRoles { fn from(action: rpc::UserRoles) -> Self { match action { diff --git a/crates/rpc/src/model/machine/mod.rs b/crates/rpc/src/model/machine/mod.rs index ea60e43d96..9193070771 100644 --- a/crates/rpc/src/model/machine/mod.rs +++ b/crates/rpc/src/model/machine/mod.rs @@ -347,6 +347,7 @@ impl From for rpc::forge::Machine { let status_msg = rpc::forge::MachineStatus { interfaces: interfaces_rpc.clone(), discovery_info: discovery_info.clone(), + bmc_status: Some(machine.status.bmc_info.clone().into()), last_reboot_time: machine.status.last_reboot_time.map(|t| t.into()), last_observation_time, associated_host_machine_id: None, // Gets filled in the `ManagedHostStateSnapshot` conversion @@ -411,7 +412,8 @@ impl From for rpc::forge::Machine { .collect(), interfaces: interfaces_rpc, discovery_info, - bmc_info: Some(machine.status.bmc_info.into()), + bmc_info: Some(machine.status.bmc_info.clone().into()), + bmc: Some(machine.status.bmc_info.clone().into()), last_reboot_time: machine.status.last_reboot_time.map(|t| t.into()), last_observation_time, dpu_agent_version, diff --git a/rest-api/proto/core/gen/v1/nico_nico.pb.go b/rest-api/proto/core/gen/v1/nico_nico.pb.go index fd8792d7d2..02f5a2b406 100644 --- a/rest-api/proto/core/gen/v1/nico_nico.pb.go +++ b/rest-api/proto/core/gen/v1/nico_nico.pb.go @@ -4623,7 +4623,7 @@ func (x MachineCredentialsUpdateRequest_CredentialPurpose) Number() protoreflect // Deprecated: Use MachineCredentialsUpdateRequest_CredentialPurpose.Descriptor instead. func (MachineCredentialsUpdateRequest_CredentialPurpose) EnumDescriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{336, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{338, 0} } // Legacy action enum. New clients will use `action` oneof below. @@ -4694,7 +4694,7 @@ func (x ForgeAgentControlResponse_LegacyAction) Number() protoreflect.EnumNumber // Deprecated: Use ForgeAgentControlResponse_LegacyAction.Descriptor instead. func (ForgeAgentControlResponse_LegacyAction) EnumDescriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 0} } type MachineCleanupInfo_CleanupResult int32 @@ -4740,7 +4740,7 @@ func (x MachineCleanupInfo_CleanupResult) Number() protoreflect.EnumNumber { // Deprecated: Use MachineCleanupInfo_CleanupResult.Descriptor instead. func (MachineCleanupInfo_CleanupResult) EnumDescriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{342, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{344, 0} } type DpuReprovisioningRequest_Mode int32 @@ -4789,7 +4789,7 @@ func (x DpuReprovisioningRequest_Mode) Number() protoreflect.EnumNumber { // Deprecated: Use DpuReprovisioningRequest_Mode.Descriptor instead. func (DpuReprovisioningRequest_Mode) EnumDescriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{422, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{424, 0} } type HostReprovisioningRequest_Mode int32 @@ -4835,7 +4835,7 @@ func (x HostReprovisioningRequest_Mode) Number() protoreflect.EnumNumber { // Deprecated: Use HostReprovisioningRequest_Mode.Descriptor instead. func (HostReprovisioningRequest_Mode) EnumDescriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{425, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{427, 0} } type MachineSetAutoUpdateRequest_SetAutoupdateAction int32 @@ -4884,7 +4884,7 @@ func (x MachineSetAutoUpdateRequest_SetAutoupdateAction) Number() protoreflect.E // Deprecated: Use MachineSetAutoUpdateRequest_SetAutoupdateAction.Descriptor instead. func (MachineSetAutoUpdateRequest_SetAutoupdateAction) EnumDescriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{486, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{488, 0} } type MachineValidationOnDemandRequest_Action int32 @@ -4930,7 +4930,7 @@ func (x MachineValidationOnDemandRequest_Action) Number() protoreflect.EnumNumbe // Deprecated: Use MachineValidationOnDemandRequest_Action.Descriptor instead. func (MachineValidationOnDemandRequest_Action) EnumDescriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{495, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{497, 0} } type AdminPowerControlRequest_SystemPowerControl int32 @@ -4994,7 +4994,7 @@ func (x AdminPowerControlRequest_SystemPowerControl) Number() protoreflect.EnumN // Deprecated: Use AdminPowerControlRequest_SystemPowerControl.Descriptor instead. func (AdminPowerControlRequest_SystemPowerControl) EnumDescriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{505, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{507, 0} } type GetRedfishJobStateResponse_RedfishJobState int32 @@ -5049,7 +5049,7 @@ func (x GetRedfishJobStateResponse_RedfishJobState) Number() protoreflect.EnumNu // Deprecated: Use GetRedfishJobStateResponse_RedfishJobState.Descriptor instead. func (GetRedfishJobStateResponse_RedfishJobState) EnumDescriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{508, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{510, 0} } // Indicates the lifecycle state of a resource that is controlled by a state controller @@ -20995,6 +20995,10 @@ func (x *FindInterfaceAddressesResponse) GetAddresses() []*InterfaceAddress { return nil } +// Deprecated: use BmcEndpoint (ingestion-time fields, on Machine) and +// BmcStatus (observed fields, on MachineStatus) instead. +// +// Deprecated: Marked as deprecated in nico_nico.proto. type BmcInfo struct { state protoimpl.MessageState `protogen:"open.v1"` Ip *string `protobuf:"bytes,1,opt,name=ip,proto3,oneof" json:"ip,omitempty"` @@ -21079,6 +21083,128 @@ func (x *BmcInfo) GetMachineInterfaceId() *MachineInterfaceId { return nil } +// BMC connection details established at ingestion; not operator-mutable. +type BmcEndpoint struct { + state protoimpl.MessageState `protogen:"open.v1"` + Ip *string `protobuf:"bytes,1,opt,name=ip,proto3,oneof" json:"ip,omitempty"` + Mac *string `protobuf:"bytes,2,opt,name=mac,proto3,oneof" json:"mac,omitempty"` + Port *uint32 `protobuf:"varint,3,opt,name=port,proto3,oneof" json:"port,omitempty"` + MachineInterfaceId *MachineInterfaceId `protobuf:"bytes,4,opt,name=machine_interface_id,json=machineInterfaceId,proto3,oneof" json:"machine_interface_id,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *BmcEndpoint) Reset() { + *x = BmcEndpoint{} + mi := &file_nico_nico_proto_msgTypes[246] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *BmcEndpoint) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*BmcEndpoint) ProtoMessage() {} + +func (x *BmcEndpoint) ProtoReflect() protoreflect.Message { + mi := &file_nico_nico_proto_msgTypes[246] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use BmcEndpoint.ProtoReflect.Descriptor instead. +func (*BmcEndpoint) Descriptor() ([]byte, []int) { + return file_nico_nico_proto_rawDescGZIP(), []int{246} +} + +func (x *BmcEndpoint) GetIp() string { + if x != nil && x.Ip != nil { + return *x.Ip + } + return "" +} + +func (x *BmcEndpoint) GetMac() string { + if x != nil && x.Mac != nil { + return *x.Mac + } + return "" +} + +func (x *BmcEndpoint) GetPort() uint32 { + if x != nil && x.Port != nil { + return *x.Port + } + return 0 +} + +func (x *BmcEndpoint) GetMachineInterfaceId() *MachineInterfaceId { + if x != nil { + return x.MachineInterfaceId + } + return nil +} + +// BMC observed/runtime state. +type BmcStatus struct { + state protoimpl.MessageState `protogen:"open.v1"` + Version *string `protobuf:"bytes,2,opt,name=version,proto3,oneof" json:"version,omitempty"` + FirmwareVersion *string `protobuf:"bytes,3,opt,name=firmware_version,json=firmwareVersion,proto3,oneof" json:"firmware_version,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *BmcStatus) Reset() { + *x = BmcStatus{} + mi := &file_nico_nico_proto_msgTypes[247] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *BmcStatus) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*BmcStatus) ProtoMessage() {} + +func (x *BmcStatus) ProtoReflect() protoreflect.Message { + mi := &file_nico_nico_proto_msgTypes[247] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use BmcStatus.ProtoReflect.Descriptor instead. +func (*BmcStatus) Descriptor() ([]byte, []int) { + return file_nico_nico_proto_rawDescGZIP(), []int{247} +} + +func (x *BmcStatus) GetVersion() string { + if x != nil && x.Version != nil { + return *x.Version + } + return "" +} + +func (x *BmcStatus) GetFirmwareVersion() string { + if x != nil && x.FirmwareVersion != nil { + return *x.FirmwareVersion + } + return "" +} + type SwitchNvosInfo struct { state protoimpl.MessageState `protogen:"open.v1"` Ip *string `protobuf:"bytes,1,opt,name=ip,proto3,oneof" json:"ip,omitempty"` @@ -21090,7 +21216,7 @@ type SwitchNvosInfo struct { func (x *SwitchNvosInfo) Reset() { *x = SwitchNvosInfo{} - mi := &file_nico_nico_proto_msgTypes[246] + mi := &file_nico_nico_proto_msgTypes[248] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21102,7 +21228,7 @@ func (x *SwitchNvosInfo) String() string { func (*SwitchNvosInfo) ProtoMessage() {} func (x *SwitchNvosInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[246] + mi := &file_nico_nico_proto_msgTypes[248] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21115,7 +21241,7 @@ func (x *SwitchNvosInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SwitchNvosInfo.ProtoReflect.Descriptor instead. func (*SwitchNvosInfo) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{246} + return file_nico_nico_proto_rawDescGZIP(), []int{248} } func (x *SwitchNvosInfo) GetIp() string { @@ -21159,7 +21285,7 @@ type MachineConfig struct { func (x *MachineConfig) Reset() { *x = MachineConfig{} - mi := &file_nico_nico_proto_msgTypes[247] + mi := &file_nico_nico_proto_msgTypes[249] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21171,7 +21297,7 @@ func (x *MachineConfig) String() string { func (*MachineConfig) ProtoMessage() {} func (x *MachineConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[247] + mi := &file_nico_nico_proto_msgTypes[249] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21184,7 +21310,7 @@ func (x *MachineConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineConfig.ProtoReflect.Descriptor instead. func (*MachineConfig) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{247} + return file_nico_nico_proto_rawDescGZIP(), []int{249} } func (x *MachineConfig) GetMaintenanceReference() string { @@ -21256,13 +21382,15 @@ type MachineStatus struct { LastScoutObservedVersion *string `protobuf:"bytes,22,opt,name=last_scout_observed_version,json=lastScoutObservedVersion,proto3,oneof" json:"last_scout_observed_version,omitempty"` InstanceNetworkRestrictions *InstanceNetworkRestrictions `protobuf:"bytes,23,opt,name=instance_network_restrictions,json=instanceNetworkRestrictions,proto3,oneof" json:"instance_network_restrictions,omitempty"` Lifecycle *LifecycleStatus `protobuf:"bytes,24,opt,name=lifecycle,proto3" json:"lifecycle,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + // BMC observed/runtime state. + BmcStatus *BmcStatus `protobuf:"bytes,25,opt,name=bmc_status,json=bmcStatus,proto3,oneof" json:"bmc_status,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } func (x *MachineStatus) Reset() { *x = MachineStatus{} - mi := &file_nico_nico_proto_msgTypes[248] + mi := &file_nico_nico_proto_msgTypes[250] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21274,7 +21402,7 @@ func (x *MachineStatus) String() string { func (*MachineStatus) ProtoMessage() {} func (x *MachineStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[248] + mi := &file_nico_nico_proto_msgTypes[250] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21287,7 +21415,7 @@ func (x *MachineStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineStatus.ProtoReflect.Descriptor instead. func (*MachineStatus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{248} + return file_nico_nico_proto_rawDescGZIP(), []int{250} } func (x *MachineStatus) GetInterfaces() []*MachineInterface { @@ -21458,6 +21586,13 @@ func (x *MachineStatus) GetLifecycle() *LifecycleStatus { return nil } +func (x *MachineStatus) GetBmcStatus() *BmcStatus { + if x != nil { + return x.BmcStatus + } + return nil +} + type Machine struct { state protoimpl.MessageState `protogen:"open.v1"` // Uniquely identifies a NICo machine. @@ -21493,7 +21628,10 @@ type Machine struct { DiscoveryInfo *DiscoveryInfo `protobuf:"bytes,10,opt,name=discovery_info,json=discoveryInfo,proto3,oneof" json:"discovery_info,omitempty"` // Machine type (DPU or HOST). Set at ingestion time; not operator-mutable. MachineType MachineType `protobuf:"varint,11,opt,name=machine_type,json=machineType,proto3,enum=forge.MachineType" json:"machine_type,omitempty"` - // BMC connection details. Discovered at ingestion time; not operator-mutable. + // Deprecated: use bmc (BmcEndpoint) instead. + // TODO: change to reserved once rest-api uses BmcEndpoint + // + // Deprecated: Marked as deprecated in nico_nico.proto. BmcInfo *BmcInfo `protobuf:"bytes,12,opt,name=bmc_info,json=bmcInfo,proto3" json:"bmc_info,omitempty"` // Deprecated: use status.last_reboot_time // TODO: change to reserved once rest-api uses MachineStatus @@ -21651,16 +21789,18 @@ type Machine struct { // TODO: change to reserved once rest-api uses MachineConfig // // Deprecated: Marked as deprecated in nico_nico.proto. - Dpf *DpfMachineState `protobuf:"bytes,49,opt,name=dpf,proto3,oneof" json:"dpf,omitempty"` - Config *MachineConfig `protobuf:"bytes,50,opt,name=config,proto3" json:"config,omitempty"` - Status *MachineStatus `protobuf:"bytes,51,opt,name=status,proto3" json:"status,omitempty"` + Dpf *DpfMachineState `protobuf:"bytes,49,opt,name=dpf,proto3,oneof" json:"dpf,omitempty"` + Config *MachineConfig `protobuf:"bytes,50,opt,name=config,proto3" json:"config,omitempty"` + Status *MachineStatus `protobuf:"bytes,51,opt,name=status,proto3" json:"status,omitempty"` + // BMC connection details established at ingestion; not operator-mutable. + Bmc *BmcEndpoint `protobuf:"bytes,52,opt,name=bmc,proto3" json:"bmc,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *Machine) Reset() { *x = Machine{} - mi := &file_nico_nico_proto_msgTypes[249] + mi := &file_nico_nico_proto_msgTypes[251] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21672,7 +21812,7 @@ func (x *Machine) String() string { func (*Machine) ProtoMessage() {} func (x *Machine) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[249] + mi := &file_nico_nico_proto_msgTypes[251] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21685,7 +21825,7 @@ func (x *Machine) ProtoReflect() protoreflect.Message { // Deprecated: Use Machine.ProtoReflect.Descriptor instead. func (*Machine) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{249} + return file_nico_nico_proto_rawDescGZIP(), []int{251} } func (x *Machine) GetId() *MachineId { @@ -21753,6 +21893,7 @@ func (x *Machine) GetMachineType() MachineType { return MachineType_UNKNOWN } +// Deprecated: Marked as deprecated in nico_nico.proto. func (x *Machine) GetBmcInfo() *BmcInfo { if x != nil { return x.BmcInfo @@ -22025,6 +22166,13 @@ func (x *Machine) GetStatus() *MachineStatus { return nil } +func (x *Machine) GetBmc() *BmcEndpoint { + if x != nil { + return x.Bmc + } + return nil +} + type DpfMachineState struct { state protoimpl.MessageState `protogen:"open.v1"` Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"` @@ -22035,7 +22183,7 @@ type DpfMachineState struct { func (x *DpfMachineState) Reset() { *x = DpfMachineState{} - mi := &file_nico_nico_proto_msgTypes[250] + mi := &file_nico_nico_proto_msgTypes[252] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22047,7 +22195,7 @@ func (x *DpfMachineState) String() string { func (*DpfMachineState) ProtoMessage() {} func (x *DpfMachineState) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[250] + mi := &file_nico_nico_proto_msgTypes[252] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22060,7 +22208,7 @@ func (x *DpfMachineState) ProtoReflect() protoreflect.Message { // Deprecated: Use DpfMachineState.ProtoReflect.Descriptor instead. func (*DpfMachineState) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{250} + return file_nico_nico_proto_rawDescGZIP(), []int{252} } func (x *DpfMachineState) GetEnabled() bool { @@ -22092,7 +22240,7 @@ type InstanceNetworkRestrictions struct { func (x *InstanceNetworkRestrictions) Reset() { *x = InstanceNetworkRestrictions{} - mi := &file_nico_nico_proto_msgTypes[251] + mi := &file_nico_nico_proto_msgTypes[253] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22104,7 +22252,7 @@ func (x *InstanceNetworkRestrictions) String() string { func (*InstanceNetworkRestrictions) ProtoMessage() {} func (x *InstanceNetworkRestrictions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[251] + mi := &file_nico_nico_proto_msgTypes[253] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22117,7 +22265,7 @@ func (x *InstanceNetworkRestrictions) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceNetworkRestrictions.ProtoReflect.Descriptor instead. func (*InstanceNetworkRestrictions) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{251} + return file_nico_nico_proto_rawDescGZIP(), []int{253} } func (x *InstanceNetworkRestrictions) GetNetworkSegmentMembershipType() InstanceNetworkSegmentMembershipType { @@ -22152,7 +22300,7 @@ type MachineMetadataUpdateRequest struct { func (x *MachineMetadataUpdateRequest) Reset() { *x = MachineMetadataUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[252] + mi := &file_nico_nico_proto_msgTypes[254] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22164,7 +22312,7 @@ func (x *MachineMetadataUpdateRequest) String() string { func (*MachineMetadataUpdateRequest) ProtoMessage() {} func (x *MachineMetadataUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[252] + mi := &file_nico_nico_proto_msgTypes[254] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22177,7 +22325,7 @@ func (x *MachineMetadataUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineMetadataUpdateRequest.ProtoReflect.Descriptor instead. func (*MachineMetadataUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{252} + return file_nico_nico_proto_rawDescGZIP(), []int{254} } func (x *MachineMetadataUpdateRequest) GetMachineId() *MachineId { @@ -22218,7 +22366,7 @@ type RackMetadataUpdateRequest struct { func (x *RackMetadataUpdateRequest) Reset() { *x = RackMetadataUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[253] + mi := &file_nico_nico_proto_msgTypes[255] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22230,7 +22378,7 @@ func (x *RackMetadataUpdateRequest) String() string { func (*RackMetadataUpdateRequest) ProtoMessage() {} func (x *RackMetadataUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[253] + mi := &file_nico_nico_proto_msgTypes[255] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22243,7 +22391,7 @@ func (x *RackMetadataUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RackMetadataUpdateRequest.ProtoReflect.Descriptor instead. func (*RackMetadataUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{253} + return file_nico_nico_proto_rawDescGZIP(), []int{255} } func (x *RackMetadataUpdateRequest) GetRackId() *RackId { @@ -22284,7 +22432,7 @@ type SwitchMetadataUpdateRequest struct { func (x *SwitchMetadataUpdateRequest) Reset() { *x = SwitchMetadataUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[254] + mi := &file_nico_nico_proto_msgTypes[256] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22296,7 +22444,7 @@ func (x *SwitchMetadataUpdateRequest) String() string { func (*SwitchMetadataUpdateRequest) ProtoMessage() {} func (x *SwitchMetadataUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[254] + mi := &file_nico_nico_proto_msgTypes[256] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22309,7 +22457,7 @@ func (x *SwitchMetadataUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SwitchMetadataUpdateRequest.ProtoReflect.Descriptor instead. func (*SwitchMetadataUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{254} + return file_nico_nico_proto_rawDescGZIP(), []int{256} } func (x *SwitchMetadataUpdateRequest) GetSwitchId() *SwitchId { @@ -22350,7 +22498,7 @@ type PowerShelfMetadataUpdateRequest struct { func (x *PowerShelfMetadataUpdateRequest) Reset() { *x = PowerShelfMetadataUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[255] + mi := &file_nico_nico_proto_msgTypes[257] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22362,7 +22510,7 @@ func (x *PowerShelfMetadataUpdateRequest) String() string { func (*PowerShelfMetadataUpdateRequest) ProtoMessage() {} func (x *PowerShelfMetadataUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[255] + mi := &file_nico_nico_proto_msgTypes[257] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22375,7 +22523,7 @@ func (x *PowerShelfMetadataUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PowerShelfMetadataUpdateRequest.ProtoReflect.Descriptor instead. func (*PowerShelfMetadataUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{255} + return file_nico_nico_proto_rawDescGZIP(), []int{257} } func (x *PowerShelfMetadataUpdateRequest) GetPowerShelfId() *PowerShelfId { @@ -22409,7 +22557,7 @@ type DpuAgentInventoryReport struct { func (x *DpuAgentInventoryReport) Reset() { *x = DpuAgentInventoryReport{} - mi := &file_nico_nico_proto_msgTypes[256] + mi := &file_nico_nico_proto_msgTypes[258] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22421,7 +22569,7 @@ func (x *DpuAgentInventoryReport) String() string { func (*DpuAgentInventoryReport) ProtoMessage() {} func (x *DpuAgentInventoryReport) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[256] + mi := &file_nico_nico_proto_msgTypes[258] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22434,7 +22582,7 @@ func (x *DpuAgentInventoryReport) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuAgentInventoryReport.ProtoReflect.Descriptor instead. func (*DpuAgentInventoryReport) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{256} + return file_nico_nico_proto_rawDescGZIP(), []int{258} } func (x *DpuAgentInventoryReport) GetMachineId() *MachineId { @@ -22461,7 +22609,7 @@ type MachineComponentInventory struct { func (x *MachineComponentInventory) Reset() { *x = MachineComponentInventory{} - mi := &file_nico_nico_proto_msgTypes[257] + mi := &file_nico_nico_proto_msgTypes[259] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22473,7 +22621,7 @@ func (x *MachineComponentInventory) String() string { func (*MachineComponentInventory) ProtoMessage() {} func (x *MachineComponentInventory) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[257] + mi := &file_nico_nico_proto_msgTypes[259] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22486,7 +22634,7 @@ func (x *MachineComponentInventory) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineComponentInventory.ProtoReflect.Descriptor instead. func (*MachineComponentInventory) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{257} + return file_nico_nico_proto_rawDescGZIP(), []int{259} } func (x *MachineComponentInventory) GetComponents() []*MachineInventorySoftwareComponent { @@ -22507,7 +22655,7 @@ type MachineInventorySoftwareComponent struct { func (x *MachineInventorySoftwareComponent) Reset() { *x = MachineInventorySoftwareComponent{} - mi := &file_nico_nico_proto_msgTypes[258] + mi := &file_nico_nico_proto_msgTypes[260] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22519,7 +22667,7 @@ func (x *MachineInventorySoftwareComponent) String() string { func (*MachineInventorySoftwareComponent) ProtoMessage() {} func (x *MachineInventorySoftwareComponent) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[258] + mi := &file_nico_nico_proto_msgTypes[260] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22532,7 +22680,7 @@ func (x *MachineInventorySoftwareComponent) ProtoReflect() protoreflect.Message // Deprecated: Use MachineInventorySoftwareComponent.ProtoReflect.Descriptor instead. func (*MachineInventorySoftwareComponent) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{258} + return file_nico_nico_proto_rawDescGZIP(), []int{260} } func (x *MachineInventorySoftwareComponent) GetName() string { @@ -22567,7 +22715,7 @@ type HealthSourceOrigin struct { func (x *HealthSourceOrigin) Reset() { *x = HealthSourceOrigin{} - mi := &file_nico_nico_proto_msgTypes[259] + mi := &file_nico_nico_proto_msgTypes[261] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22579,7 +22727,7 @@ func (x *HealthSourceOrigin) String() string { func (*HealthSourceOrigin) ProtoMessage() {} func (x *HealthSourceOrigin) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[259] + mi := &file_nico_nico_proto_msgTypes[261] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22592,7 +22740,7 @@ func (x *HealthSourceOrigin) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthSourceOrigin.ProtoReflect.Descriptor instead. func (*HealthSourceOrigin) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{259} + return file_nico_nico_proto_rawDescGZIP(), []int{261} } func (x *HealthSourceOrigin) GetMode() HealthReportApplyMode { @@ -22624,7 +22772,7 @@ type ControllerStateReason struct { func (x *ControllerStateReason) Reset() { *x = ControllerStateReason{} - mi := &file_nico_nico_proto_msgTypes[260] + mi := &file_nico_nico_proto_msgTypes[262] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22636,7 +22784,7 @@ func (x *ControllerStateReason) String() string { func (*ControllerStateReason) ProtoMessage() {} func (x *ControllerStateReason) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[260] + mi := &file_nico_nico_proto_msgTypes[262] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22649,7 +22797,7 @@ func (x *ControllerStateReason) ProtoReflect() protoreflect.Message { // Deprecated: Use ControllerStateReason.ProtoReflect.Descriptor instead. func (*ControllerStateReason) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{260} + return file_nico_nico_proto_rawDescGZIP(), []int{262} } func (x *ControllerStateReason) GetOutcome() ControllerStateOutcome { @@ -22684,7 +22832,7 @@ type ControllerStateSourceReference struct { func (x *ControllerStateSourceReference) Reset() { *x = ControllerStateSourceReference{} - mi := &file_nico_nico_proto_msgTypes[261] + mi := &file_nico_nico_proto_msgTypes[263] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22696,7 +22844,7 @@ func (x *ControllerStateSourceReference) String() string { func (*ControllerStateSourceReference) ProtoMessage() {} func (x *ControllerStateSourceReference) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[261] + mi := &file_nico_nico_proto_msgTypes[263] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22709,7 +22857,7 @@ func (x *ControllerStateSourceReference) ProtoReflect() protoreflect.Message { // Deprecated: Use ControllerStateSourceReference.ProtoReflect.Descriptor instead. func (*ControllerStateSourceReference) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{261} + return file_nico_nico_proto_rawDescGZIP(), []int{263} } func (x *ControllerStateSourceReference) GetFile() string { @@ -22743,7 +22891,7 @@ type StateSla struct { func (x *StateSla) Reset() { *x = StateSla{} - mi := &file_nico_nico_proto_msgTypes[262] + mi := &file_nico_nico_proto_msgTypes[264] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22755,7 +22903,7 @@ func (x *StateSla) String() string { func (*StateSla) ProtoMessage() {} func (x *StateSla) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[262] + mi := &file_nico_nico_proto_msgTypes[264] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22768,7 +22916,7 @@ func (x *StateSla) ProtoReflect() protoreflect.Message { // Deprecated: Use StateSla.ProtoReflect.Descriptor instead. func (*StateSla) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{262} + return file_nico_nico_proto_rawDescGZIP(), []int{264} } func (x *StateSla) GetSla() *durationpb.Duration { @@ -22798,7 +22946,7 @@ type InstanceTenantStatus struct { func (x *InstanceTenantStatus) Reset() { *x = InstanceTenantStatus{} - mi := &file_nico_nico_proto_msgTypes[263] + mi := &file_nico_nico_proto_msgTypes[265] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22810,7 +22958,7 @@ func (x *InstanceTenantStatus) String() string { func (*InstanceTenantStatus) ProtoMessage() {} func (x *InstanceTenantStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[263] + mi := &file_nico_nico_proto_msgTypes[265] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22823,7 +22971,7 @@ func (x *InstanceTenantStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceTenantStatus.ProtoReflect.Descriptor instead. func (*InstanceTenantStatus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{263} + return file_nico_nico_proto_rawDescGZIP(), []int{265} } func (x *InstanceTenantStatus) GetState() TenantState { @@ -22854,7 +23002,7 @@ type MachineEvent struct { func (x *MachineEvent) Reset() { *x = MachineEvent{} - mi := &file_nico_nico_proto_msgTypes[264] + mi := &file_nico_nico_proto_msgTypes[266] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22866,7 +23014,7 @@ func (x *MachineEvent) String() string { func (*MachineEvent) ProtoMessage() {} func (x *MachineEvent) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[264] + mi := &file_nico_nico_proto_msgTypes[266] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22879,7 +23027,7 @@ func (x *MachineEvent) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineEvent.ProtoReflect.Descriptor instead. func (*MachineEvent) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{264} + return file_nico_nico_proto_rawDescGZIP(), []int{266} } func (x *MachineEvent) GetEvent() string { @@ -22929,7 +23077,7 @@ type MachineInterface struct { func (x *MachineInterface) Reset() { *x = MachineInterface{} - mi := &file_nico_nico_proto_msgTypes[265] + mi := &file_nico_nico_proto_msgTypes[267] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22941,7 +23089,7 @@ func (x *MachineInterface) String() string { func (*MachineInterface) ProtoMessage() {} func (x *MachineInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[265] + mi := &file_nico_nico_proto_msgTypes[267] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22954,7 +23102,7 @@ func (x *MachineInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineInterface.ProtoReflect.Descriptor instead. func (*MachineInterface) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{265} + return file_nico_nico_proto_rawDescGZIP(), []int{267} } func (x *MachineInterface) GetId() *MachineInterfaceId { @@ -23090,7 +23238,7 @@ type InfinibandStatusObservation struct { func (x *InfinibandStatusObservation) Reset() { *x = InfinibandStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[266] + mi := &file_nico_nico_proto_msgTypes[268] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23102,7 +23250,7 @@ func (x *InfinibandStatusObservation) String() string { func (*InfinibandStatusObservation) ProtoMessage() {} func (x *InfinibandStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[266] + mi := &file_nico_nico_proto_msgTypes[268] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23115,7 +23263,7 @@ func (x *InfinibandStatusObservation) ProtoReflect() protoreflect.Message { // Deprecated: Use InfinibandStatusObservation.ProtoReflect.Descriptor instead. func (*InfinibandStatusObservation) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{266} + return file_nico_nico_proto_rawDescGZIP(), []int{268} } func (x *InfinibandStatusObservation) GetIbInterfaces() []*MachineIbInterface { @@ -23167,7 +23315,7 @@ type MachineIbInterface struct { func (x *MachineIbInterface) Reset() { *x = MachineIbInterface{} - mi := &file_nico_nico_proto_msgTypes[267] + mi := &file_nico_nico_proto_msgTypes[269] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23179,7 +23327,7 @@ func (x *MachineIbInterface) String() string { func (*MachineIbInterface) ProtoMessage() {} func (x *MachineIbInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[267] + mi := &file_nico_nico_proto_msgTypes[269] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23192,7 +23340,7 @@ func (x *MachineIbInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineIbInterface.ProtoReflect.Descriptor instead. func (*MachineIbInterface) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{267} + return file_nico_nico_proto_rawDescGZIP(), []int{269} } func (x *MachineIbInterface) GetPfGuid() string { @@ -23271,7 +23419,7 @@ type DhcpDiscovery struct { func (x *DhcpDiscovery) Reset() { *x = DhcpDiscovery{} - mi := &file_nico_nico_proto_msgTypes[268] + mi := &file_nico_nico_proto_msgTypes[270] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23283,7 +23431,7 @@ func (x *DhcpDiscovery) String() string { func (*DhcpDiscovery) ProtoMessage() {} func (x *DhcpDiscovery) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[268] + mi := &file_nico_nico_proto_msgTypes[270] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23296,7 +23444,7 @@ func (x *DhcpDiscovery) ProtoReflect() protoreflect.Message { // Deprecated: Use DhcpDiscovery.ProtoReflect.Descriptor instead. func (*DhcpDiscovery) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{268} + return file_nico_nico_proto_rawDescGZIP(), []int{270} } func (x *DhcpDiscovery) GetMacAddress() string { @@ -23383,7 +23531,7 @@ type ExpireDhcpLeaseRequest struct { func (x *ExpireDhcpLeaseRequest) Reset() { *x = ExpireDhcpLeaseRequest{} - mi := &file_nico_nico_proto_msgTypes[269] + mi := &file_nico_nico_proto_msgTypes[271] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23395,7 +23543,7 @@ func (x *ExpireDhcpLeaseRequest) String() string { func (*ExpireDhcpLeaseRequest) ProtoMessage() {} func (x *ExpireDhcpLeaseRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[269] + mi := &file_nico_nico_proto_msgTypes[271] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23408,7 +23556,7 @@ func (x *ExpireDhcpLeaseRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ExpireDhcpLeaseRequest.ProtoReflect.Descriptor instead. func (*ExpireDhcpLeaseRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{269} + return file_nico_nico_proto_rawDescGZIP(), []int{271} } func (x *ExpireDhcpLeaseRequest) GetIpAddress() string { @@ -23435,7 +23583,7 @@ type ExpireDhcpLeaseResponse struct { func (x *ExpireDhcpLeaseResponse) Reset() { *x = ExpireDhcpLeaseResponse{} - mi := &file_nico_nico_proto_msgTypes[270] + mi := &file_nico_nico_proto_msgTypes[272] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23447,7 +23595,7 @@ func (x *ExpireDhcpLeaseResponse) String() string { func (*ExpireDhcpLeaseResponse) ProtoMessage() {} func (x *ExpireDhcpLeaseResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[270] + mi := &file_nico_nico_proto_msgTypes[272] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23460,7 +23608,7 @@ func (x *ExpireDhcpLeaseResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ExpireDhcpLeaseResponse.ProtoReflect.Descriptor instead. func (*ExpireDhcpLeaseResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{270} + return file_nico_nico_proto_rawDescGZIP(), []int{272} } func (x *ExpireDhcpLeaseResponse) GetIpAddress() string { @@ -23500,7 +23648,7 @@ type DhcpRecord struct { func (x *DhcpRecord) Reset() { *x = DhcpRecord{} - mi := &file_nico_nico_proto_msgTypes[271] + mi := &file_nico_nico_proto_msgTypes[273] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23512,7 +23660,7 @@ func (x *DhcpRecord) String() string { func (*DhcpRecord) ProtoMessage() {} func (x *DhcpRecord) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[271] + mi := &file_nico_nico_proto_msgTypes[273] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23525,7 +23673,7 @@ func (x *DhcpRecord) ProtoReflect() protoreflect.Message { // Deprecated: Use DhcpRecord.ProtoReflect.Descriptor instead. func (*DhcpRecord) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{271} + return file_nico_nico_proto_rawDescGZIP(), []int{273} } func (x *DhcpRecord) GetMachineId() *MachineId { @@ -23628,7 +23776,7 @@ type NetworkSegmentList struct { func (x *NetworkSegmentList) Reset() { *x = NetworkSegmentList{} - mi := &file_nico_nico_proto_msgTypes[272] + mi := &file_nico_nico_proto_msgTypes[274] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23640,7 +23788,7 @@ func (x *NetworkSegmentList) String() string { func (*NetworkSegmentList) ProtoMessage() {} func (x *NetworkSegmentList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[272] + mi := &file_nico_nico_proto_msgTypes[274] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23653,7 +23801,7 @@ func (x *NetworkSegmentList) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkSegmentList.ProtoReflect.Descriptor instead. func (*NetworkSegmentList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{272} + return file_nico_nico_proto_rawDescGZIP(), []int{274} } func (x *NetworkSegmentList) GetNetworkSegments() []*NetworkSegment { @@ -23673,7 +23821,7 @@ type SSHKeyValidationRequest struct { func (x *SSHKeyValidationRequest) Reset() { *x = SSHKeyValidationRequest{} - mi := &file_nico_nico_proto_msgTypes[273] + mi := &file_nico_nico_proto_msgTypes[275] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23685,7 +23833,7 @@ func (x *SSHKeyValidationRequest) String() string { func (*SSHKeyValidationRequest) ProtoMessage() {} func (x *SSHKeyValidationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[273] + mi := &file_nico_nico_proto_msgTypes[275] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23698,7 +23846,7 @@ func (x *SSHKeyValidationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SSHKeyValidationRequest.ProtoReflect.Descriptor instead. func (*SSHKeyValidationRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{273} + return file_nico_nico_proto_rawDescGZIP(), []int{275} } func (x *SSHKeyValidationRequest) GetUser() string { @@ -23725,7 +23873,7 @@ type SSHKeyValidationResponse struct { func (x *SSHKeyValidationResponse) Reset() { *x = SSHKeyValidationResponse{} - mi := &file_nico_nico_proto_msgTypes[274] + mi := &file_nico_nico_proto_msgTypes[276] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23737,7 +23885,7 @@ func (x *SSHKeyValidationResponse) String() string { func (*SSHKeyValidationResponse) ProtoMessage() {} func (x *SSHKeyValidationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[274] + mi := &file_nico_nico_proto_msgTypes[276] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23750,7 +23898,7 @@ func (x *SSHKeyValidationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SSHKeyValidationResponse.ProtoReflect.Descriptor instead. func (*SSHKeyValidationResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{274} + return file_nico_nico_proto_rawDescGZIP(), []int{276} } func (x *SSHKeyValidationResponse) GetIsAuthenticated() bool { @@ -23776,7 +23924,7 @@ type GetBmcCredentialsRequest struct { func (x *GetBmcCredentialsRequest) Reset() { *x = GetBmcCredentialsRequest{} - mi := &file_nico_nico_proto_msgTypes[275] + mi := &file_nico_nico_proto_msgTypes[277] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23788,7 +23936,7 @@ func (x *GetBmcCredentialsRequest) String() string { func (*GetBmcCredentialsRequest) ProtoMessage() {} func (x *GetBmcCredentialsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[275] + mi := &file_nico_nico_proto_msgTypes[277] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23801,7 +23949,7 @@ func (x *GetBmcCredentialsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetBmcCredentialsRequest.ProtoReflect.Descriptor instead. func (*GetBmcCredentialsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{275} + return file_nico_nico_proto_rawDescGZIP(), []int{277} } func (x *GetBmcCredentialsRequest) GetMacAddr() string { @@ -23820,7 +23968,7 @@ type GetSwitchNvosCredentialsRequest struct { func (x *GetSwitchNvosCredentialsRequest) Reset() { *x = GetSwitchNvosCredentialsRequest{} - mi := &file_nico_nico_proto_msgTypes[276] + mi := &file_nico_nico_proto_msgTypes[278] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23832,7 +23980,7 @@ func (x *GetSwitchNvosCredentialsRequest) String() string { func (*GetSwitchNvosCredentialsRequest) ProtoMessage() {} func (x *GetSwitchNvosCredentialsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[276] + mi := &file_nico_nico_proto_msgTypes[278] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23845,7 +23993,7 @@ func (x *GetSwitchNvosCredentialsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSwitchNvosCredentialsRequest.ProtoReflect.Descriptor instead. func (*GetSwitchNvosCredentialsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{276} + return file_nico_nico_proto_rawDescGZIP(), []int{278} } func (x *GetSwitchNvosCredentialsRequest) GetSwitchId() *SwitchId { @@ -23864,7 +24012,7 @@ type GetBmcCredentialsResponse struct { func (x *GetBmcCredentialsResponse) Reset() { *x = GetBmcCredentialsResponse{} - mi := &file_nico_nico_proto_msgTypes[277] + mi := &file_nico_nico_proto_msgTypes[279] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23876,7 +24024,7 @@ func (x *GetBmcCredentialsResponse) String() string { func (*GetBmcCredentialsResponse) ProtoMessage() {} func (x *GetBmcCredentialsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[277] + mi := &file_nico_nico_proto_msgTypes[279] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23889,7 +24037,7 @@ func (x *GetBmcCredentialsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetBmcCredentialsResponse.ProtoReflect.Descriptor instead. func (*GetBmcCredentialsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{277} + return file_nico_nico_proto_rawDescGZIP(), []int{279} } func (x *GetBmcCredentialsResponse) GetCredentials() *BmcCredentials { @@ -23912,7 +24060,7 @@ type BmcCredentials struct { func (x *BmcCredentials) Reset() { *x = BmcCredentials{} - mi := &file_nico_nico_proto_msgTypes[278] + mi := &file_nico_nico_proto_msgTypes[280] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23924,7 +24072,7 @@ func (x *BmcCredentials) String() string { func (*BmcCredentials) ProtoMessage() {} func (x *BmcCredentials) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[278] + mi := &file_nico_nico_proto_msgTypes[280] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23937,7 +24085,7 @@ func (x *BmcCredentials) ProtoReflect() protoreflect.Message { // Deprecated: Use BmcCredentials.ProtoReflect.Descriptor instead. func (*BmcCredentials) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{278} + return file_nico_nico_proto_rawDescGZIP(), []int{280} } func (x *BmcCredentials) GetType() isBmcCredentials_Type { @@ -23989,7 +24137,7 @@ type GetSiteExplorationRequest struct { func (x *GetSiteExplorationRequest) Reset() { *x = GetSiteExplorationRequest{} - mi := &file_nico_nico_proto_msgTypes[279] + mi := &file_nico_nico_proto_msgTypes[281] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24001,7 +24149,7 @@ func (x *GetSiteExplorationRequest) String() string { func (*GetSiteExplorationRequest) ProtoMessage() {} func (x *GetSiteExplorationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[279] + mi := &file_nico_nico_proto_msgTypes[281] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24014,7 +24162,7 @@ func (x *GetSiteExplorationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSiteExplorationRequest.ProtoReflect.Descriptor instead. func (*GetSiteExplorationRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{279} + return file_nico_nico_proto_rawDescGZIP(), []int{281} } type ClearSiteExplorationErrorRequest struct { @@ -24027,7 +24175,7 @@ type ClearSiteExplorationErrorRequest struct { func (x *ClearSiteExplorationErrorRequest) Reset() { *x = ClearSiteExplorationErrorRequest{} - mi := &file_nico_nico_proto_msgTypes[280] + mi := &file_nico_nico_proto_msgTypes[282] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24039,7 +24187,7 @@ func (x *ClearSiteExplorationErrorRequest) String() string { func (*ClearSiteExplorationErrorRequest) ProtoMessage() {} func (x *ClearSiteExplorationErrorRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[280] + mi := &file_nico_nico_proto_msgTypes[282] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24052,7 +24200,7 @@ func (x *ClearSiteExplorationErrorRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ClearSiteExplorationErrorRequest.ProtoReflect.Descriptor instead. func (*ClearSiteExplorationErrorRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{280} + return file_nico_nico_proto_rawDescGZIP(), []int{282} } func (x *ClearSiteExplorationErrorRequest) GetIpAddress() string { @@ -24075,7 +24223,7 @@ type ReExploreEndpointRequest struct { func (x *ReExploreEndpointRequest) Reset() { *x = ReExploreEndpointRequest{} - mi := &file_nico_nico_proto_msgTypes[281] + mi := &file_nico_nico_proto_msgTypes[283] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24087,7 +24235,7 @@ func (x *ReExploreEndpointRequest) String() string { func (*ReExploreEndpointRequest) ProtoMessage() {} func (x *ReExploreEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[281] + mi := &file_nico_nico_proto_msgTypes[283] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24100,7 +24248,7 @@ func (x *ReExploreEndpointRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ReExploreEndpointRequest.ProtoReflect.Descriptor instead. func (*ReExploreEndpointRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{281} + return file_nico_nico_proto_rawDescGZIP(), []int{283} } func (x *ReExploreEndpointRequest) GetIpAddress() string { @@ -24127,7 +24275,7 @@ type RefreshEndpointReportRequest struct { func (x *RefreshEndpointReportRequest) Reset() { *x = RefreshEndpointReportRequest{} - mi := &file_nico_nico_proto_msgTypes[282] + mi := &file_nico_nico_proto_msgTypes[284] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24139,7 +24287,7 @@ func (x *RefreshEndpointReportRequest) String() string { func (*RefreshEndpointReportRequest) ProtoMessage() {} func (x *RefreshEndpointReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[282] + mi := &file_nico_nico_proto_msgTypes[284] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24152,7 +24300,7 @@ func (x *RefreshEndpointReportRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RefreshEndpointReportRequest.ProtoReflect.Descriptor instead. func (*RefreshEndpointReportRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{282} + return file_nico_nico_proto_rawDescGZIP(), []int{284} } func (x *RefreshEndpointReportRequest) GetIpAddress() string { @@ -24172,7 +24320,7 @@ type DeleteExploredEndpointRequest struct { func (x *DeleteExploredEndpointRequest) Reset() { *x = DeleteExploredEndpointRequest{} - mi := &file_nico_nico_proto_msgTypes[283] + mi := &file_nico_nico_proto_msgTypes[285] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24184,7 +24332,7 @@ func (x *DeleteExploredEndpointRequest) String() string { func (*DeleteExploredEndpointRequest) ProtoMessage() {} func (x *DeleteExploredEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[283] + mi := &file_nico_nico_proto_msgTypes[285] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24197,7 +24345,7 @@ func (x *DeleteExploredEndpointRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteExploredEndpointRequest.ProtoReflect.Descriptor instead. func (*DeleteExploredEndpointRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{283} + return file_nico_nico_proto_rawDescGZIP(), []int{285} } func (x *DeleteExploredEndpointRequest) GetIpAddress() string { @@ -24219,7 +24367,7 @@ type PauseExploredEndpointRemediationRequest struct { func (x *PauseExploredEndpointRemediationRequest) Reset() { *x = PauseExploredEndpointRemediationRequest{} - mi := &file_nico_nico_proto_msgTypes[284] + mi := &file_nico_nico_proto_msgTypes[286] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24231,7 +24379,7 @@ func (x *PauseExploredEndpointRemediationRequest) String() string { func (*PauseExploredEndpointRemediationRequest) ProtoMessage() {} func (x *PauseExploredEndpointRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[284] + mi := &file_nico_nico_proto_msgTypes[286] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24244,7 +24392,7 @@ func (x *PauseExploredEndpointRemediationRequest) ProtoReflect() protoreflect.Me // Deprecated: Use PauseExploredEndpointRemediationRequest.ProtoReflect.Descriptor instead. func (*PauseExploredEndpointRemediationRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{284} + return file_nico_nico_proto_rawDescGZIP(), []int{286} } func (x *PauseExploredEndpointRemediationRequest) GetIpAddress() string { @@ -24273,7 +24421,7 @@ type DeleteExploredEndpointResponse struct { func (x *DeleteExploredEndpointResponse) Reset() { *x = DeleteExploredEndpointResponse{} - mi := &file_nico_nico_proto_msgTypes[285] + mi := &file_nico_nico_proto_msgTypes[287] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24285,7 +24433,7 @@ func (x *DeleteExploredEndpointResponse) String() string { func (*DeleteExploredEndpointResponse) ProtoMessage() {} func (x *DeleteExploredEndpointResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[285] + mi := &file_nico_nico_proto_msgTypes[287] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24298,7 +24446,7 @@ func (x *DeleteExploredEndpointResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteExploredEndpointResponse.ProtoReflect.Descriptor instead. func (*DeleteExploredEndpointResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{285} + return file_nico_nico_proto_rawDescGZIP(), []int{287} } func (x *DeleteExploredEndpointResponse) GetDeleted() bool { @@ -24327,7 +24475,7 @@ type BmcEndpointRequest struct { func (x *BmcEndpointRequest) Reset() { *x = BmcEndpointRequest{} - mi := &file_nico_nico_proto_msgTypes[286] + mi := &file_nico_nico_proto_msgTypes[288] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24339,7 +24487,7 @@ func (x *BmcEndpointRequest) String() string { func (*BmcEndpointRequest) ProtoMessage() {} func (x *BmcEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[286] + mi := &file_nico_nico_proto_msgTypes[288] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24352,7 +24500,7 @@ func (x *BmcEndpointRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BmcEndpointRequest.ProtoReflect.Descriptor instead. func (*BmcEndpointRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{286} + return file_nico_nico_proto_rawDescGZIP(), []int{288} } func (x *BmcEndpointRequest) GetIpAddress() string { @@ -24385,7 +24533,7 @@ type SshTimeoutConfig struct { func (x *SshTimeoutConfig) Reset() { *x = SshTimeoutConfig{} - mi := &file_nico_nico_proto_msgTypes[287] + mi := &file_nico_nico_proto_msgTypes[289] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24397,7 +24545,7 @@ func (x *SshTimeoutConfig) String() string { func (*SshTimeoutConfig) ProtoMessage() {} func (x *SshTimeoutConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[287] + mi := &file_nico_nico_proto_msgTypes[289] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24410,7 +24558,7 @@ func (x *SshTimeoutConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use SshTimeoutConfig.ProtoReflect.Descriptor instead. func (*SshTimeoutConfig) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{287} + return file_nico_nico_proto_rawDescGZIP(), []int{289} } func (x *SshTimeoutConfig) GetTcpConnectionTimeout() uint64 { @@ -24451,7 +24599,7 @@ type SshRequest struct { func (x *SshRequest) Reset() { *x = SshRequest{} - mi := &file_nico_nico_proto_msgTypes[288] + mi := &file_nico_nico_proto_msgTypes[290] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24463,7 +24611,7 @@ func (x *SshRequest) String() string { func (*SshRequest) ProtoMessage() {} func (x *SshRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[288] + mi := &file_nico_nico_proto_msgTypes[290] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24476,7 +24624,7 @@ func (x *SshRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SshRequest.ProtoReflect.Descriptor instead. func (*SshRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{288} + return file_nico_nico_proto_rawDescGZIP(), []int{290} } func (x *SshRequest) GetEndpointRequest() *BmcEndpointRequest { @@ -24501,7 +24649,7 @@ type CopyBfbToDpuRshimRequest struct { func (x *CopyBfbToDpuRshimRequest) Reset() { *x = CopyBfbToDpuRshimRequest{} - mi := &file_nico_nico_proto_msgTypes[289] + mi := &file_nico_nico_proto_msgTypes[291] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24513,7 +24661,7 @@ func (x *CopyBfbToDpuRshimRequest) String() string { func (*CopyBfbToDpuRshimRequest) ProtoMessage() {} func (x *CopyBfbToDpuRshimRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[289] + mi := &file_nico_nico_proto_msgTypes[291] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24526,7 +24674,7 @@ func (x *CopyBfbToDpuRshimRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CopyBfbToDpuRshimRequest.ProtoReflect.Descriptor instead. func (*CopyBfbToDpuRshimRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{289} + return file_nico_nico_proto_rawDescGZIP(), []int{291} } func (x *CopyBfbToDpuRshimRequest) GetSshRequest() *SshRequest { @@ -24563,7 +24711,7 @@ type UpdateMachineHardwareInfoRequest struct { func (x *UpdateMachineHardwareInfoRequest) Reset() { *x = UpdateMachineHardwareInfoRequest{} - mi := &file_nico_nico_proto_msgTypes[290] + mi := &file_nico_nico_proto_msgTypes[292] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24575,7 +24723,7 @@ func (x *UpdateMachineHardwareInfoRequest) String() string { func (*UpdateMachineHardwareInfoRequest) ProtoMessage() {} func (x *UpdateMachineHardwareInfoRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[290] + mi := &file_nico_nico_proto_msgTypes[292] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24588,7 +24736,7 @@ func (x *UpdateMachineHardwareInfoRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateMachineHardwareInfoRequest.ProtoReflect.Descriptor instead. func (*UpdateMachineHardwareInfoRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{290} + return file_nico_nico_proto_rawDescGZIP(), []int{292} } func (x *UpdateMachineHardwareInfoRequest) GetMachineId() *MachineId { @@ -24621,7 +24769,7 @@ type MachineHardwareInfo struct { func (x *MachineHardwareInfo) Reset() { *x = MachineHardwareInfo{} - mi := &file_nico_nico_proto_msgTypes[291] + mi := &file_nico_nico_proto_msgTypes[293] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24633,7 +24781,7 @@ func (x *MachineHardwareInfo) String() string { func (*MachineHardwareInfo) ProtoMessage() {} func (x *MachineHardwareInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[291] + mi := &file_nico_nico_proto_msgTypes[293] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24646,7 +24794,7 @@ func (x *MachineHardwareInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineHardwareInfo.ProtoReflect.Descriptor instead. func (*MachineHardwareInfo) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{291} + return file_nico_nico_proto_rawDescGZIP(), []int{293} } func (x *MachineHardwareInfo) GetGpus() []*Gpu { @@ -24665,7 +24813,7 @@ type ManagedHostNetworkConfigRequest struct { func (x *ManagedHostNetworkConfigRequest) Reset() { *x = ManagedHostNetworkConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[292] + mi := &file_nico_nico_proto_msgTypes[294] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24677,7 +24825,7 @@ func (x *ManagedHostNetworkConfigRequest) String() string { func (*ManagedHostNetworkConfigRequest) ProtoMessage() {} func (x *ManagedHostNetworkConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[292] + mi := &file_nico_nico_proto_msgTypes[294] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24690,7 +24838,7 @@ func (x *ManagedHostNetworkConfigRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedHostNetworkConfigRequest.ProtoReflect.Descriptor instead. func (*ManagedHostNetworkConfigRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{292} + return file_nico_nico_proto_rawDescGZIP(), []int{294} } func (x *ManagedHostNetworkConfigRequest) GetDpuMachineId() *MachineId { @@ -24825,7 +24973,7 @@ type ManagedHostNetworkConfigResponse struct { func (x *ManagedHostNetworkConfigResponse) Reset() { *x = ManagedHostNetworkConfigResponse{} - mi := &file_nico_nico_proto_msgTypes[293] + mi := &file_nico_nico_proto_msgTypes[295] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24837,7 +24985,7 @@ func (x *ManagedHostNetworkConfigResponse) String() string { func (*ManagedHostNetworkConfigResponse) ProtoMessage() {} func (x *ManagedHostNetworkConfigResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[293] + mi := &file_nico_nico_proto_msgTypes[295] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24850,7 +24998,7 @@ func (x *ManagedHostNetworkConfigResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedHostNetworkConfigResponse.ProtoReflect.Descriptor instead. func (*ManagedHostNetworkConfigResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{293} + return file_nico_nico_proto_rawDescGZIP(), []int{295} } func (x *ManagedHostNetworkConfigResponse) GetAsn() uint32 { @@ -25155,7 +25303,7 @@ type TrafficInterceptConfig struct { func (x *TrafficInterceptConfig) Reset() { *x = TrafficInterceptConfig{} - mi := &file_nico_nico_proto_msgTypes[294] + mi := &file_nico_nico_proto_msgTypes[296] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25167,7 +25315,7 @@ func (x *TrafficInterceptConfig) String() string { func (*TrafficInterceptConfig) ProtoMessage() {} func (x *TrafficInterceptConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[294] + mi := &file_nico_nico_proto_msgTypes[296] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25180,7 +25328,7 @@ func (x *TrafficInterceptConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use TrafficInterceptConfig.ProtoReflect.Descriptor instead. func (*TrafficInterceptConfig) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{294} + return file_nico_nico_proto_rawDescGZIP(), []int{296} } func (x *TrafficInterceptConfig) GetAdditionalOverlayVtepIp() string { @@ -25237,7 +25385,7 @@ type TrafficInterceptBridging struct { func (x *TrafficInterceptBridging) Reset() { *x = TrafficInterceptBridging{} - mi := &file_nico_nico_proto_msgTypes[295] + mi := &file_nico_nico_proto_msgTypes[297] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25249,7 +25397,7 @@ func (x *TrafficInterceptBridging) String() string { func (*TrafficInterceptBridging) ProtoMessage() {} func (x *TrafficInterceptBridging) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[295] + mi := &file_nico_nico_proto_msgTypes[297] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25262,7 +25410,7 @@ func (x *TrafficInterceptBridging) ProtoReflect() protoreflect.Message { // Deprecated: Use TrafficInterceptBridging.ProtoReflect.Descriptor instead. func (*TrafficInterceptBridging) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{295} + return file_nico_nico_proto_rawDescGZIP(), []int{297} } func (x *TrafficInterceptBridging) GetInternalBridgeRoutingPrefix() string { @@ -25323,7 +25471,7 @@ type ManagedHostDpuExtensionServiceConfig struct { func (x *ManagedHostDpuExtensionServiceConfig) Reset() { *x = ManagedHostDpuExtensionServiceConfig{} - mi := &file_nico_nico_proto_msgTypes[296] + mi := &file_nico_nico_proto_msgTypes[298] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25335,7 +25483,7 @@ func (x *ManagedHostDpuExtensionServiceConfig) String() string { func (*ManagedHostDpuExtensionServiceConfig) ProtoMessage() {} func (x *ManagedHostDpuExtensionServiceConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[296] + mi := &file_nico_nico_proto_msgTypes[298] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25348,7 +25496,7 @@ func (x *ManagedHostDpuExtensionServiceConfig) ProtoReflect() protoreflect.Messa // Deprecated: Use ManagedHostDpuExtensionServiceConfig.ProtoReflect.Descriptor instead. func (*ManagedHostDpuExtensionServiceConfig) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{296} + return file_nico_nico_proto_rawDescGZIP(), []int{298} } func (x *ManagedHostDpuExtensionServiceConfig) GetServiceId() string { @@ -25417,7 +25565,7 @@ type ManagedHostQuarantineState struct { func (x *ManagedHostQuarantineState) Reset() { *x = ManagedHostQuarantineState{} - mi := &file_nico_nico_proto_msgTypes[297] + mi := &file_nico_nico_proto_msgTypes[299] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25429,7 +25577,7 @@ func (x *ManagedHostQuarantineState) String() string { func (*ManagedHostQuarantineState) ProtoMessage() {} func (x *ManagedHostQuarantineState) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[297] + mi := &file_nico_nico_proto_msgTypes[299] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25442,7 +25590,7 @@ func (x *ManagedHostQuarantineState) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedHostQuarantineState.ProtoReflect.Descriptor instead. func (*ManagedHostQuarantineState) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{297} + return file_nico_nico_proto_rawDescGZIP(), []int{299} } func (x *ManagedHostQuarantineState) GetMode() ManagedHostQuarantineMode { @@ -25468,7 +25616,7 @@ type GetManagedHostQuarantineStateRequest struct { func (x *GetManagedHostQuarantineStateRequest) Reset() { *x = GetManagedHostQuarantineStateRequest{} - mi := &file_nico_nico_proto_msgTypes[298] + mi := &file_nico_nico_proto_msgTypes[300] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25480,7 +25628,7 @@ func (x *GetManagedHostQuarantineStateRequest) String() string { func (*GetManagedHostQuarantineStateRequest) ProtoMessage() {} func (x *GetManagedHostQuarantineStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[298] + mi := &file_nico_nico_proto_msgTypes[300] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25493,7 +25641,7 @@ func (x *GetManagedHostQuarantineStateRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use GetManagedHostQuarantineStateRequest.ProtoReflect.Descriptor instead. func (*GetManagedHostQuarantineStateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{298} + return file_nico_nico_proto_rawDescGZIP(), []int{300} } func (x *GetManagedHostQuarantineStateRequest) GetMachineId() *MachineId { @@ -25512,7 +25660,7 @@ type GetManagedHostQuarantineStateResponse struct { func (x *GetManagedHostQuarantineStateResponse) Reset() { *x = GetManagedHostQuarantineStateResponse{} - mi := &file_nico_nico_proto_msgTypes[299] + mi := &file_nico_nico_proto_msgTypes[301] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25524,7 +25672,7 @@ func (x *GetManagedHostQuarantineStateResponse) String() string { func (*GetManagedHostQuarantineStateResponse) ProtoMessage() {} func (x *GetManagedHostQuarantineStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[299] + mi := &file_nico_nico_proto_msgTypes[301] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25537,7 +25685,7 @@ func (x *GetManagedHostQuarantineStateResponse) ProtoReflect() protoreflect.Mess // Deprecated: Use GetManagedHostQuarantineStateResponse.ProtoReflect.Descriptor instead. func (*GetManagedHostQuarantineStateResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{299} + return file_nico_nico_proto_rawDescGZIP(), []int{301} } func (x *GetManagedHostQuarantineStateResponse) GetQuarantineState() *ManagedHostQuarantineState { @@ -25557,7 +25705,7 @@ type SetManagedHostQuarantineStateRequest struct { func (x *SetManagedHostQuarantineStateRequest) Reset() { *x = SetManagedHostQuarantineStateRequest{} - mi := &file_nico_nico_proto_msgTypes[300] + mi := &file_nico_nico_proto_msgTypes[302] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25569,7 +25717,7 @@ func (x *SetManagedHostQuarantineStateRequest) String() string { func (*SetManagedHostQuarantineStateRequest) ProtoMessage() {} func (x *SetManagedHostQuarantineStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[300] + mi := &file_nico_nico_proto_msgTypes[302] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25582,7 +25730,7 @@ func (x *SetManagedHostQuarantineStateRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use SetManagedHostQuarantineStateRequest.ProtoReflect.Descriptor instead. func (*SetManagedHostQuarantineStateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{300} + return file_nico_nico_proto_rawDescGZIP(), []int{302} } func (x *SetManagedHostQuarantineStateRequest) GetMachineId() *MachineId { @@ -25608,7 +25756,7 @@ type SetManagedHostQuarantineStateResponse struct { func (x *SetManagedHostQuarantineStateResponse) Reset() { *x = SetManagedHostQuarantineStateResponse{} - mi := &file_nico_nico_proto_msgTypes[301] + mi := &file_nico_nico_proto_msgTypes[303] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25620,7 +25768,7 @@ func (x *SetManagedHostQuarantineStateResponse) String() string { func (*SetManagedHostQuarantineStateResponse) ProtoMessage() {} func (x *SetManagedHostQuarantineStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[301] + mi := &file_nico_nico_proto_msgTypes[303] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25633,7 +25781,7 @@ func (x *SetManagedHostQuarantineStateResponse) ProtoReflect() protoreflect.Mess // Deprecated: Use SetManagedHostQuarantineStateResponse.ProtoReflect.Descriptor instead. func (*SetManagedHostQuarantineStateResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{301} + return file_nico_nico_proto_rawDescGZIP(), []int{303} } func (x *SetManagedHostQuarantineStateResponse) GetPriorQuarantineState() *ManagedHostQuarantineState { @@ -25652,7 +25800,7 @@ type ClearManagedHostQuarantineStateRequest struct { func (x *ClearManagedHostQuarantineStateRequest) Reset() { *x = ClearManagedHostQuarantineStateRequest{} - mi := &file_nico_nico_proto_msgTypes[302] + mi := &file_nico_nico_proto_msgTypes[304] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25664,7 +25812,7 @@ func (x *ClearManagedHostQuarantineStateRequest) String() string { func (*ClearManagedHostQuarantineStateRequest) ProtoMessage() {} func (x *ClearManagedHostQuarantineStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[302] + mi := &file_nico_nico_proto_msgTypes[304] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25677,7 +25825,7 @@ func (x *ClearManagedHostQuarantineStateRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use ClearManagedHostQuarantineStateRequest.ProtoReflect.Descriptor instead. func (*ClearManagedHostQuarantineStateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{302} + return file_nico_nico_proto_rawDescGZIP(), []int{304} } func (x *ClearManagedHostQuarantineStateRequest) GetMachineId() *MachineId { @@ -25696,7 +25844,7 @@ type ClearManagedHostQuarantineStateResponse struct { func (x *ClearManagedHostQuarantineStateResponse) Reset() { *x = ClearManagedHostQuarantineStateResponse{} - mi := &file_nico_nico_proto_msgTypes[303] + mi := &file_nico_nico_proto_msgTypes[305] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25708,7 +25856,7 @@ func (x *ClearManagedHostQuarantineStateResponse) String() string { func (*ClearManagedHostQuarantineStateResponse) ProtoMessage() {} func (x *ClearManagedHostQuarantineStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[303] + mi := &file_nico_nico_proto_msgTypes[305] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25721,7 +25869,7 @@ func (x *ClearManagedHostQuarantineStateResponse) ProtoReflect() protoreflect.Me // Deprecated: Use ClearManagedHostQuarantineStateResponse.ProtoReflect.Descriptor instead. func (*ClearManagedHostQuarantineStateResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{303} + return file_nico_nico_proto_rawDescGZIP(), []int{305} } func (x *ClearManagedHostQuarantineStateResponse) GetPriorQuarantineState() *ManagedHostQuarantineState { @@ -25743,7 +25891,7 @@ type ManagedHostNetworkConfig struct { func (x *ManagedHostNetworkConfig) Reset() { *x = ManagedHostNetworkConfig{} - mi := &file_nico_nico_proto_msgTypes[304] + mi := &file_nico_nico_proto_msgTypes[306] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25755,7 +25903,7 @@ func (x *ManagedHostNetworkConfig) String() string { func (*ManagedHostNetworkConfig) ProtoMessage() {} func (x *ManagedHostNetworkConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[304] + mi := &file_nico_nico_proto_msgTypes[306] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25768,7 +25916,7 @@ func (x *ManagedHostNetworkConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedHostNetworkConfig.ProtoReflect.Descriptor instead. func (*ManagedHostNetworkConfig) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{304} + return file_nico_nico_proto_rawDescGZIP(), []int{306} } func (x *ManagedHostNetworkConfig) GetLoopbackIp() string { @@ -25884,7 +26032,7 @@ type FlatInterfaceConfig struct { func (x *FlatInterfaceConfig) Reset() { *x = FlatInterfaceConfig{} - mi := &file_nico_nico_proto_msgTypes[305] + mi := &file_nico_nico_proto_msgTypes[307] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25896,7 +26044,7 @@ func (x *FlatInterfaceConfig) String() string { func (*FlatInterfaceConfig) ProtoMessage() {} func (x *FlatInterfaceConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[305] + mi := &file_nico_nico_proto_msgTypes[307] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25909,7 +26057,7 @@ func (x *FlatInterfaceConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use FlatInterfaceConfig.ProtoReflect.Descriptor instead. func (*FlatInterfaceConfig) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{305} + return file_nico_nico_proto_rawDescGZIP(), []int{307} } func (x *FlatInterfaceConfig) GetFunctionType() InterfaceFunctionType { @@ -26082,7 +26230,7 @@ type FlatInterfaceRoutingProfile struct { func (x *FlatInterfaceRoutingProfile) Reset() { *x = FlatInterfaceRoutingProfile{} - mi := &file_nico_nico_proto_msgTypes[306] + mi := &file_nico_nico_proto_msgTypes[308] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26094,7 +26242,7 @@ func (x *FlatInterfaceRoutingProfile) String() string { func (*FlatInterfaceRoutingProfile) ProtoMessage() {} func (x *FlatInterfaceRoutingProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[306] + mi := &file_nico_nico_proto_msgTypes[308] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26107,7 +26255,7 @@ func (x *FlatInterfaceRoutingProfile) ProtoReflect() protoreflect.Message { // Deprecated: Use FlatInterfaceRoutingProfile.ProtoReflect.Descriptor instead. func (*FlatInterfaceRoutingProfile) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{306} + return file_nico_nico_proto_rawDescGZIP(), []int{308} } func (x *FlatInterfaceRoutingProfile) GetAllowedAnycastPrefixes() []*PrefixFilterPolicyEntry { @@ -26134,7 +26282,7 @@ type FlatInterfaceIpv6Config struct { func (x *FlatInterfaceIpv6Config) Reset() { *x = FlatInterfaceIpv6Config{} - mi := &file_nico_nico_proto_msgTypes[307] + mi := &file_nico_nico_proto_msgTypes[309] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26146,7 +26294,7 @@ func (x *FlatInterfaceIpv6Config) String() string { func (*FlatInterfaceIpv6Config) ProtoMessage() {} func (x *FlatInterfaceIpv6Config) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[307] + mi := &file_nico_nico_proto_msgTypes[309] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26159,7 +26307,7 @@ func (x *FlatInterfaceIpv6Config) ProtoReflect() protoreflect.Message { // Deprecated: Use FlatInterfaceIpv6Config.ProtoReflect.Descriptor instead. func (*FlatInterfaceIpv6Config) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{307} + return file_nico_nico_proto_rawDescGZIP(), []int{309} } func (x *FlatInterfaceIpv6Config) GetIp() string { @@ -26196,7 +26344,7 @@ type FlatInterfaceNetworkSecurityGroupConfig struct { func (x *FlatInterfaceNetworkSecurityGroupConfig) Reset() { *x = FlatInterfaceNetworkSecurityGroupConfig{} - mi := &file_nico_nico_proto_msgTypes[308] + mi := &file_nico_nico_proto_msgTypes[310] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26208,7 +26356,7 @@ func (x *FlatInterfaceNetworkSecurityGroupConfig) String() string { func (*FlatInterfaceNetworkSecurityGroupConfig) ProtoMessage() {} func (x *FlatInterfaceNetworkSecurityGroupConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[308] + mi := &file_nico_nico_proto_msgTypes[310] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26221,7 +26369,7 @@ func (x *FlatInterfaceNetworkSecurityGroupConfig) ProtoReflect() protoreflect.Me // Deprecated: Use FlatInterfaceNetworkSecurityGroupConfig.ProtoReflect.Descriptor instead. func (*FlatInterfaceNetworkSecurityGroupConfig) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{308} + return file_nico_nico_proto_rawDescGZIP(), []int{310} } func (x *FlatInterfaceNetworkSecurityGroupConfig) GetId() string { @@ -26267,7 +26415,7 @@ type ManagedHostNetworkStatusRequest struct { func (x *ManagedHostNetworkStatusRequest) Reset() { *x = ManagedHostNetworkStatusRequest{} - mi := &file_nico_nico_proto_msgTypes[309] + mi := &file_nico_nico_proto_msgTypes[311] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26279,7 +26427,7 @@ func (x *ManagedHostNetworkStatusRequest) String() string { func (*ManagedHostNetworkStatusRequest) ProtoMessage() {} func (x *ManagedHostNetworkStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[309] + mi := &file_nico_nico_proto_msgTypes[311] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26292,7 +26440,7 @@ func (x *ManagedHostNetworkStatusRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedHostNetworkStatusRequest.ProtoReflect.Descriptor instead. func (*ManagedHostNetworkStatusRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{309} + return file_nico_nico_proto_rawDescGZIP(), []int{311} } type ManagedHostNetworkStatusResponse struct { @@ -26304,7 +26452,7 @@ type ManagedHostNetworkStatusResponse struct { func (x *ManagedHostNetworkStatusResponse) Reset() { *x = ManagedHostNetworkStatusResponse{} - mi := &file_nico_nico_proto_msgTypes[310] + mi := &file_nico_nico_proto_msgTypes[312] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26316,7 +26464,7 @@ func (x *ManagedHostNetworkStatusResponse) String() string { func (*ManagedHostNetworkStatusResponse) ProtoMessage() {} func (x *ManagedHostNetworkStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[310] + mi := &file_nico_nico_proto_msgTypes[312] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26329,7 +26477,7 @@ func (x *ManagedHostNetworkStatusResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedHostNetworkStatusResponse.ProtoReflect.Descriptor instead. func (*ManagedHostNetworkStatusResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{310} + return file_nico_nico_proto_rawDescGZIP(), []int{312} } func (x *ManagedHostNetworkStatusResponse) GetAll() []*DpuNetworkStatus { @@ -26351,7 +26499,7 @@ type DpuAgentUpgradeCheckRequest struct { func (x *DpuAgentUpgradeCheckRequest) Reset() { *x = DpuAgentUpgradeCheckRequest{} - mi := &file_nico_nico_proto_msgTypes[311] + mi := &file_nico_nico_proto_msgTypes[313] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26363,7 +26511,7 @@ func (x *DpuAgentUpgradeCheckRequest) String() string { func (*DpuAgentUpgradeCheckRequest) ProtoMessage() {} func (x *DpuAgentUpgradeCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[311] + mi := &file_nico_nico_proto_msgTypes[313] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26376,7 +26524,7 @@ func (x *DpuAgentUpgradeCheckRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuAgentUpgradeCheckRequest.ProtoReflect.Descriptor instead. func (*DpuAgentUpgradeCheckRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{311} + return file_nico_nico_proto_rawDescGZIP(), []int{313} } func (x *DpuAgentUpgradeCheckRequest) GetMachineId() string { @@ -26418,7 +26566,7 @@ type DpuAgentUpgradeCheckResponse struct { func (x *DpuAgentUpgradeCheckResponse) Reset() { *x = DpuAgentUpgradeCheckResponse{} - mi := &file_nico_nico_proto_msgTypes[312] + mi := &file_nico_nico_proto_msgTypes[314] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26430,7 +26578,7 @@ func (x *DpuAgentUpgradeCheckResponse) String() string { func (*DpuAgentUpgradeCheckResponse) ProtoMessage() {} func (x *DpuAgentUpgradeCheckResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[312] + mi := &file_nico_nico_proto_msgTypes[314] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26443,7 +26591,7 @@ func (x *DpuAgentUpgradeCheckResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuAgentUpgradeCheckResponse.ProtoReflect.Descriptor instead. func (*DpuAgentUpgradeCheckResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{312} + return file_nico_nico_proto_rawDescGZIP(), []int{314} } func (x *DpuAgentUpgradeCheckResponse) GetShouldUpgrade() bool { @@ -26476,7 +26624,7 @@ type DpuAgentUpgradePolicyRequest struct { func (x *DpuAgentUpgradePolicyRequest) Reset() { *x = DpuAgentUpgradePolicyRequest{} - mi := &file_nico_nico_proto_msgTypes[313] + mi := &file_nico_nico_proto_msgTypes[315] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26488,7 +26636,7 @@ func (x *DpuAgentUpgradePolicyRequest) String() string { func (*DpuAgentUpgradePolicyRequest) ProtoMessage() {} func (x *DpuAgentUpgradePolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[313] + mi := &file_nico_nico_proto_msgTypes[315] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26501,7 +26649,7 @@ func (x *DpuAgentUpgradePolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuAgentUpgradePolicyRequest.ProtoReflect.Descriptor instead. func (*DpuAgentUpgradePolicyRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{313} + return file_nico_nico_proto_rawDescGZIP(), []int{315} } func (x *DpuAgentUpgradePolicyRequest) GetNewPolicy() AgentUpgradePolicy { @@ -26523,7 +26671,7 @@ type DpuAgentUpgradePolicyResponse struct { func (x *DpuAgentUpgradePolicyResponse) Reset() { *x = DpuAgentUpgradePolicyResponse{} - mi := &file_nico_nico_proto_msgTypes[314] + mi := &file_nico_nico_proto_msgTypes[316] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26535,7 +26683,7 @@ func (x *DpuAgentUpgradePolicyResponse) String() string { func (*DpuAgentUpgradePolicyResponse) ProtoMessage() {} func (x *DpuAgentUpgradePolicyResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[314] + mi := &file_nico_nico_proto_msgTypes[316] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26548,7 +26696,7 @@ func (x *DpuAgentUpgradePolicyResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuAgentUpgradePolicyResponse.ProtoReflect.Descriptor instead. func (*DpuAgentUpgradePolicyResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{314} + return file_nico_nico_proto_rawDescGZIP(), []int{316} } func (x *DpuAgentUpgradePolicyResponse) GetActivePolicy() AgentUpgradePolicy { @@ -26585,7 +26733,7 @@ type AdminForceDeleteMachineRequest struct { func (x *AdminForceDeleteMachineRequest) Reset() { *x = AdminForceDeleteMachineRequest{} - mi := &file_nico_nico_proto_msgTypes[315] + mi := &file_nico_nico_proto_msgTypes[317] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26597,7 +26745,7 @@ func (x *AdminForceDeleteMachineRequest) String() string { func (*AdminForceDeleteMachineRequest) ProtoMessage() {} func (x *AdminForceDeleteMachineRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[315] + mi := &file_nico_nico_proto_msgTypes[317] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26610,7 +26758,7 @@ func (x *AdminForceDeleteMachineRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminForceDeleteMachineRequest.ProtoReflect.Descriptor instead. func (*AdminForceDeleteMachineRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{315} + return file_nico_nico_proto_rawDescGZIP(), []int{317} } func (x *AdminForceDeleteMachineRequest) GetHostQuery() string { @@ -26687,7 +26835,7 @@ type AdminForceDeleteMachineResponse struct { func (x *AdminForceDeleteMachineResponse) Reset() { *x = AdminForceDeleteMachineResponse{} - mi := &file_nico_nico_proto_msgTypes[316] + mi := &file_nico_nico_proto_msgTypes[318] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26699,7 +26847,7 @@ func (x *AdminForceDeleteMachineResponse) String() string { func (*AdminForceDeleteMachineResponse) ProtoMessage() {} func (x *AdminForceDeleteMachineResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[316] + mi := &file_nico_nico_proto_msgTypes[318] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26712,7 +26860,7 @@ func (x *AdminForceDeleteMachineResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminForceDeleteMachineResponse.ProtoReflect.Descriptor instead. func (*AdminForceDeleteMachineResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{316} + return file_nico_nico_proto_rawDescGZIP(), []int{318} } func (x *AdminForceDeleteMachineResponse) GetAllDone() bool { @@ -26863,7 +27011,7 @@ type DisableSecureBootResponse struct { func (x *DisableSecureBootResponse) Reset() { *x = DisableSecureBootResponse{} - mi := &file_nico_nico_proto_msgTypes[317] + mi := &file_nico_nico_proto_msgTypes[319] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26875,7 +27023,7 @@ func (x *DisableSecureBootResponse) String() string { func (*DisableSecureBootResponse) ProtoMessage() {} func (x *DisableSecureBootResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[317] + mi := &file_nico_nico_proto_msgTypes[319] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26888,7 +27036,7 @@ func (x *DisableSecureBootResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DisableSecureBootResponse.ProtoReflect.Descriptor instead. func (*DisableSecureBootResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{317} + return file_nico_nico_proto_rawDescGZIP(), []int{319} } type LockdownRequest struct { @@ -26902,7 +27050,7 @@ type LockdownRequest struct { func (x *LockdownRequest) Reset() { *x = LockdownRequest{} - mi := &file_nico_nico_proto_msgTypes[318] + mi := &file_nico_nico_proto_msgTypes[320] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26914,7 +27062,7 @@ func (x *LockdownRequest) String() string { func (*LockdownRequest) ProtoMessage() {} func (x *LockdownRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[318] + mi := &file_nico_nico_proto_msgTypes[320] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26927,7 +27075,7 @@ func (x *LockdownRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use LockdownRequest.ProtoReflect.Descriptor instead. func (*LockdownRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{318} + return file_nico_nico_proto_rawDescGZIP(), []int{320} } func (x *LockdownRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -26959,7 +27107,7 @@ type LockdownResponse struct { func (x *LockdownResponse) Reset() { *x = LockdownResponse{} - mi := &file_nico_nico_proto_msgTypes[319] + mi := &file_nico_nico_proto_msgTypes[321] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26971,7 +27119,7 @@ func (x *LockdownResponse) String() string { func (*LockdownResponse) ProtoMessage() {} func (x *LockdownResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[319] + mi := &file_nico_nico_proto_msgTypes[321] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26984,7 +27132,7 @@ func (x *LockdownResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use LockdownResponse.ProtoReflect.Descriptor instead. func (*LockdownResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{319} + return file_nico_nico_proto_rawDescGZIP(), []int{321} } type LockdownStatusRequest struct { @@ -26997,7 +27145,7 @@ type LockdownStatusRequest struct { func (x *LockdownStatusRequest) Reset() { *x = LockdownStatusRequest{} - mi := &file_nico_nico_proto_msgTypes[320] + mi := &file_nico_nico_proto_msgTypes[322] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27009,7 +27157,7 @@ func (x *LockdownStatusRequest) String() string { func (*LockdownStatusRequest) ProtoMessage() {} func (x *LockdownStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[320] + mi := &file_nico_nico_proto_msgTypes[322] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27022,7 +27170,7 @@ func (x *LockdownStatusRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use LockdownStatusRequest.ProtoReflect.Descriptor instead. func (*LockdownStatusRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{320} + return file_nico_nico_proto_rawDescGZIP(), []int{322} } func (x *LockdownStatusRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -27049,7 +27197,7 @@ type MachineSetupStatusRequest struct { func (x *MachineSetupStatusRequest) Reset() { *x = MachineSetupStatusRequest{} - mi := &file_nico_nico_proto_msgTypes[321] + mi := &file_nico_nico_proto_msgTypes[323] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27061,7 +27209,7 @@ func (x *MachineSetupStatusRequest) String() string { func (*MachineSetupStatusRequest) ProtoMessage() {} func (x *MachineSetupStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[321] + mi := &file_nico_nico_proto_msgTypes[323] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27074,7 +27222,7 @@ func (x *MachineSetupStatusRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineSetupStatusRequest.ProtoReflect.Descriptor instead. func (*MachineSetupStatusRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{321} + return file_nico_nico_proto_rawDescGZIP(), []int{323} } func (x *MachineSetupStatusRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -27102,7 +27250,7 @@ type MachineSetupRequest struct { func (x *MachineSetupRequest) Reset() { *x = MachineSetupRequest{} - mi := &file_nico_nico_proto_msgTypes[322] + mi := &file_nico_nico_proto_msgTypes[324] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27114,7 +27262,7 @@ func (x *MachineSetupRequest) String() string { func (*MachineSetupRequest) ProtoMessage() {} func (x *MachineSetupRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[322] + mi := &file_nico_nico_proto_msgTypes[324] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27127,7 +27275,7 @@ func (x *MachineSetupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineSetupRequest.ProtoReflect.Descriptor instead. func (*MachineSetupRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{322} + return file_nico_nico_proto_rawDescGZIP(), []int{324} } func (x *MachineSetupRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -27159,7 +27307,7 @@ type MachineSetupResponse struct { func (x *MachineSetupResponse) Reset() { *x = MachineSetupResponse{} - mi := &file_nico_nico_proto_msgTypes[323] + mi := &file_nico_nico_proto_msgTypes[325] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27171,7 +27319,7 @@ func (x *MachineSetupResponse) String() string { func (*MachineSetupResponse) ProtoMessage() {} func (x *MachineSetupResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[323] + mi := &file_nico_nico_proto_msgTypes[325] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27184,7 +27332,7 @@ func (x *MachineSetupResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineSetupResponse.ProtoReflect.Descriptor instead. func (*MachineSetupResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{323} + return file_nico_nico_proto_rawDescGZIP(), []int{325} } type SetDpuFirstBootOrderRequest struct { @@ -27198,7 +27346,7 @@ type SetDpuFirstBootOrderRequest struct { func (x *SetDpuFirstBootOrderRequest) Reset() { *x = SetDpuFirstBootOrderRequest{} - mi := &file_nico_nico_proto_msgTypes[324] + mi := &file_nico_nico_proto_msgTypes[326] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27210,7 +27358,7 @@ func (x *SetDpuFirstBootOrderRequest) String() string { func (*SetDpuFirstBootOrderRequest) ProtoMessage() {} func (x *SetDpuFirstBootOrderRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[324] + mi := &file_nico_nico_proto_msgTypes[326] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27223,7 +27371,7 @@ func (x *SetDpuFirstBootOrderRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetDpuFirstBootOrderRequest.ProtoReflect.Descriptor instead. func (*SetDpuFirstBootOrderRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{324} + return file_nico_nico_proto_rawDescGZIP(), []int{326} } func (x *SetDpuFirstBootOrderRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -27255,7 +27403,7 @@ type SetDpuFirstBootOrderResponse struct { func (x *SetDpuFirstBootOrderResponse) Reset() { *x = SetDpuFirstBootOrderResponse{} - mi := &file_nico_nico_proto_msgTypes[325] + mi := &file_nico_nico_proto_msgTypes[327] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27267,7 +27415,7 @@ func (x *SetDpuFirstBootOrderResponse) String() string { func (*SetDpuFirstBootOrderResponse) ProtoMessage() {} func (x *SetDpuFirstBootOrderResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[325] + mi := &file_nico_nico_proto_msgTypes[327] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27280,7 +27428,7 @@ func (x *SetDpuFirstBootOrderResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SetDpuFirstBootOrderResponse.ProtoReflect.Descriptor instead. func (*SetDpuFirstBootOrderResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{325} + return file_nico_nico_proto_rawDescGZIP(), []int{327} } // Must provide either machine_id or ip/mac pair @@ -27294,7 +27442,7 @@ type AdminRebootRequest struct { func (x *AdminRebootRequest) Reset() { *x = AdminRebootRequest{} - mi := &file_nico_nico_proto_msgTypes[326] + mi := &file_nico_nico_proto_msgTypes[328] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27306,7 +27454,7 @@ func (x *AdminRebootRequest) String() string { func (*AdminRebootRequest) ProtoMessage() {} func (x *AdminRebootRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[326] + mi := &file_nico_nico_proto_msgTypes[328] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27319,7 +27467,7 @@ func (x *AdminRebootRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminRebootRequest.ProtoReflect.Descriptor instead. func (*AdminRebootRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{326} + return file_nico_nico_proto_rawDescGZIP(), []int{328} } func (x *AdminRebootRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -27344,7 +27492,7 @@ type AdminRebootResponse struct { func (x *AdminRebootResponse) Reset() { *x = AdminRebootResponse{} - mi := &file_nico_nico_proto_msgTypes[327] + mi := &file_nico_nico_proto_msgTypes[329] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27356,7 +27504,7 @@ func (x *AdminRebootResponse) String() string { func (*AdminRebootResponse) ProtoMessage() {} func (x *AdminRebootResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[327] + mi := &file_nico_nico_proto_msgTypes[329] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27369,7 +27517,7 @@ func (x *AdminRebootResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminRebootResponse.ProtoReflect.Descriptor instead. func (*AdminRebootResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{327} + return file_nico_nico_proto_rawDescGZIP(), []int{329} } // Must provide either machine_id or ip/mac pair @@ -27386,7 +27534,7 @@ type AdminBmcResetRequest struct { func (x *AdminBmcResetRequest) Reset() { *x = AdminBmcResetRequest{} - mi := &file_nico_nico_proto_msgTypes[328] + mi := &file_nico_nico_proto_msgTypes[330] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27398,7 +27546,7 @@ func (x *AdminBmcResetRequest) String() string { func (*AdminBmcResetRequest) ProtoMessage() {} func (x *AdminBmcResetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[328] + mi := &file_nico_nico_proto_msgTypes[330] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27411,7 +27559,7 @@ func (x *AdminBmcResetRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminBmcResetRequest.ProtoReflect.Descriptor instead. func (*AdminBmcResetRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{328} + return file_nico_nico_proto_rawDescGZIP(), []int{330} } func (x *AdminBmcResetRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -27443,7 +27591,7 @@ type AdminBmcResetResponse struct { func (x *AdminBmcResetResponse) Reset() { *x = AdminBmcResetResponse{} - mi := &file_nico_nico_proto_msgTypes[329] + mi := &file_nico_nico_proto_msgTypes[331] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27455,7 +27603,7 @@ func (x *AdminBmcResetResponse) String() string { func (*AdminBmcResetResponse) ProtoMessage() {} func (x *AdminBmcResetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[329] + mi := &file_nico_nico_proto_msgTypes[331] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27468,7 +27616,7 @@ func (x *AdminBmcResetResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminBmcResetResponse.ProtoReflect.Descriptor instead. func (*AdminBmcResetResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{329} + return file_nico_nico_proto_rawDescGZIP(), []int{331} } type EnableInfiniteBootRequest struct { @@ -27481,7 +27629,7 @@ type EnableInfiniteBootRequest struct { func (x *EnableInfiniteBootRequest) Reset() { *x = EnableInfiniteBootRequest{} - mi := &file_nico_nico_proto_msgTypes[330] + mi := &file_nico_nico_proto_msgTypes[332] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27493,7 +27641,7 @@ func (x *EnableInfiniteBootRequest) String() string { func (*EnableInfiniteBootRequest) ProtoMessage() {} func (x *EnableInfiniteBootRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[330] + mi := &file_nico_nico_proto_msgTypes[332] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27506,7 +27654,7 @@ func (x *EnableInfiniteBootRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use EnableInfiniteBootRequest.ProtoReflect.Descriptor instead. func (*EnableInfiniteBootRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{330} + return file_nico_nico_proto_rawDescGZIP(), []int{332} } func (x *EnableInfiniteBootRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -27531,7 +27679,7 @@ type EnableInfiniteBootResponse struct { func (x *EnableInfiniteBootResponse) Reset() { *x = EnableInfiniteBootResponse{} - mi := &file_nico_nico_proto_msgTypes[331] + mi := &file_nico_nico_proto_msgTypes[333] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27543,7 +27691,7 @@ func (x *EnableInfiniteBootResponse) String() string { func (*EnableInfiniteBootResponse) ProtoMessage() {} func (x *EnableInfiniteBootResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[331] + mi := &file_nico_nico_proto_msgTypes[333] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27556,7 +27704,7 @@ func (x *EnableInfiniteBootResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use EnableInfiniteBootResponse.ProtoReflect.Descriptor instead. func (*EnableInfiniteBootResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{331} + return file_nico_nico_proto_rawDescGZIP(), []int{333} } type IsInfiniteBootEnabledRequest struct { @@ -27569,7 +27717,7 @@ type IsInfiniteBootEnabledRequest struct { func (x *IsInfiniteBootEnabledRequest) Reset() { *x = IsInfiniteBootEnabledRequest{} - mi := &file_nico_nico_proto_msgTypes[332] + mi := &file_nico_nico_proto_msgTypes[334] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27581,7 +27729,7 @@ func (x *IsInfiniteBootEnabledRequest) String() string { func (*IsInfiniteBootEnabledRequest) ProtoMessage() {} func (x *IsInfiniteBootEnabledRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[332] + mi := &file_nico_nico_proto_msgTypes[334] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27594,7 +27742,7 @@ func (x *IsInfiniteBootEnabledRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use IsInfiniteBootEnabledRequest.ProtoReflect.Descriptor instead. func (*IsInfiniteBootEnabledRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{332} + return file_nico_nico_proto_rawDescGZIP(), []int{334} } func (x *IsInfiniteBootEnabledRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -27620,7 +27768,7 @@ type IsInfiniteBootEnabledResponse struct { func (x *IsInfiniteBootEnabledResponse) Reset() { *x = IsInfiniteBootEnabledResponse{} - mi := &file_nico_nico_proto_msgTypes[333] + mi := &file_nico_nico_proto_msgTypes[335] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27632,7 +27780,7 @@ func (x *IsInfiniteBootEnabledResponse) String() string { func (*IsInfiniteBootEnabledResponse) ProtoMessage() {} func (x *IsInfiniteBootEnabledResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[333] + mi := &file_nico_nico_proto_msgTypes[335] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27645,7 +27793,7 @@ func (x *IsInfiniteBootEnabledResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use IsInfiniteBootEnabledResponse.ProtoReflect.Descriptor instead. func (*IsInfiniteBootEnabledResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{333} + return file_nico_nico_proto_rawDescGZIP(), []int{335} } func (x *IsInfiniteBootEnabledResponse) GetIsEnabled() bool { @@ -27669,7 +27817,7 @@ type BMCMetaDataGetRequest struct { func (x *BMCMetaDataGetRequest) Reset() { *x = BMCMetaDataGetRequest{} - mi := &file_nico_nico_proto_msgTypes[334] + mi := &file_nico_nico_proto_msgTypes[336] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27681,7 +27829,7 @@ func (x *BMCMetaDataGetRequest) String() string { func (*BMCMetaDataGetRequest) ProtoMessage() {} func (x *BMCMetaDataGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[334] + mi := &file_nico_nico_proto_msgTypes[336] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27694,7 +27842,7 @@ func (x *BMCMetaDataGetRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BMCMetaDataGetRequest.ProtoReflect.Descriptor instead. func (*BMCMetaDataGetRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{334} + return file_nico_nico_proto_rawDescGZIP(), []int{336} } func (x *BMCMetaDataGetRequest) GetMachineId() *MachineId { @@ -27741,7 +27889,7 @@ type BMCMetaDataGetResponse struct { func (x *BMCMetaDataGetResponse) Reset() { *x = BMCMetaDataGetResponse{} - mi := &file_nico_nico_proto_msgTypes[335] + mi := &file_nico_nico_proto_msgTypes[337] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27753,7 +27901,7 @@ func (x *BMCMetaDataGetResponse) String() string { func (*BMCMetaDataGetResponse) ProtoMessage() {} func (x *BMCMetaDataGetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[335] + mi := &file_nico_nico_proto_msgTypes[337] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27766,7 +27914,7 @@ func (x *BMCMetaDataGetResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use BMCMetaDataGetResponse.ProtoReflect.Descriptor instead. func (*BMCMetaDataGetResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{335} + return file_nico_nico_proto_rawDescGZIP(), []int{337} } func (x *BMCMetaDataGetResponse) GetIp() string { @@ -27836,7 +27984,7 @@ type MachineCredentialsUpdateRequest struct { func (x *MachineCredentialsUpdateRequest) Reset() { *x = MachineCredentialsUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[336] + mi := &file_nico_nico_proto_msgTypes[338] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27848,7 +27996,7 @@ func (x *MachineCredentialsUpdateRequest) String() string { func (*MachineCredentialsUpdateRequest) ProtoMessage() {} func (x *MachineCredentialsUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[336] + mi := &file_nico_nico_proto_msgTypes[338] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27861,7 +28009,7 @@ func (x *MachineCredentialsUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCredentialsUpdateRequest.ProtoReflect.Descriptor instead. func (*MachineCredentialsUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{336} + return file_nico_nico_proto_rawDescGZIP(), []int{338} } func (x *MachineCredentialsUpdateRequest) GetMachineId() *MachineId { @@ -27893,7 +28041,7 @@ type MachineCredentialsUpdateResponse struct { func (x *MachineCredentialsUpdateResponse) Reset() { *x = MachineCredentialsUpdateResponse{} - mi := &file_nico_nico_proto_msgTypes[337] + mi := &file_nico_nico_proto_msgTypes[339] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27905,7 +28053,7 @@ func (x *MachineCredentialsUpdateResponse) String() string { func (*MachineCredentialsUpdateResponse) ProtoMessage() {} func (x *MachineCredentialsUpdateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[337] + mi := &file_nico_nico_proto_msgTypes[339] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27918,7 +28066,7 @@ func (x *MachineCredentialsUpdateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCredentialsUpdateResponse.ProtoReflect.Descriptor instead. func (*MachineCredentialsUpdateResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{337} + return file_nico_nico_proto_rawDescGZIP(), []int{339} } type ForgeAgentControlRequest struct { @@ -27930,7 +28078,7 @@ type ForgeAgentControlRequest struct { func (x *ForgeAgentControlRequest) Reset() { *x = ForgeAgentControlRequest{} - mi := &file_nico_nico_proto_msgTypes[338] + mi := &file_nico_nico_proto_msgTypes[340] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27942,7 +28090,7 @@ func (x *ForgeAgentControlRequest) String() string { func (*ForgeAgentControlRequest) ProtoMessage() {} func (x *ForgeAgentControlRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[338] + mi := &file_nico_nico_proto_msgTypes[340] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27955,7 +28103,7 @@ func (x *ForgeAgentControlRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ForgeAgentControlRequest.ProtoReflect.Descriptor instead. func (*ForgeAgentControlRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{338} + return file_nico_nico_proto_rawDescGZIP(), []int{340} } func (x *ForgeAgentControlRequest) GetMachineId() *MachineId { @@ -27988,7 +28136,7 @@ type ForgeAgentControlResponse struct { func (x *ForgeAgentControlResponse) Reset() { *x = ForgeAgentControlResponse{} - mi := &file_nico_nico_proto_msgTypes[339] + mi := &file_nico_nico_proto_msgTypes[341] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28000,7 +28148,7 @@ func (x *ForgeAgentControlResponse) String() string { func (*ForgeAgentControlResponse) ProtoMessage() {} func (x *ForgeAgentControlResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[339] + mi := &file_nico_nico_proto_msgTypes[341] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28013,7 +28161,7 @@ func (x *ForgeAgentControlResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ForgeAgentControlResponse.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339} + return file_nico_nico_proto_rawDescGZIP(), []int{341} } func (x *ForgeAgentControlResponse) GetLegacyAction() ForgeAgentControlResponse_LegacyAction { @@ -28207,7 +28355,7 @@ type MachineDiscoveryInfo struct { func (x *MachineDiscoveryInfo) Reset() { *x = MachineDiscoveryInfo{} - mi := &file_nico_nico_proto_msgTypes[340] + mi := &file_nico_nico_proto_msgTypes[342] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28219,7 +28367,7 @@ func (x *MachineDiscoveryInfo) String() string { func (*MachineDiscoveryInfo) ProtoMessage() {} func (x *MachineDiscoveryInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[340] + mi := &file_nico_nico_proto_msgTypes[342] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28232,7 +28380,7 @@ func (x *MachineDiscoveryInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineDiscoveryInfo.ProtoReflect.Descriptor instead. func (*MachineDiscoveryInfo) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{340} + return file_nico_nico_proto_rawDescGZIP(), []int{342} } func (x *MachineDiscoveryInfo) GetMachineInterfaceId() *MachineInterfaceId { @@ -28298,7 +28446,7 @@ type MachineDiscoveryCompletedRequest struct { func (x *MachineDiscoveryCompletedRequest) Reset() { *x = MachineDiscoveryCompletedRequest{} - mi := &file_nico_nico_proto_msgTypes[341] + mi := &file_nico_nico_proto_msgTypes[343] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28310,7 +28458,7 @@ func (x *MachineDiscoveryCompletedRequest) String() string { func (*MachineDiscoveryCompletedRequest) ProtoMessage() {} func (x *MachineDiscoveryCompletedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[341] + mi := &file_nico_nico_proto_msgTypes[343] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28323,7 +28471,7 @@ func (x *MachineDiscoveryCompletedRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineDiscoveryCompletedRequest.ProtoReflect.Descriptor instead. func (*MachineDiscoveryCompletedRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{341} + return file_nico_nico_proto_rawDescGZIP(), []int{343} } func (x *MachineDiscoveryCompletedRequest) GetMachineId() *MachineId { @@ -28353,7 +28501,7 @@ type MachineCleanupInfo struct { func (x *MachineCleanupInfo) Reset() { *x = MachineCleanupInfo{} - mi := &file_nico_nico_proto_msgTypes[342] + mi := &file_nico_nico_proto_msgTypes[344] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28365,7 +28513,7 @@ func (x *MachineCleanupInfo) String() string { func (*MachineCleanupInfo) ProtoMessage() {} func (x *MachineCleanupInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[342] + mi := &file_nico_nico_proto_msgTypes[344] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28378,7 +28526,7 @@ func (x *MachineCleanupInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCleanupInfo.ProtoReflect.Descriptor instead. func (*MachineCleanupInfo) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{342} + return file_nico_nico_proto_rawDescGZIP(), []int{344} } func (x *MachineCleanupInfo) GetMachineId() *MachineId { @@ -28441,7 +28589,7 @@ type MachineCertificate struct { func (x *MachineCertificate) Reset() { *x = MachineCertificate{} - mi := &file_nico_nico_proto_msgTypes[343] + mi := &file_nico_nico_proto_msgTypes[345] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28453,7 +28601,7 @@ func (x *MachineCertificate) String() string { func (*MachineCertificate) ProtoMessage() {} func (x *MachineCertificate) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[343] + mi := &file_nico_nico_proto_msgTypes[345] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28466,7 +28614,7 @@ func (x *MachineCertificate) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCertificate.ProtoReflect.Descriptor instead. func (*MachineCertificate) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{343} + return file_nico_nico_proto_rawDescGZIP(), []int{345} } func (x *MachineCertificate) GetPublicKey() []byte { @@ -28498,7 +28646,7 @@ type MachineCertificateRenewRequest struct { func (x *MachineCertificateRenewRequest) Reset() { *x = MachineCertificateRenewRequest{} - mi := &file_nico_nico_proto_msgTypes[344] + mi := &file_nico_nico_proto_msgTypes[346] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28510,7 +28658,7 @@ func (x *MachineCertificateRenewRequest) String() string { func (*MachineCertificateRenewRequest) ProtoMessage() {} func (x *MachineCertificateRenewRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[344] + mi := &file_nico_nico_proto_msgTypes[346] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28523,7 +28671,7 @@ func (x *MachineCertificateRenewRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCertificateRenewRequest.ProtoReflect.Descriptor instead. func (*MachineCertificateRenewRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{344} + return file_nico_nico_proto_rawDescGZIP(), []int{346} } type MachineCertificateResult struct { @@ -28536,7 +28684,7 @@ type MachineCertificateResult struct { func (x *MachineCertificateResult) Reset() { *x = MachineCertificateResult{} - mi := &file_nico_nico_proto_msgTypes[345] + mi := &file_nico_nico_proto_msgTypes[347] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28548,7 +28696,7 @@ func (x *MachineCertificateResult) String() string { func (*MachineCertificateResult) ProtoMessage() {} func (x *MachineCertificateResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[345] + mi := &file_nico_nico_proto_msgTypes[347] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28561,7 +28709,7 @@ func (x *MachineCertificateResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCertificateResult.ProtoReflect.Descriptor instead. func (*MachineCertificateResult) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{345} + return file_nico_nico_proto_rawDescGZIP(), []int{347} } func (x *MachineCertificateResult) GetMachineCertificate() *MachineCertificate { @@ -28587,7 +28735,7 @@ type MachineDiscoveryResult struct { func (x *MachineDiscoveryResult) Reset() { *x = MachineDiscoveryResult{} - mi := &file_nico_nico_proto_msgTypes[346] + mi := &file_nico_nico_proto_msgTypes[348] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28599,7 +28747,7 @@ func (x *MachineDiscoveryResult) String() string { func (*MachineDiscoveryResult) ProtoMessage() {} func (x *MachineDiscoveryResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[346] + mi := &file_nico_nico_proto_msgTypes[348] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28612,7 +28760,7 @@ func (x *MachineDiscoveryResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineDiscoveryResult.ProtoReflect.Descriptor instead. func (*MachineDiscoveryResult) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{346} + return file_nico_nico_proto_rawDescGZIP(), []int{348} } func (x *MachineDiscoveryResult) GetMachineId() *MachineId { @@ -28651,7 +28799,7 @@ type MachineDiscoveryCompletedResponse struct { func (x *MachineDiscoveryCompletedResponse) Reset() { *x = MachineDiscoveryCompletedResponse{} - mi := &file_nico_nico_proto_msgTypes[347] + mi := &file_nico_nico_proto_msgTypes[349] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28663,7 +28811,7 @@ func (x *MachineDiscoveryCompletedResponse) String() string { func (*MachineDiscoveryCompletedResponse) ProtoMessage() {} func (x *MachineDiscoveryCompletedResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[347] + mi := &file_nico_nico_proto_msgTypes[349] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28676,7 +28824,7 @@ func (x *MachineDiscoveryCompletedResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MachineDiscoveryCompletedResponse.ProtoReflect.Descriptor instead. func (*MachineDiscoveryCompletedResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{347} + return file_nico_nico_proto_rawDescGZIP(), []int{349} } type MachineCleanupResult struct { @@ -28687,7 +28835,7 @@ type MachineCleanupResult struct { func (x *MachineCleanupResult) Reset() { *x = MachineCleanupResult{} - mi := &file_nico_nico_proto_msgTypes[348] + mi := &file_nico_nico_proto_msgTypes[350] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28699,7 +28847,7 @@ func (x *MachineCleanupResult) String() string { func (*MachineCleanupResult) ProtoMessage() {} func (x *MachineCleanupResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[348] + mi := &file_nico_nico_proto_msgTypes[350] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28712,7 +28860,7 @@ func (x *MachineCleanupResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCleanupResult.ProtoReflect.Descriptor instead. func (*MachineCleanupResult) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{348} + return file_nico_nico_proto_rawDescGZIP(), []int{350} } type ForgeScoutErrorReport struct { @@ -28730,7 +28878,7 @@ type ForgeScoutErrorReport struct { func (x *ForgeScoutErrorReport) Reset() { *x = ForgeScoutErrorReport{} - mi := &file_nico_nico_proto_msgTypes[349] + mi := &file_nico_nico_proto_msgTypes[351] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28742,7 +28890,7 @@ func (x *ForgeScoutErrorReport) String() string { func (*ForgeScoutErrorReport) ProtoMessage() {} func (x *ForgeScoutErrorReport) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[349] + mi := &file_nico_nico_proto_msgTypes[351] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28755,7 +28903,7 @@ func (x *ForgeScoutErrorReport) ProtoReflect() protoreflect.Message { // Deprecated: Use ForgeScoutErrorReport.ProtoReflect.Descriptor instead. func (*ForgeScoutErrorReport) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{349} + return file_nico_nico_proto_rawDescGZIP(), []int{351} } func (x *ForgeScoutErrorReport) GetMachineId() *MachineId { @@ -28787,7 +28935,7 @@ type ForgeScoutErrorReportResult struct { func (x *ForgeScoutErrorReportResult) Reset() { *x = ForgeScoutErrorReportResult{} - mi := &file_nico_nico_proto_msgTypes[350] + mi := &file_nico_nico_proto_msgTypes[352] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28799,7 +28947,7 @@ func (x *ForgeScoutErrorReportResult) String() string { func (*ForgeScoutErrorReportResult) ProtoMessage() {} func (x *ForgeScoutErrorReportResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[350] + mi := &file_nico_nico_proto_msgTypes[352] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28812,7 +28960,7 @@ func (x *ForgeScoutErrorReportResult) ProtoReflect() protoreflect.Message { // Deprecated: Use ForgeScoutErrorReportResult.ProtoReflect.Descriptor instead. func (*ForgeScoutErrorReportResult) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{350} + return file_nico_nico_proto_rawDescGZIP(), []int{352} } type PxeInstructionRequest struct { @@ -28836,7 +28984,7 @@ type PxeInstructionRequest struct { func (x *PxeInstructionRequest) Reset() { *x = PxeInstructionRequest{} - mi := &file_nico_nico_proto_msgTypes[351] + mi := &file_nico_nico_proto_msgTypes[353] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28848,7 +28996,7 @@ func (x *PxeInstructionRequest) String() string { func (*PxeInstructionRequest) ProtoMessage() {} func (x *PxeInstructionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[351] + mi := &file_nico_nico_proto_msgTypes[353] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28861,7 +29009,7 @@ func (x *PxeInstructionRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PxeInstructionRequest.ProtoReflect.Descriptor instead. func (*PxeInstructionRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{351} + return file_nico_nico_proto_rawDescGZIP(), []int{353} } func (x *PxeInstructionRequest) GetArch() MachineArchitecture { @@ -28909,7 +29057,7 @@ type PxeInstructions struct { func (x *PxeInstructions) Reset() { *x = PxeInstructions{} - mi := &file_nico_nico_proto_msgTypes[352] + mi := &file_nico_nico_proto_msgTypes[354] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28921,7 +29069,7 @@ func (x *PxeInstructions) String() string { func (*PxeInstructions) ProtoMessage() {} func (x *PxeInstructions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[352] + mi := &file_nico_nico_proto_msgTypes[354] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28934,7 +29082,7 @@ func (x *PxeInstructions) ProtoReflect() protoreflect.Message { // Deprecated: Use PxeInstructions.ProtoReflect.Descriptor instead. func (*PxeInstructions) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{352} + return file_nico_nico_proto_rawDescGZIP(), []int{354} } func (x *PxeInstructions) GetPxeScript() string { @@ -28995,7 +29143,7 @@ type CloudInitDiscoveryInstructions struct { func (x *CloudInitDiscoveryInstructions) Reset() { *x = CloudInitDiscoveryInstructions{} - mi := &file_nico_nico_proto_msgTypes[353] + mi := &file_nico_nico_proto_msgTypes[355] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29007,7 +29155,7 @@ func (x *CloudInitDiscoveryInstructions) String() string { func (*CloudInitDiscoveryInstructions) ProtoMessage() {} func (x *CloudInitDiscoveryInstructions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[353] + mi := &file_nico_nico_proto_msgTypes[355] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29020,7 +29168,7 @@ func (x *CloudInitDiscoveryInstructions) ProtoReflect() protoreflect.Message { // Deprecated: Use CloudInitDiscoveryInstructions.ProtoReflect.Descriptor instead. func (*CloudInitDiscoveryInstructions) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{353} + return file_nico_nico_proto_rawDescGZIP(), []int{355} } func (x *CloudInitDiscoveryInstructions) GetMachineInterface() *MachineInterface { @@ -29111,7 +29259,7 @@ type CloudInitMetaData struct { func (x *CloudInitMetaData) Reset() { *x = CloudInitMetaData{} - mi := &file_nico_nico_proto_msgTypes[354] + mi := &file_nico_nico_proto_msgTypes[356] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29123,7 +29271,7 @@ func (x *CloudInitMetaData) String() string { func (*CloudInitMetaData) ProtoMessage() {} func (x *CloudInitMetaData) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[354] + mi := &file_nico_nico_proto_msgTypes[356] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29136,7 +29284,7 @@ func (x *CloudInitMetaData) ProtoReflect() protoreflect.Message { // Deprecated: Use CloudInitMetaData.ProtoReflect.Descriptor instead. func (*CloudInitMetaData) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{354} + return file_nico_nico_proto_rawDescGZIP(), []int{356} } func (x *CloudInitMetaData) GetInstanceId() string { @@ -29169,7 +29317,7 @@ type CloudInitInstructionsRequest struct { func (x *CloudInitInstructionsRequest) Reset() { *x = CloudInitInstructionsRequest{} - mi := &file_nico_nico_proto_msgTypes[355] + mi := &file_nico_nico_proto_msgTypes[357] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29181,7 +29329,7 @@ func (x *CloudInitInstructionsRequest) String() string { func (*CloudInitInstructionsRequest) ProtoMessage() {} func (x *CloudInitInstructionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[355] + mi := &file_nico_nico_proto_msgTypes[357] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29194,7 +29342,7 @@ func (x *CloudInitInstructionsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CloudInitInstructionsRequest.ProtoReflect.Descriptor instead. func (*CloudInitInstructionsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{355} + return file_nico_nico_proto_rawDescGZIP(), []int{357} } func (x *CloudInitInstructionsRequest) GetIp() string { @@ -29221,7 +29369,7 @@ type CloudInitInstructions struct { func (x *CloudInitInstructions) Reset() { *x = CloudInitInstructions{} - mi := &file_nico_nico_proto_msgTypes[356] + mi := &file_nico_nico_proto_msgTypes[358] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29233,7 +29381,7 @@ func (x *CloudInitInstructions) String() string { func (*CloudInitInstructions) ProtoMessage() {} func (x *CloudInitInstructions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[356] + mi := &file_nico_nico_proto_msgTypes[358] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29246,7 +29394,7 @@ func (x *CloudInitInstructions) ProtoReflect() protoreflect.Message { // Deprecated: Use CloudInitInstructions.ProtoReflect.Descriptor instead. func (*CloudInitInstructions) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{356} + return file_nico_nico_proto_rawDescGZIP(), []int{358} } func (x *CloudInitInstructions) GetCustomCloudInit() string { @@ -29315,7 +29463,7 @@ type DpuNetworkStatus struct { func (x *DpuNetworkStatus) Reset() { *x = DpuNetworkStatus{} - mi := &file_nico_nico_proto_msgTypes[357] + mi := &file_nico_nico_proto_msgTypes[359] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29327,7 +29475,7 @@ func (x *DpuNetworkStatus) String() string { func (*DpuNetworkStatus) ProtoMessage() {} func (x *DpuNetworkStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[357] + mi := &file_nico_nico_proto_msgTypes[359] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29340,7 +29488,7 @@ func (x *DpuNetworkStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuNetworkStatus.ProtoReflect.Descriptor instead. func (*DpuNetworkStatus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{357} + return file_nico_nico_proto_rawDescGZIP(), []int{359} } func (x *DpuNetworkStatus) GetDpuMachineId() *MachineId { @@ -29465,7 +29613,7 @@ type LastDhcpRequest struct { func (x *LastDhcpRequest) Reset() { *x = LastDhcpRequest{} - mi := &file_nico_nico_proto_msgTypes[358] + mi := &file_nico_nico_proto_msgTypes[360] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29477,7 +29625,7 @@ func (x *LastDhcpRequest) String() string { func (*LastDhcpRequest) ProtoMessage() {} func (x *LastDhcpRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[358] + mi := &file_nico_nico_proto_msgTypes[360] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29490,7 +29638,7 @@ func (x *LastDhcpRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use LastDhcpRequest.ProtoReflect.Descriptor instead. func (*LastDhcpRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{358} + return file_nico_nico_proto_rawDescGZIP(), []int{360} } func (x *LastDhcpRequest) GetHostInterfaceId() *MachineInterfaceId { @@ -29524,7 +29672,7 @@ type DpuExtensionServiceStatusObservation struct { func (x *DpuExtensionServiceStatusObservation) Reset() { *x = DpuExtensionServiceStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[359] + mi := &file_nico_nico_proto_msgTypes[361] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29536,7 +29684,7 @@ func (x *DpuExtensionServiceStatusObservation) String() string { func (*DpuExtensionServiceStatusObservation) ProtoMessage() {} func (x *DpuExtensionServiceStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[359] + mi := &file_nico_nico_proto_msgTypes[361] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29549,7 +29697,7 @@ func (x *DpuExtensionServiceStatusObservation) ProtoReflect() protoreflect.Messa // Deprecated: Use DpuExtensionServiceStatusObservation.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceStatusObservation) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{359} + return file_nico_nico_proto_rawDescGZIP(), []int{361} } func (x *DpuExtensionServiceStatusObservation) GetServiceId() string { @@ -29620,7 +29768,7 @@ type DpuExtensionServiceComponent struct { func (x *DpuExtensionServiceComponent) Reset() { *x = DpuExtensionServiceComponent{} - mi := &file_nico_nico_proto_msgTypes[360] + mi := &file_nico_nico_proto_msgTypes[362] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29632,7 +29780,7 @@ func (x *DpuExtensionServiceComponent) String() string { func (*DpuExtensionServiceComponent) ProtoMessage() {} func (x *DpuExtensionServiceComponent) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[360] + mi := &file_nico_nico_proto_msgTypes[362] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29645,7 +29793,7 @@ func (x *DpuExtensionServiceComponent) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuExtensionServiceComponent.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceComponent) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{360} + return file_nico_nico_proto_rawDescGZIP(), []int{362} } func (x *DpuExtensionServiceComponent) GetName() string { @@ -29685,7 +29833,7 @@ type OptionalHealthReport struct { func (x *OptionalHealthReport) Reset() { *x = OptionalHealthReport{} - mi := &file_nico_nico_proto_msgTypes[361] + mi := &file_nico_nico_proto_msgTypes[363] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29697,7 +29845,7 @@ func (x *OptionalHealthReport) String() string { func (*OptionalHealthReport) ProtoMessage() {} func (x *OptionalHealthReport) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[361] + mi := &file_nico_nico_proto_msgTypes[363] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29710,7 +29858,7 @@ func (x *OptionalHealthReport) ProtoReflect() protoreflect.Message { // Deprecated: Use OptionalHealthReport.ProtoReflect.Descriptor instead. func (*OptionalHealthReport) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{361} + return file_nico_nico_proto_rawDescGZIP(), []int{363} } func (x *OptionalHealthReport) GetReport() *HealthReport { @@ -29730,7 +29878,7 @@ type HealthReportEntry struct { func (x *HealthReportEntry) Reset() { *x = HealthReportEntry{} - mi := &file_nico_nico_proto_msgTypes[362] + mi := &file_nico_nico_proto_msgTypes[364] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29742,7 +29890,7 @@ func (x *HealthReportEntry) String() string { func (*HealthReportEntry) ProtoMessage() {} func (x *HealthReportEntry) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[362] + mi := &file_nico_nico_proto_msgTypes[364] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29755,7 +29903,7 @@ func (x *HealthReportEntry) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthReportEntry.ProtoReflect.Descriptor instead. func (*HealthReportEntry) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{362} + return file_nico_nico_proto_rawDescGZIP(), []int{364} } func (x *HealthReportEntry) GetReport() *HealthReport { @@ -29783,7 +29931,7 @@ type InsertMachineHealthReportRequest struct { func (x *InsertMachineHealthReportRequest) Reset() { *x = InsertMachineHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[363] + mi := &file_nico_nico_proto_msgTypes[365] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29795,7 +29943,7 @@ func (x *InsertMachineHealthReportRequest) String() string { func (*InsertMachineHealthReportRequest) ProtoMessage() {} func (x *InsertMachineHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[363] + mi := &file_nico_nico_proto_msgTypes[365] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29808,7 +29956,7 @@ func (x *InsertMachineHealthReportRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertMachineHealthReportRequest.ProtoReflect.Descriptor instead. func (*InsertMachineHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{363} + return file_nico_nico_proto_rawDescGZIP(), []int{365} } func (x *InsertMachineHealthReportRequest) GetMachineId() *MachineId { @@ -29836,7 +29984,7 @@ type InsertRackHealthReportRequest struct { func (x *InsertRackHealthReportRequest) Reset() { *x = InsertRackHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[364] + mi := &file_nico_nico_proto_msgTypes[366] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29848,7 +29996,7 @@ func (x *InsertRackHealthReportRequest) String() string { func (*InsertRackHealthReportRequest) ProtoMessage() {} func (x *InsertRackHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[364] + mi := &file_nico_nico_proto_msgTypes[366] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29861,7 +30009,7 @@ func (x *InsertRackHealthReportRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertRackHealthReportRequest.ProtoReflect.Descriptor instead. func (*InsertRackHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{364} + return file_nico_nico_proto_rawDescGZIP(), []int{366} } func (x *InsertRackHealthReportRequest) GetRackId() *RackId { @@ -29889,7 +30037,7 @@ type RemoveRackHealthReportRequest struct { func (x *RemoveRackHealthReportRequest) Reset() { *x = RemoveRackHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[365] + mi := &file_nico_nico_proto_msgTypes[367] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29901,7 +30049,7 @@ func (x *RemoveRackHealthReportRequest) String() string { func (*RemoveRackHealthReportRequest) ProtoMessage() {} func (x *RemoveRackHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[365] + mi := &file_nico_nico_proto_msgTypes[367] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29914,7 +30062,7 @@ func (x *RemoveRackHealthReportRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveRackHealthReportRequest.ProtoReflect.Descriptor instead. func (*RemoveRackHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{365} + return file_nico_nico_proto_rawDescGZIP(), []int{367} } func (x *RemoveRackHealthReportRequest) GetRackId() *RackId { @@ -29941,7 +30089,7 @@ type ListRackHealthReportsRequest struct { func (x *ListRackHealthReportsRequest) Reset() { *x = ListRackHealthReportsRequest{} - mi := &file_nico_nico_proto_msgTypes[366] + mi := &file_nico_nico_proto_msgTypes[368] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29953,7 +30101,7 @@ func (x *ListRackHealthReportsRequest) String() string { func (*ListRackHealthReportsRequest) ProtoMessage() {} func (x *ListRackHealthReportsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[366] + mi := &file_nico_nico_proto_msgTypes[368] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29966,7 +30114,7 @@ func (x *ListRackHealthReportsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListRackHealthReportsRequest.ProtoReflect.Descriptor instead. func (*ListRackHealthReportsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{366} + return file_nico_nico_proto_rawDescGZIP(), []int{368} } func (x *ListRackHealthReportsRequest) GetRackId() *RackId { @@ -29987,7 +30135,7 @@ type InsertSwitchHealthReportRequest struct { func (x *InsertSwitchHealthReportRequest) Reset() { *x = InsertSwitchHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[367] + mi := &file_nico_nico_proto_msgTypes[369] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29999,7 +30147,7 @@ func (x *InsertSwitchHealthReportRequest) String() string { func (*InsertSwitchHealthReportRequest) ProtoMessage() {} func (x *InsertSwitchHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[367] + mi := &file_nico_nico_proto_msgTypes[369] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30012,7 +30160,7 @@ func (x *InsertSwitchHealthReportRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertSwitchHealthReportRequest.ProtoReflect.Descriptor instead. func (*InsertSwitchHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{367} + return file_nico_nico_proto_rawDescGZIP(), []int{369} } func (x *InsertSwitchHealthReportRequest) GetSwitchId() *SwitchId { @@ -30040,7 +30188,7 @@ type RemoveSwitchHealthReportRequest struct { func (x *RemoveSwitchHealthReportRequest) Reset() { *x = RemoveSwitchHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[368] + mi := &file_nico_nico_proto_msgTypes[370] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30052,7 +30200,7 @@ func (x *RemoveSwitchHealthReportRequest) String() string { func (*RemoveSwitchHealthReportRequest) ProtoMessage() {} func (x *RemoveSwitchHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[368] + mi := &file_nico_nico_proto_msgTypes[370] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30065,7 +30213,7 @@ func (x *RemoveSwitchHealthReportRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveSwitchHealthReportRequest.ProtoReflect.Descriptor instead. func (*RemoveSwitchHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{368} + return file_nico_nico_proto_rawDescGZIP(), []int{370} } func (x *RemoveSwitchHealthReportRequest) GetSwitchId() *SwitchId { @@ -30092,7 +30240,7 @@ type ListSwitchHealthReportsRequest struct { func (x *ListSwitchHealthReportsRequest) Reset() { *x = ListSwitchHealthReportsRequest{} - mi := &file_nico_nico_proto_msgTypes[369] + mi := &file_nico_nico_proto_msgTypes[371] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30104,7 +30252,7 @@ func (x *ListSwitchHealthReportsRequest) String() string { func (*ListSwitchHealthReportsRequest) ProtoMessage() {} func (x *ListSwitchHealthReportsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[369] + mi := &file_nico_nico_proto_msgTypes[371] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30117,7 +30265,7 @@ func (x *ListSwitchHealthReportsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSwitchHealthReportsRequest.ProtoReflect.Descriptor instead. func (*ListSwitchHealthReportsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{369} + return file_nico_nico_proto_rawDescGZIP(), []int{371} } func (x *ListSwitchHealthReportsRequest) GetSwitchId() *SwitchId { @@ -30138,7 +30286,7 @@ type InsertPowerShelfHealthReportRequest struct { func (x *InsertPowerShelfHealthReportRequest) Reset() { *x = InsertPowerShelfHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[370] + mi := &file_nico_nico_proto_msgTypes[372] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30150,7 +30298,7 @@ func (x *InsertPowerShelfHealthReportRequest) String() string { func (*InsertPowerShelfHealthReportRequest) ProtoMessage() {} func (x *InsertPowerShelfHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[370] + mi := &file_nico_nico_proto_msgTypes[372] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30163,7 +30311,7 @@ func (x *InsertPowerShelfHealthReportRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use InsertPowerShelfHealthReportRequest.ProtoReflect.Descriptor instead. func (*InsertPowerShelfHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{370} + return file_nico_nico_proto_rawDescGZIP(), []int{372} } func (x *InsertPowerShelfHealthReportRequest) GetPowerShelfId() *PowerShelfId { @@ -30191,7 +30339,7 @@ type RemovePowerShelfHealthReportRequest struct { func (x *RemovePowerShelfHealthReportRequest) Reset() { *x = RemovePowerShelfHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[371] + mi := &file_nico_nico_proto_msgTypes[373] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30203,7 +30351,7 @@ func (x *RemovePowerShelfHealthReportRequest) String() string { func (*RemovePowerShelfHealthReportRequest) ProtoMessage() {} func (x *RemovePowerShelfHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[371] + mi := &file_nico_nico_proto_msgTypes[373] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30216,7 +30364,7 @@ func (x *RemovePowerShelfHealthReportRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use RemovePowerShelfHealthReportRequest.ProtoReflect.Descriptor instead. func (*RemovePowerShelfHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{371} + return file_nico_nico_proto_rawDescGZIP(), []int{373} } func (x *RemovePowerShelfHealthReportRequest) GetPowerShelfId() *PowerShelfId { @@ -30243,7 +30391,7 @@ type ListPowerShelfHealthReportsRequest struct { func (x *ListPowerShelfHealthReportsRequest) Reset() { *x = ListPowerShelfHealthReportsRequest{} - mi := &file_nico_nico_proto_msgTypes[372] + mi := &file_nico_nico_proto_msgTypes[374] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30255,7 +30403,7 @@ func (x *ListPowerShelfHealthReportsRequest) String() string { func (*ListPowerShelfHealthReportsRequest) ProtoMessage() {} func (x *ListPowerShelfHealthReportsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[372] + mi := &file_nico_nico_proto_msgTypes[374] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30268,7 +30416,7 @@ func (x *ListPowerShelfHealthReportsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use ListPowerShelfHealthReportsRequest.ProtoReflect.Descriptor instead. func (*ListPowerShelfHealthReportsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{372} + return file_nico_nico_proto_rawDescGZIP(), []int{374} } func (x *ListPowerShelfHealthReportsRequest) GetPowerShelfId() *PowerShelfId { @@ -30287,7 +30435,7 @@ type ListHealthReportResponse struct { func (x *ListHealthReportResponse) Reset() { *x = ListHealthReportResponse{} - mi := &file_nico_nico_proto_msgTypes[373] + mi := &file_nico_nico_proto_msgTypes[375] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30299,7 +30447,7 @@ func (x *ListHealthReportResponse) String() string { func (*ListHealthReportResponse) ProtoMessage() {} func (x *ListHealthReportResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[373] + mi := &file_nico_nico_proto_msgTypes[375] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30312,7 +30460,7 @@ func (x *ListHealthReportResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListHealthReportResponse.ProtoReflect.Descriptor instead. func (*ListHealthReportResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{373} + return file_nico_nico_proto_rawDescGZIP(), []int{375} } func (x *ListHealthReportResponse) GetHealthReportEntries() []*HealthReportEntry { @@ -30333,7 +30481,7 @@ type RemoveMachineHealthReportRequest struct { func (x *RemoveMachineHealthReportRequest) Reset() { *x = RemoveMachineHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[374] + mi := &file_nico_nico_proto_msgTypes[376] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30345,7 +30493,7 @@ func (x *RemoveMachineHealthReportRequest) String() string { func (*RemoveMachineHealthReportRequest) ProtoMessage() {} func (x *RemoveMachineHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[374] + mi := &file_nico_nico_proto_msgTypes[376] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30358,7 +30506,7 @@ func (x *RemoveMachineHealthReportRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveMachineHealthReportRequest.ProtoReflect.Descriptor instead. func (*RemoveMachineHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{374} + return file_nico_nico_proto_rawDescGZIP(), []int{376} } func (x *RemoveMachineHealthReportRequest) GetMachineId() *MachineId { @@ -30385,7 +30533,7 @@ type ListNVLinkDomainHealthReportsRequest struct { func (x *ListNVLinkDomainHealthReportsRequest) Reset() { *x = ListNVLinkDomainHealthReportsRequest{} - mi := &file_nico_nico_proto_msgTypes[375] + mi := &file_nico_nico_proto_msgTypes[377] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30397,7 +30545,7 @@ func (x *ListNVLinkDomainHealthReportsRequest) String() string { func (*ListNVLinkDomainHealthReportsRequest) ProtoMessage() {} func (x *ListNVLinkDomainHealthReportsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[375] + mi := &file_nico_nico_proto_msgTypes[377] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30410,7 +30558,7 @@ func (x *ListNVLinkDomainHealthReportsRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use ListNVLinkDomainHealthReportsRequest.ProtoReflect.Descriptor instead. func (*ListNVLinkDomainHealthReportsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{375} + return file_nico_nico_proto_rawDescGZIP(), []int{377} } func (x *ListNVLinkDomainHealthReportsRequest) GetDomainId() *NVLinkDomainId { @@ -30431,7 +30579,7 @@ type InsertNVLinkDomainHealthReportRequest struct { func (x *InsertNVLinkDomainHealthReportRequest) Reset() { *x = InsertNVLinkDomainHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[376] + mi := &file_nico_nico_proto_msgTypes[378] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30443,7 +30591,7 @@ func (x *InsertNVLinkDomainHealthReportRequest) String() string { func (*InsertNVLinkDomainHealthReportRequest) ProtoMessage() {} func (x *InsertNVLinkDomainHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[376] + mi := &file_nico_nico_proto_msgTypes[378] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30456,7 +30604,7 @@ func (x *InsertNVLinkDomainHealthReportRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use InsertNVLinkDomainHealthReportRequest.ProtoReflect.Descriptor instead. func (*InsertNVLinkDomainHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{376} + return file_nico_nico_proto_rawDescGZIP(), []int{378} } func (x *InsertNVLinkDomainHealthReportRequest) GetDomainId() *NVLinkDomainId { @@ -30484,7 +30632,7 @@ type RemoveNVLinkDomainHealthReportRequest struct { func (x *RemoveNVLinkDomainHealthReportRequest) Reset() { *x = RemoveNVLinkDomainHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[377] + mi := &file_nico_nico_proto_msgTypes[379] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30496,7 +30644,7 @@ func (x *RemoveNVLinkDomainHealthReportRequest) String() string { func (*RemoveNVLinkDomainHealthReportRequest) ProtoMessage() {} func (x *RemoveNVLinkDomainHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[377] + mi := &file_nico_nico_proto_msgTypes[379] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30509,7 +30657,7 @@ func (x *RemoveNVLinkDomainHealthReportRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use RemoveNVLinkDomainHealthReportRequest.ProtoReflect.Descriptor instead. func (*RemoveNVLinkDomainHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{377} + return file_nico_nico_proto_rawDescGZIP(), []int{379} } func (x *RemoveNVLinkDomainHealthReportRequest) GetDomainId() *NVLinkDomainId { @@ -30565,7 +30713,7 @@ type InstanceInterfaceStatusObservation struct { func (x *InstanceInterfaceStatusObservation) Reset() { *x = InstanceInterfaceStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[378] + mi := &file_nico_nico_proto_msgTypes[380] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30577,7 +30725,7 @@ func (x *InstanceInterfaceStatusObservation) String() string { func (*InstanceInterfaceStatusObservation) ProtoMessage() {} func (x *InstanceInterfaceStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[378] + mi := &file_nico_nico_proto_msgTypes[380] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30590,7 +30738,7 @@ func (x *InstanceInterfaceStatusObservation) ProtoReflect() protoreflect.Message // Deprecated: Use InstanceInterfaceStatusObservation.ProtoReflect.Descriptor instead. func (*InstanceInterfaceStatusObservation) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{378} + return file_nico_nico_proto_rawDescGZIP(), []int{380} } func (x *InstanceInterfaceStatusObservation) GetFunctionType() InterfaceFunctionType { @@ -30661,7 +30809,7 @@ type FabricInterfaceData struct { func (x *FabricInterfaceData) Reset() { *x = FabricInterfaceData{} - mi := &file_nico_nico_proto_msgTypes[379] + mi := &file_nico_nico_proto_msgTypes[381] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30673,7 +30821,7 @@ func (x *FabricInterfaceData) String() string { func (*FabricInterfaceData) ProtoMessage() {} func (x *FabricInterfaceData) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[379] + mi := &file_nico_nico_proto_msgTypes[381] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30686,7 +30834,7 @@ func (x *FabricInterfaceData) ProtoReflect() protoreflect.Message { // Deprecated: Use FabricInterfaceData.ProtoReflect.Descriptor instead. func (*FabricInterfaceData) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{379} + return file_nico_nico_proto_rawDescGZIP(), []int{381} } func (x *FabricInterfaceData) GetInterfaceName() string { @@ -30718,7 +30866,7 @@ type LinkData struct { func (x *LinkData) Reset() { *x = LinkData{} - mi := &file_nico_nico_proto_msgTypes[380] + mi := &file_nico_nico_proto_msgTypes[382] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30730,7 +30878,7 @@ func (x *LinkData) String() string { func (*LinkData) ProtoMessage() {} func (x *LinkData) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[380] + mi := &file_nico_nico_proto_msgTypes[382] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30743,7 +30891,7 @@ func (x *LinkData) ProtoReflect() protoreflect.Message { // Deprecated: Use LinkData.ProtoReflect.Descriptor instead. func (*LinkData) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{380} + return file_nico_nico_proto_rawDescGZIP(), []int{382} } func (x *LinkData) GetLinkType() string { @@ -30801,7 +30949,7 @@ type Tenant struct { func (x *Tenant) Reset() { *x = Tenant{} - mi := &file_nico_nico_proto_msgTypes[381] + mi := &file_nico_nico_proto_msgTypes[383] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30813,7 +30961,7 @@ func (x *Tenant) String() string { func (*Tenant) ProtoMessage() {} func (x *Tenant) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[381] + mi := &file_nico_nico_proto_msgTypes[383] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30826,7 +30974,7 @@ func (x *Tenant) ProtoReflect() protoreflect.Message { // Deprecated: Use Tenant.ProtoReflect.Descriptor instead. func (*Tenant) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{381} + return file_nico_nico_proto_rawDescGZIP(), []int{383} } func (x *Tenant) GetOrganizationId() string { @@ -30869,7 +31017,7 @@ type CreateTenantRequest struct { func (x *CreateTenantRequest) Reset() { *x = CreateTenantRequest{} - mi := &file_nico_nico_proto_msgTypes[382] + mi := &file_nico_nico_proto_msgTypes[384] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30881,7 +31029,7 @@ func (x *CreateTenantRequest) String() string { func (*CreateTenantRequest) ProtoMessage() {} func (x *CreateTenantRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[382] + mi := &file_nico_nico_proto_msgTypes[384] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30894,7 +31042,7 @@ func (x *CreateTenantRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateTenantRequest.ProtoReflect.Descriptor instead. func (*CreateTenantRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{382} + return file_nico_nico_proto_rawDescGZIP(), []int{384} } func (x *CreateTenantRequest) GetOrganizationId() string { @@ -30927,7 +31075,7 @@ type CreateTenantResponse struct { func (x *CreateTenantResponse) Reset() { *x = CreateTenantResponse{} - mi := &file_nico_nico_proto_msgTypes[383] + mi := &file_nico_nico_proto_msgTypes[385] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30939,7 +31087,7 @@ func (x *CreateTenantResponse) String() string { func (*CreateTenantResponse) ProtoMessage() {} func (x *CreateTenantResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[383] + mi := &file_nico_nico_proto_msgTypes[385] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30952,7 +31100,7 @@ func (x *CreateTenantResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateTenantResponse.ProtoReflect.Descriptor instead. func (*CreateTenantResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{383} + return file_nico_nico_proto_rawDescGZIP(), []int{385} } func (x *CreateTenantResponse) GetTenant() *Tenant { @@ -30977,7 +31125,7 @@ type UpdateTenantRequest struct { func (x *UpdateTenantRequest) Reset() { *x = UpdateTenantRequest{} - mi := &file_nico_nico_proto_msgTypes[384] + mi := &file_nico_nico_proto_msgTypes[386] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30989,7 +31137,7 @@ func (x *UpdateTenantRequest) String() string { func (*UpdateTenantRequest) ProtoMessage() {} func (x *UpdateTenantRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[384] + mi := &file_nico_nico_proto_msgTypes[386] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31002,7 +31150,7 @@ func (x *UpdateTenantRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateTenantRequest.ProtoReflect.Descriptor instead. func (*UpdateTenantRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{384} + return file_nico_nico_proto_rawDescGZIP(), []int{386} } func (x *UpdateTenantRequest) GetOrganizationId() string { @@ -31043,7 +31191,7 @@ type UpdateTenantResponse struct { func (x *UpdateTenantResponse) Reset() { *x = UpdateTenantResponse{} - mi := &file_nico_nico_proto_msgTypes[385] + mi := &file_nico_nico_proto_msgTypes[387] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31055,7 +31203,7 @@ func (x *UpdateTenantResponse) String() string { func (*UpdateTenantResponse) ProtoMessage() {} func (x *UpdateTenantResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[385] + mi := &file_nico_nico_proto_msgTypes[387] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31068,7 +31216,7 @@ func (x *UpdateTenantResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateTenantResponse.ProtoReflect.Descriptor instead. func (*UpdateTenantResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{385} + return file_nico_nico_proto_rawDescGZIP(), []int{387} } func (x *UpdateTenantResponse) GetTenant() *Tenant { @@ -31087,7 +31235,7 @@ type FindTenantRequest struct { func (x *FindTenantRequest) Reset() { *x = FindTenantRequest{} - mi := &file_nico_nico_proto_msgTypes[386] + mi := &file_nico_nico_proto_msgTypes[388] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31099,7 +31247,7 @@ func (x *FindTenantRequest) String() string { func (*FindTenantRequest) ProtoMessage() {} func (x *FindTenantRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[386] + mi := &file_nico_nico_proto_msgTypes[388] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31112,7 +31260,7 @@ func (x *FindTenantRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FindTenantRequest.ProtoReflect.Descriptor instead. func (*FindTenantRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{386} + return file_nico_nico_proto_rawDescGZIP(), []int{388} } func (x *FindTenantRequest) GetTenantOrganizationId() string { @@ -31131,7 +31279,7 @@ type FindTenantResponse struct { func (x *FindTenantResponse) Reset() { *x = FindTenantResponse{} - mi := &file_nico_nico_proto_msgTypes[387] + mi := &file_nico_nico_proto_msgTypes[389] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31143,7 +31291,7 @@ func (x *FindTenantResponse) String() string { func (*FindTenantResponse) ProtoMessage() {} func (x *FindTenantResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[387] + mi := &file_nico_nico_proto_msgTypes[389] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31156,7 +31304,7 @@ func (x *FindTenantResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use FindTenantResponse.ProtoReflect.Descriptor instead. func (*FindTenantResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{387} + return file_nico_nico_proto_rawDescGZIP(), []int{389} } func (x *FindTenantResponse) GetTenant() *Tenant { @@ -31179,7 +31327,7 @@ type TenantKeysetIdentifier struct { func (x *TenantKeysetIdentifier) Reset() { *x = TenantKeysetIdentifier{} - mi := &file_nico_nico_proto_msgTypes[388] + mi := &file_nico_nico_proto_msgTypes[390] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31191,7 +31339,7 @@ func (x *TenantKeysetIdentifier) String() string { func (*TenantKeysetIdentifier) ProtoMessage() {} func (x *TenantKeysetIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[388] + mi := &file_nico_nico_proto_msgTypes[390] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31204,7 +31352,7 @@ func (x *TenantKeysetIdentifier) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantKeysetIdentifier.ProtoReflect.Descriptor instead. func (*TenantKeysetIdentifier) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{388} + return file_nico_nico_proto_rawDescGZIP(), []int{390} } func (x *TenantKeysetIdentifier) GetOrganizationId() string { @@ -31231,7 +31379,7 @@ type TenantPublicKey struct { func (x *TenantPublicKey) Reset() { *x = TenantPublicKey{} - mi := &file_nico_nico_proto_msgTypes[389] + mi := &file_nico_nico_proto_msgTypes[391] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31243,7 +31391,7 @@ func (x *TenantPublicKey) String() string { func (*TenantPublicKey) ProtoMessage() {} func (x *TenantPublicKey) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[389] + mi := &file_nico_nico_proto_msgTypes[391] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31256,7 +31404,7 @@ func (x *TenantPublicKey) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantPublicKey.ProtoReflect.Descriptor instead. func (*TenantPublicKey) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{389} + return file_nico_nico_proto_rawDescGZIP(), []int{391} } func (x *TenantPublicKey) GetPublicKey() string { @@ -31282,7 +31430,7 @@ type TenantKeysetContent struct { func (x *TenantKeysetContent) Reset() { *x = TenantKeysetContent{} - mi := &file_nico_nico_proto_msgTypes[390] + mi := &file_nico_nico_proto_msgTypes[392] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31294,7 +31442,7 @@ func (x *TenantKeysetContent) String() string { func (*TenantKeysetContent) ProtoMessage() {} func (x *TenantKeysetContent) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[390] + mi := &file_nico_nico_proto_msgTypes[392] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31307,7 +31455,7 @@ func (x *TenantKeysetContent) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantKeysetContent.ProtoReflect.Descriptor instead. func (*TenantKeysetContent) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{390} + return file_nico_nico_proto_rawDescGZIP(), []int{392} } func (x *TenantKeysetContent) GetPublicKeys() []*TenantPublicKey { @@ -31329,7 +31477,7 @@ type TenantKeyset struct { func (x *TenantKeyset) Reset() { *x = TenantKeyset{} - mi := &file_nico_nico_proto_msgTypes[391] + mi := &file_nico_nico_proto_msgTypes[393] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31341,7 +31489,7 @@ func (x *TenantKeyset) String() string { func (*TenantKeyset) ProtoMessage() {} func (x *TenantKeyset) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[391] + mi := &file_nico_nico_proto_msgTypes[393] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31354,7 +31502,7 @@ func (x *TenantKeyset) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantKeyset.ProtoReflect.Descriptor instead. func (*TenantKeyset) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{391} + return file_nico_nico_proto_rawDescGZIP(), []int{393} } func (x *TenantKeyset) GetKeysetIdentifier() *TenantKeysetIdentifier { @@ -31393,7 +31541,7 @@ type CreateTenantKeysetRequest struct { func (x *CreateTenantKeysetRequest) Reset() { *x = CreateTenantKeysetRequest{} - mi := &file_nico_nico_proto_msgTypes[392] + mi := &file_nico_nico_proto_msgTypes[394] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31405,7 +31553,7 @@ func (x *CreateTenantKeysetRequest) String() string { func (*CreateTenantKeysetRequest) ProtoMessage() {} func (x *CreateTenantKeysetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[392] + mi := &file_nico_nico_proto_msgTypes[394] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31418,7 +31566,7 @@ func (x *CreateTenantKeysetRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateTenantKeysetRequest.ProtoReflect.Descriptor instead. func (*CreateTenantKeysetRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{392} + return file_nico_nico_proto_rawDescGZIP(), []int{394} } func (x *CreateTenantKeysetRequest) GetKeysetIdentifier() *TenantKeysetIdentifier { @@ -31451,7 +31599,7 @@ type CreateTenantKeysetResponse struct { func (x *CreateTenantKeysetResponse) Reset() { *x = CreateTenantKeysetResponse{} - mi := &file_nico_nico_proto_msgTypes[393] + mi := &file_nico_nico_proto_msgTypes[395] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31463,7 +31611,7 @@ func (x *CreateTenantKeysetResponse) String() string { func (*CreateTenantKeysetResponse) ProtoMessage() {} func (x *CreateTenantKeysetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[393] + mi := &file_nico_nico_proto_msgTypes[395] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31476,7 +31624,7 @@ func (x *CreateTenantKeysetResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateTenantKeysetResponse.ProtoReflect.Descriptor instead. func (*CreateTenantKeysetResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{393} + return file_nico_nico_proto_rawDescGZIP(), []int{395} } func (x *CreateTenantKeysetResponse) GetKeyset() *TenantKeyset { @@ -31495,7 +31643,7 @@ type TenantKeySetList struct { func (x *TenantKeySetList) Reset() { *x = TenantKeySetList{} - mi := &file_nico_nico_proto_msgTypes[394] + mi := &file_nico_nico_proto_msgTypes[396] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31507,7 +31655,7 @@ func (x *TenantKeySetList) String() string { func (*TenantKeySetList) ProtoMessage() {} func (x *TenantKeySetList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[394] + mi := &file_nico_nico_proto_msgTypes[396] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31520,7 +31668,7 @@ func (x *TenantKeySetList) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantKeySetList.ProtoReflect.Descriptor instead. func (*TenantKeySetList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{394} + return file_nico_nico_proto_rawDescGZIP(), []int{396} } func (x *TenantKeySetList) GetKeyset() []*TenantKeyset { @@ -31548,7 +31696,7 @@ type UpdateTenantKeysetRequest struct { func (x *UpdateTenantKeysetRequest) Reset() { *x = UpdateTenantKeysetRequest{} - mi := &file_nico_nico_proto_msgTypes[395] + mi := &file_nico_nico_proto_msgTypes[397] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31560,7 +31708,7 @@ func (x *UpdateTenantKeysetRequest) String() string { func (*UpdateTenantKeysetRequest) ProtoMessage() {} func (x *UpdateTenantKeysetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[395] + mi := &file_nico_nico_proto_msgTypes[397] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31573,7 +31721,7 @@ func (x *UpdateTenantKeysetRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateTenantKeysetRequest.ProtoReflect.Descriptor instead. func (*UpdateTenantKeysetRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{395} + return file_nico_nico_proto_rawDescGZIP(), []int{397} } func (x *UpdateTenantKeysetRequest) GetKeysetIdentifier() *TenantKeysetIdentifier { @@ -31612,7 +31760,7 @@ type UpdateTenantKeysetResponse struct { func (x *UpdateTenantKeysetResponse) Reset() { *x = UpdateTenantKeysetResponse{} - mi := &file_nico_nico_proto_msgTypes[396] + mi := &file_nico_nico_proto_msgTypes[398] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31624,7 +31772,7 @@ func (x *UpdateTenantKeysetResponse) String() string { func (*UpdateTenantKeysetResponse) ProtoMessage() {} func (x *UpdateTenantKeysetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[396] + mi := &file_nico_nico_proto_msgTypes[398] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31637,7 +31785,7 @@ func (x *UpdateTenantKeysetResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateTenantKeysetResponse.ProtoReflect.Descriptor instead. func (*UpdateTenantKeysetResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{396} + return file_nico_nico_proto_rawDescGZIP(), []int{398} } type DeleteTenantKeysetRequest struct { @@ -31649,7 +31797,7 @@ type DeleteTenantKeysetRequest struct { func (x *DeleteTenantKeysetRequest) Reset() { *x = DeleteTenantKeysetRequest{} - mi := &file_nico_nico_proto_msgTypes[397] + mi := &file_nico_nico_proto_msgTypes[399] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31661,7 +31809,7 @@ func (x *DeleteTenantKeysetRequest) String() string { func (*DeleteTenantKeysetRequest) ProtoMessage() {} func (x *DeleteTenantKeysetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[397] + mi := &file_nico_nico_proto_msgTypes[399] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31674,7 +31822,7 @@ func (x *DeleteTenantKeysetRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteTenantKeysetRequest.ProtoReflect.Descriptor instead. func (*DeleteTenantKeysetRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{397} + return file_nico_nico_proto_rawDescGZIP(), []int{399} } func (x *DeleteTenantKeysetRequest) GetKeysetIdentifier() *TenantKeysetIdentifier { @@ -31692,7 +31840,7 @@ type DeleteTenantKeysetResponse struct { func (x *DeleteTenantKeysetResponse) Reset() { *x = DeleteTenantKeysetResponse{} - mi := &file_nico_nico_proto_msgTypes[398] + mi := &file_nico_nico_proto_msgTypes[400] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31704,7 +31852,7 @@ func (x *DeleteTenantKeysetResponse) String() string { func (*DeleteTenantKeysetResponse) ProtoMessage() {} func (x *DeleteTenantKeysetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[398] + mi := &file_nico_nico_proto_msgTypes[400] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31717,7 +31865,7 @@ func (x *DeleteTenantKeysetResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteTenantKeysetResponse.ProtoReflect.Descriptor instead. func (*DeleteTenantKeysetResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{398} + return file_nico_nico_proto_rawDescGZIP(), []int{400} } type TenantKeysetSearchFilter struct { @@ -31729,7 +31877,7 @@ type TenantKeysetSearchFilter struct { func (x *TenantKeysetSearchFilter) Reset() { *x = TenantKeysetSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[399] + mi := &file_nico_nico_proto_msgTypes[401] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31741,7 +31889,7 @@ func (x *TenantKeysetSearchFilter) String() string { func (*TenantKeysetSearchFilter) ProtoMessage() {} func (x *TenantKeysetSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[399] + mi := &file_nico_nico_proto_msgTypes[401] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31754,7 +31902,7 @@ func (x *TenantKeysetSearchFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantKeysetSearchFilter.ProtoReflect.Descriptor instead. func (*TenantKeysetSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{399} + return file_nico_nico_proto_rawDescGZIP(), []int{401} } func (x *TenantKeysetSearchFilter) GetTenantOrgId() string { @@ -31773,7 +31921,7 @@ type TenantKeysetIdList struct { func (x *TenantKeysetIdList) Reset() { *x = TenantKeysetIdList{} - mi := &file_nico_nico_proto_msgTypes[400] + mi := &file_nico_nico_proto_msgTypes[402] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31785,7 +31933,7 @@ func (x *TenantKeysetIdList) String() string { func (*TenantKeysetIdList) ProtoMessage() {} func (x *TenantKeysetIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[400] + mi := &file_nico_nico_proto_msgTypes[402] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31798,7 +31946,7 @@ func (x *TenantKeysetIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantKeysetIdList.ProtoReflect.Descriptor instead. func (*TenantKeysetIdList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{400} + return file_nico_nico_proto_rawDescGZIP(), []int{402} } func (x *TenantKeysetIdList) GetKeysetIds() []*TenantKeysetIdentifier { @@ -31818,7 +31966,7 @@ type TenantKeysetsByIdsRequest struct { func (x *TenantKeysetsByIdsRequest) Reset() { *x = TenantKeysetsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[401] + mi := &file_nico_nico_proto_msgTypes[403] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31830,7 +31978,7 @@ func (x *TenantKeysetsByIdsRequest) String() string { func (*TenantKeysetsByIdsRequest) ProtoMessage() {} func (x *TenantKeysetsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[401] + mi := &file_nico_nico_proto_msgTypes[403] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31843,7 +31991,7 @@ func (x *TenantKeysetsByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantKeysetsByIdsRequest.ProtoReflect.Descriptor instead. func (*TenantKeysetsByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{401} + return file_nico_nico_proto_rawDescGZIP(), []int{403} } func (x *TenantKeysetsByIdsRequest) GetKeysetIds() []*TenantKeysetIdentifier { @@ -31875,7 +32023,7 @@ type ValidateTenantPublicKeyRequest struct { func (x *ValidateTenantPublicKeyRequest) Reset() { *x = ValidateTenantPublicKeyRequest{} - mi := &file_nico_nico_proto_msgTypes[402] + mi := &file_nico_nico_proto_msgTypes[404] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31887,7 +32035,7 @@ func (x *ValidateTenantPublicKeyRequest) String() string { func (*ValidateTenantPublicKeyRequest) ProtoMessage() {} func (x *ValidateTenantPublicKeyRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[402] + mi := &file_nico_nico_proto_msgTypes[404] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31900,7 +32048,7 @@ func (x *ValidateTenantPublicKeyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ValidateTenantPublicKeyRequest.ProtoReflect.Descriptor instead. func (*ValidateTenantPublicKeyRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{402} + return file_nico_nico_proto_rawDescGZIP(), []int{404} } func (x *ValidateTenantPublicKeyRequest) GetInstanceId() string { @@ -31926,7 +32074,7 @@ type ValidateTenantPublicKeyResponse struct { func (x *ValidateTenantPublicKeyResponse) Reset() { *x = ValidateTenantPublicKeyResponse{} - mi := &file_nico_nico_proto_msgTypes[403] + mi := &file_nico_nico_proto_msgTypes[405] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31938,7 +32086,7 @@ func (x *ValidateTenantPublicKeyResponse) String() string { func (*ValidateTenantPublicKeyResponse) ProtoMessage() {} func (x *ValidateTenantPublicKeyResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[403] + mi := &file_nico_nico_proto_msgTypes[405] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31951,7 +32099,7 @@ func (x *ValidateTenantPublicKeyResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ValidateTenantPublicKeyResponse.ProtoReflect.Descriptor instead. func (*ValidateTenantPublicKeyResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{403} + return file_nico_nico_proto_rawDescGZIP(), []int{405} } type ListResourcePoolsRequest struct { @@ -31963,7 +32111,7 @@ type ListResourcePoolsRequest struct { func (x *ListResourcePoolsRequest) Reset() { *x = ListResourcePoolsRequest{} - mi := &file_nico_nico_proto_msgTypes[404] + mi := &file_nico_nico_proto_msgTypes[406] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31975,7 +32123,7 @@ func (x *ListResourcePoolsRequest) String() string { func (*ListResourcePoolsRequest) ProtoMessage() {} func (x *ListResourcePoolsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[404] + mi := &file_nico_nico_proto_msgTypes[406] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31988,7 +32136,7 @@ func (x *ListResourcePoolsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListResourcePoolsRequest.ProtoReflect.Descriptor instead. func (*ListResourcePoolsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{404} + return file_nico_nico_proto_rawDescGZIP(), []int{406} } func (x *ListResourcePoolsRequest) GetAutoAssignable() bool { @@ -32007,7 +32155,7 @@ type ResourcePools struct { func (x *ResourcePools) Reset() { *x = ResourcePools{} - mi := &file_nico_nico_proto_msgTypes[405] + mi := &file_nico_nico_proto_msgTypes[407] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32019,7 +32167,7 @@ func (x *ResourcePools) String() string { func (*ResourcePools) ProtoMessage() {} func (x *ResourcePools) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[405] + mi := &file_nico_nico_proto_msgTypes[407] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32032,7 +32180,7 @@ func (x *ResourcePools) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourcePools.ProtoReflect.Descriptor instead. func (*ResourcePools) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{405} + return file_nico_nico_proto_rawDescGZIP(), []int{407} } func (x *ResourcePools) GetPools() []*ResourcePool { @@ -32055,7 +32203,7 @@ type ResourcePool struct { func (x *ResourcePool) Reset() { *x = ResourcePool{} - mi := &file_nico_nico_proto_msgTypes[406] + mi := &file_nico_nico_proto_msgTypes[408] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32067,7 +32215,7 @@ func (x *ResourcePool) String() string { func (*ResourcePool) ProtoMessage() {} func (x *ResourcePool) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[406] + mi := &file_nico_nico_proto_msgTypes[408] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32080,7 +32228,7 @@ func (x *ResourcePool) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourcePool.ProtoReflect.Descriptor instead. func (*ResourcePool) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{406} + return file_nico_nico_proto_rawDescGZIP(), []int{408} } func (x *ResourcePool) GetName() string { @@ -32128,7 +32276,7 @@ type GrowResourcePoolRequest struct { func (x *GrowResourcePoolRequest) Reset() { *x = GrowResourcePoolRequest{} - mi := &file_nico_nico_proto_msgTypes[407] + mi := &file_nico_nico_proto_msgTypes[409] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32140,7 +32288,7 @@ func (x *GrowResourcePoolRequest) String() string { func (*GrowResourcePoolRequest) ProtoMessage() {} func (x *GrowResourcePoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[407] + mi := &file_nico_nico_proto_msgTypes[409] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32153,7 +32301,7 @@ func (x *GrowResourcePoolRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GrowResourcePoolRequest.ProtoReflect.Descriptor instead. func (*GrowResourcePoolRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{407} + return file_nico_nico_proto_rawDescGZIP(), []int{409} } func (x *GrowResourcePoolRequest) GetText() string { @@ -32171,7 +32319,7 @@ type GrowResourcePoolResponse struct { func (x *GrowResourcePoolResponse) Reset() { *x = GrowResourcePoolResponse{} - mi := &file_nico_nico_proto_msgTypes[408] + mi := &file_nico_nico_proto_msgTypes[410] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32183,7 +32331,7 @@ func (x *GrowResourcePoolResponse) String() string { func (*GrowResourcePoolResponse) ProtoMessage() {} func (x *GrowResourcePoolResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[408] + mi := &file_nico_nico_proto_msgTypes[410] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32196,7 +32344,7 @@ func (x *GrowResourcePoolResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GrowResourcePoolResponse.ProtoReflect.Descriptor instead. func (*GrowResourcePoolResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{408} + return file_nico_nico_proto_rawDescGZIP(), []int{410} } type Range struct { @@ -32209,7 +32357,7 @@ type Range struct { func (x *Range) Reset() { *x = Range{} - mi := &file_nico_nico_proto_msgTypes[409] + mi := &file_nico_nico_proto_msgTypes[411] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32221,7 +32369,7 @@ func (x *Range) String() string { func (*Range) ProtoMessage() {} func (x *Range) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[409] + mi := &file_nico_nico_proto_msgTypes[411] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32234,7 +32382,7 @@ func (x *Range) ProtoReflect() protoreflect.Message { // Deprecated: Use Range.ProtoReflect.Descriptor instead. func (*Range) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{409} + return file_nico_nico_proto_rawDescGZIP(), []int{411} } func (x *Range) GetStart() string { @@ -32261,7 +32409,7 @@ type MigrateVpcVniResponse struct { func (x *MigrateVpcVniResponse) Reset() { *x = MigrateVpcVniResponse{} - mi := &file_nico_nico_proto_msgTypes[410] + mi := &file_nico_nico_proto_msgTypes[412] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32273,7 +32421,7 @@ func (x *MigrateVpcVniResponse) String() string { func (*MigrateVpcVniResponse) ProtoMessage() {} func (x *MigrateVpcVniResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[410] + mi := &file_nico_nico_proto_msgTypes[412] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32286,7 +32434,7 @@ func (x *MigrateVpcVniResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MigrateVpcVniResponse.ProtoReflect.Descriptor instead. func (*MigrateVpcVniResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{410} + return file_nico_nico_proto_rawDescGZIP(), []int{412} } func (x *MigrateVpcVniResponse) GetUpdatedCount() uint32 { @@ -32316,7 +32464,7 @@ type MaintenanceRequest struct { func (x *MaintenanceRequest) Reset() { *x = MaintenanceRequest{} - mi := &file_nico_nico_proto_msgTypes[411] + mi := &file_nico_nico_proto_msgTypes[413] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32328,7 +32476,7 @@ func (x *MaintenanceRequest) String() string { func (*MaintenanceRequest) ProtoMessage() {} func (x *MaintenanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[411] + mi := &file_nico_nico_proto_msgTypes[413] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32341,7 +32489,7 @@ func (x *MaintenanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MaintenanceRequest.ProtoReflect.Descriptor instead. func (*MaintenanceRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{411} + return file_nico_nico_proto_rawDescGZIP(), []int{413} } func (x *MaintenanceRequest) GetOperation() MaintenanceOperation { @@ -32376,7 +32524,7 @@ type SetDynamicConfigRequest struct { func (x *SetDynamicConfigRequest) Reset() { *x = SetDynamicConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[412] + mi := &file_nico_nico_proto_msgTypes[414] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32388,7 +32536,7 @@ func (x *SetDynamicConfigRequest) String() string { func (*SetDynamicConfigRequest) ProtoMessage() {} func (x *SetDynamicConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[412] + mi := &file_nico_nico_proto_msgTypes[414] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32401,7 +32549,7 @@ func (x *SetDynamicConfigRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetDynamicConfigRequest.ProtoReflect.Descriptor instead. func (*SetDynamicConfigRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{412} + return file_nico_nico_proto_rawDescGZIP(), []int{414} } func (x *SetDynamicConfigRequest) GetSetting() ConfigSetting { @@ -32434,7 +32582,7 @@ type FindIpAddressRequest struct { func (x *FindIpAddressRequest) Reset() { *x = FindIpAddressRequest{} - mi := &file_nico_nico_proto_msgTypes[413] + mi := &file_nico_nico_proto_msgTypes[415] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32446,7 +32594,7 @@ func (x *FindIpAddressRequest) String() string { func (*FindIpAddressRequest) ProtoMessage() {} func (x *FindIpAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[413] + mi := &file_nico_nico_proto_msgTypes[415] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32459,7 +32607,7 @@ func (x *FindIpAddressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FindIpAddressRequest.ProtoReflect.Descriptor instead. func (*FindIpAddressRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{413} + return file_nico_nico_proto_rawDescGZIP(), []int{415} } func (x *FindIpAddressRequest) GetIp() string { @@ -32479,7 +32627,7 @@ type FindIpAddressResponse struct { func (x *FindIpAddressResponse) Reset() { *x = FindIpAddressResponse{} - mi := &file_nico_nico_proto_msgTypes[414] + mi := &file_nico_nico_proto_msgTypes[416] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32491,7 +32639,7 @@ func (x *FindIpAddressResponse) String() string { func (*FindIpAddressResponse) ProtoMessage() {} func (x *FindIpAddressResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[414] + mi := &file_nico_nico_proto_msgTypes[416] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32504,7 +32652,7 @@ func (x *FindIpAddressResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use FindIpAddressResponse.ProtoReflect.Descriptor instead. func (*FindIpAddressResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{414} + return file_nico_nico_proto_rawDescGZIP(), []int{416} } func (x *FindIpAddressResponse) GetMatches() []*IpAddressMatch { @@ -32530,7 +32678,7 @@ type IdentifyUuidRequest struct { func (x *IdentifyUuidRequest) Reset() { *x = IdentifyUuidRequest{} - mi := &file_nico_nico_proto_msgTypes[415] + mi := &file_nico_nico_proto_msgTypes[417] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32542,7 +32690,7 @@ func (x *IdentifyUuidRequest) String() string { func (*IdentifyUuidRequest) ProtoMessage() {} func (x *IdentifyUuidRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[415] + mi := &file_nico_nico_proto_msgTypes[417] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32555,7 +32703,7 @@ func (x *IdentifyUuidRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentifyUuidRequest.ProtoReflect.Descriptor instead. func (*IdentifyUuidRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{415} + return file_nico_nico_proto_rawDescGZIP(), []int{417} } func (x *IdentifyUuidRequest) GetUuid() *UUID { @@ -32575,7 +32723,7 @@ type IdentifyUuidResponse struct { func (x *IdentifyUuidResponse) Reset() { *x = IdentifyUuidResponse{} - mi := &file_nico_nico_proto_msgTypes[416] + mi := &file_nico_nico_proto_msgTypes[418] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32587,7 +32735,7 @@ func (x *IdentifyUuidResponse) String() string { func (*IdentifyUuidResponse) ProtoMessage() {} func (x *IdentifyUuidResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[416] + mi := &file_nico_nico_proto_msgTypes[418] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32600,7 +32748,7 @@ func (x *IdentifyUuidResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentifyUuidResponse.ProtoReflect.Descriptor instead. func (*IdentifyUuidResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{416} + return file_nico_nico_proto_rawDescGZIP(), []int{418} } func (x *IdentifyUuidResponse) GetUuid() *UUID { @@ -32630,7 +32778,7 @@ type FindBmcIpsRequest struct { func (x *FindBmcIpsRequest) Reset() { *x = FindBmcIpsRequest{} - mi := &file_nico_nico_proto_msgTypes[417] + mi := &file_nico_nico_proto_msgTypes[419] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32642,7 +32790,7 @@ func (x *FindBmcIpsRequest) String() string { func (*FindBmcIpsRequest) ProtoMessage() {} func (x *FindBmcIpsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[417] + mi := &file_nico_nico_proto_msgTypes[419] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32655,7 +32803,7 @@ func (x *FindBmcIpsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FindBmcIpsRequest.ProtoReflect.Descriptor instead. func (*FindBmcIpsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{417} + return file_nico_nico_proto_rawDescGZIP(), []int{419} } func (x *FindBmcIpsRequest) GetLookupBy() isFindBmcIpsRequest_LookupBy { @@ -32708,7 +32856,7 @@ type IdentifyMacRequest struct { func (x *IdentifyMacRequest) Reset() { *x = IdentifyMacRequest{} - mi := &file_nico_nico_proto_msgTypes[418] + mi := &file_nico_nico_proto_msgTypes[420] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32720,7 +32868,7 @@ func (x *IdentifyMacRequest) String() string { func (*IdentifyMacRequest) ProtoMessage() {} func (x *IdentifyMacRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[418] + mi := &file_nico_nico_proto_msgTypes[420] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32733,7 +32881,7 @@ func (x *IdentifyMacRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentifyMacRequest.ProtoReflect.Descriptor instead. func (*IdentifyMacRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{418} + return file_nico_nico_proto_rawDescGZIP(), []int{420} } func (x *IdentifyMacRequest) GetMacAddress() string { @@ -32754,7 +32902,7 @@ type IdentifyMacResponse struct { func (x *IdentifyMacResponse) Reset() { *x = IdentifyMacResponse{} - mi := &file_nico_nico_proto_msgTypes[419] + mi := &file_nico_nico_proto_msgTypes[421] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32766,7 +32914,7 @@ func (x *IdentifyMacResponse) String() string { func (*IdentifyMacResponse) ProtoMessage() {} func (x *IdentifyMacResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[419] + mi := &file_nico_nico_proto_msgTypes[421] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32779,7 +32927,7 @@ func (x *IdentifyMacResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentifyMacResponse.ProtoReflect.Descriptor instead. func (*IdentifyMacResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{419} + return file_nico_nico_proto_rawDescGZIP(), []int{421} } func (x *IdentifyMacResponse) GetMacAddress() string { @@ -32814,7 +32962,7 @@ type IdentifySerialRequest struct { func (x *IdentifySerialRequest) Reset() { *x = IdentifySerialRequest{} - mi := &file_nico_nico_proto_msgTypes[420] + mi := &file_nico_nico_proto_msgTypes[422] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32826,7 +32974,7 @@ func (x *IdentifySerialRequest) String() string { func (*IdentifySerialRequest) ProtoMessage() {} func (x *IdentifySerialRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[420] + mi := &file_nico_nico_proto_msgTypes[422] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32839,7 +32987,7 @@ func (x *IdentifySerialRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentifySerialRequest.ProtoReflect.Descriptor instead. func (*IdentifySerialRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{420} + return file_nico_nico_proto_rawDescGZIP(), []int{422} } func (x *IdentifySerialRequest) GetSerialNumber() string { @@ -32866,7 +33014,7 @@ type IdentifySerialResponse struct { func (x *IdentifySerialResponse) Reset() { *x = IdentifySerialResponse{} - mi := &file_nico_nico_proto_msgTypes[421] + mi := &file_nico_nico_proto_msgTypes[423] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32878,7 +33026,7 @@ func (x *IdentifySerialResponse) String() string { func (*IdentifySerialResponse) ProtoMessage() {} func (x *IdentifySerialResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[421] + mi := &file_nico_nico_proto_msgTypes[423] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32891,7 +33039,7 @@ func (x *IdentifySerialResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentifySerialResponse.ProtoReflect.Descriptor instead. func (*IdentifySerialResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{421} + return file_nico_nico_proto_rawDescGZIP(), []int{423} } func (x *IdentifySerialResponse) GetSerialNumber() string { @@ -32922,7 +33070,7 @@ type DpuReprovisioningRequest struct { func (x *DpuReprovisioningRequest) Reset() { *x = DpuReprovisioningRequest{} - mi := &file_nico_nico_proto_msgTypes[422] + mi := &file_nico_nico_proto_msgTypes[424] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32934,7 +33082,7 @@ func (x *DpuReprovisioningRequest) String() string { func (*DpuReprovisioningRequest) ProtoMessage() {} func (x *DpuReprovisioningRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[422] + mi := &file_nico_nico_proto_msgTypes[424] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32947,7 +33095,7 @@ func (x *DpuReprovisioningRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuReprovisioningRequest.ProtoReflect.Descriptor instead. func (*DpuReprovisioningRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{422} + return file_nico_nico_proto_rawDescGZIP(), []int{424} } func (x *DpuReprovisioningRequest) GetDpuId() *MachineId { @@ -32993,7 +33141,7 @@ type DpuReprovisioningListRequest struct { func (x *DpuReprovisioningListRequest) Reset() { *x = DpuReprovisioningListRequest{} - mi := &file_nico_nico_proto_msgTypes[423] + mi := &file_nico_nico_proto_msgTypes[425] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33005,7 +33153,7 @@ func (x *DpuReprovisioningListRequest) String() string { func (*DpuReprovisioningListRequest) ProtoMessage() {} func (x *DpuReprovisioningListRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[423] + mi := &file_nico_nico_proto_msgTypes[425] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33018,7 +33166,7 @@ func (x *DpuReprovisioningListRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuReprovisioningListRequest.ProtoReflect.Descriptor instead. func (*DpuReprovisioningListRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{423} + return file_nico_nico_proto_rawDescGZIP(), []int{425} } type DpuReprovisioningListResponse struct { @@ -33030,7 +33178,7 @@ type DpuReprovisioningListResponse struct { func (x *DpuReprovisioningListResponse) Reset() { *x = DpuReprovisioningListResponse{} - mi := &file_nico_nico_proto_msgTypes[424] + mi := &file_nico_nico_proto_msgTypes[426] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33042,7 +33190,7 @@ func (x *DpuReprovisioningListResponse) String() string { func (*DpuReprovisioningListResponse) ProtoMessage() {} func (x *DpuReprovisioningListResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[424] + mi := &file_nico_nico_proto_msgTypes[426] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33055,7 +33203,7 @@ func (x *DpuReprovisioningListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuReprovisioningListResponse.ProtoReflect.Descriptor instead. func (*DpuReprovisioningListResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{424} + return file_nico_nico_proto_rawDescGZIP(), []int{426} } func (x *DpuReprovisioningListResponse) GetDpus() []*DpuReprovisioningListResponse_DpuReprovisioningListItem { @@ -33076,7 +33224,7 @@ type HostReprovisioningRequest struct { func (x *HostReprovisioningRequest) Reset() { *x = HostReprovisioningRequest{} - mi := &file_nico_nico_proto_msgTypes[425] + mi := &file_nico_nico_proto_msgTypes[427] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33088,7 +33236,7 @@ func (x *HostReprovisioningRequest) String() string { func (*HostReprovisioningRequest) ProtoMessage() {} func (x *HostReprovisioningRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[425] + mi := &file_nico_nico_proto_msgTypes[427] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33101,7 +33249,7 @@ func (x *HostReprovisioningRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use HostReprovisioningRequest.ProtoReflect.Descriptor instead. func (*HostReprovisioningRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{425} + return file_nico_nico_proto_rawDescGZIP(), []int{427} } func (x *HostReprovisioningRequest) GetMachineId() *MachineId { @@ -33133,7 +33281,7 @@ type HostReprovisioningListRequest struct { func (x *HostReprovisioningListRequest) Reset() { *x = HostReprovisioningListRequest{} - mi := &file_nico_nico_proto_msgTypes[426] + mi := &file_nico_nico_proto_msgTypes[428] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33145,7 +33293,7 @@ func (x *HostReprovisioningListRequest) String() string { func (*HostReprovisioningListRequest) ProtoMessage() {} func (x *HostReprovisioningListRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[426] + mi := &file_nico_nico_proto_msgTypes[428] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33158,7 +33306,7 @@ func (x *HostReprovisioningListRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use HostReprovisioningListRequest.ProtoReflect.Descriptor instead. func (*HostReprovisioningListRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{426} + return file_nico_nico_proto_rawDescGZIP(), []int{428} } type HostReprovisioningListResponse struct { @@ -33170,7 +33318,7 @@ type HostReprovisioningListResponse struct { func (x *HostReprovisioningListResponse) Reset() { *x = HostReprovisioningListResponse{} - mi := &file_nico_nico_proto_msgTypes[427] + mi := &file_nico_nico_proto_msgTypes[429] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33182,7 +33330,7 @@ func (x *HostReprovisioningListResponse) String() string { func (*HostReprovisioningListResponse) ProtoMessage() {} func (x *HostReprovisioningListResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[427] + mi := &file_nico_nico_proto_msgTypes[429] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33195,7 +33343,7 @@ func (x *HostReprovisioningListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use HostReprovisioningListResponse.ProtoReflect.Descriptor instead. func (*HostReprovisioningListResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{427} + return file_nico_nico_proto_rawDescGZIP(), []int{429} } func (x *HostReprovisioningListResponse) GetHosts() []*HostReprovisioningListResponse_HostReprovisioningListItem { @@ -33214,7 +33362,7 @@ type DpuOsOperationalState struct { func (x *DpuOsOperationalState) Reset() { *x = DpuOsOperationalState{} - mi := &file_nico_nico_proto_msgTypes[428] + mi := &file_nico_nico_proto_msgTypes[430] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33226,7 +33374,7 @@ func (x *DpuOsOperationalState) String() string { func (*DpuOsOperationalState) ProtoMessage() {} func (x *DpuOsOperationalState) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[428] + mi := &file_nico_nico_proto_msgTypes[430] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33239,7 +33387,7 @@ func (x *DpuOsOperationalState) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuOsOperationalState.ProtoReflect.Descriptor instead. func (*DpuOsOperationalState) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{428} + return file_nico_nico_proto_rawDescGZIP(), []int{430} } func (x *DpuOsOperationalState) GetStateDetail() string { @@ -33260,7 +33408,7 @@ type DpuRepresentorStatus struct { func (x *DpuRepresentorStatus) Reset() { *x = DpuRepresentorStatus{} - mi := &file_nico_nico_proto_msgTypes[429] + mi := &file_nico_nico_proto_msgTypes[431] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33272,7 +33420,7 @@ func (x *DpuRepresentorStatus) String() string { func (*DpuRepresentorStatus) ProtoMessage() {} func (x *DpuRepresentorStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[429] + mi := &file_nico_nico_proto_msgTypes[431] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33285,7 +33433,7 @@ func (x *DpuRepresentorStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuRepresentorStatus.ProtoReflect.Descriptor instead. func (*DpuRepresentorStatus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{429} + return file_nico_nico_proto_rawDescGZIP(), []int{431} } func (x *DpuRepresentorStatus) GetName() string { @@ -33321,7 +33469,7 @@ type DpuInfoStatusObservation struct { func (x *DpuInfoStatusObservation) Reset() { *x = DpuInfoStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[430] + mi := &file_nico_nico_proto_msgTypes[432] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33333,7 +33481,7 @@ func (x *DpuInfoStatusObservation) String() string { func (*DpuInfoStatusObservation) ProtoMessage() {} func (x *DpuInfoStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[430] + mi := &file_nico_nico_proto_msgTypes[432] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33346,7 +33494,7 @@ func (x *DpuInfoStatusObservation) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuInfoStatusObservation.ProtoReflect.Descriptor instead. func (*DpuInfoStatusObservation) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{430} + return file_nico_nico_proto_rawDescGZIP(), []int{432} } func (x *DpuInfoStatusObservation) GetOsOperationalState() *DpuOsOperationalState { @@ -33388,7 +33536,7 @@ type DpuInfo struct { func (x *DpuInfo) Reset() { *x = DpuInfo{} - mi := &file_nico_nico_proto_msgTypes[431] + mi := &file_nico_nico_proto_msgTypes[433] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33400,7 +33548,7 @@ func (x *DpuInfo) String() string { func (*DpuInfo) ProtoMessage() {} func (x *DpuInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[431] + mi := &file_nico_nico_proto_msgTypes[433] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33413,7 +33561,7 @@ func (x *DpuInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuInfo.ProtoReflect.Descriptor instead. func (*DpuInfo) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{431} + return file_nico_nico_proto_rawDescGZIP(), []int{433} } func (x *DpuInfo) GetId() string { @@ -33445,7 +33593,7 @@ type GetDpuInfoListRequest struct { func (x *GetDpuInfoListRequest) Reset() { *x = GetDpuInfoListRequest{} - mi := &file_nico_nico_proto_msgTypes[432] + mi := &file_nico_nico_proto_msgTypes[434] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33457,7 +33605,7 @@ func (x *GetDpuInfoListRequest) String() string { func (*GetDpuInfoListRequest) ProtoMessage() {} func (x *GetDpuInfoListRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[432] + mi := &file_nico_nico_proto_msgTypes[434] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33470,7 +33618,7 @@ func (x *GetDpuInfoListRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetDpuInfoListRequest.ProtoReflect.Descriptor instead. func (*GetDpuInfoListRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{432} + return file_nico_nico_proto_rawDescGZIP(), []int{434} } type GetDpuInfoListResponse struct { @@ -33482,7 +33630,7 @@ type GetDpuInfoListResponse struct { func (x *GetDpuInfoListResponse) Reset() { *x = GetDpuInfoListResponse{} - mi := &file_nico_nico_proto_msgTypes[433] + mi := &file_nico_nico_proto_msgTypes[435] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33494,7 +33642,7 @@ func (x *GetDpuInfoListResponse) String() string { func (*GetDpuInfoListResponse) ProtoMessage() {} func (x *GetDpuInfoListResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[433] + mi := &file_nico_nico_proto_msgTypes[435] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33507,7 +33655,7 @@ func (x *GetDpuInfoListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetDpuInfoListResponse.ProtoReflect.Descriptor instead. func (*GetDpuInfoListResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{433} + return file_nico_nico_proto_rawDescGZIP(), []int{435} } func (x *GetDpuInfoListResponse) GetDpuList() []*DpuInfo { @@ -33528,7 +33676,7 @@ type IpAddressMatch struct { func (x *IpAddressMatch) Reset() { *x = IpAddressMatch{} - mi := &file_nico_nico_proto_msgTypes[434] + mi := &file_nico_nico_proto_msgTypes[436] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33540,7 +33688,7 @@ func (x *IpAddressMatch) String() string { func (*IpAddressMatch) ProtoMessage() {} func (x *IpAddressMatch) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[434] + mi := &file_nico_nico_proto_msgTypes[436] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33553,7 +33701,7 @@ func (x *IpAddressMatch) ProtoReflect() protoreflect.Message { // Deprecated: Use IpAddressMatch.ProtoReflect.Descriptor instead. func (*IpAddressMatch) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{434} + return file_nico_nico_proto_rawDescGZIP(), []int{436} } func (x *IpAddressMatch) GetIpType() IpType { @@ -33588,7 +33736,7 @@ type MachineBootOverride struct { func (x *MachineBootOverride) Reset() { *x = MachineBootOverride{} - mi := &file_nico_nico_proto_msgTypes[435] + mi := &file_nico_nico_proto_msgTypes[437] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33600,7 +33748,7 @@ func (x *MachineBootOverride) String() string { func (*MachineBootOverride) ProtoMessage() {} func (x *MachineBootOverride) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[435] + mi := &file_nico_nico_proto_msgTypes[437] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33613,7 +33761,7 @@ func (x *MachineBootOverride) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineBootOverride.ProtoReflect.Descriptor instead. func (*MachineBootOverride) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{435} + return file_nico_nico_proto_rawDescGZIP(), []int{437} } func (x *MachineBootOverride) GetMachineInterfaceId() *MachineInterfaceId { @@ -33650,7 +33798,7 @@ type ConnectedDevice struct { func (x *ConnectedDevice) Reset() { *x = ConnectedDevice{} - mi := &file_nico_nico_proto_msgTypes[436] + mi := &file_nico_nico_proto_msgTypes[438] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33662,7 +33810,7 @@ func (x *ConnectedDevice) String() string { func (*ConnectedDevice) ProtoMessage() {} func (x *ConnectedDevice) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[436] + mi := &file_nico_nico_proto_msgTypes[438] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33675,7 +33823,7 @@ func (x *ConnectedDevice) ProtoReflect() protoreflect.Message { // Deprecated: Use ConnectedDevice.ProtoReflect.Descriptor instead. func (*ConnectedDevice) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{436} + return file_nico_nico_proto_rawDescGZIP(), []int{438} } func (x *ConnectedDevice) GetId() *MachineId { @@ -33715,7 +33863,7 @@ type ConnectedDeviceList struct { func (x *ConnectedDeviceList) Reset() { *x = ConnectedDeviceList{} - mi := &file_nico_nico_proto_msgTypes[437] + mi := &file_nico_nico_proto_msgTypes[439] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33727,7 +33875,7 @@ func (x *ConnectedDeviceList) String() string { func (*ConnectedDeviceList) ProtoMessage() {} func (x *ConnectedDeviceList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[437] + mi := &file_nico_nico_proto_msgTypes[439] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33740,7 +33888,7 @@ func (x *ConnectedDeviceList) ProtoReflect() protoreflect.Message { // Deprecated: Use ConnectedDeviceList.ProtoReflect.Descriptor instead. func (*ConnectedDeviceList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{437} + return file_nico_nico_proto_rawDescGZIP(), []int{439} } func (x *ConnectedDeviceList) GetConnectedDevices() []*ConnectedDevice { @@ -33759,7 +33907,7 @@ type BmcIpList struct { func (x *BmcIpList) Reset() { *x = BmcIpList{} - mi := &file_nico_nico_proto_msgTypes[438] + mi := &file_nico_nico_proto_msgTypes[440] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33771,7 +33919,7 @@ func (x *BmcIpList) String() string { func (*BmcIpList) ProtoMessage() {} func (x *BmcIpList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[438] + mi := &file_nico_nico_proto_msgTypes[440] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33784,7 +33932,7 @@ func (x *BmcIpList) ProtoReflect() protoreflect.Message { // Deprecated: Use BmcIpList.ProtoReflect.Descriptor instead. func (*BmcIpList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{438} + return file_nico_nico_proto_rawDescGZIP(), []int{440} } func (x *BmcIpList) GetBmcIps() []string { @@ -33803,7 +33951,7 @@ type BmcIp struct { func (x *BmcIp) Reset() { *x = BmcIp{} - mi := &file_nico_nico_proto_msgTypes[439] + mi := &file_nico_nico_proto_msgTypes[441] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33815,7 +33963,7 @@ func (x *BmcIp) String() string { func (*BmcIp) ProtoMessage() {} func (x *BmcIp) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[439] + mi := &file_nico_nico_proto_msgTypes[441] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33828,7 +33976,7 @@ func (x *BmcIp) ProtoReflect() protoreflect.Message { // Deprecated: Use BmcIp.ProtoReflect.Descriptor instead. func (*BmcIp) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{439} + return file_nico_nico_proto_rawDescGZIP(), []int{441} } func (x *BmcIp) GetBmcIp() string { @@ -33848,7 +33996,7 @@ type MacAddressBmcIp struct { func (x *MacAddressBmcIp) Reset() { *x = MacAddressBmcIp{} - mi := &file_nico_nico_proto_msgTypes[440] + mi := &file_nico_nico_proto_msgTypes[442] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33860,7 +34008,7 @@ func (x *MacAddressBmcIp) String() string { func (*MacAddressBmcIp) ProtoMessage() {} func (x *MacAddressBmcIp) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[440] + mi := &file_nico_nico_proto_msgTypes[442] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33873,7 +34021,7 @@ func (x *MacAddressBmcIp) ProtoReflect() protoreflect.Message { // Deprecated: Use MacAddressBmcIp.ProtoReflect.Descriptor instead. func (*MacAddressBmcIp) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{440} + return file_nico_nico_proto_rawDescGZIP(), []int{442} } func (x *MacAddressBmcIp) GetBmcIp() string { @@ -33899,7 +34047,7 @@ type MachineIdBmcIpPairs struct { func (x *MachineIdBmcIpPairs) Reset() { *x = MachineIdBmcIpPairs{} - mi := &file_nico_nico_proto_msgTypes[441] + mi := &file_nico_nico_proto_msgTypes[443] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33911,7 +34059,7 @@ func (x *MachineIdBmcIpPairs) String() string { func (*MachineIdBmcIpPairs) ProtoMessage() {} func (x *MachineIdBmcIpPairs) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[441] + mi := &file_nico_nico_proto_msgTypes[443] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33924,7 +34072,7 @@ func (x *MachineIdBmcIpPairs) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineIdBmcIpPairs.ProtoReflect.Descriptor instead. func (*MachineIdBmcIpPairs) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{441} + return file_nico_nico_proto_rawDescGZIP(), []int{443} } func (x *MachineIdBmcIpPairs) GetPairs() []*MachineIdBmcIp { @@ -33944,7 +34092,7 @@ type MachineIdBmcIp struct { func (x *MachineIdBmcIp) Reset() { *x = MachineIdBmcIp{} - mi := &file_nico_nico_proto_msgTypes[442] + mi := &file_nico_nico_proto_msgTypes[444] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33956,7 +34104,7 @@ func (x *MachineIdBmcIp) String() string { func (*MachineIdBmcIp) ProtoMessage() {} func (x *MachineIdBmcIp) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[442] + mi := &file_nico_nico_proto_msgTypes[444] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33969,7 +34117,7 @@ func (x *MachineIdBmcIp) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineIdBmcIp.ProtoReflect.Descriptor instead. func (*MachineIdBmcIp) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{442} + return file_nico_nico_proto_rawDescGZIP(), []int{444} } func (x *MachineIdBmcIp) GetMachineId() *MachineId { @@ -34002,7 +34150,7 @@ type NetworkDevice struct { func (x *NetworkDevice) Reset() { *x = NetworkDevice{} - mi := &file_nico_nico_proto_msgTypes[443] + mi := &file_nico_nico_proto_msgTypes[445] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34014,7 +34162,7 @@ func (x *NetworkDevice) String() string { func (*NetworkDevice) ProtoMessage() {} func (x *NetworkDevice) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[443] + mi := &file_nico_nico_proto_msgTypes[445] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34027,7 +34175,7 @@ func (x *NetworkDevice) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkDevice.ProtoReflect.Descriptor instead. func (*NetworkDevice) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{443} + return file_nico_nico_proto_rawDescGZIP(), []int{445} } func (x *NetworkDevice) GetId() string { @@ -34088,7 +34236,7 @@ type NetworkTopologyRequest struct { func (x *NetworkTopologyRequest) Reset() { *x = NetworkTopologyRequest{} - mi := &file_nico_nico_proto_msgTypes[444] + mi := &file_nico_nico_proto_msgTypes[446] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34100,7 +34248,7 @@ func (x *NetworkTopologyRequest) String() string { func (*NetworkTopologyRequest) ProtoMessage() {} func (x *NetworkTopologyRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[444] + mi := &file_nico_nico_proto_msgTypes[446] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34113,7 +34261,7 @@ func (x *NetworkTopologyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkTopologyRequest.ProtoReflect.Descriptor instead. func (*NetworkTopologyRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{444} + return file_nico_nico_proto_rawDescGZIP(), []int{446} } func (x *NetworkTopologyRequest) GetId() string { @@ -34132,7 +34280,7 @@ type NetworkDeviceIdList struct { func (x *NetworkDeviceIdList) Reset() { *x = NetworkDeviceIdList{} - mi := &file_nico_nico_proto_msgTypes[445] + mi := &file_nico_nico_proto_msgTypes[447] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34144,7 +34292,7 @@ func (x *NetworkDeviceIdList) String() string { func (*NetworkDeviceIdList) ProtoMessage() {} func (x *NetworkDeviceIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[445] + mi := &file_nico_nico_proto_msgTypes[447] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34157,7 +34305,7 @@ func (x *NetworkDeviceIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkDeviceIdList.ProtoReflect.Descriptor instead. func (*NetworkDeviceIdList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{445} + return file_nico_nico_proto_rawDescGZIP(), []int{447} } func (x *NetworkDeviceIdList) GetNetworkDeviceIds() []string { @@ -34176,7 +34324,7 @@ type NetworkTopologyData struct { func (x *NetworkTopologyData) Reset() { *x = NetworkTopologyData{} - mi := &file_nico_nico_proto_msgTypes[446] + mi := &file_nico_nico_proto_msgTypes[448] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34188,7 +34336,7 @@ func (x *NetworkTopologyData) String() string { func (*NetworkTopologyData) ProtoMessage() {} func (x *NetworkTopologyData) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[446] + mi := &file_nico_nico_proto_msgTypes[448] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34201,7 +34349,7 @@ func (x *NetworkTopologyData) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkTopologyData.ProtoReflect.Descriptor instead. func (*NetworkTopologyData) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{446} + return file_nico_nico_proto_rawDescGZIP(), []int{448} } func (x *NetworkTopologyData) GetNetworkDevices() []*NetworkDevice { @@ -34235,7 +34383,7 @@ type RouteServers struct { func (x *RouteServers) Reset() { *x = RouteServers{} - mi := &file_nico_nico_proto_msgTypes[447] + mi := &file_nico_nico_proto_msgTypes[449] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34247,7 +34395,7 @@ func (x *RouteServers) String() string { func (*RouteServers) ProtoMessage() {} func (x *RouteServers) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[447] + mi := &file_nico_nico_proto_msgTypes[449] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34260,7 +34408,7 @@ func (x *RouteServers) ProtoReflect() protoreflect.Message { // Deprecated: Use RouteServers.ProtoReflect.Descriptor instead. func (*RouteServers) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{447} + return file_nico_nico_proto_rawDescGZIP(), []int{449} } func (x *RouteServers) GetRouteServers() []string { @@ -34286,7 +34434,7 @@ type RouteServerEntries struct { func (x *RouteServerEntries) Reset() { *x = RouteServerEntries{} - mi := &file_nico_nico_proto_msgTypes[448] + mi := &file_nico_nico_proto_msgTypes[450] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34298,7 +34446,7 @@ func (x *RouteServerEntries) String() string { func (*RouteServerEntries) ProtoMessage() {} func (x *RouteServerEntries) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[448] + mi := &file_nico_nico_proto_msgTypes[450] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34311,7 +34459,7 @@ func (x *RouteServerEntries) ProtoReflect() protoreflect.Message { // Deprecated: Use RouteServerEntries.ProtoReflect.Descriptor instead. func (*RouteServerEntries) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{448} + return file_nico_nico_proto_rawDescGZIP(), []int{450} } func (x *RouteServerEntries) GetRouteServers() []*RouteServer { @@ -34334,7 +34482,7 @@ type RouteServer struct { func (x *RouteServer) Reset() { *x = RouteServer{} - mi := &file_nico_nico_proto_msgTypes[449] + mi := &file_nico_nico_proto_msgTypes[451] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34346,7 +34494,7 @@ func (x *RouteServer) String() string { func (*RouteServer) ProtoMessage() {} func (x *RouteServer) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[449] + mi := &file_nico_nico_proto_msgTypes[451] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34359,7 +34507,7 @@ func (x *RouteServer) ProtoReflect() protoreflect.Message { // Deprecated: Use RouteServer.ProtoReflect.Descriptor instead. func (*RouteServer) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{449} + return file_nico_nico_proto_rawDescGZIP(), []int{451} } func (x *RouteServer) GetAddress() string { @@ -34388,7 +34536,7 @@ type SetHostUefiPasswordRequest struct { func (x *SetHostUefiPasswordRequest) Reset() { *x = SetHostUefiPasswordRequest{} - mi := &file_nico_nico_proto_msgTypes[450] + mi := &file_nico_nico_proto_msgTypes[452] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34400,7 +34548,7 @@ func (x *SetHostUefiPasswordRequest) String() string { func (*SetHostUefiPasswordRequest) ProtoMessage() {} func (x *SetHostUefiPasswordRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[450] + mi := &file_nico_nico_proto_msgTypes[452] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34413,7 +34561,7 @@ func (x *SetHostUefiPasswordRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetHostUefiPasswordRequest.ProtoReflect.Descriptor instead. func (*SetHostUefiPasswordRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{450} + return file_nico_nico_proto_rawDescGZIP(), []int{452} } func (x *SetHostUefiPasswordRequest) GetHostId() *MachineId { @@ -34439,7 +34587,7 @@ type SetHostUefiPasswordResponse struct { func (x *SetHostUefiPasswordResponse) Reset() { *x = SetHostUefiPasswordResponse{} - mi := &file_nico_nico_proto_msgTypes[451] + mi := &file_nico_nico_proto_msgTypes[453] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34451,7 +34599,7 @@ func (x *SetHostUefiPasswordResponse) String() string { func (*SetHostUefiPasswordResponse) ProtoMessage() {} func (x *SetHostUefiPasswordResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[451] + mi := &file_nico_nico_proto_msgTypes[453] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34464,7 +34612,7 @@ func (x *SetHostUefiPasswordResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SetHostUefiPasswordResponse.ProtoReflect.Descriptor instead. func (*SetHostUefiPasswordResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{451} + return file_nico_nico_proto_rawDescGZIP(), []int{453} } func (x *SetHostUefiPasswordResponse) GetJobId() string { @@ -34486,7 +34634,7 @@ type ClearHostUefiPasswordRequest struct { func (x *ClearHostUefiPasswordRequest) Reset() { *x = ClearHostUefiPasswordRequest{} - mi := &file_nico_nico_proto_msgTypes[452] + mi := &file_nico_nico_proto_msgTypes[454] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34498,7 +34646,7 @@ func (x *ClearHostUefiPasswordRequest) String() string { func (*ClearHostUefiPasswordRequest) ProtoMessage() {} func (x *ClearHostUefiPasswordRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[452] + mi := &file_nico_nico_proto_msgTypes[454] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34511,7 +34659,7 @@ func (x *ClearHostUefiPasswordRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ClearHostUefiPasswordRequest.ProtoReflect.Descriptor instead. func (*ClearHostUefiPasswordRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{452} + return file_nico_nico_proto_rawDescGZIP(), []int{454} } func (x *ClearHostUefiPasswordRequest) GetHostId() *MachineId { @@ -34537,7 +34685,7 @@ type ClearHostUefiPasswordResponse struct { func (x *ClearHostUefiPasswordResponse) Reset() { *x = ClearHostUefiPasswordResponse{} - mi := &file_nico_nico_proto_msgTypes[453] + mi := &file_nico_nico_proto_msgTypes[455] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34549,7 +34697,7 @@ func (x *ClearHostUefiPasswordResponse) String() string { func (*ClearHostUefiPasswordResponse) ProtoMessage() {} func (x *ClearHostUefiPasswordResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[453] + mi := &file_nico_nico_proto_msgTypes[455] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34562,7 +34710,7 @@ func (x *ClearHostUefiPasswordResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ClearHostUefiPasswordResponse.ProtoReflect.Descriptor instead. func (*ClearHostUefiPasswordResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{453} + return file_nico_nico_proto_rawDescGZIP(), []int{455} } func (x *ClearHostUefiPasswordResponse) GetJobId() string { @@ -34598,7 +34746,7 @@ type OsImageAttributes struct { func (x *OsImageAttributes) Reset() { *x = OsImageAttributes{} - mi := &file_nico_nico_proto_msgTypes[454] + mi := &file_nico_nico_proto_msgTypes[456] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34610,7 +34758,7 @@ func (x *OsImageAttributes) String() string { func (*OsImageAttributes) ProtoMessage() {} func (x *OsImageAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[454] + mi := &file_nico_nico_proto_msgTypes[456] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34623,7 +34771,7 @@ func (x *OsImageAttributes) ProtoReflect() protoreflect.Message { // Deprecated: Use OsImageAttributes.ProtoReflect.Descriptor instead. func (*OsImageAttributes) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{454} + return file_nico_nico_proto_rawDescGZIP(), []int{456} } func (x *OsImageAttributes) GetId() *UUID { @@ -34744,7 +34892,7 @@ type OsImage struct { func (x *OsImage) Reset() { *x = OsImage{} - mi := &file_nico_nico_proto_msgTypes[455] + mi := &file_nico_nico_proto_msgTypes[457] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34756,7 +34904,7 @@ func (x *OsImage) String() string { func (*OsImage) ProtoMessage() {} func (x *OsImage) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[455] + mi := &file_nico_nico_proto_msgTypes[457] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34769,7 +34917,7 @@ func (x *OsImage) ProtoReflect() protoreflect.Message { // Deprecated: Use OsImage.ProtoReflect.Descriptor instead. func (*OsImage) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{455} + return file_nico_nico_proto_rawDescGZIP(), []int{457} } func (x *OsImage) GetAttributes() *OsImageAttributes { @@ -34816,7 +34964,7 @@ type ListOsImageRequest struct { func (x *ListOsImageRequest) Reset() { *x = ListOsImageRequest{} - mi := &file_nico_nico_proto_msgTypes[456] + mi := &file_nico_nico_proto_msgTypes[458] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34828,7 +34976,7 @@ func (x *ListOsImageRequest) String() string { func (*ListOsImageRequest) ProtoMessage() {} func (x *ListOsImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[456] + mi := &file_nico_nico_proto_msgTypes[458] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34841,7 +34989,7 @@ func (x *ListOsImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListOsImageRequest.ProtoReflect.Descriptor instead. func (*ListOsImageRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{456} + return file_nico_nico_proto_rawDescGZIP(), []int{458} } func (x *ListOsImageRequest) GetTenantOrganizationId() string { @@ -34860,7 +35008,7 @@ type ListOsImageResponse struct { func (x *ListOsImageResponse) Reset() { *x = ListOsImageResponse{} - mi := &file_nico_nico_proto_msgTypes[457] + mi := &file_nico_nico_proto_msgTypes[459] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34872,7 +35020,7 @@ func (x *ListOsImageResponse) String() string { func (*ListOsImageResponse) ProtoMessage() {} func (x *ListOsImageResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[457] + mi := &file_nico_nico_proto_msgTypes[459] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34885,7 +35033,7 @@ func (x *ListOsImageResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListOsImageResponse.ProtoReflect.Descriptor instead. func (*ListOsImageResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{457} + return file_nico_nico_proto_rawDescGZIP(), []int{459} } func (x *ListOsImageResponse) GetImages() []*OsImage { @@ -34905,7 +35053,7 @@ type DeleteOsImageRequest struct { func (x *DeleteOsImageRequest) Reset() { *x = DeleteOsImageRequest{} - mi := &file_nico_nico_proto_msgTypes[458] + mi := &file_nico_nico_proto_msgTypes[460] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34917,7 +35065,7 @@ func (x *DeleteOsImageRequest) String() string { func (*DeleteOsImageRequest) ProtoMessage() {} func (x *DeleteOsImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[458] + mi := &file_nico_nico_proto_msgTypes[460] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34930,7 +35078,7 @@ func (x *DeleteOsImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteOsImageRequest.ProtoReflect.Descriptor instead. func (*DeleteOsImageRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{458} + return file_nico_nico_proto_rawDescGZIP(), []int{460} } func (x *DeleteOsImageRequest) GetId() *UUID { @@ -34955,7 +35103,7 @@ type DeleteOsImageResponse struct { func (x *DeleteOsImageResponse) Reset() { *x = DeleteOsImageResponse{} - mi := &file_nico_nico_proto_msgTypes[459] + mi := &file_nico_nico_proto_msgTypes[461] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34967,7 +35115,7 @@ func (x *DeleteOsImageResponse) String() string { func (*DeleteOsImageResponse) ProtoMessage() {} func (x *DeleteOsImageResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[459] + mi := &file_nico_nico_proto_msgTypes[461] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34980,7 +35128,7 @@ func (x *DeleteOsImageResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteOsImageResponse.ProtoReflect.Descriptor instead. func (*DeleteOsImageResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{459} + return file_nico_nico_proto_rawDescGZIP(), []int{461} } // Request/Response messages for iPXE Script Template management @@ -34993,7 +35141,7 @@ type GetIpxeTemplateRequest struct { func (x *GetIpxeTemplateRequest) Reset() { *x = GetIpxeTemplateRequest{} - mi := &file_nico_nico_proto_msgTypes[460] + mi := &file_nico_nico_proto_msgTypes[462] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35005,7 +35153,7 @@ func (x *GetIpxeTemplateRequest) String() string { func (*GetIpxeTemplateRequest) ProtoMessage() {} func (x *GetIpxeTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[460] + mi := &file_nico_nico_proto_msgTypes[462] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35018,7 +35166,7 @@ func (x *GetIpxeTemplateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIpxeTemplateRequest.ProtoReflect.Descriptor instead. func (*GetIpxeTemplateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{460} + return file_nico_nico_proto_rawDescGZIP(), []int{462} } func (x *GetIpxeTemplateRequest) GetId() *IpxeTemplateId { @@ -35036,7 +35184,7 @@ type ListIpxeTemplatesRequest struct { func (x *ListIpxeTemplatesRequest) Reset() { *x = ListIpxeTemplatesRequest{} - mi := &file_nico_nico_proto_msgTypes[461] + mi := &file_nico_nico_proto_msgTypes[463] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35048,7 +35196,7 @@ func (x *ListIpxeTemplatesRequest) String() string { func (*ListIpxeTemplatesRequest) ProtoMessage() {} func (x *ListIpxeTemplatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[461] + mi := &file_nico_nico_proto_msgTypes[463] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35061,7 +35209,7 @@ func (x *ListIpxeTemplatesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListIpxeTemplatesRequest.ProtoReflect.Descriptor instead. func (*ListIpxeTemplatesRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{461} + return file_nico_nico_proto_rawDescGZIP(), []int{463} } type IpxeTemplateList struct { @@ -35073,7 +35221,7 @@ type IpxeTemplateList struct { func (x *IpxeTemplateList) Reset() { *x = IpxeTemplateList{} - mi := &file_nico_nico_proto_msgTypes[462] + mi := &file_nico_nico_proto_msgTypes[464] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35085,7 +35233,7 @@ func (x *IpxeTemplateList) String() string { func (*IpxeTemplateList) ProtoMessage() {} func (x *IpxeTemplateList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[462] + mi := &file_nico_nico_proto_msgTypes[464] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35098,7 +35246,7 @@ func (x *IpxeTemplateList) ProtoReflect() protoreflect.Message { // Deprecated: Use IpxeTemplateList.ProtoReflect.Descriptor instead. func (*IpxeTemplateList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{462} + return file_nico_nico_proto_rawDescGZIP(), []int{464} } func (x *IpxeTemplateList) GetTemplates() []*IpxeTemplate { @@ -35139,7 +35287,7 @@ type ExpectedHostNic struct { func (x *ExpectedHostNic) Reset() { *x = ExpectedHostNic{} - mi := &file_nico_nico_proto_msgTypes[463] + mi := &file_nico_nico_proto_msgTypes[465] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35151,7 +35299,7 @@ func (x *ExpectedHostNic) String() string { func (*ExpectedHostNic) ProtoMessage() {} func (x *ExpectedHostNic) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[463] + mi := &file_nico_nico_proto_msgTypes[465] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35164,7 +35312,7 @@ func (x *ExpectedHostNic) ProtoReflect() protoreflect.Message { // Deprecated: Use ExpectedHostNic.ProtoReflect.Descriptor instead. func (*ExpectedHostNic) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{463} + return file_nico_nico_proto_rawDescGZIP(), []int{465} } func (x *ExpectedHostNic) GetMacAddress() string { @@ -35230,7 +35378,7 @@ type HostLifecycleProfile struct { func (x *HostLifecycleProfile) Reset() { *x = HostLifecycleProfile{} - mi := &file_nico_nico_proto_msgTypes[464] + mi := &file_nico_nico_proto_msgTypes[466] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35242,7 +35390,7 @@ func (x *HostLifecycleProfile) String() string { func (*HostLifecycleProfile) ProtoMessage() {} func (x *HostLifecycleProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[464] + mi := &file_nico_nico_proto_msgTypes[466] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35255,7 +35403,7 @@ func (x *HostLifecycleProfile) ProtoReflect() protoreflect.Message { // Deprecated: Use HostLifecycleProfile.ProtoReflect.Descriptor instead. func (*HostLifecycleProfile) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{464} + return file_nico_nico_proto_rawDescGZIP(), []int{466} } func (x *HostLifecycleProfile) GetDisableLockdown() bool { @@ -35316,7 +35464,7 @@ type ExpectedMachine struct { func (x *ExpectedMachine) Reset() { *x = ExpectedMachine{} - mi := &file_nico_nico_proto_msgTypes[465] + mi := &file_nico_nico_proto_msgTypes[467] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35328,7 +35476,7 @@ func (x *ExpectedMachine) String() string { func (*ExpectedMachine) ProtoMessage() {} func (x *ExpectedMachine) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[465] + mi := &file_nico_nico_proto_msgTypes[467] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35341,7 +35489,7 @@ func (x *ExpectedMachine) ProtoReflect() protoreflect.Message { // Deprecated: Use ExpectedMachine.ProtoReflect.Descriptor instead. func (*ExpectedMachine) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{465} + return file_nico_nico_proto_rawDescGZIP(), []int{467} } func (x *ExpectedMachine) GetBmcMacAddress() string { @@ -35539,7 +35687,7 @@ type ExpectedMachineRequest struct { func (x *ExpectedMachineRequest) Reset() { *x = ExpectedMachineRequest{} - mi := &file_nico_nico_proto_msgTypes[466] + mi := &file_nico_nico_proto_msgTypes[468] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35551,7 +35699,7 @@ func (x *ExpectedMachineRequest) String() string { func (*ExpectedMachineRequest) ProtoMessage() {} func (x *ExpectedMachineRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[466] + mi := &file_nico_nico_proto_msgTypes[468] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35564,7 +35712,7 @@ func (x *ExpectedMachineRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ExpectedMachineRequest.ProtoReflect.Descriptor instead. func (*ExpectedMachineRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{466} + return file_nico_nico_proto_rawDescGZIP(), []int{468} } func (x *ExpectedMachineRequest) GetBmcMacAddress() string { @@ -35590,7 +35738,7 @@ type ExpectedMachineList struct { func (x *ExpectedMachineList) Reset() { *x = ExpectedMachineList{} - mi := &file_nico_nico_proto_msgTypes[467] + mi := &file_nico_nico_proto_msgTypes[469] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35602,7 +35750,7 @@ func (x *ExpectedMachineList) String() string { func (*ExpectedMachineList) ProtoMessage() {} func (x *ExpectedMachineList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[467] + mi := &file_nico_nico_proto_msgTypes[469] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35615,7 +35763,7 @@ func (x *ExpectedMachineList) ProtoReflect() protoreflect.Message { // Deprecated: Use ExpectedMachineList.ProtoReflect.Descriptor instead. func (*ExpectedMachineList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{467} + return file_nico_nico_proto_rawDescGZIP(), []int{469} } func (x *ExpectedMachineList) GetExpectedMachines() []*ExpectedMachine { @@ -35634,7 +35782,7 @@ type LinkedExpectedMachineList struct { func (x *LinkedExpectedMachineList) Reset() { *x = LinkedExpectedMachineList{} - mi := &file_nico_nico_proto_msgTypes[468] + mi := &file_nico_nico_proto_msgTypes[470] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35646,7 +35794,7 @@ func (x *LinkedExpectedMachineList) String() string { func (*LinkedExpectedMachineList) ProtoMessage() {} func (x *LinkedExpectedMachineList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[468] + mi := &file_nico_nico_proto_msgTypes[470] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35659,7 +35807,7 @@ func (x *LinkedExpectedMachineList) ProtoReflect() protoreflect.Message { // Deprecated: Use LinkedExpectedMachineList.ProtoReflect.Descriptor instead. func (*LinkedExpectedMachineList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{468} + return file_nico_nico_proto_rawDescGZIP(), []int{470} } func (x *LinkedExpectedMachineList) GetExpectedMachines() []*LinkedExpectedMachine { @@ -35683,7 +35831,7 @@ type LinkedExpectedMachine struct { func (x *LinkedExpectedMachine) Reset() { *x = LinkedExpectedMachine{} - mi := &file_nico_nico_proto_msgTypes[469] + mi := &file_nico_nico_proto_msgTypes[471] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35695,7 +35843,7 @@ func (x *LinkedExpectedMachine) String() string { func (*LinkedExpectedMachine) ProtoMessage() {} func (x *LinkedExpectedMachine) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[469] + mi := &file_nico_nico_proto_msgTypes[471] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35708,7 +35856,7 @@ func (x *LinkedExpectedMachine) ProtoReflect() protoreflect.Message { // Deprecated: Use LinkedExpectedMachine.ProtoReflect.Descriptor instead. func (*LinkedExpectedMachine) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{469} + return file_nico_nico_proto_rawDescGZIP(), []int{471} } func (x *LinkedExpectedMachine) GetChassisSerialNumber() string { @@ -35762,7 +35910,7 @@ type UnexpectedMachineList struct { func (x *UnexpectedMachineList) Reset() { *x = UnexpectedMachineList{} - mi := &file_nico_nico_proto_msgTypes[470] + mi := &file_nico_nico_proto_msgTypes[472] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35774,7 +35922,7 @@ func (x *UnexpectedMachineList) String() string { func (*UnexpectedMachineList) ProtoMessage() {} func (x *UnexpectedMachineList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[470] + mi := &file_nico_nico_proto_msgTypes[472] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35787,7 +35935,7 @@ func (x *UnexpectedMachineList) ProtoReflect() protoreflect.Message { // Deprecated: Use UnexpectedMachineList.ProtoReflect.Descriptor instead. func (*UnexpectedMachineList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{470} + return file_nico_nico_proto_rawDescGZIP(), []int{472} } func (x *UnexpectedMachineList) GetUnexpectedMachines() []*UnexpectedMachine { @@ -35808,7 +35956,7 @@ type UnexpectedMachine struct { func (x *UnexpectedMachine) Reset() { *x = UnexpectedMachine{} - mi := &file_nico_nico_proto_msgTypes[471] + mi := &file_nico_nico_proto_msgTypes[473] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35820,7 +35968,7 @@ func (x *UnexpectedMachine) String() string { func (*UnexpectedMachine) ProtoMessage() {} func (x *UnexpectedMachine) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[471] + mi := &file_nico_nico_proto_msgTypes[473] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35833,7 +35981,7 @@ func (x *UnexpectedMachine) ProtoReflect() protoreflect.Message { // Deprecated: Use UnexpectedMachine.ProtoReflect.Descriptor instead. func (*UnexpectedMachine) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{471} + return file_nico_nico_proto_rawDescGZIP(), []int{473} } func (x *UnexpectedMachine) GetAddress() string { @@ -35869,7 +36017,7 @@ type BatchExpectedMachineOperationRequest struct { func (x *BatchExpectedMachineOperationRequest) Reset() { *x = BatchExpectedMachineOperationRequest{} - mi := &file_nico_nico_proto_msgTypes[472] + mi := &file_nico_nico_proto_msgTypes[474] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35881,7 +36029,7 @@ func (x *BatchExpectedMachineOperationRequest) String() string { func (*BatchExpectedMachineOperationRequest) ProtoMessage() {} func (x *BatchExpectedMachineOperationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[472] + mi := &file_nico_nico_proto_msgTypes[474] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35894,7 +36042,7 @@ func (x *BatchExpectedMachineOperationRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use BatchExpectedMachineOperationRequest.ProtoReflect.Descriptor instead. func (*BatchExpectedMachineOperationRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{472} + return file_nico_nico_proto_rawDescGZIP(), []int{474} } func (x *BatchExpectedMachineOperationRequest) GetExpectedMachines() *ExpectedMachineList { @@ -35927,7 +36075,7 @@ type ExpectedMachineOperationResult struct { func (x *ExpectedMachineOperationResult) Reset() { *x = ExpectedMachineOperationResult{} - mi := &file_nico_nico_proto_msgTypes[473] + mi := &file_nico_nico_proto_msgTypes[475] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35939,7 +36087,7 @@ func (x *ExpectedMachineOperationResult) String() string { func (*ExpectedMachineOperationResult) ProtoMessage() {} func (x *ExpectedMachineOperationResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[473] + mi := &file_nico_nico_proto_msgTypes[475] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35952,7 +36100,7 @@ func (x *ExpectedMachineOperationResult) ProtoReflect() protoreflect.Message { // Deprecated: Use ExpectedMachineOperationResult.ProtoReflect.Descriptor instead. func (*ExpectedMachineOperationResult) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{473} + return file_nico_nico_proto_rawDescGZIP(), []int{475} } func (x *ExpectedMachineOperationResult) GetId() *UUID { @@ -35993,7 +36141,7 @@ type BatchExpectedMachineOperationResponse struct { func (x *BatchExpectedMachineOperationResponse) Reset() { *x = BatchExpectedMachineOperationResponse{} - mi := &file_nico_nico_proto_msgTypes[474] + mi := &file_nico_nico_proto_msgTypes[476] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36005,7 +36153,7 @@ func (x *BatchExpectedMachineOperationResponse) String() string { func (*BatchExpectedMachineOperationResponse) ProtoMessage() {} func (x *BatchExpectedMachineOperationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[474] + mi := &file_nico_nico_proto_msgTypes[476] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36018,7 +36166,7 @@ func (x *BatchExpectedMachineOperationResponse) ProtoReflect() protoreflect.Mess // Deprecated: Use BatchExpectedMachineOperationResponse.ProtoReflect.Descriptor instead. func (*BatchExpectedMachineOperationResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{474} + return file_nico_nico_proto_rawDescGZIP(), []int{476} } func (x *BatchExpectedMachineOperationResponse) GetResults() []*ExpectedMachineOperationResult { @@ -36036,7 +36184,7 @@ type MachineRebootCompletedResponse struct { func (x *MachineRebootCompletedResponse) Reset() { *x = MachineRebootCompletedResponse{} - mi := &file_nico_nico_proto_msgTypes[475] + mi := &file_nico_nico_proto_msgTypes[477] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36048,7 +36196,7 @@ func (x *MachineRebootCompletedResponse) String() string { func (*MachineRebootCompletedResponse) ProtoMessage() {} func (x *MachineRebootCompletedResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[475] + mi := &file_nico_nico_proto_msgTypes[477] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36061,7 +36209,7 @@ func (x *MachineRebootCompletedResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineRebootCompletedResponse.ProtoReflect.Descriptor instead. func (*MachineRebootCompletedResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{475} + return file_nico_nico_proto_rawDescGZIP(), []int{477} } type MachineRebootCompletedRequest struct { @@ -36073,7 +36221,7 @@ type MachineRebootCompletedRequest struct { func (x *MachineRebootCompletedRequest) Reset() { *x = MachineRebootCompletedRequest{} - mi := &file_nico_nico_proto_msgTypes[476] + mi := &file_nico_nico_proto_msgTypes[478] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36085,7 +36233,7 @@ func (x *MachineRebootCompletedRequest) String() string { func (*MachineRebootCompletedRequest) ProtoMessage() {} func (x *MachineRebootCompletedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[476] + mi := &file_nico_nico_proto_msgTypes[478] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36098,7 +36246,7 @@ func (x *MachineRebootCompletedRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineRebootCompletedRequest.ProtoReflect.Descriptor instead. func (*MachineRebootCompletedRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{476} + return file_nico_nico_proto_rawDescGZIP(), []int{478} } func (x *MachineRebootCompletedRequest) GetMachineId() *MachineId { @@ -36123,7 +36271,7 @@ type ScoutFirmwareUpgradeStatusRequest struct { func (x *ScoutFirmwareUpgradeStatusRequest) Reset() { *x = ScoutFirmwareUpgradeStatusRequest{} - mi := &file_nico_nico_proto_msgTypes[477] + mi := &file_nico_nico_proto_msgTypes[479] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36135,7 +36283,7 @@ func (x *ScoutFirmwareUpgradeStatusRequest) String() string { func (*ScoutFirmwareUpgradeStatusRequest) ProtoMessage() {} func (x *ScoutFirmwareUpgradeStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[477] + mi := &file_nico_nico_proto_msgTypes[479] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36148,7 +36296,7 @@ func (x *ScoutFirmwareUpgradeStatusRequest) ProtoReflect() protoreflect.Message // Deprecated: Use ScoutFirmwareUpgradeStatusRequest.ProtoReflect.Descriptor instead. func (*ScoutFirmwareUpgradeStatusRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{477} + return file_nico_nico_proto_rawDescGZIP(), []int{479} } func (x *ScoutFirmwareUpgradeStatusRequest) GetMachineId() *MachineId { @@ -36211,7 +36359,7 @@ type MachineValidationCompletedRequest struct { func (x *MachineValidationCompletedRequest) Reset() { *x = MachineValidationCompletedRequest{} - mi := &file_nico_nico_proto_msgTypes[478] + mi := &file_nico_nico_proto_msgTypes[480] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36223,7 +36371,7 @@ func (x *MachineValidationCompletedRequest) String() string { func (*MachineValidationCompletedRequest) ProtoMessage() {} func (x *MachineValidationCompletedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[478] + mi := &file_nico_nico_proto_msgTypes[480] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36236,7 +36384,7 @@ func (x *MachineValidationCompletedRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationCompletedRequest.ProtoReflect.Descriptor instead. func (*MachineValidationCompletedRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{478} + return file_nico_nico_proto_rawDescGZIP(), []int{480} } func (x *MachineValidationCompletedRequest) GetMachineId() *MachineId { @@ -36268,7 +36416,7 @@ type MachineValidationCompletedResponse struct { func (x *MachineValidationCompletedResponse) Reset() { *x = MachineValidationCompletedResponse{} - mi := &file_nico_nico_proto_msgTypes[479] + mi := &file_nico_nico_proto_msgTypes[481] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36280,7 +36428,7 @@ func (x *MachineValidationCompletedResponse) String() string { func (*MachineValidationCompletedResponse) ProtoMessage() {} func (x *MachineValidationCompletedResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[479] + mi := &file_nico_nico_proto_msgTypes[481] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36293,7 +36441,7 @@ func (x *MachineValidationCompletedResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationCompletedResponse.ProtoReflect.Descriptor instead. func (*MachineValidationCompletedResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{479} + return file_nico_nico_proto_rawDescGZIP(), []int{481} } type MachineValidationResult struct { @@ -36316,7 +36464,7 @@ type MachineValidationResult struct { func (x *MachineValidationResult) Reset() { *x = MachineValidationResult{} - mi := &file_nico_nico_proto_msgTypes[480] + mi := &file_nico_nico_proto_msgTypes[482] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36328,7 +36476,7 @@ func (x *MachineValidationResult) String() string { func (*MachineValidationResult) ProtoMessage() {} func (x *MachineValidationResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[480] + mi := &file_nico_nico_proto_msgTypes[482] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36341,7 +36489,7 @@ func (x *MachineValidationResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationResult.ProtoReflect.Descriptor instead. func (*MachineValidationResult) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{480} + return file_nico_nico_proto_rawDescGZIP(), []int{482} } func (x *MachineValidationResult) GetName() string { @@ -36437,7 +36585,7 @@ type MachineValidationResultPostRequest struct { func (x *MachineValidationResultPostRequest) Reset() { *x = MachineValidationResultPostRequest{} - mi := &file_nico_nico_proto_msgTypes[481] + mi := &file_nico_nico_proto_msgTypes[483] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36449,7 +36597,7 @@ func (x *MachineValidationResultPostRequest) String() string { func (*MachineValidationResultPostRequest) ProtoMessage() {} func (x *MachineValidationResultPostRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[481] + mi := &file_nico_nico_proto_msgTypes[483] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36462,7 +36610,7 @@ func (x *MachineValidationResultPostRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationResultPostRequest.ProtoReflect.Descriptor instead. func (*MachineValidationResultPostRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{481} + return file_nico_nico_proto_rawDescGZIP(), []int{483} } func (x *MachineValidationResultPostRequest) GetResult() *MachineValidationResult { @@ -36481,7 +36629,7 @@ type MachineValidationResultList struct { func (x *MachineValidationResultList) Reset() { *x = MachineValidationResultList{} - mi := &file_nico_nico_proto_msgTypes[482] + mi := &file_nico_nico_proto_msgTypes[484] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36493,7 +36641,7 @@ func (x *MachineValidationResultList) String() string { func (*MachineValidationResultList) ProtoMessage() {} func (x *MachineValidationResultList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[482] + mi := &file_nico_nico_proto_msgTypes[484] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36506,7 +36654,7 @@ func (x *MachineValidationResultList) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationResultList.ProtoReflect.Descriptor instead. func (*MachineValidationResultList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{482} + return file_nico_nico_proto_rawDescGZIP(), []int{484} } func (x *MachineValidationResultList) GetResults() []*MachineValidationResult { @@ -36527,7 +36675,7 @@ type MachineValidationGetRequest struct { func (x *MachineValidationGetRequest) Reset() { *x = MachineValidationGetRequest{} - mi := &file_nico_nico_proto_msgTypes[483] + mi := &file_nico_nico_proto_msgTypes[485] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36539,7 +36687,7 @@ func (x *MachineValidationGetRequest) String() string { func (*MachineValidationGetRequest) ProtoMessage() {} func (x *MachineValidationGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[483] + mi := &file_nico_nico_proto_msgTypes[485] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36552,7 +36700,7 @@ func (x *MachineValidationGetRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationGetRequest.ProtoReflect.Descriptor instead. func (*MachineValidationGetRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{483} + return file_nico_nico_proto_rawDescGZIP(), []int{485} } func (x *MachineValidationGetRequest) GetMachineId() *MachineId { @@ -36592,7 +36740,7 @@ type MachineValidationStatus struct { func (x *MachineValidationStatus) Reset() { *x = MachineValidationStatus{} - mi := &file_nico_nico_proto_msgTypes[484] + mi := &file_nico_nico_proto_msgTypes[486] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36604,7 +36752,7 @@ func (x *MachineValidationStatus) String() string { func (*MachineValidationStatus) ProtoMessage() {} func (x *MachineValidationStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[484] + mi := &file_nico_nico_proto_msgTypes[486] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36617,7 +36765,7 @@ func (x *MachineValidationStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationStatus.ProtoReflect.Descriptor instead. func (*MachineValidationStatus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{484} + return file_nico_nico_proto_rawDescGZIP(), []int{486} } func (x *MachineValidationStatus) GetMachineValidationState() isMachineValidationStatus_MachineValidationState { @@ -36707,7 +36855,7 @@ type MachineValidationRun struct { func (x *MachineValidationRun) Reset() { *x = MachineValidationRun{} - mi := &file_nico_nico_proto_msgTypes[485] + mi := &file_nico_nico_proto_msgTypes[487] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36719,7 +36867,7 @@ func (x *MachineValidationRun) String() string { func (*MachineValidationRun) ProtoMessage() {} func (x *MachineValidationRun) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[485] + mi := &file_nico_nico_proto_msgTypes[487] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36732,7 +36880,7 @@ func (x *MachineValidationRun) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationRun.ProtoReflect.Descriptor instead. func (*MachineValidationRun) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{485} + return file_nico_nico_proto_rawDescGZIP(), []int{487} } func (x *MachineValidationRun) GetValidationId() *MachineValidationId { @@ -36808,7 +36956,7 @@ type MachineSetAutoUpdateRequest struct { func (x *MachineSetAutoUpdateRequest) Reset() { *x = MachineSetAutoUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[486] + mi := &file_nico_nico_proto_msgTypes[488] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36820,7 +36968,7 @@ func (x *MachineSetAutoUpdateRequest) String() string { func (*MachineSetAutoUpdateRequest) ProtoMessage() {} func (x *MachineSetAutoUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[486] + mi := &file_nico_nico_proto_msgTypes[488] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36833,7 +36981,7 @@ func (x *MachineSetAutoUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineSetAutoUpdateRequest.ProtoReflect.Descriptor instead. func (*MachineSetAutoUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{486} + return file_nico_nico_proto_rawDescGZIP(), []int{488} } func (x *MachineSetAutoUpdateRequest) GetMachineId() *MachineId { @@ -36858,7 +37006,7 @@ type MachineSetAutoUpdateResponse struct { func (x *MachineSetAutoUpdateResponse) Reset() { *x = MachineSetAutoUpdateResponse{} - mi := &file_nico_nico_proto_msgTypes[487] + mi := &file_nico_nico_proto_msgTypes[489] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36870,7 +37018,7 @@ func (x *MachineSetAutoUpdateResponse) String() string { func (*MachineSetAutoUpdateResponse) ProtoMessage() {} func (x *MachineSetAutoUpdateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[487] + mi := &file_nico_nico_proto_msgTypes[489] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36883,7 +37031,7 @@ func (x *MachineSetAutoUpdateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineSetAutoUpdateResponse.ProtoReflect.Descriptor instead. func (*MachineSetAutoUpdateResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{487} + return file_nico_nico_proto_rawDescGZIP(), []int{489} } type GetMachineValidationExternalConfigRequest struct { @@ -36895,7 +37043,7 @@ type GetMachineValidationExternalConfigRequest struct { func (x *GetMachineValidationExternalConfigRequest) Reset() { *x = GetMachineValidationExternalConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[488] + mi := &file_nico_nico_proto_msgTypes[490] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36907,7 +37055,7 @@ func (x *GetMachineValidationExternalConfigRequest) String() string { func (*GetMachineValidationExternalConfigRequest) ProtoMessage() {} func (x *GetMachineValidationExternalConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[488] + mi := &file_nico_nico_proto_msgTypes[490] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36920,7 +37068,7 @@ func (x *GetMachineValidationExternalConfigRequest) ProtoReflect() protoreflect. // Deprecated: Use GetMachineValidationExternalConfigRequest.ProtoReflect.Descriptor instead. func (*GetMachineValidationExternalConfigRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{488} + return file_nico_nico_proto_rawDescGZIP(), []int{490} } func (x *GetMachineValidationExternalConfigRequest) GetName() string { @@ -36943,7 +37091,7 @@ type MachineValidationExternalConfig struct { func (x *MachineValidationExternalConfig) Reset() { *x = MachineValidationExternalConfig{} - mi := &file_nico_nico_proto_msgTypes[489] + mi := &file_nico_nico_proto_msgTypes[491] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36955,7 +37103,7 @@ func (x *MachineValidationExternalConfig) String() string { func (*MachineValidationExternalConfig) ProtoMessage() {} func (x *MachineValidationExternalConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[489] + mi := &file_nico_nico_proto_msgTypes[491] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36968,7 +37116,7 @@ func (x *MachineValidationExternalConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationExternalConfig.ProtoReflect.Descriptor instead. func (*MachineValidationExternalConfig) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{489} + return file_nico_nico_proto_rawDescGZIP(), []int{491} } func (x *MachineValidationExternalConfig) GetName() string { @@ -37015,7 +37163,7 @@ type GetMachineValidationExternalConfigResponse struct { func (x *GetMachineValidationExternalConfigResponse) Reset() { *x = GetMachineValidationExternalConfigResponse{} - mi := &file_nico_nico_proto_msgTypes[490] + mi := &file_nico_nico_proto_msgTypes[492] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37027,7 +37175,7 @@ func (x *GetMachineValidationExternalConfigResponse) String() string { func (*GetMachineValidationExternalConfigResponse) ProtoMessage() {} func (x *GetMachineValidationExternalConfigResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[490] + mi := &file_nico_nico_proto_msgTypes[492] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37040,7 +37188,7 @@ func (x *GetMachineValidationExternalConfigResponse) ProtoReflect() protoreflect // Deprecated: Use GetMachineValidationExternalConfigResponse.ProtoReflect.Descriptor instead. func (*GetMachineValidationExternalConfigResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{490} + return file_nico_nico_proto_rawDescGZIP(), []int{492} } func (x *GetMachineValidationExternalConfigResponse) GetConfig() *MachineValidationExternalConfig { @@ -37059,7 +37207,7 @@ type GetMachineValidationExternalConfigsRequest struct { func (x *GetMachineValidationExternalConfigsRequest) Reset() { *x = GetMachineValidationExternalConfigsRequest{} - mi := &file_nico_nico_proto_msgTypes[491] + mi := &file_nico_nico_proto_msgTypes[493] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37071,7 +37219,7 @@ func (x *GetMachineValidationExternalConfigsRequest) String() string { func (*GetMachineValidationExternalConfigsRequest) ProtoMessage() {} func (x *GetMachineValidationExternalConfigsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[491] + mi := &file_nico_nico_proto_msgTypes[493] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37084,7 +37232,7 @@ func (x *GetMachineValidationExternalConfigsRequest) ProtoReflect() protoreflect // Deprecated: Use GetMachineValidationExternalConfigsRequest.ProtoReflect.Descriptor instead. func (*GetMachineValidationExternalConfigsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{491} + return file_nico_nico_proto_rawDescGZIP(), []int{493} } func (x *GetMachineValidationExternalConfigsRequest) GetNames() []string { @@ -37103,7 +37251,7 @@ type GetMachineValidationExternalConfigsResponse struct { func (x *GetMachineValidationExternalConfigsResponse) Reset() { *x = GetMachineValidationExternalConfigsResponse{} - mi := &file_nico_nico_proto_msgTypes[492] + mi := &file_nico_nico_proto_msgTypes[494] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37115,7 +37263,7 @@ func (x *GetMachineValidationExternalConfigsResponse) String() string { func (*GetMachineValidationExternalConfigsResponse) ProtoMessage() {} func (x *GetMachineValidationExternalConfigsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[492] + mi := &file_nico_nico_proto_msgTypes[494] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37128,7 +37276,7 @@ func (x *GetMachineValidationExternalConfigsResponse) ProtoReflect() protoreflec // Deprecated: Use GetMachineValidationExternalConfigsResponse.ProtoReflect.Descriptor instead. func (*GetMachineValidationExternalConfigsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{492} + return file_nico_nico_proto_rawDescGZIP(), []int{494} } func (x *GetMachineValidationExternalConfigsResponse) GetConfigs() []*MachineValidationExternalConfig { @@ -37149,7 +37297,7 @@ type AddUpdateMachineValidationExternalConfigRequest struct { func (x *AddUpdateMachineValidationExternalConfigRequest) Reset() { *x = AddUpdateMachineValidationExternalConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[493] + mi := &file_nico_nico_proto_msgTypes[495] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37161,7 +37309,7 @@ func (x *AddUpdateMachineValidationExternalConfigRequest) String() string { func (*AddUpdateMachineValidationExternalConfigRequest) ProtoMessage() {} func (x *AddUpdateMachineValidationExternalConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[493] + mi := &file_nico_nico_proto_msgTypes[495] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37174,7 +37322,7 @@ func (x *AddUpdateMachineValidationExternalConfigRequest) ProtoReflect() protore // Deprecated: Use AddUpdateMachineValidationExternalConfigRequest.ProtoReflect.Descriptor instead. func (*AddUpdateMachineValidationExternalConfigRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{493} + return file_nico_nico_proto_rawDescGZIP(), []int{495} } func (x *AddUpdateMachineValidationExternalConfigRequest) GetName() string { @@ -37207,7 +37355,7 @@ type RemoveMachineValidationExternalConfigRequest struct { func (x *RemoveMachineValidationExternalConfigRequest) Reset() { *x = RemoveMachineValidationExternalConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[494] + mi := &file_nico_nico_proto_msgTypes[496] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37219,7 +37367,7 @@ func (x *RemoveMachineValidationExternalConfigRequest) String() string { func (*RemoveMachineValidationExternalConfigRequest) ProtoMessage() {} func (x *RemoveMachineValidationExternalConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[494] + mi := &file_nico_nico_proto_msgTypes[496] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37232,7 +37380,7 @@ func (x *RemoveMachineValidationExternalConfigRequest) ProtoReflect() protorefle // Deprecated: Use RemoveMachineValidationExternalConfigRequest.ProtoReflect.Descriptor instead. func (*RemoveMachineValidationExternalConfigRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{494} + return file_nico_nico_proto_rawDescGZIP(), []int{496} } func (x *RemoveMachineValidationExternalConfigRequest) GetName() string { @@ -37256,7 +37404,7 @@ type MachineValidationOnDemandRequest struct { func (x *MachineValidationOnDemandRequest) Reset() { *x = MachineValidationOnDemandRequest{} - mi := &file_nico_nico_proto_msgTypes[495] + mi := &file_nico_nico_proto_msgTypes[497] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37268,7 +37416,7 @@ func (x *MachineValidationOnDemandRequest) String() string { func (*MachineValidationOnDemandRequest) ProtoMessage() {} func (x *MachineValidationOnDemandRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[495] + mi := &file_nico_nico_proto_msgTypes[497] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37281,7 +37429,7 @@ func (x *MachineValidationOnDemandRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationOnDemandRequest.ProtoReflect.Descriptor instead. func (*MachineValidationOnDemandRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{495} + return file_nico_nico_proto_rawDescGZIP(), []int{497} } func (x *MachineValidationOnDemandRequest) GetMachineId() *MachineId { @@ -37335,7 +37483,7 @@ type MachineValidationOnDemandResponse struct { func (x *MachineValidationOnDemandResponse) Reset() { *x = MachineValidationOnDemandResponse{} - mi := &file_nico_nico_proto_msgTypes[496] + mi := &file_nico_nico_proto_msgTypes[498] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37347,7 +37495,7 @@ func (x *MachineValidationOnDemandResponse) String() string { func (*MachineValidationOnDemandResponse) ProtoMessage() {} func (x *MachineValidationOnDemandResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[496] + mi := &file_nico_nico_proto_msgTypes[498] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37360,7 +37508,7 @@ func (x *MachineValidationOnDemandResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationOnDemandResponse.ProtoReflect.Descriptor instead. func (*MachineValidationOnDemandResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{496} + return file_nico_nico_proto_rawDescGZIP(), []int{498} } func (x *MachineValidationOnDemandResponse) GetValidationId() *MachineValidationId { @@ -37390,7 +37538,7 @@ type FirmwareUpgradeActivity struct { func (x *FirmwareUpgradeActivity) Reset() { *x = FirmwareUpgradeActivity{} - mi := &file_nico_nico_proto_msgTypes[497] + mi := &file_nico_nico_proto_msgTypes[499] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37402,7 +37550,7 @@ func (x *FirmwareUpgradeActivity) String() string { func (*FirmwareUpgradeActivity) ProtoMessage() {} func (x *FirmwareUpgradeActivity) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[497] + mi := &file_nico_nico_proto_msgTypes[499] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37415,7 +37563,7 @@ func (x *FirmwareUpgradeActivity) ProtoReflect() protoreflect.Message { // Deprecated: Use FirmwareUpgradeActivity.ProtoReflect.Descriptor instead. func (*FirmwareUpgradeActivity) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{497} + return file_nico_nico_proto_rawDescGZIP(), []int{499} } func (x *FirmwareUpgradeActivity) GetFirmwareVersion() string { @@ -37461,7 +37609,7 @@ type NvosUpdateActivity struct { func (x *NvosUpdateActivity) Reset() { *x = NvosUpdateActivity{} - mi := &file_nico_nico_proto_msgTypes[498] + mi := &file_nico_nico_proto_msgTypes[500] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37473,7 +37621,7 @@ func (x *NvosUpdateActivity) String() string { func (*NvosUpdateActivity) ProtoMessage() {} func (x *NvosUpdateActivity) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[498] + mi := &file_nico_nico_proto_msgTypes[500] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37486,7 +37634,7 @@ func (x *NvosUpdateActivity) ProtoReflect() protoreflect.Message { // Deprecated: Use NvosUpdateActivity.ProtoReflect.Descriptor instead. func (*NvosUpdateActivity) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{498} + return file_nico_nico_proto_rawDescGZIP(), []int{500} } func (x *NvosUpdateActivity) GetConfigJson() string { @@ -37511,7 +37659,7 @@ type ConfigureNmxClusterActivity struct { func (x *ConfigureNmxClusterActivity) Reset() { *x = ConfigureNmxClusterActivity{} - mi := &file_nico_nico_proto_msgTypes[499] + mi := &file_nico_nico_proto_msgTypes[501] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37523,7 +37671,7 @@ func (x *ConfigureNmxClusterActivity) String() string { func (*ConfigureNmxClusterActivity) ProtoMessage() {} func (x *ConfigureNmxClusterActivity) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[499] + mi := &file_nico_nico_proto_msgTypes[501] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37536,7 +37684,7 @@ func (x *ConfigureNmxClusterActivity) ProtoReflect() protoreflect.Message { // Deprecated: Use ConfigureNmxClusterActivity.ProtoReflect.Descriptor instead. func (*ConfigureNmxClusterActivity) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{499} + return file_nico_nico_proto_rawDescGZIP(), []int{501} } type PowerSequenceActivity struct { @@ -37547,7 +37695,7 @@ type PowerSequenceActivity struct { func (x *PowerSequenceActivity) Reset() { *x = PowerSequenceActivity{} - mi := &file_nico_nico_proto_msgTypes[500] + mi := &file_nico_nico_proto_msgTypes[502] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37559,7 +37707,7 @@ func (x *PowerSequenceActivity) String() string { func (*PowerSequenceActivity) ProtoMessage() {} func (x *PowerSequenceActivity) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[500] + mi := &file_nico_nico_proto_msgTypes[502] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37572,7 +37720,7 @@ func (x *PowerSequenceActivity) ProtoReflect() protoreflect.Message { // Deprecated: Use PowerSequenceActivity.ProtoReflect.Descriptor instead. func (*PowerSequenceActivity) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{500} + return file_nico_nico_proto_rawDescGZIP(), []int{502} } // A single maintenance activity with its per-activity configuration. @@ -37592,7 +37740,7 @@ type MaintenanceActivityConfig struct { func (x *MaintenanceActivityConfig) Reset() { *x = MaintenanceActivityConfig{} - mi := &file_nico_nico_proto_msgTypes[501] + mi := &file_nico_nico_proto_msgTypes[503] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37604,7 +37752,7 @@ func (x *MaintenanceActivityConfig) String() string { func (*MaintenanceActivityConfig) ProtoMessage() {} func (x *MaintenanceActivityConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[501] + mi := &file_nico_nico_proto_msgTypes[503] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37617,7 +37765,7 @@ func (x *MaintenanceActivityConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use MaintenanceActivityConfig.ProtoReflect.Descriptor instead. func (*MaintenanceActivityConfig) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{501} + return file_nico_nico_proto_rawDescGZIP(), []int{503} } func (x *MaintenanceActivityConfig) GetActivity() isMaintenanceActivityConfig_Activity { @@ -37708,7 +37856,7 @@ type RackMaintenanceScope struct { func (x *RackMaintenanceScope) Reset() { *x = RackMaintenanceScope{} - mi := &file_nico_nico_proto_msgTypes[502] + mi := &file_nico_nico_proto_msgTypes[504] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37720,7 +37868,7 @@ func (x *RackMaintenanceScope) String() string { func (*RackMaintenanceScope) ProtoMessage() {} func (x *RackMaintenanceScope) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[502] + mi := &file_nico_nico_proto_msgTypes[504] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37733,7 +37881,7 @@ func (x *RackMaintenanceScope) ProtoReflect() protoreflect.Message { // Deprecated: Use RackMaintenanceScope.ProtoReflect.Descriptor instead. func (*RackMaintenanceScope) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{502} + return file_nico_nico_proto_rawDescGZIP(), []int{504} } func (x *RackMaintenanceScope) GetMachineIds() []string { @@ -37777,7 +37925,7 @@ type RackMaintenanceOnDemandRequest struct { func (x *RackMaintenanceOnDemandRequest) Reset() { *x = RackMaintenanceOnDemandRequest{} - mi := &file_nico_nico_proto_msgTypes[503] + mi := &file_nico_nico_proto_msgTypes[505] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37789,7 +37937,7 @@ func (x *RackMaintenanceOnDemandRequest) String() string { func (*RackMaintenanceOnDemandRequest) ProtoMessage() {} func (x *RackMaintenanceOnDemandRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[503] + mi := &file_nico_nico_proto_msgTypes[505] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37802,7 +37950,7 @@ func (x *RackMaintenanceOnDemandRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RackMaintenanceOnDemandRequest.ProtoReflect.Descriptor instead. func (*RackMaintenanceOnDemandRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{503} + return file_nico_nico_proto_rawDescGZIP(), []int{505} } func (x *RackMaintenanceOnDemandRequest) GetRackId() *RackId { @@ -37827,7 +37975,7 @@ type RackMaintenanceOnDemandResponse struct { func (x *RackMaintenanceOnDemandResponse) Reset() { *x = RackMaintenanceOnDemandResponse{} - mi := &file_nico_nico_proto_msgTypes[504] + mi := &file_nico_nico_proto_msgTypes[506] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37839,7 +37987,7 @@ func (x *RackMaintenanceOnDemandResponse) String() string { func (*RackMaintenanceOnDemandResponse) ProtoMessage() {} func (x *RackMaintenanceOnDemandResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[504] + mi := &file_nico_nico_proto_msgTypes[506] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37852,7 +38000,7 @@ func (x *RackMaintenanceOnDemandResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RackMaintenanceOnDemandResponse.ProtoReflect.Descriptor instead. func (*RackMaintenanceOnDemandResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{504} + return file_nico_nico_proto_rawDescGZIP(), []int{506} } type AdminPowerControlRequest struct { @@ -37866,7 +38014,7 @@ type AdminPowerControlRequest struct { func (x *AdminPowerControlRequest) Reset() { *x = AdminPowerControlRequest{} - mi := &file_nico_nico_proto_msgTypes[505] + mi := &file_nico_nico_proto_msgTypes[507] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37878,7 +38026,7 @@ func (x *AdminPowerControlRequest) String() string { func (*AdminPowerControlRequest) ProtoMessage() {} func (x *AdminPowerControlRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[505] + mi := &file_nico_nico_proto_msgTypes[507] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37891,7 +38039,7 @@ func (x *AdminPowerControlRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminPowerControlRequest.ProtoReflect.Descriptor instead. func (*AdminPowerControlRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{505} + return file_nico_nico_proto_rawDescGZIP(), []int{507} } func (x *AdminPowerControlRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -37924,7 +38072,7 @@ type AdminPowerControlResponse struct { func (x *AdminPowerControlResponse) Reset() { *x = AdminPowerControlResponse{} - mi := &file_nico_nico_proto_msgTypes[506] + mi := &file_nico_nico_proto_msgTypes[508] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37936,7 +38084,7 @@ func (x *AdminPowerControlResponse) String() string { func (*AdminPowerControlResponse) ProtoMessage() {} func (x *AdminPowerControlResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[506] + mi := &file_nico_nico_proto_msgTypes[508] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37949,7 +38097,7 @@ func (x *AdminPowerControlResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminPowerControlResponse.ProtoReflect.Descriptor instead. func (*AdminPowerControlResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{506} + return file_nico_nico_proto_rawDescGZIP(), []int{508} } func (x *AdminPowerControlResponse) GetMsg() string { @@ -37969,7 +38117,7 @@ type GetRedfishJobStateRequest struct { func (x *GetRedfishJobStateRequest) Reset() { *x = GetRedfishJobStateRequest{} - mi := &file_nico_nico_proto_msgTypes[507] + mi := &file_nico_nico_proto_msgTypes[509] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37981,7 +38129,7 @@ func (x *GetRedfishJobStateRequest) String() string { func (*GetRedfishJobStateRequest) ProtoMessage() {} func (x *GetRedfishJobStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[507] + mi := &file_nico_nico_proto_msgTypes[509] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37994,7 +38142,7 @@ func (x *GetRedfishJobStateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRedfishJobStateRequest.ProtoReflect.Descriptor instead. func (*GetRedfishJobStateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{507} + return file_nico_nico_proto_rawDescGZIP(), []int{509} } func (x *GetRedfishJobStateRequest) GetMachineId() *MachineId { @@ -38020,7 +38168,7 @@ type GetRedfishJobStateResponse struct { func (x *GetRedfishJobStateResponse) Reset() { *x = GetRedfishJobStateResponse{} - mi := &file_nico_nico_proto_msgTypes[508] + mi := &file_nico_nico_proto_msgTypes[510] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38032,7 +38180,7 @@ func (x *GetRedfishJobStateResponse) String() string { func (*GetRedfishJobStateResponse) ProtoMessage() {} func (x *GetRedfishJobStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[508] + mi := &file_nico_nico_proto_msgTypes[510] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38045,7 +38193,7 @@ func (x *GetRedfishJobStateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRedfishJobStateResponse.ProtoReflect.Descriptor instead. func (*GetRedfishJobStateResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{508} + return file_nico_nico_proto_rawDescGZIP(), []int{510} } func (x *GetRedfishJobStateResponse) GetJobState() GetRedfishJobStateResponse_RedfishJobState { @@ -38064,7 +38212,7 @@ type MachineValidationRunList struct { func (x *MachineValidationRunList) Reset() { *x = MachineValidationRunList{} - mi := &file_nico_nico_proto_msgTypes[509] + mi := &file_nico_nico_proto_msgTypes[511] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38076,7 +38224,7 @@ func (x *MachineValidationRunList) String() string { func (*MachineValidationRunList) ProtoMessage() {} func (x *MachineValidationRunList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[509] + mi := &file_nico_nico_proto_msgTypes[511] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38089,7 +38237,7 @@ func (x *MachineValidationRunList) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationRunList.ProtoReflect.Descriptor instead. func (*MachineValidationRunList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{509} + return file_nico_nico_proto_rawDescGZIP(), []int{511} } func (x *MachineValidationRunList) GetRuns() []*MachineValidationRun { @@ -38109,7 +38257,7 @@ type MachineValidationRunListGetRequest struct { func (x *MachineValidationRunListGetRequest) Reset() { *x = MachineValidationRunListGetRequest{} - mi := &file_nico_nico_proto_msgTypes[510] + mi := &file_nico_nico_proto_msgTypes[512] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38121,7 +38269,7 @@ func (x *MachineValidationRunListGetRequest) String() string { func (*MachineValidationRunListGetRequest) ProtoMessage() {} func (x *MachineValidationRunListGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[510] + mi := &file_nico_nico_proto_msgTypes[512] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38134,7 +38282,7 @@ func (x *MachineValidationRunListGetRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationRunListGetRequest.ProtoReflect.Descriptor instead. func (*MachineValidationRunListGetRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{510} + return file_nico_nico_proto_rawDescGZIP(), []int{512} } func (x *MachineValidationRunListGetRequest) GetMachineId() *MachineId { @@ -38160,7 +38308,7 @@ type MachineValidationRunItemSearchFilter struct { func (x *MachineValidationRunItemSearchFilter) Reset() { *x = MachineValidationRunItemSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[511] + mi := &file_nico_nico_proto_msgTypes[513] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38172,7 +38320,7 @@ func (x *MachineValidationRunItemSearchFilter) String() string { func (*MachineValidationRunItemSearchFilter) ProtoMessage() {} func (x *MachineValidationRunItemSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[511] + mi := &file_nico_nico_proto_msgTypes[513] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38185,7 +38333,7 @@ func (x *MachineValidationRunItemSearchFilter) ProtoReflect() protoreflect.Messa // Deprecated: Use MachineValidationRunItemSearchFilter.ProtoReflect.Descriptor instead. func (*MachineValidationRunItemSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{511} + return file_nico_nico_proto_rawDescGZIP(), []int{513} } func (x *MachineValidationRunItemSearchFilter) GetValidationId() *MachineValidationId { @@ -38204,7 +38352,7 @@ type MachineValidationRunItemIdList struct { func (x *MachineValidationRunItemIdList) Reset() { *x = MachineValidationRunItemIdList{} - mi := &file_nico_nico_proto_msgTypes[512] + mi := &file_nico_nico_proto_msgTypes[514] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38216,7 +38364,7 @@ func (x *MachineValidationRunItemIdList) String() string { func (*MachineValidationRunItemIdList) ProtoMessage() {} func (x *MachineValidationRunItemIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[512] + mi := &file_nico_nico_proto_msgTypes[514] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38229,7 +38377,7 @@ func (x *MachineValidationRunItemIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationRunItemIdList.ProtoReflect.Descriptor instead. func (*MachineValidationRunItemIdList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{512} + return file_nico_nico_proto_rawDescGZIP(), []int{514} } func (x *MachineValidationRunItemIdList) GetRunItemIds() []*UUID { @@ -38248,7 +38396,7 @@ type MachineValidationRunItemsByIdsRequest struct { func (x *MachineValidationRunItemsByIdsRequest) Reset() { *x = MachineValidationRunItemsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[513] + mi := &file_nico_nico_proto_msgTypes[515] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38260,7 +38408,7 @@ func (x *MachineValidationRunItemsByIdsRequest) String() string { func (*MachineValidationRunItemsByIdsRequest) ProtoMessage() {} func (x *MachineValidationRunItemsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[513] + mi := &file_nico_nico_proto_msgTypes[515] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38273,7 +38421,7 @@ func (x *MachineValidationRunItemsByIdsRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use MachineValidationRunItemsByIdsRequest.ProtoReflect.Descriptor instead. func (*MachineValidationRunItemsByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{513} + return file_nico_nico_proto_rawDescGZIP(), []int{515} } func (x *MachineValidationRunItemsByIdsRequest) GetRunItemIds() []*UUID { @@ -38292,7 +38440,7 @@ type MachineValidationRunItemList struct { func (x *MachineValidationRunItemList) Reset() { *x = MachineValidationRunItemList{} - mi := &file_nico_nico_proto_msgTypes[514] + mi := &file_nico_nico_proto_msgTypes[516] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38304,7 +38452,7 @@ func (x *MachineValidationRunItemList) String() string { func (*MachineValidationRunItemList) ProtoMessage() {} func (x *MachineValidationRunItemList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[514] + mi := &file_nico_nico_proto_msgTypes[516] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38317,7 +38465,7 @@ func (x *MachineValidationRunItemList) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationRunItemList.ProtoReflect.Descriptor instead. func (*MachineValidationRunItemList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{514} + return file_nico_nico_proto_rawDescGZIP(), []int{516} } func (x *MachineValidationRunItemList) GetRunItems() []*MachineValidationRunItem { @@ -38353,7 +38501,7 @@ type MachineValidationRunItem struct { func (x *MachineValidationRunItem) Reset() { *x = MachineValidationRunItem{} - mi := &file_nico_nico_proto_msgTypes[515] + mi := &file_nico_nico_proto_msgTypes[517] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38365,7 +38513,7 @@ func (x *MachineValidationRunItem) String() string { func (*MachineValidationRunItem) ProtoMessage() {} func (x *MachineValidationRunItem) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[515] + mi := &file_nico_nico_proto_msgTypes[517] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38378,7 +38526,7 @@ func (x *MachineValidationRunItem) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationRunItem.ProtoReflect.Descriptor instead. func (*MachineValidationRunItem) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{515} + return file_nico_nico_proto_rawDescGZIP(), []int{517} } func (x *MachineValidationRunItem) GetRunItemId() *UUID { @@ -38516,7 +38664,7 @@ type MachineValidationAttemptGetRequest struct { func (x *MachineValidationAttemptGetRequest) Reset() { *x = MachineValidationAttemptGetRequest{} - mi := &file_nico_nico_proto_msgTypes[516] + mi := &file_nico_nico_proto_msgTypes[518] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38528,7 +38676,7 @@ func (x *MachineValidationAttemptGetRequest) String() string { func (*MachineValidationAttemptGetRequest) ProtoMessage() {} func (x *MachineValidationAttemptGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[516] + mi := &file_nico_nico_proto_msgTypes[518] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38541,7 +38689,7 @@ func (x *MachineValidationAttemptGetRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationAttemptGetRequest.ProtoReflect.Descriptor instead. func (*MachineValidationAttemptGetRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{516} + return file_nico_nico_proto_rawDescGZIP(), []int{518} } func (x *MachineValidationAttemptGetRequest) GetAttemptId() *UUID { @@ -38574,7 +38722,7 @@ type MachineValidationAttempt struct { func (x *MachineValidationAttempt) Reset() { *x = MachineValidationAttempt{} - mi := &file_nico_nico_proto_msgTypes[517] + mi := &file_nico_nico_proto_msgTypes[519] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38586,7 +38734,7 @@ func (x *MachineValidationAttempt) String() string { func (*MachineValidationAttempt) ProtoMessage() {} func (x *MachineValidationAttempt) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[517] + mi := &file_nico_nico_proto_msgTypes[519] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38599,7 +38747,7 @@ func (x *MachineValidationAttempt) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationAttempt.ProtoReflect.Descriptor instead. func (*MachineValidationAttempt) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{517} + return file_nico_nico_proto_rawDescGZIP(), []int{519} } func (x *MachineValidationAttempt) GetAttemptId() *UUID { @@ -38722,7 +38870,7 @@ type MachineValidationHeartbeatRequest struct { func (x *MachineValidationHeartbeatRequest) Reset() { *x = MachineValidationHeartbeatRequest{} - mi := &file_nico_nico_proto_msgTypes[518] + mi := &file_nico_nico_proto_msgTypes[520] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38734,7 +38882,7 @@ func (x *MachineValidationHeartbeatRequest) String() string { func (*MachineValidationHeartbeatRequest) ProtoMessage() {} func (x *MachineValidationHeartbeatRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[518] + mi := &file_nico_nico_proto_msgTypes[520] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38747,7 +38895,7 @@ func (x *MachineValidationHeartbeatRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationHeartbeatRequest.ProtoReflect.Descriptor instead. func (*MachineValidationHeartbeatRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{518} + return file_nico_nico_proto_rawDescGZIP(), []int{520} } func (x *MachineValidationHeartbeatRequest) GetValidationId() *MachineValidationId { @@ -38822,7 +38970,7 @@ type MachineValidationHeartbeatResponse struct { func (x *MachineValidationHeartbeatResponse) Reset() { *x = MachineValidationHeartbeatResponse{} - mi := &file_nico_nico_proto_msgTypes[519] + mi := &file_nico_nico_proto_msgTypes[521] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38834,7 +38982,7 @@ func (x *MachineValidationHeartbeatResponse) String() string { func (*MachineValidationHeartbeatResponse) ProtoMessage() {} func (x *MachineValidationHeartbeatResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[519] + mi := &file_nico_nico_proto_msgTypes[521] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38847,7 +38995,7 @@ func (x *MachineValidationHeartbeatResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationHeartbeatResponse.ProtoReflect.Descriptor instead. func (*MachineValidationHeartbeatResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{519} + return file_nico_nico_proto_rawDescGZIP(), []int{521} } func (x *MachineValidationHeartbeatResponse) GetAccepted() bool { @@ -38866,7 +39014,7 @@ type IsBmcInManagedHostResponse struct { func (x *IsBmcInManagedHostResponse) Reset() { *x = IsBmcInManagedHostResponse{} - mi := &file_nico_nico_proto_msgTypes[520] + mi := &file_nico_nico_proto_msgTypes[522] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38878,7 +39026,7 @@ func (x *IsBmcInManagedHostResponse) String() string { func (*IsBmcInManagedHostResponse) ProtoMessage() {} func (x *IsBmcInManagedHostResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[520] + mi := &file_nico_nico_proto_msgTypes[522] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38891,7 +39039,7 @@ func (x *IsBmcInManagedHostResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use IsBmcInManagedHostResponse.ProtoReflect.Descriptor instead. func (*IsBmcInManagedHostResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{520} + return file_nico_nico_proto_rawDescGZIP(), []int{522} } func (x *IsBmcInManagedHostResponse) GetInManagedHost() bool { @@ -38910,7 +39058,7 @@ type BmcCredentialStatusResponse struct { func (x *BmcCredentialStatusResponse) Reset() { *x = BmcCredentialStatusResponse{} - mi := &file_nico_nico_proto_msgTypes[521] + mi := &file_nico_nico_proto_msgTypes[523] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38922,7 +39070,7 @@ func (x *BmcCredentialStatusResponse) String() string { func (*BmcCredentialStatusResponse) ProtoMessage() {} func (x *BmcCredentialStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[521] + mi := &file_nico_nico_proto_msgTypes[523] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38935,7 +39083,7 @@ func (x *BmcCredentialStatusResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use BmcCredentialStatusResponse.ProtoReflect.Descriptor instead. func (*BmcCredentialStatusResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{521} + return file_nico_nico_proto_rawDescGZIP(), []int{523} } func (x *BmcCredentialStatusResponse) GetHaveCredentials() bool { @@ -38961,7 +39109,7 @@ type MachineValidationTestsGetRequest struct { func (x *MachineValidationTestsGetRequest) Reset() { *x = MachineValidationTestsGetRequest{} - mi := &file_nico_nico_proto_msgTypes[522] + mi := &file_nico_nico_proto_msgTypes[524] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38973,7 +39121,7 @@ func (x *MachineValidationTestsGetRequest) String() string { func (*MachineValidationTestsGetRequest) ProtoMessage() {} func (x *MachineValidationTestsGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[522] + mi := &file_nico_nico_proto_msgTypes[524] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38986,7 +39134,7 @@ func (x *MachineValidationTestsGetRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationTestsGetRequest.ProtoReflect.Descriptor instead. func (*MachineValidationTestsGetRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{522} + return file_nico_nico_proto_rawDescGZIP(), []int{524} } func (x *MachineValidationTestsGetRequest) GetSupportedPlatforms() []string { @@ -39056,7 +39204,7 @@ type MachineValidationTestUpdateRequest struct { func (x *MachineValidationTestUpdateRequest) Reset() { *x = MachineValidationTestUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[523] + mi := &file_nico_nico_proto_msgTypes[525] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39068,7 +39216,7 @@ func (x *MachineValidationTestUpdateRequest) String() string { func (*MachineValidationTestUpdateRequest) ProtoMessage() {} func (x *MachineValidationTestUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[523] + mi := &file_nico_nico_proto_msgTypes[525] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39081,7 +39229,7 @@ func (x *MachineValidationTestUpdateRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationTestUpdateRequest.ProtoReflect.Descriptor instead. func (*MachineValidationTestUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{523} + return file_nico_nico_proto_rawDescGZIP(), []int{525} } func (x *MachineValidationTestUpdateRequest) GetTestId() string { @@ -39131,7 +39279,7 @@ type MachineValidationTestAddRequest struct { func (x *MachineValidationTestAddRequest) Reset() { *x = MachineValidationTestAddRequest{} - mi := &file_nico_nico_proto_msgTypes[524] + mi := &file_nico_nico_proto_msgTypes[526] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39143,7 +39291,7 @@ func (x *MachineValidationTestAddRequest) String() string { func (*MachineValidationTestAddRequest) ProtoMessage() {} func (x *MachineValidationTestAddRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[524] + mi := &file_nico_nico_proto_msgTypes[526] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39156,7 +39304,7 @@ func (x *MachineValidationTestAddRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationTestAddRequest.ProtoReflect.Descriptor instead. func (*MachineValidationTestAddRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{524} + return file_nico_nico_proto_rawDescGZIP(), []int{526} } func (x *MachineValidationTestAddRequest) GetName() string { @@ -39295,7 +39443,7 @@ type MachineValidationTestAddUpdateResponse struct { func (x *MachineValidationTestAddUpdateResponse) Reset() { *x = MachineValidationTestAddUpdateResponse{} - mi := &file_nico_nico_proto_msgTypes[525] + mi := &file_nico_nico_proto_msgTypes[527] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39307,7 +39455,7 @@ func (x *MachineValidationTestAddUpdateResponse) String() string { func (*MachineValidationTestAddUpdateResponse) ProtoMessage() {} func (x *MachineValidationTestAddUpdateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[525] + mi := &file_nico_nico_proto_msgTypes[527] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39320,7 +39468,7 @@ func (x *MachineValidationTestAddUpdateResponse) ProtoReflect() protoreflect.Mes // Deprecated: Use MachineValidationTestAddUpdateResponse.ProtoReflect.Descriptor instead. func (*MachineValidationTestAddUpdateResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{525} + return file_nico_nico_proto_rawDescGZIP(), []int{527} } func (x *MachineValidationTestAddUpdateResponse) GetTestId() string { @@ -39346,7 +39494,7 @@ type MachineValidationTestsGetResponse struct { func (x *MachineValidationTestsGetResponse) Reset() { *x = MachineValidationTestsGetResponse{} - mi := &file_nico_nico_proto_msgTypes[526] + mi := &file_nico_nico_proto_msgTypes[528] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39358,7 +39506,7 @@ func (x *MachineValidationTestsGetResponse) String() string { func (*MachineValidationTestsGetResponse) ProtoMessage() {} func (x *MachineValidationTestsGetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[526] + mi := &file_nico_nico_proto_msgTypes[528] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39371,7 +39519,7 @@ func (x *MachineValidationTestsGetResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationTestsGetResponse.ProtoReflect.Descriptor instead. func (*MachineValidationTestsGetResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{526} + return file_nico_nico_proto_rawDescGZIP(), []int{528} } func (x *MachineValidationTestsGetResponse) GetTests() []*MachineValidationTest { @@ -39391,7 +39539,7 @@ type MachineValidationTestVerfiedRequest struct { func (x *MachineValidationTestVerfiedRequest) Reset() { *x = MachineValidationTestVerfiedRequest{} - mi := &file_nico_nico_proto_msgTypes[527] + mi := &file_nico_nico_proto_msgTypes[529] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39403,7 +39551,7 @@ func (x *MachineValidationTestVerfiedRequest) String() string { func (*MachineValidationTestVerfiedRequest) ProtoMessage() {} func (x *MachineValidationTestVerfiedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[527] + mi := &file_nico_nico_proto_msgTypes[529] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39416,7 +39564,7 @@ func (x *MachineValidationTestVerfiedRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use MachineValidationTestVerfiedRequest.ProtoReflect.Descriptor instead. func (*MachineValidationTestVerfiedRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{527} + return file_nico_nico_proto_rawDescGZIP(), []int{529} } func (x *MachineValidationTestVerfiedRequest) GetTestId() string { @@ -39442,7 +39590,7 @@ type MachineValidationTestVerfiedResponse struct { func (x *MachineValidationTestVerfiedResponse) Reset() { *x = MachineValidationTestVerfiedResponse{} - mi := &file_nico_nico_proto_msgTypes[528] + mi := &file_nico_nico_proto_msgTypes[530] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39454,7 +39602,7 @@ func (x *MachineValidationTestVerfiedResponse) String() string { func (*MachineValidationTestVerfiedResponse) ProtoMessage() {} func (x *MachineValidationTestVerfiedResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[528] + mi := &file_nico_nico_proto_msgTypes[530] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39467,7 +39615,7 @@ func (x *MachineValidationTestVerfiedResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use MachineValidationTestVerfiedResponse.ProtoReflect.Descriptor instead. func (*MachineValidationTestVerfiedResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{528} + return file_nico_nico_proto_rawDescGZIP(), []int{530} } func (x *MachineValidationTestVerfiedResponse) GetMessage() string { @@ -39508,7 +39656,7 @@ type MachineValidationTest struct { func (x *MachineValidationTest) Reset() { *x = MachineValidationTest{} - mi := &file_nico_nico_proto_msgTypes[529] + mi := &file_nico_nico_proto_msgTypes[531] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39520,7 +39668,7 @@ func (x *MachineValidationTest) String() string { func (*MachineValidationTest) ProtoMessage() {} func (x *MachineValidationTest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[529] + mi := &file_nico_nico_proto_msgTypes[531] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39533,7 +39681,7 @@ func (x *MachineValidationTest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationTest.ProtoReflect.Descriptor instead. func (*MachineValidationTest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{529} + return file_nico_nico_proto_rawDescGZIP(), []int{531} } func (x *MachineValidationTest) GetTestId() string { @@ -39707,7 +39855,7 @@ type MachineValidationTestNextVersionResponse struct { func (x *MachineValidationTestNextVersionResponse) Reset() { *x = MachineValidationTestNextVersionResponse{} - mi := &file_nico_nico_proto_msgTypes[530] + mi := &file_nico_nico_proto_msgTypes[532] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39719,7 +39867,7 @@ func (x *MachineValidationTestNextVersionResponse) String() string { func (*MachineValidationTestNextVersionResponse) ProtoMessage() {} func (x *MachineValidationTestNextVersionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[530] + mi := &file_nico_nico_proto_msgTypes[532] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39732,7 +39880,7 @@ func (x *MachineValidationTestNextVersionResponse) ProtoReflect() protoreflect.M // Deprecated: Use MachineValidationTestNextVersionResponse.ProtoReflect.Descriptor instead. func (*MachineValidationTestNextVersionResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{530} + return file_nico_nico_proto_rawDescGZIP(), []int{532} } func (x *MachineValidationTestNextVersionResponse) GetTestId() string { @@ -39758,7 +39906,7 @@ type MachineValidationTestNextVersionRequest struct { func (x *MachineValidationTestNextVersionRequest) Reset() { *x = MachineValidationTestNextVersionRequest{} - mi := &file_nico_nico_proto_msgTypes[531] + mi := &file_nico_nico_proto_msgTypes[533] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39770,7 +39918,7 @@ func (x *MachineValidationTestNextVersionRequest) String() string { func (*MachineValidationTestNextVersionRequest) ProtoMessage() {} func (x *MachineValidationTestNextVersionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[531] + mi := &file_nico_nico_proto_msgTypes[533] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39783,7 +39931,7 @@ func (x *MachineValidationTestNextVersionRequest) ProtoReflect() protoreflect.Me // Deprecated: Use MachineValidationTestNextVersionRequest.ProtoReflect.Descriptor instead. func (*MachineValidationTestNextVersionRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{531} + return file_nico_nico_proto_rawDescGZIP(), []int{533} } func (x *MachineValidationTestNextVersionRequest) GetTestId() string { @@ -39804,7 +39952,7 @@ type MachineValidationTestEnableDisableTestRequest struct { func (x *MachineValidationTestEnableDisableTestRequest) Reset() { *x = MachineValidationTestEnableDisableTestRequest{} - mi := &file_nico_nico_proto_msgTypes[532] + mi := &file_nico_nico_proto_msgTypes[534] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39816,7 +39964,7 @@ func (x *MachineValidationTestEnableDisableTestRequest) String() string { func (*MachineValidationTestEnableDisableTestRequest) ProtoMessage() {} func (x *MachineValidationTestEnableDisableTestRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[532] + mi := &file_nico_nico_proto_msgTypes[534] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39829,7 +39977,7 @@ func (x *MachineValidationTestEnableDisableTestRequest) ProtoReflect() protorefl // Deprecated: Use MachineValidationTestEnableDisableTestRequest.ProtoReflect.Descriptor instead. func (*MachineValidationTestEnableDisableTestRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{532} + return file_nico_nico_proto_rawDescGZIP(), []int{534} } func (x *MachineValidationTestEnableDisableTestRequest) GetTestId() string { @@ -39862,7 +40010,7 @@ type MachineValidationTestEnableDisableTestResponse struct { func (x *MachineValidationTestEnableDisableTestResponse) Reset() { *x = MachineValidationTestEnableDisableTestResponse{} - mi := &file_nico_nico_proto_msgTypes[533] + mi := &file_nico_nico_proto_msgTypes[535] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39874,7 +40022,7 @@ func (x *MachineValidationTestEnableDisableTestResponse) String() string { func (*MachineValidationTestEnableDisableTestResponse) ProtoMessage() {} func (x *MachineValidationTestEnableDisableTestResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[533] + mi := &file_nico_nico_proto_msgTypes[535] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39887,7 +40035,7 @@ func (x *MachineValidationTestEnableDisableTestResponse) ProtoReflect() protoref // Deprecated: Use MachineValidationTestEnableDisableTestResponse.ProtoReflect.Descriptor instead. func (*MachineValidationTestEnableDisableTestResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{533} + return file_nico_nico_proto_rawDescGZIP(), []int{535} } func (x *MachineValidationTestEnableDisableTestResponse) GetMessage() string { @@ -39909,7 +40057,7 @@ type MachineValidationRunRequest struct { func (x *MachineValidationRunRequest) Reset() { *x = MachineValidationRunRequest{} - mi := &file_nico_nico_proto_msgTypes[534] + mi := &file_nico_nico_proto_msgTypes[536] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39921,7 +40069,7 @@ func (x *MachineValidationRunRequest) String() string { func (*MachineValidationRunRequest) ProtoMessage() {} func (x *MachineValidationRunRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[534] + mi := &file_nico_nico_proto_msgTypes[536] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39934,7 +40082,7 @@ func (x *MachineValidationRunRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationRunRequest.ProtoReflect.Descriptor instead. func (*MachineValidationRunRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{534} + return file_nico_nico_proto_rawDescGZIP(), []int{536} } func (x *MachineValidationRunRequest) GetValidationId() *MachineValidationId { @@ -39974,7 +40122,7 @@ type MachineValidationRunResponse struct { func (x *MachineValidationRunResponse) Reset() { *x = MachineValidationRunResponse{} - mi := &file_nico_nico_proto_msgTypes[535] + mi := &file_nico_nico_proto_msgTypes[537] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39986,7 +40134,7 @@ func (x *MachineValidationRunResponse) String() string { func (*MachineValidationRunResponse) ProtoMessage() {} func (x *MachineValidationRunResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[535] + mi := &file_nico_nico_proto_msgTypes[537] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39999,7 +40147,7 @@ func (x *MachineValidationRunResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationRunResponse.ProtoReflect.Descriptor instead. func (*MachineValidationRunResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{535} + return file_nico_nico_proto_rawDescGZIP(), []int{537} } func (x *MachineValidationRunResponse) GetMessage() string { @@ -40022,7 +40170,7 @@ type MachineCapabilityAttributesCpu struct { func (x *MachineCapabilityAttributesCpu) Reset() { *x = MachineCapabilityAttributesCpu{} - mi := &file_nico_nico_proto_msgTypes[536] + mi := &file_nico_nico_proto_msgTypes[538] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40034,7 +40182,7 @@ func (x *MachineCapabilityAttributesCpu) String() string { func (*MachineCapabilityAttributesCpu) ProtoMessage() {} func (x *MachineCapabilityAttributesCpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[536] + mi := &file_nico_nico_proto_msgTypes[538] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40047,7 +40195,7 @@ func (x *MachineCapabilityAttributesCpu) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCapabilityAttributesCpu.ProtoReflect.Descriptor instead. func (*MachineCapabilityAttributesCpu) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{536} + return file_nico_nico_proto_rawDescGZIP(), []int{538} } func (x *MachineCapabilityAttributesCpu) GetName() string { @@ -40101,7 +40249,7 @@ type MachineCapabilityAttributesGpu struct { func (x *MachineCapabilityAttributesGpu) Reset() { *x = MachineCapabilityAttributesGpu{} - mi := &file_nico_nico_proto_msgTypes[537] + mi := &file_nico_nico_proto_msgTypes[539] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40113,7 +40261,7 @@ func (x *MachineCapabilityAttributesGpu) String() string { func (*MachineCapabilityAttributesGpu) ProtoMessage() {} func (x *MachineCapabilityAttributesGpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[537] + mi := &file_nico_nico_proto_msgTypes[539] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40126,7 +40274,7 @@ func (x *MachineCapabilityAttributesGpu) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCapabilityAttributesGpu.ProtoReflect.Descriptor instead. func (*MachineCapabilityAttributesGpu) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{537} + return file_nico_nico_proto_rawDescGZIP(), []int{539} } func (x *MachineCapabilityAttributesGpu) GetName() string { @@ -40197,7 +40345,7 @@ type MachineCapabilityAttributesMemory struct { func (x *MachineCapabilityAttributesMemory) Reset() { *x = MachineCapabilityAttributesMemory{} - mi := &file_nico_nico_proto_msgTypes[538] + mi := &file_nico_nico_proto_msgTypes[540] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40209,7 +40357,7 @@ func (x *MachineCapabilityAttributesMemory) String() string { func (*MachineCapabilityAttributesMemory) ProtoMessage() {} func (x *MachineCapabilityAttributesMemory) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[538] + mi := &file_nico_nico_proto_msgTypes[540] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40222,7 +40370,7 @@ func (x *MachineCapabilityAttributesMemory) ProtoReflect() protoreflect.Message // Deprecated: Use MachineCapabilityAttributesMemory.ProtoReflect.Descriptor instead. func (*MachineCapabilityAttributesMemory) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{538} + return file_nico_nico_proto_rawDescGZIP(), []int{540} } func (x *MachineCapabilityAttributesMemory) GetName() string { @@ -40265,7 +40413,7 @@ type MachineCapabilityAttributesStorage struct { func (x *MachineCapabilityAttributesStorage) Reset() { *x = MachineCapabilityAttributesStorage{} - mi := &file_nico_nico_proto_msgTypes[539] + mi := &file_nico_nico_proto_msgTypes[541] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40277,7 +40425,7 @@ func (x *MachineCapabilityAttributesStorage) String() string { func (*MachineCapabilityAttributesStorage) ProtoMessage() {} func (x *MachineCapabilityAttributesStorage) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[539] + mi := &file_nico_nico_proto_msgTypes[541] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40290,7 +40438,7 @@ func (x *MachineCapabilityAttributesStorage) ProtoReflect() protoreflect.Message // Deprecated: Use MachineCapabilityAttributesStorage.ProtoReflect.Descriptor instead. func (*MachineCapabilityAttributesStorage) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{539} + return file_nico_nico_proto_rawDescGZIP(), []int{541} } func (x *MachineCapabilityAttributesStorage) GetName() string { @@ -40333,7 +40481,7 @@ type MachineCapabilityAttributesNetwork struct { func (x *MachineCapabilityAttributesNetwork) Reset() { *x = MachineCapabilityAttributesNetwork{} - mi := &file_nico_nico_proto_msgTypes[540] + mi := &file_nico_nico_proto_msgTypes[542] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40345,7 +40493,7 @@ func (x *MachineCapabilityAttributesNetwork) String() string { func (*MachineCapabilityAttributesNetwork) ProtoMessage() {} func (x *MachineCapabilityAttributesNetwork) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[540] + mi := &file_nico_nico_proto_msgTypes[542] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40358,7 +40506,7 @@ func (x *MachineCapabilityAttributesNetwork) ProtoReflect() protoreflect.Message // Deprecated: Use MachineCapabilityAttributesNetwork.ProtoReflect.Descriptor instead. func (*MachineCapabilityAttributesNetwork) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{540} + return file_nico_nico_proto_rawDescGZIP(), []int{542} } func (x *MachineCapabilityAttributesNetwork) GetName() string { @@ -40408,7 +40556,7 @@ type MachineCapabilityAttributesInfiniband struct { func (x *MachineCapabilityAttributesInfiniband) Reset() { *x = MachineCapabilityAttributesInfiniband{} - mi := &file_nico_nico_proto_msgTypes[541] + mi := &file_nico_nico_proto_msgTypes[543] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40420,7 +40568,7 @@ func (x *MachineCapabilityAttributesInfiniband) String() string { func (*MachineCapabilityAttributesInfiniband) ProtoMessage() {} func (x *MachineCapabilityAttributesInfiniband) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[541] + mi := &file_nico_nico_proto_msgTypes[543] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40433,7 +40581,7 @@ func (x *MachineCapabilityAttributesInfiniband) ProtoReflect() protoreflect.Mess // Deprecated: Use MachineCapabilityAttributesInfiniband.ProtoReflect.Descriptor instead. func (*MachineCapabilityAttributesInfiniband) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{541} + return file_nico_nico_proto_rawDescGZIP(), []int{543} } func (x *MachineCapabilityAttributesInfiniband) GetName() string { @@ -40475,7 +40623,7 @@ type MachineCapabilityAttributesDpu struct { func (x *MachineCapabilityAttributesDpu) Reset() { *x = MachineCapabilityAttributesDpu{} - mi := &file_nico_nico_proto_msgTypes[542] + mi := &file_nico_nico_proto_msgTypes[544] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40487,7 +40635,7 @@ func (x *MachineCapabilityAttributesDpu) String() string { func (*MachineCapabilityAttributesDpu) ProtoMessage() {} func (x *MachineCapabilityAttributesDpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[542] + mi := &file_nico_nico_proto_msgTypes[544] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40500,7 +40648,7 @@ func (x *MachineCapabilityAttributesDpu) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCapabilityAttributesDpu.ProtoReflect.Descriptor instead. func (*MachineCapabilityAttributesDpu) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{542} + return file_nico_nico_proto_rawDescGZIP(), []int{544} } func (x *MachineCapabilityAttributesDpu) GetName() string { @@ -40539,7 +40687,7 @@ type MachineCapabilitiesSet struct { func (x *MachineCapabilitiesSet) Reset() { *x = MachineCapabilitiesSet{} - mi := &file_nico_nico_proto_msgTypes[543] + mi := &file_nico_nico_proto_msgTypes[545] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40551,7 +40699,7 @@ func (x *MachineCapabilitiesSet) String() string { func (*MachineCapabilitiesSet) ProtoMessage() {} func (x *MachineCapabilitiesSet) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[543] + mi := &file_nico_nico_proto_msgTypes[545] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40564,7 +40712,7 @@ func (x *MachineCapabilitiesSet) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCapabilitiesSet.ProtoReflect.Descriptor instead. func (*MachineCapabilitiesSet) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{543} + return file_nico_nico_proto_rawDescGZIP(), []int{545} } func (x *MachineCapabilitiesSet) GetCpu() []*MachineCapabilityAttributesCpu { @@ -40628,7 +40776,7 @@ type InstanceTypeAttributes struct { func (x *InstanceTypeAttributes) Reset() { *x = InstanceTypeAttributes{} - mi := &file_nico_nico_proto_msgTypes[544] + mi := &file_nico_nico_proto_msgTypes[546] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40640,7 +40788,7 @@ func (x *InstanceTypeAttributes) String() string { func (*InstanceTypeAttributes) ProtoMessage() {} func (x *InstanceTypeAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[544] + mi := &file_nico_nico_proto_msgTypes[546] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40653,7 +40801,7 @@ func (x *InstanceTypeAttributes) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceTypeAttributes.ProtoReflect.Descriptor instead. func (*InstanceTypeAttributes) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{544} + return file_nico_nico_proto_rawDescGZIP(), []int{546} } func (x *InstanceTypeAttributes) GetDesiredCapabilities() []*InstanceTypeMachineCapabilityFilterAttributes { @@ -40682,7 +40830,7 @@ type InstanceType struct { func (x *InstanceType) Reset() { *x = InstanceType{} - mi := &file_nico_nico_proto_msgTypes[545] + mi := &file_nico_nico_proto_msgTypes[547] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40694,7 +40842,7 @@ func (x *InstanceType) String() string { func (*InstanceType) ProtoMessage() {} func (x *InstanceType) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[545] + mi := &file_nico_nico_proto_msgTypes[547] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40707,7 +40855,7 @@ func (x *InstanceType) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceType.ProtoReflect.Descriptor instead. func (*InstanceType) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{545} + return file_nico_nico_proto_rawDescGZIP(), []int{547} } func (x *InstanceType) GetId() string { @@ -40778,7 +40926,7 @@ type InstanceTypeMachineCapabilityFilterAttributes struct { func (x *InstanceTypeMachineCapabilityFilterAttributes) Reset() { *x = InstanceTypeMachineCapabilityFilterAttributes{} - mi := &file_nico_nico_proto_msgTypes[546] + mi := &file_nico_nico_proto_msgTypes[548] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40790,7 +40938,7 @@ func (x *InstanceTypeMachineCapabilityFilterAttributes) String() string { func (*InstanceTypeMachineCapabilityFilterAttributes) ProtoMessage() {} func (x *InstanceTypeMachineCapabilityFilterAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[546] + mi := &file_nico_nico_proto_msgTypes[548] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40803,7 +40951,7 @@ func (x *InstanceTypeMachineCapabilityFilterAttributes) ProtoReflect() protorefl // Deprecated: Use InstanceTypeMachineCapabilityFilterAttributes.ProtoReflect.Descriptor instead. func (*InstanceTypeMachineCapabilityFilterAttributes) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{546} + return file_nico_nico_proto_rawDescGZIP(), []int{548} } func (x *InstanceTypeMachineCapabilityFilterAttributes) GetCapabilityType() MachineCapabilityType { @@ -40894,7 +41042,7 @@ type CreateInstanceTypeRequest struct { func (x *CreateInstanceTypeRequest) Reset() { *x = CreateInstanceTypeRequest{} - mi := &file_nico_nico_proto_msgTypes[547] + mi := &file_nico_nico_proto_msgTypes[549] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40906,7 +41054,7 @@ func (x *CreateInstanceTypeRequest) String() string { func (*CreateInstanceTypeRequest) ProtoMessage() {} func (x *CreateInstanceTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[547] + mi := &file_nico_nico_proto_msgTypes[549] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40919,7 +41067,7 @@ func (x *CreateInstanceTypeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateInstanceTypeRequest.ProtoReflect.Descriptor instead. func (*CreateInstanceTypeRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{547} + return file_nico_nico_proto_rawDescGZIP(), []int{549} } func (x *CreateInstanceTypeRequest) GetId() string { @@ -40952,7 +41100,7 @@ type CreateInstanceTypeResponse struct { func (x *CreateInstanceTypeResponse) Reset() { *x = CreateInstanceTypeResponse{} - mi := &file_nico_nico_proto_msgTypes[548] + mi := &file_nico_nico_proto_msgTypes[550] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40964,7 +41112,7 @@ func (x *CreateInstanceTypeResponse) String() string { func (*CreateInstanceTypeResponse) ProtoMessage() {} func (x *CreateInstanceTypeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[548] + mi := &file_nico_nico_proto_msgTypes[550] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40977,7 +41125,7 @@ func (x *CreateInstanceTypeResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateInstanceTypeResponse.ProtoReflect.Descriptor instead. func (*CreateInstanceTypeResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{548} + return file_nico_nico_proto_rawDescGZIP(), []int{550} } func (x *CreateInstanceTypeResponse) GetInstanceType() *InstanceType { @@ -40995,7 +41143,7 @@ type FindInstanceTypeIdsRequest struct { func (x *FindInstanceTypeIdsRequest) Reset() { *x = FindInstanceTypeIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[549] + mi := &file_nico_nico_proto_msgTypes[551] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41007,7 +41155,7 @@ func (x *FindInstanceTypeIdsRequest) String() string { func (*FindInstanceTypeIdsRequest) ProtoMessage() {} func (x *FindInstanceTypeIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[549] + mi := &file_nico_nico_proto_msgTypes[551] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41020,7 +41168,7 @@ func (x *FindInstanceTypeIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FindInstanceTypeIdsRequest.ProtoReflect.Descriptor instead. func (*FindInstanceTypeIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{549} + return file_nico_nico_proto_rawDescGZIP(), []int{551} } type FindInstanceTypeIdsResponse struct { @@ -41032,7 +41180,7 @@ type FindInstanceTypeIdsResponse struct { func (x *FindInstanceTypeIdsResponse) Reset() { *x = FindInstanceTypeIdsResponse{} - mi := &file_nico_nico_proto_msgTypes[550] + mi := &file_nico_nico_proto_msgTypes[552] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41044,7 +41192,7 @@ func (x *FindInstanceTypeIdsResponse) String() string { func (*FindInstanceTypeIdsResponse) ProtoMessage() {} func (x *FindInstanceTypeIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[550] + mi := &file_nico_nico_proto_msgTypes[552] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41057,7 +41205,7 @@ func (x *FindInstanceTypeIdsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use FindInstanceTypeIdsResponse.ProtoReflect.Descriptor instead. func (*FindInstanceTypeIdsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{550} + return file_nico_nico_proto_rawDescGZIP(), []int{552} } func (x *FindInstanceTypeIdsResponse) GetInstanceTypeIds() []string { @@ -41080,7 +41228,7 @@ type FindInstanceTypesByIdsRequest struct { func (x *FindInstanceTypesByIdsRequest) Reset() { *x = FindInstanceTypesByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[551] + mi := &file_nico_nico_proto_msgTypes[553] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41092,7 +41240,7 @@ func (x *FindInstanceTypesByIdsRequest) String() string { func (*FindInstanceTypesByIdsRequest) ProtoMessage() {} func (x *FindInstanceTypesByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[551] + mi := &file_nico_nico_proto_msgTypes[553] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41105,7 +41253,7 @@ func (x *FindInstanceTypesByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FindInstanceTypesByIdsRequest.ProtoReflect.Descriptor instead. func (*FindInstanceTypesByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{551} + return file_nico_nico_proto_rawDescGZIP(), []int{553} } func (x *FindInstanceTypesByIdsRequest) GetInstanceTypeIds() []string { @@ -41138,7 +41286,7 @@ type FindInstanceTypesByIdsResponse struct { func (x *FindInstanceTypesByIdsResponse) Reset() { *x = FindInstanceTypesByIdsResponse{} - mi := &file_nico_nico_proto_msgTypes[552] + mi := &file_nico_nico_proto_msgTypes[554] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41150,7 +41298,7 @@ func (x *FindInstanceTypesByIdsResponse) String() string { func (*FindInstanceTypesByIdsResponse) ProtoMessage() {} func (x *FindInstanceTypesByIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[552] + mi := &file_nico_nico_proto_msgTypes[554] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41163,7 +41311,7 @@ func (x *FindInstanceTypesByIdsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use FindInstanceTypesByIdsResponse.ProtoReflect.Descriptor instead. func (*FindInstanceTypesByIdsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{552} + return file_nico_nico_proto_rawDescGZIP(), []int{554} } func (x *FindInstanceTypesByIdsResponse) GetInstanceTypes() []*InstanceType { @@ -41182,7 +41330,7 @@ type DeleteInstanceTypeRequest struct { func (x *DeleteInstanceTypeRequest) Reset() { *x = DeleteInstanceTypeRequest{} - mi := &file_nico_nico_proto_msgTypes[553] + mi := &file_nico_nico_proto_msgTypes[555] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41194,7 +41342,7 @@ func (x *DeleteInstanceTypeRequest) String() string { func (*DeleteInstanceTypeRequest) ProtoMessage() {} func (x *DeleteInstanceTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[553] + mi := &file_nico_nico_proto_msgTypes[555] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41207,7 +41355,7 @@ func (x *DeleteInstanceTypeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteInstanceTypeRequest.ProtoReflect.Descriptor instead. func (*DeleteInstanceTypeRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{553} + return file_nico_nico_proto_rawDescGZIP(), []int{555} } func (x *DeleteInstanceTypeRequest) GetId() string { @@ -41225,7 +41373,7 @@ type DeleteInstanceTypeResponse struct { func (x *DeleteInstanceTypeResponse) Reset() { *x = DeleteInstanceTypeResponse{} - mi := &file_nico_nico_proto_msgTypes[554] + mi := &file_nico_nico_proto_msgTypes[556] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41237,7 +41385,7 @@ func (x *DeleteInstanceTypeResponse) String() string { func (*DeleteInstanceTypeResponse) ProtoMessage() {} func (x *DeleteInstanceTypeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[554] + mi := &file_nico_nico_proto_msgTypes[556] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41250,7 +41398,7 @@ func (x *DeleteInstanceTypeResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteInstanceTypeResponse.ProtoReflect.Descriptor instead. func (*DeleteInstanceTypeResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{554} + return file_nico_nico_proto_rawDescGZIP(), []int{556} } type UpdateInstanceTypeResponse struct { @@ -41262,7 +41410,7 @@ type UpdateInstanceTypeResponse struct { func (x *UpdateInstanceTypeResponse) Reset() { *x = UpdateInstanceTypeResponse{} - mi := &file_nico_nico_proto_msgTypes[555] + mi := &file_nico_nico_proto_msgTypes[557] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41274,7 +41422,7 @@ func (x *UpdateInstanceTypeResponse) String() string { func (*UpdateInstanceTypeResponse) ProtoMessage() {} func (x *UpdateInstanceTypeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[555] + mi := &file_nico_nico_proto_msgTypes[557] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41287,7 +41435,7 @@ func (x *UpdateInstanceTypeResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateInstanceTypeResponse.ProtoReflect.Descriptor instead. func (*UpdateInstanceTypeResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{555} + return file_nico_nico_proto_rawDescGZIP(), []int{557} } func (x *UpdateInstanceTypeResponse) GetInstanceType() *InstanceType { @@ -41309,7 +41457,7 @@ type UpdateInstanceTypeRequest struct { func (x *UpdateInstanceTypeRequest) Reset() { *x = UpdateInstanceTypeRequest{} - mi := &file_nico_nico_proto_msgTypes[556] + mi := &file_nico_nico_proto_msgTypes[558] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41321,7 +41469,7 @@ func (x *UpdateInstanceTypeRequest) String() string { func (*UpdateInstanceTypeRequest) ProtoMessage() {} func (x *UpdateInstanceTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[556] + mi := &file_nico_nico_proto_msgTypes[558] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41334,7 +41482,7 @@ func (x *UpdateInstanceTypeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateInstanceTypeRequest.ProtoReflect.Descriptor instead. func (*UpdateInstanceTypeRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{556} + return file_nico_nico_proto_rawDescGZIP(), []int{558} } func (x *UpdateInstanceTypeRequest) GetId() string { @@ -41375,7 +41523,7 @@ type AssociateMachinesWithInstanceTypeRequest struct { func (x *AssociateMachinesWithInstanceTypeRequest) Reset() { *x = AssociateMachinesWithInstanceTypeRequest{} - mi := &file_nico_nico_proto_msgTypes[557] + mi := &file_nico_nico_proto_msgTypes[559] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41387,7 +41535,7 @@ func (x *AssociateMachinesWithInstanceTypeRequest) String() string { func (*AssociateMachinesWithInstanceTypeRequest) ProtoMessage() {} func (x *AssociateMachinesWithInstanceTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[557] + mi := &file_nico_nico_proto_msgTypes[559] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41400,7 +41548,7 @@ func (x *AssociateMachinesWithInstanceTypeRequest) ProtoReflect() protoreflect.M // Deprecated: Use AssociateMachinesWithInstanceTypeRequest.ProtoReflect.Descriptor instead. func (*AssociateMachinesWithInstanceTypeRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{557} + return file_nico_nico_proto_rawDescGZIP(), []int{559} } func (x *AssociateMachinesWithInstanceTypeRequest) GetInstanceTypeId() string { @@ -41425,7 +41573,7 @@ type AssociateMachinesWithInstanceTypeResponse struct { func (x *AssociateMachinesWithInstanceTypeResponse) Reset() { *x = AssociateMachinesWithInstanceTypeResponse{} - mi := &file_nico_nico_proto_msgTypes[558] + mi := &file_nico_nico_proto_msgTypes[560] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41437,7 +41585,7 @@ func (x *AssociateMachinesWithInstanceTypeResponse) String() string { func (*AssociateMachinesWithInstanceTypeResponse) ProtoMessage() {} func (x *AssociateMachinesWithInstanceTypeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[558] + mi := &file_nico_nico_proto_msgTypes[560] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41450,7 +41598,7 @@ func (x *AssociateMachinesWithInstanceTypeResponse) ProtoReflect() protoreflect. // Deprecated: Use AssociateMachinesWithInstanceTypeResponse.ProtoReflect.Descriptor instead. func (*AssociateMachinesWithInstanceTypeResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{558} + return file_nico_nico_proto_rawDescGZIP(), []int{560} } type RemoveMachineInstanceTypeAssociationRequest struct { @@ -41462,7 +41610,7 @@ type RemoveMachineInstanceTypeAssociationRequest struct { func (x *RemoveMachineInstanceTypeAssociationRequest) Reset() { *x = RemoveMachineInstanceTypeAssociationRequest{} - mi := &file_nico_nico_proto_msgTypes[559] + mi := &file_nico_nico_proto_msgTypes[561] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41474,7 +41622,7 @@ func (x *RemoveMachineInstanceTypeAssociationRequest) String() string { func (*RemoveMachineInstanceTypeAssociationRequest) ProtoMessage() {} func (x *RemoveMachineInstanceTypeAssociationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[559] + mi := &file_nico_nico_proto_msgTypes[561] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41487,7 +41635,7 @@ func (x *RemoveMachineInstanceTypeAssociationRequest) ProtoReflect() protoreflec // Deprecated: Use RemoveMachineInstanceTypeAssociationRequest.ProtoReflect.Descriptor instead. func (*RemoveMachineInstanceTypeAssociationRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{559} + return file_nico_nico_proto_rawDescGZIP(), []int{561} } func (x *RemoveMachineInstanceTypeAssociationRequest) GetMachineId() string { @@ -41505,7 +41653,7 @@ type RemoveMachineInstanceTypeAssociationResponse struct { func (x *RemoveMachineInstanceTypeAssociationResponse) Reset() { *x = RemoveMachineInstanceTypeAssociationResponse{} - mi := &file_nico_nico_proto_msgTypes[560] + mi := &file_nico_nico_proto_msgTypes[562] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41517,7 +41665,7 @@ func (x *RemoveMachineInstanceTypeAssociationResponse) String() string { func (*RemoveMachineInstanceTypeAssociationResponse) ProtoMessage() {} func (x *RemoveMachineInstanceTypeAssociationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[560] + mi := &file_nico_nico_proto_msgTypes[562] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41530,7 +41678,7 @@ func (x *RemoveMachineInstanceTypeAssociationResponse) ProtoReflect() protorefle // Deprecated: Use RemoveMachineInstanceTypeAssociationResponse.ProtoReflect.Descriptor instead. func (*RemoveMachineInstanceTypeAssociationResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{560} + return file_nico_nico_proto_rawDescGZIP(), []int{562} } type RedfishBrowseRequest struct { @@ -41542,7 +41690,7 @@ type RedfishBrowseRequest struct { func (x *RedfishBrowseRequest) Reset() { *x = RedfishBrowseRequest{} - mi := &file_nico_nico_proto_msgTypes[561] + mi := &file_nico_nico_proto_msgTypes[563] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41554,7 +41702,7 @@ func (x *RedfishBrowseRequest) String() string { func (*RedfishBrowseRequest) ProtoMessage() {} func (x *RedfishBrowseRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[561] + mi := &file_nico_nico_proto_msgTypes[563] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41567,7 +41715,7 @@ func (x *RedfishBrowseRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishBrowseRequest.ProtoReflect.Descriptor instead. func (*RedfishBrowseRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{561} + return file_nico_nico_proto_rawDescGZIP(), []int{563} } func (x *RedfishBrowseRequest) GetUri() string { @@ -41588,7 +41736,7 @@ type RedfishBrowseResponse struct { func (x *RedfishBrowseResponse) Reset() { *x = RedfishBrowseResponse{} - mi := &file_nico_nico_proto_msgTypes[562] + mi := &file_nico_nico_proto_msgTypes[564] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41600,7 +41748,7 @@ func (x *RedfishBrowseResponse) String() string { func (*RedfishBrowseResponse) ProtoMessage() {} func (x *RedfishBrowseResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[562] + mi := &file_nico_nico_proto_msgTypes[564] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41613,7 +41761,7 @@ func (x *RedfishBrowseResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishBrowseResponse.ProtoReflect.Descriptor instead. func (*RedfishBrowseResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{562} + return file_nico_nico_proto_rawDescGZIP(), []int{564} } func (x *RedfishBrowseResponse) GetText() string { @@ -41639,7 +41787,7 @@ type RedfishListActionsRequest struct { func (x *RedfishListActionsRequest) Reset() { *x = RedfishListActionsRequest{} - mi := &file_nico_nico_proto_msgTypes[563] + mi := &file_nico_nico_proto_msgTypes[565] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41651,7 +41799,7 @@ func (x *RedfishListActionsRequest) String() string { func (*RedfishListActionsRequest) ProtoMessage() {} func (x *RedfishListActionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[563] + mi := &file_nico_nico_proto_msgTypes[565] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41664,7 +41812,7 @@ func (x *RedfishListActionsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishListActionsRequest.ProtoReflect.Descriptor instead. func (*RedfishListActionsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{563} + return file_nico_nico_proto_rawDescGZIP(), []int{565} } func (x *RedfishListActionsRequest) GetMachineIp() string { @@ -41683,7 +41831,7 @@ type RedfishListActionsResponse struct { func (x *RedfishListActionsResponse) Reset() { *x = RedfishListActionsResponse{} - mi := &file_nico_nico_proto_msgTypes[564] + mi := &file_nico_nico_proto_msgTypes[566] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41695,7 +41843,7 @@ func (x *RedfishListActionsResponse) String() string { func (*RedfishListActionsResponse) ProtoMessage() {} func (x *RedfishListActionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[564] + mi := &file_nico_nico_proto_msgTypes[566] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41708,7 +41856,7 @@ func (x *RedfishListActionsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishListActionsResponse.ProtoReflect.Descriptor instead. func (*RedfishListActionsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{564} + return file_nico_nico_proto_rawDescGZIP(), []int{566} } func (x *RedfishListActionsResponse) GetActions() []*RedfishAction { @@ -41741,7 +41889,7 @@ type RedfishAction struct { func (x *RedfishAction) Reset() { *x = RedfishAction{} - mi := &file_nico_nico_proto_msgTypes[565] + mi := &file_nico_nico_proto_msgTypes[567] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41753,7 +41901,7 @@ func (x *RedfishAction) String() string { func (*RedfishAction) ProtoMessage() {} func (x *RedfishAction) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[565] + mi := &file_nico_nico_proto_msgTypes[567] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41766,7 +41914,7 @@ func (x *RedfishAction) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishAction.ProtoReflect.Descriptor instead. func (*RedfishAction) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{565} + return file_nico_nico_proto_rawDescGZIP(), []int{567} } func (x *RedfishAction) GetRequestId() int64 { @@ -41862,7 +42010,7 @@ type OptionalRedfishActionResult struct { func (x *OptionalRedfishActionResult) Reset() { *x = OptionalRedfishActionResult{} - mi := &file_nico_nico_proto_msgTypes[566] + mi := &file_nico_nico_proto_msgTypes[568] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41874,7 +42022,7 @@ func (x *OptionalRedfishActionResult) String() string { func (*OptionalRedfishActionResult) ProtoMessage() {} func (x *OptionalRedfishActionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[566] + mi := &file_nico_nico_proto_msgTypes[568] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41887,7 +42035,7 @@ func (x *OptionalRedfishActionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use OptionalRedfishActionResult.ProtoReflect.Descriptor instead. func (*OptionalRedfishActionResult) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{566} + return file_nico_nico_proto_rawDescGZIP(), []int{568} } func (x *OptionalRedfishActionResult) GetResult() *RedfishActionResult { @@ -41909,7 +42057,7 @@ type RedfishActionResult struct { func (x *RedfishActionResult) Reset() { *x = RedfishActionResult{} - mi := &file_nico_nico_proto_msgTypes[567] + mi := &file_nico_nico_proto_msgTypes[569] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41921,7 +42069,7 @@ func (x *RedfishActionResult) String() string { func (*RedfishActionResult) ProtoMessage() {} func (x *RedfishActionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[567] + mi := &file_nico_nico_proto_msgTypes[569] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41934,7 +42082,7 @@ func (x *RedfishActionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishActionResult.ProtoReflect.Descriptor instead. func (*RedfishActionResult) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{567} + return file_nico_nico_proto_rawDescGZIP(), []int{569} } func (x *RedfishActionResult) GetHeaders() map[string]string { @@ -41977,7 +42125,7 @@ type RedfishCreateActionRequest struct { func (x *RedfishCreateActionRequest) Reset() { *x = RedfishCreateActionRequest{} - mi := &file_nico_nico_proto_msgTypes[568] + mi := &file_nico_nico_proto_msgTypes[570] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41989,7 +42137,7 @@ func (x *RedfishCreateActionRequest) String() string { func (*RedfishCreateActionRequest) ProtoMessage() {} func (x *RedfishCreateActionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[568] + mi := &file_nico_nico_proto_msgTypes[570] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42002,7 +42150,7 @@ func (x *RedfishCreateActionRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishCreateActionRequest.ProtoReflect.Descriptor instead. func (*RedfishCreateActionRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{568} + return file_nico_nico_proto_rawDescGZIP(), []int{570} } func (x *RedfishCreateActionRequest) GetIps() []string { @@ -42042,7 +42190,7 @@ type RedfishCreateActionResponse struct { func (x *RedfishCreateActionResponse) Reset() { *x = RedfishCreateActionResponse{} - mi := &file_nico_nico_proto_msgTypes[569] + mi := &file_nico_nico_proto_msgTypes[571] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42054,7 +42202,7 @@ func (x *RedfishCreateActionResponse) String() string { func (*RedfishCreateActionResponse) ProtoMessage() {} func (x *RedfishCreateActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[569] + mi := &file_nico_nico_proto_msgTypes[571] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42067,7 +42215,7 @@ func (x *RedfishCreateActionResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishCreateActionResponse.ProtoReflect.Descriptor instead. func (*RedfishCreateActionResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{569} + return file_nico_nico_proto_rawDescGZIP(), []int{571} } func (x *RedfishCreateActionResponse) GetRequestId() int64 { @@ -42086,7 +42234,7 @@ type RedfishActionID struct { func (x *RedfishActionID) Reset() { *x = RedfishActionID{} - mi := &file_nico_nico_proto_msgTypes[570] + mi := &file_nico_nico_proto_msgTypes[572] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42098,7 +42246,7 @@ func (x *RedfishActionID) String() string { func (*RedfishActionID) ProtoMessage() {} func (x *RedfishActionID) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[570] + mi := &file_nico_nico_proto_msgTypes[572] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42111,7 +42259,7 @@ func (x *RedfishActionID) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishActionID.ProtoReflect.Descriptor instead. func (*RedfishActionID) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{570} + return file_nico_nico_proto_rawDescGZIP(), []int{572} } func (x *RedfishActionID) GetRequestId() int64 { @@ -42129,7 +42277,7 @@ type RedfishApproveActionResponse struct { func (x *RedfishApproveActionResponse) Reset() { *x = RedfishApproveActionResponse{} - mi := &file_nico_nico_proto_msgTypes[571] + mi := &file_nico_nico_proto_msgTypes[573] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42141,7 +42289,7 @@ func (x *RedfishApproveActionResponse) String() string { func (*RedfishApproveActionResponse) ProtoMessage() {} func (x *RedfishApproveActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[571] + mi := &file_nico_nico_proto_msgTypes[573] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42154,7 +42302,7 @@ func (x *RedfishApproveActionResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishApproveActionResponse.ProtoReflect.Descriptor instead. func (*RedfishApproveActionResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{571} + return file_nico_nico_proto_rawDescGZIP(), []int{573} } type RedfishApplyActionResponse struct { @@ -42165,7 +42313,7 @@ type RedfishApplyActionResponse struct { func (x *RedfishApplyActionResponse) Reset() { *x = RedfishApplyActionResponse{} - mi := &file_nico_nico_proto_msgTypes[572] + mi := &file_nico_nico_proto_msgTypes[574] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42177,7 +42325,7 @@ func (x *RedfishApplyActionResponse) String() string { func (*RedfishApplyActionResponse) ProtoMessage() {} func (x *RedfishApplyActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[572] + mi := &file_nico_nico_proto_msgTypes[574] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42190,7 +42338,7 @@ func (x *RedfishApplyActionResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishApplyActionResponse.ProtoReflect.Descriptor instead. func (*RedfishApplyActionResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{572} + return file_nico_nico_proto_rawDescGZIP(), []int{574} } type RedfishCancelActionResponse struct { @@ -42201,7 +42349,7 @@ type RedfishCancelActionResponse struct { func (x *RedfishCancelActionResponse) Reset() { *x = RedfishCancelActionResponse{} - mi := &file_nico_nico_proto_msgTypes[573] + mi := &file_nico_nico_proto_msgTypes[575] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42213,7 +42361,7 @@ func (x *RedfishCancelActionResponse) String() string { func (*RedfishCancelActionResponse) ProtoMessage() {} func (x *RedfishCancelActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[573] + mi := &file_nico_nico_proto_msgTypes[575] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42226,7 +42374,7 @@ func (x *RedfishCancelActionResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishCancelActionResponse.ProtoReflect.Descriptor instead. func (*RedfishCancelActionResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{573} + return file_nico_nico_proto_rawDescGZIP(), []int{575} } type UfmBrowseRequest struct { @@ -42241,7 +42389,7 @@ type UfmBrowseRequest struct { func (x *UfmBrowseRequest) Reset() { *x = UfmBrowseRequest{} - mi := &file_nico_nico_proto_msgTypes[574] + mi := &file_nico_nico_proto_msgTypes[576] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42253,7 +42401,7 @@ func (x *UfmBrowseRequest) String() string { func (*UfmBrowseRequest) ProtoMessage() {} func (x *UfmBrowseRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[574] + mi := &file_nico_nico_proto_msgTypes[576] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42266,7 +42414,7 @@ func (x *UfmBrowseRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UfmBrowseRequest.ProtoReflect.Descriptor instead. func (*UfmBrowseRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{574} + return file_nico_nico_proto_rawDescGZIP(), []int{576} } func (x *UfmBrowseRequest) GetFabricId() string { @@ -42297,7 +42445,7 @@ type UfmBrowseResponse struct { func (x *UfmBrowseResponse) Reset() { *x = UfmBrowseResponse{} - mi := &file_nico_nico_proto_msgTypes[575] + mi := &file_nico_nico_proto_msgTypes[577] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42309,7 +42457,7 @@ func (x *UfmBrowseResponse) String() string { func (*UfmBrowseResponse) ProtoMessage() {} func (x *UfmBrowseResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[575] + mi := &file_nico_nico_proto_msgTypes[577] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42322,7 +42470,7 @@ func (x *UfmBrowseResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UfmBrowseResponse.ProtoReflect.Descriptor instead. func (*UfmBrowseResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{575} + return file_nico_nico_proto_rawDescGZIP(), []int{577} } func (x *UfmBrowseResponse) GetBody() string { @@ -42357,7 +42505,7 @@ type NetworkSecurityGroupAttributes struct { func (x *NetworkSecurityGroupAttributes) Reset() { *x = NetworkSecurityGroupAttributes{} - mi := &file_nico_nico_proto_msgTypes[576] + mi := &file_nico_nico_proto_msgTypes[578] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42369,7 +42517,7 @@ func (x *NetworkSecurityGroupAttributes) String() string { func (*NetworkSecurityGroupAttributes) ProtoMessage() {} func (x *NetworkSecurityGroupAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[576] + mi := &file_nico_nico_proto_msgTypes[578] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42382,7 +42530,7 @@ func (x *NetworkSecurityGroupAttributes) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkSecurityGroupAttributes.ProtoReflect.Descriptor instead. func (*NetworkSecurityGroupAttributes) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{576} + return file_nico_nico_proto_rawDescGZIP(), []int{578} } func (x *NetworkSecurityGroupAttributes) GetRules() []*NetworkSecurityGroupRuleAttributes { @@ -42415,7 +42563,7 @@ type NetworkSecurityGroup struct { func (x *NetworkSecurityGroup) Reset() { *x = NetworkSecurityGroup{} - mi := &file_nico_nico_proto_msgTypes[577] + mi := &file_nico_nico_proto_msgTypes[579] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42427,7 +42575,7 @@ func (x *NetworkSecurityGroup) String() string { func (*NetworkSecurityGroup) ProtoMessage() {} func (x *NetworkSecurityGroup) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[577] + mi := &file_nico_nico_proto_msgTypes[579] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42440,7 +42588,7 @@ func (x *NetworkSecurityGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkSecurityGroup.ProtoReflect.Descriptor instead. func (*NetworkSecurityGroup) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{577} + return file_nico_nico_proto_rawDescGZIP(), []int{579} } func (x *NetworkSecurityGroup) GetId() string { @@ -42511,7 +42659,7 @@ type CreateNetworkSecurityGroupRequest struct { func (x *CreateNetworkSecurityGroupRequest) Reset() { *x = CreateNetworkSecurityGroupRequest{} - mi := &file_nico_nico_proto_msgTypes[578] + mi := &file_nico_nico_proto_msgTypes[580] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42523,7 +42671,7 @@ func (x *CreateNetworkSecurityGroupRequest) String() string { func (*CreateNetworkSecurityGroupRequest) ProtoMessage() {} func (x *CreateNetworkSecurityGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[578] + mi := &file_nico_nico_proto_msgTypes[580] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42536,7 +42684,7 @@ func (x *CreateNetworkSecurityGroupRequest) ProtoReflect() protoreflect.Message // Deprecated: Use CreateNetworkSecurityGroupRequest.ProtoReflect.Descriptor instead. func (*CreateNetworkSecurityGroupRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{578} + return file_nico_nico_proto_rawDescGZIP(), []int{580} } func (x *CreateNetworkSecurityGroupRequest) GetId() string { @@ -42576,7 +42724,7 @@ type CreateNetworkSecurityGroupResponse struct { func (x *CreateNetworkSecurityGroupResponse) Reset() { *x = CreateNetworkSecurityGroupResponse{} - mi := &file_nico_nico_proto_msgTypes[579] + mi := &file_nico_nico_proto_msgTypes[581] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42588,7 +42736,7 @@ func (x *CreateNetworkSecurityGroupResponse) String() string { func (*CreateNetworkSecurityGroupResponse) ProtoMessage() {} func (x *CreateNetworkSecurityGroupResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[579] + mi := &file_nico_nico_proto_msgTypes[581] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42601,7 +42749,7 @@ func (x *CreateNetworkSecurityGroupResponse) ProtoReflect() protoreflect.Message // Deprecated: Use CreateNetworkSecurityGroupResponse.ProtoReflect.Descriptor instead. func (*CreateNetworkSecurityGroupResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{579} + return file_nico_nico_proto_rawDescGZIP(), []int{581} } func (x *CreateNetworkSecurityGroupResponse) GetNetworkSecurityGroup() *NetworkSecurityGroup { @@ -42621,7 +42769,7 @@ type FindNetworkSecurityGroupIdsRequest struct { func (x *FindNetworkSecurityGroupIdsRequest) Reset() { *x = FindNetworkSecurityGroupIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[580] + mi := &file_nico_nico_proto_msgTypes[582] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42633,7 +42781,7 @@ func (x *FindNetworkSecurityGroupIdsRequest) String() string { func (*FindNetworkSecurityGroupIdsRequest) ProtoMessage() {} func (x *FindNetworkSecurityGroupIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[580] + mi := &file_nico_nico_proto_msgTypes[582] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42646,7 +42794,7 @@ func (x *FindNetworkSecurityGroupIdsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use FindNetworkSecurityGroupIdsRequest.ProtoReflect.Descriptor instead. func (*FindNetworkSecurityGroupIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{580} + return file_nico_nico_proto_rawDescGZIP(), []int{582} } func (x *FindNetworkSecurityGroupIdsRequest) GetName() string { @@ -42672,7 +42820,7 @@ type FindNetworkSecurityGroupIdsResponse struct { func (x *FindNetworkSecurityGroupIdsResponse) Reset() { *x = FindNetworkSecurityGroupIdsResponse{} - mi := &file_nico_nico_proto_msgTypes[581] + mi := &file_nico_nico_proto_msgTypes[583] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42684,7 +42832,7 @@ func (x *FindNetworkSecurityGroupIdsResponse) String() string { func (*FindNetworkSecurityGroupIdsResponse) ProtoMessage() {} func (x *FindNetworkSecurityGroupIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[581] + mi := &file_nico_nico_proto_msgTypes[583] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42697,7 +42845,7 @@ func (x *FindNetworkSecurityGroupIdsResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use FindNetworkSecurityGroupIdsResponse.ProtoReflect.Descriptor instead. func (*FindNetworkSecurityGroupIdsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{581} + return file_nico_nico_proto_rawDescGZIP(), []int{583} } func (x *FindNetworkSecurityGroupIdsResponse) GetNetworkSecurityGroupIds() []string { @@ -42717,7 +42865,7 @@ type FindNetworkSecurityGroupsByIdsRequest struct { func (x *FindNetworkSecurityGroupsByIdsRequest) Reset() { *x = FindNetworkSecurityGroupsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[582] + mi := &file_nico_nico_proto_msgTypes[584] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42729,7 +42877,7 @@ func (x *FindNetworkSecurityGroupsByIdsRequest) String() string { func (*FindNetworkSecurityGroupsByIdsRequest) ProtoMessage() {} func (x *FindNetworkSecurityGroupsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[582] + mi := &file_nico_nico_proto_msgTypes[584] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42742,7 +42890,7 @@ func (x *FindNetworkSecurityGroupsByIdsRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use FindNetworkSecurityGroupsByIdsRequest.ProtoReflect.Descriptor instead. func (*FindNetworkSecurityGroupsByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{582} + return file_nico_nico_proto_rawDescGZIP(), []int{584} } func (x *FindNetworkSecurityGroupsByIdsRequest) GetNetworkSecurityGroupIds() []string { @@ -42768,7 +42916,7 @@ type FindNetworkSecurityGroupsByIdsResponse struct { func (x *FindNetworkSecurityGroupsByIdsResponse) Reset() { *x = FindNetworkSecurityGroupsByIdsResponse{} - mi := &file_nico_nico_proto_msgTypes[583] + mi := &file_nico_nico_proto_msgTypes[585] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42780,7 +42928,7 @@ func (x *FindNetworkSecurityGroupsByIdsResponse) String() string { func (*FindNetworkSecurityGroupsByIdsResponse) ProtoMessage() {} func (x *FindNetworkSecurityGroupsByIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[583] + mi := &file_nico_nico_proto_msgTypes[585] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42793,7 +42941,7 @@ func (x *FindNetworkSecurityGroupsByIdsResponse) ProtoReflect() protoreflect.Mes // Deprecated: Use FindNetworkSecurityGroupsByIdsResponse.ProtoReflect.Descriptor instead. func (*FindNetworkSecurityGroupsByIdsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{583} + return file_nico_nico_proto_rawDescGZIP(), []int{585} } func (x *FindNetworkSecurityGroupsByIdsResponse) GetNetworkSecurityGroups() []*NetworkSecurityGroup { @@ -42812,7 +42960,7 @@ type UpdateNetworkSecurityGroupResponse struct { func (x *UpdateNetworkSecurityGroupResponse) Reset() { *x = UpdateNetworkSecurityGroupResponse{} - mi := &file_nico_nico_proto_msgTypes[584] + mi := &file_nico_nico_proto_msgTypes[586] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42824,7 +42972,7 @@ func (x *UpdateNetworkSecurityGroupResponse) String() string { func (*UpdateNetworkSecurityGroupResponse) ProtoMessage() {} func (x *UpdateNetworkSecurityGroupResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[584] + mi := &file_nico_nico_proto_msgTypes[586] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42837,7 +42985,7 @@ func (x *UpdateNetworkSecurityGroupResponse) ProtoReflect() protoreflect.Message // Deprecated: Use UpdateNetworkSecurityGroupResponse.ProtoReflect.Descriptor instead. func (*UpdateNetworkSecurityGroupResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{584} + return file_nico_nico_proto_rawDescGZIP(), []int{586} } func (x *UpdateNetworkSecurityGroupResponse) GetNetworkSecurityGroup() *NetworkSecurityGroup { @@ -42860,7 +43008,7 @@ type UpdateNetworkSecurityGroupRequest struct { func (x *UpdateNetworkSecurityGroupRequest) Reset() { *x = UpdateNetworkSecurityGroupRequest{} - mi := &file_nico_nico_proto_msgTypes[585] + mi := &file_nico_nico_proto_msgTypes[587] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42872,7 +43020,7 @@ func (x *UpdateNetworkSecurityGroupRequest) String() string { func (*UpdateNetworkSecurityGroupRequest) ProtoMessage() {} func (x *UpdateNetworkSecurityGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[585] + mi := &file_nico_nico_proto_msgTypes[587] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42885,7 +43033,7 @@ func (x *UpdateNetworkSecurityGroupRequest) ProtoReflect() protoreflect.Message // Deprecated: Use UpdateNetworkSecurityGroupRequest.ProtoReflect.Descriptor instead. func (*UpdateNetworkSecurityGroupRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{585} + return file_nico_nico_proto_rawDescGZIP(), []int{587} } func (x *UpdateNetworkSecurityGroupRequest) GetId() string { @@ -42933,7 +43081,7 @@ type DeleteNetworkSecurityGroupRequest struct { func (x *DeleteNetworkSecurityGroupRequest) Reset() { *x = DeleteNetworkSecurityGroupRequest{} - mi := &file_nico_nico_proto_msgTypes[586] + mi := &file_nico_nico_proto_msgTypes[588] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42945,7 +43093,7 @@ func (x *DeleteNetworkSecurityGroupRequest) String() string { func (*DeleteNetworkSecurityGroupRequest) ProtoMessage() {} func (x *DeleteNetworkSecurityGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[586] + mi := &file_nico_nico_proto_msgTypes[588] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42958,7 +43106,7 @@ func (x *DeleteNetworkSecurityGroupRequest) ProtoReflect() protoreflect.Message // Deprecated: Use DeleteNetworkSecurityGroupRequest.ProtoReflect.Descriptor instead. func (*DeleteNetworkSecurityGroupRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{586} + return file_nico_nico_proto_rawDescGZIP(), []int{588} } func (x *DeleteNetworkSecurityGroupRequest) GetId() string { @@ -42983,7 +43131,7 @@ type DeleteNetworkSecurityGroupResponse struct { func (x *DeleteNetworkSecurityGroupResponse) Reset() { *x = DeleteNetworkSecurityGroupResponse{} - mi := &file_nico_nico_proto_msgTypes[587] + mi := &file_nico_nico_proto_msgTypes[589] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42995,7 +43143,7 @@ func (x *DeleteNetworkSecurityGroupResponse) String() string { func (*DeleteNetworkSecurityGroupResponse) ProtoMessage() {} func (x *DeleteNetworkSecurityGroupResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[587] + mi := &file_nico_nico_proto_msgTypes[589] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43008,7 +43156,7 @@ func (x *DeleteNetworkSecurityGroupResponse) ProtoReflect() protoreflect.Message // Deprecated: Use DeleteNetworkSecurityGroupResponse.ProtoReflect.Descriptor instead. func (*DeleteNetworkSecurityGroupResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{587} + return file_nico_nico_proto_rawDescGZIP(), []int{589} } type NetworkSecurityGroupStatus struct { @@ -43022,7 +43170,7 @@ type NetworkSecurityGroupStatus struct { func (x *NetworkSecurityGroupStatus) Reset() { *x = NetworkSecurityGroupStatus{} - mi := &file_nico_nico_proto_msgTypes[588] + mi := &file_nico_nico_proto_msgTypes[590] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43034,7 +43182,7 @@ func (x *NetworkSecurityGroupStatus) String() string { func (*NetworkSecurityGroupStatus) ProtoMessage() {} func (x *NetworkSecurityGroupStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[588] + mi := &file_nico_nico_proto_msgTypes[590] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43047,7 +43195,7 @@ func (x *NetworkSecurityGroupStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkSecurityGroupStatus.ProtoReflect.Descriptor instead. func (*NetworkSecurityGroupStatus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{588} + return file_nico_nico_proto_rawDescGZIP(), []int{590} } func (x *NetworkSecurityGroupStatus) GetSource() NetworkSecurityGroupSource { @@ -43100,7 +43248,7 @@ type NetworkSecurityGroupPropagationObjectStatus struct { func (x *NetworkSecurityGroupPropagationObjectStatus) Reset() { *x = NetworkSecurityGroupPropagationObjectStatus{} - mi := &file_nico_nico_proto_msgTypes[589] + mi := &file_nico_nico_proto_msgTypes[591] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43112,7 +43260,7 @@ func (x *NetworkSecurityGroupPropagationObjectStatus) String() string { func (*NetworkSecurityGroupPropagationObjectStatus) ProtoMessage() {} func (x *NetworkSecurityGroupPropagationObjectStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[589] + mi := &file_nico_nico_proto_msgTypes[591] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43125,7 +43273,7 @@ func (x *NetworkSecurityGroupPropagationObjectStatus) ProtoReflect() protoreflec // Deprecated: Use NetworkSecurityGroupPropagationObjectStatus.ProtoReflect.Descriptor instead. func (*NetworkSecurityGroupPropagationObjectStatus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{589} + return file_nico_nico_proto_rawDescGZIP(), []int{591} } func (x *NetworkSecurityGroupPropagationObjectStatus) GetId() string { @@ -43173,7 +43321,7 @@ type GetNetworkSecurityGroupPropagationStatusResponse struct { func (x *GetNetworkSecurityGroupPropagationStatusResponse) Reset() { *x = GetNetworkSecurityGroupPropagationStatusResponse{} - mi := &file_nico_nico_proto_msgTypes[590] + mi := &file_nico_nico_proto_msgTypes[592] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43185,7 +43333,7 @@ func (x *GetNetworkSecurityGroupPropagationStatusResponse) String() string { func (*GetNetworkSecurityGroupPropagationStatusResponse) ProtoMessage() {} func (x *GetNetworkSecurityGroupPropagationStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[590] + mi := &file_nico_nico_proto_msgTypes[592] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43198,7 +43346,7 @@ func (x *GetNetworkSecurityGroupPropagationStatusResponse) ProtoReflect() protor // Deprecated: Use GetNetworkSecurityGroupPropagationStatusResponse.ProtoReflect.Descriptor instead. func (*GetNetworkSecurityGroupPropagationStatusResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{590} + return file_nico_nico_proto_rawDescGZIP(), []int{592} } func (x *GetNetworkSecurityGroupPropagationStatusResponse) GetVpcs() []*NetworkSecurityGroupPropagationObjectStatus { @@ -43224,7 +43372,7 @@ type NetworkSecurityGroupIdList struct { func (x *NetworkSecurityGroupIdList) Reset() { *x = NetworkSecurityGroupIdList{} - mi := &file_nico_nico_proto_msgTypes[591] + mi := &file_nico_nico_proto_msgTypes[593] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43236,7 +43384,7 @@ func (x *NetworkSecurityGroupIdList) String() string { func (*NetworkSecurityGroupIdList) ProtoMessage() {} func (x *NetworkSecurityGroupIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[591] + mi := &file_nico_nico_proto_msgTypes[593] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43249,7 +43397,7 @@ func (x *NetworkSecurityGroupIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkSecurityGroupIdList.ProtoReflect.Descriptor instead. func (*NetworkSecurityGroupIdList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{591} + return file_nico_nico_proto_rawDescGZIP(), []int{593} } func (x *NetworkSecurityGroupIdList) GetIds() []string { @@ -43281,7 +43429,7 @@ type GetNetworkSecurityGroupPropagationStatusRequest struct { func (x *GetNetworkSecurityGroupPropagationStatusRequest) Reset() { *x = GetNetworkSecurityGroupPropagationStatusRequest{} - mi := &file_nico_nico_proto_msgTypes[592] + mi := &file_nico_nico_proto_msgTypes[594] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43293,7 +43441,7 @@ func (x *GetNetworkSecurityGroupPropagationStatusRequest) String() string { func (*GetNetworkSecurityGroupPropagationStatusRequest) ProtoMessage() {} func (x *GetNetworkSecurityGroupPropagationStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[592] + mi := &file_nico_nico_proto_msgTypes[594] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43306,7 +43454,7 @@ func (x *GetNetworkSecurityGroupPropagationStatusRequest) ProtoReflect() protore // Deprecated: Use GetNetworkSecurityGroupPropagationStatusRequest.ProtoReflect.Descriptor instead. func (*GetNetworkSecurityGroupPropagationStatusRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{592} + return file_nico_nico_proto_rawDescGZIP(), []int{594} } func (x *GetNetworkSecurityGroupPropagationStatusRequest) GetVpcIds() []string { @@ -43358,7 +43506,7 @@ type NetworkSecurityGroupRuleAttributes struct { func (x *NetworkSecurityGroupRuleAttributes) Reset() { *x = NetworkSecurityGroupRuleAttributes{} - mi := &file_nico_nico_proto_msgTypes[593] + mi := &file_nico_nico_proto_msgTypes[595] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43370,7 +43518,7 @@ func (x *NetworkSecurityGroupRuleAttributes) String() string { func (*NetworkSecurityGroupRuleAttributes) ProtoMessage() {} func (x *NetworkSecurityGroupRuleAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[593] + mi := &file_nico_nico_proto_msgTypes[595] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43383,7 +43531,7 @@ func (x *NetworkSecurityGroupRuleAttributes) ProtoReflect() protoreflect.Message // Deprecated: Use NetworkSecurityGroupRuleAttributes.ProtoReflect.Descriptor instead. func (*NetworkSecurityGroupRuleAttributes) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{593} + return file_nico_nico_proto_rawDescGZIP(), []int{595} } func (x *NetworkSecurityGroupRuleAttributes) GetId() string { @@ -43527,7 +43675,7 @@ type ResolvedNetworkSecurityGroupRule struct { func (x *ResolvedNetworkSecurityGroupRule) Reset() { *x = ResolvedNetworkSecurityGroupRule{} - mi := &file_nico_nico_proto_msgTypes[594] + mi := &file_nico_nico_proto_msgTypes[596] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43539,7 +43687,7 @@ func (x *ResolvedNetworkSecurityGroupRule) String() string { func (*ResolvedNetworkSecurityGroupRule) ProtoMessage() {} func (x *ResolvedNetworkSecurityGroupRule) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[594] + mi := &file_nico_nico_proto_msgTypes[596] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43552,7 +43700,7 @@ func (x *ResolvedNetworkSecurityGroupRule) ProtoReflect() protoreflect.Message { // Deprecated: Use ResolvedNetworkSecurityGroupRule.ProtoReflect.Descriptor instead. func (*ResolvedNetworkSecurityGroupRule) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{594} + return file_nico_nico_proto_rawDescGZIP(), []int{596} } func (x *ResolvedNetworkSecurityGroupRule) GetRule() *NetworkSecurityGroupRuleAttributes { @@ -43585,7 +43733,7 @@ type GetNetworkSecurityGroupAttachmentsRequest struct { func (x *GetNetworkSecurityGroupAttachmentsRequest) Reset() { *x = GetNetworkSecurityGroupAttachmentsRequest{} - mi := &file_nico_nico_proto_msgTypes[595] + mi := &file_nico_nico_proto_msgTypes[597] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43597,7 +43745,7 @@ func (x *GetNetworkSecurityGroupAttachmentsRequest) String() string { func (*GetNetworkSecurityGroupAttachmentsRequest) ProtoMessage() {} func (x *GetNetworkSecurityGroupAttachmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[595] + mi := &file_nico_nico_proto_msgTypes[597] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43610,7 +43758,7 @@ func (x *GetNetworkSecurityGroupAttachmentsRequest) ProtoReflect() protoreflect. // Deprecated: Use GetNetworkSecurityGroupAttachmentsRequest.ProtoReflect.Descriptor instead. func (*GetNetworkSecurityGroupAttachmentsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{595} + return file_nico_nico_proto_rawDescGZIP(), []int{597} } func (x *GetNetworkSecurityGroupAttachmentsRequest) GetNetworkSecurityGroupIds() []string { @@ -43631,7 +43779,7 @@ type NetworkSecurityGroupAttachments struct { func (x *NetworkSecurityGroupAttachments) Reset() { *x = NetworkSecurityGroupAttachments{} - mi := &file_nico_nico_proto_msgTypes[596] + mi := &file_nico_nico_proto_msgTypes[598] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43643,7 +43791,7 @@ func (x *NetworkSecurityGroupAttachments) String() string { func (*NetworkSecurityGroupAttachments) ProtoMessage() {} func (x *NetworkSecurityGroupAttachments) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[596] + mi := &file_nico_nico_proto_msgTypes[598] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43656,7 +43804,7 @@ func (x *NetworkSecurityGroupAttachments) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkSecurityGroupAttachments.ProtoReflect.Descriptor instead. func (*NetworkSecurityGroupAttachments) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{596} + return file_nico_nico_proto_rawDescGZIP(), []int{598} } func (x *NetworkSecurityGroupAttachments) GetNetworkSecurityGroupId() string { @@ -43689,7 +43837,7 @@ type GetNetworkSecurityGroupAttachmentsResponse struct { func (x *GetNetworkSecurityGroupAttachmentsResponse) Reset() { *x = GetNetworkSecurityGroupAttachmentsResponse{} - mi := &file_nico_nico_proto_msgTypes[597] + mi := &file_nico_nico_proto_msgTypes[599] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43701,7 +43849,7 @@ func (x *GetNetworkSecurityGroupAttachmentsResponse) String() string { func (*GetNetworkSecurityGroupAttachmentsResponse) ProtoMessage() {} func (x *GetNetworkSecurityGroupAttachmentsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[597] + mi := &file_nico_nico_proto_msgTypes[599] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43714,7 +43862,7 @@ func (x *GetNetworkSecurityGroupAttachmentsResponse) ProtoReflect() protoreflect // Deprecated: Use GetNetworkSecurityGroupAttachmentsResponse.ProtoReflect.Descriptor instead. func (*GetNetworkSecurityGroupAttachmentsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{597} + return file_nico_nico_proto_rawDescGZIP(), []int{599} } func (x *GetNetworkSecurityGroupAttachmentsResponse) GetAttachments() []*NetworkSecurityGroupAttachments { @@ -43732,7 +43880,7 @@ type GetDesiredFirmwareVersionsRequest struct { func (x *GetDesiredFirmwareVersionsRequest) Reset() { *x = GetDesiredFirmwareVersionsRequest{} - mi := &file_nico_nico_proto_msgTypes[598] + mi := &file_nico_nico_proto_msgTypes[600] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43744,7 +43892,7 @@ func (x *GetDesiredFirmwareVersionsRequest) String() string { func (*GetDesiredFirmwareVersionsRequest) ProtoMessage() {} func (x *GetDesiredFirmwareVersionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[598] + mi := &file_nico_nico_proto_msgTypes[600] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43757,7 +43905,7 @@ func (x *GetDesiredFirmwareVersionsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use GetDesiredFirmwareVersionsRequest.ProtoReflect.Descriptor instead. func (*GetDesiredFirmwareVersionsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{598} + return file_nico_nico_proto_rawDescGZIP(), []int{600} } type GetDesiredFirmwareVersionsResponse struct { @@ -43769,7 +43917,7 @@ type GetDesiredFirmwareVersionsResponse struct { func (x *GetDesiredFirmwareVersionsResponse) Reset() { *x = GetDesiredFirmwareVersionsResponse{} - mi := &file_nico_nico_proto_msgTypes[599] + mi := &file_nico_nico_proto_msgTypes[601] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43781,7 +43929,7 @@ func (x *GetDesiredFirmwareVersionsResponse) String() string { func (*GetDesiredFirmwareVersionsResponse) ProtoMessage() {} func (x *GetDesiredFirmwareVersionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[599] + mi := &file_nico_nico_proto_msgTypes[601] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43794,7 +43942,7 @@ func (x *GetDesiredFirmwareVersionsResponse) ProtoReflect() protoreflect.Message // Deprecated: Use GetDesiredFirmwareVersionsResponse.ProtoReflect.Descriptor instead. func (*GetDesiredFirmwareVersionsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{599} + return file_nico_nico_proto_rawDescGZIP(), []int{601} } func (x *GetDesiredFirmwareVersionsResponse) GetEntries() []*DesiredFirmwareVersionEntry { @@ -43815,7 +43963,7 @@ type DesiredFirmwareVersionEntry struct { func (x *DesiredFirmwareVersionEntry) Reset() { *x = DesiredFirmwareVersionEntry{} - mi := &file_nico_nico_proto_msgTypes[600] + mi := &file_nico_nico_proto_msgTypes[602] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43827,7 +43975,7 @@ func (x *DesiredFirmwareVersionEntry) String() string { func (*DesiredFirmwareVersionEntry) ProtoMessage() {} func (x *DesiredFirmwareVersionEntry) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[600] + mi := &file_nico_nico_proto_msgTypes[602] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43840,7 +43988,7 @@ func (x *DesiredFirmwareVersionEntry) ProtoReflect() protoreflect.Message { // Deprecated: Use DesiredFirmwareVersionEntry.ProtoReflect.Descriptor instead. func (*DesiredFirmwareVersionEntry) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{600} + return file_nico_nico_proto_rawDescGZIP(), []int{602} } func (x *DesiredFirmwareVersionEntry) GetVendor() string { @@ -43875,7 +44023,7 @@ type SkuComponentChassis struct { func (x *SkuComponentChassis) Reset() { *x = SkuComponentChassis{} - mi := &file_nico_nico_proto_msgTypes[601] + mi := &file_nico_nico_proto_msgTypes[603] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43887,7 +44035,7 @@ func (x *SkuComponentChassis) String() string { func (*SkuComponentChassis) ProtoMessage() {} func (x *SkuComponentChassis) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[601] + mi := &file_nico_nico_proto_msgTypes[603] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43900,7 +44048,7 @@ func (x *SkuComponentChassis) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponentChassis.ProtoReflect.Descriptor instead. func (*SkuComponentChassis) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{601} + return file_nico_nico_proto_rawDescGZIP(), []int{603} } func (x *SkuComponentChassis) GetVendor() string { @@ -43936,7 +44084,7 @@ type SkuComponentCpu struct { func (x *SkuComponentCpu) Reset() { *x = SkuComponentCpu{} - mi := &file_nico_nico_proto_msgTypes[602] + mi := &file_nico_nico_proto_msgTypes[604] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43948,7 +44096,7 @@ func (x *SkuComponentCpu) String() string { func (*SkuComponentCpu) ProtoMessage() {} func (x *SkuComponentCpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[602] + mi := &file_nico_nico_proto_msgTypes[604] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43961,7 +44109,7 @@ func (x *SkuComponentCpu) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponentCpu.ProtoReflect.Descriptor instead. func (*SkuComponentCpu) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{602} + return file_nico_nico_proto_rawDescGZIP(), []int{604} } func (x *SkuComponentCpu) GetVendor() string { @@ -44004,7 +44152,7 @@ type SkuComponentGpu struct { func (x *SkuComponentGpu) Reset() { *x = SkuComponentGpu{} - mi := &file_nico_nico_proto_msgTypes[603] + mi := &file_nico_nico_proto_msgTypes[605] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44016,7 +44164,7 @@ func (x *SkuComponentGpu) String() string { func (*SkuComponentGpu) ProtoMessage() {} func (x *SkuComponentGpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[603] + mi := &file_nico_nico_proto_msgTypes[605] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44029,7 +44177,7 @@ func (x *SkuComponentGpu) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponentGpu.ProtoReflect.Descriptor instead. func (*SkuComponentGpu) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{603} + return file_nico_nico_proto_rawDescGZIP(), []int{605} } func (x *SkuComponentGpu) GetVendor() string { @@ -44072,7 +44220,7 @@ type SkuComponentEthernetDevices struct { func (x *SkuComponentEthernetDevices) Reset() { *x = SkuComponentEthernetDevices{} - mi := &file_nico_nico_proto_msgTypes[604] + mi := &file_nico_nico_proto_msgTypes[606] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44084,7 +44232,7 @@ func (x *SkuComponentEthernetDevices) String() string { func (*SkuComponentEthernetDevices) ProtoMessage() {} func (x *SkuComponentEthernetDevices) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[604] + mi := &file_nico_nico_proto_msgTypes[606] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44097,7 +44245,7 @@ func (x *SkuComponentEthernetDevices) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponentEthernetDevices.ProtoReflect.Descriptor instead. func (*SkuComponentEthernetDevices) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{604} + return file_nico_nico_proto_rawDescGZIP(), []int{606} } func (x *SkuComponentEthernetDevices) GetVendor() string { @@ -44151,7 +44299,7 @@ type SkuComponentInfinibandDevices struct { func (x *SkuComponentInfinibandDevices) Reset() { *x = SkuComponentInfinibandDevices{} - mi := &file_nico_nico_proto_msgTypes[605] + mi := &file_nico_nico_proto_msgTypes[607] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44163,7 +44311,7 @@ func (x *SkuComponentInfinibandDevices) String() string { func (*SkuComponentInfinibandDevices) ProtoMessage() {} func (x *SkuComponentInfinibandDevices) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[605] + mi := &file_nico_nico_proto_msgTypes[607] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44176,7 +44324,7 @@ func (x *SkuComponentInfinibandDevices) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponentInfinibandDevices.ProtoReflect.Descriptor instead. func (*SkuComponentInfinibandDevices) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{605} + return file_nico_nico_proto_rawDescGZIP(), []int{607} } func (x *SkuComponentInfinibandDevices) GetVendor() string { @@ -44219,7 +44367,7 @@ type SkuComponentStorage struct { func (x *SkuComponentStorage) Reset() { *x = SkuComponentStorage{} - mi := &file_nico_nico_proto_msgTypes[606] + mi := &file_nico_nico_proto_msgTypes[608] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44231,7 +44379,7 @@ func (x *SkuComponentStorage) String() string { func (*SkuComponentStorage) ProtoMessage() {} func (x *SkuComponentStorage) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[606] + mi := &file_nico_nico_proto_msgTypes[608] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44244,7 +44392,7 @@ func (x *SkuComponentStorage) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponentStorage.ProtoReflect.Descriptor instead. func (*SkuComponentStorage) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{606} + return file_nico_nico_proto_rawDescGZIP(), []int{608} } func (x *SkuComponentStorage) GetVendor() string { @@ -44286,7 +44434,7 @@ type SkuComponentStorageController struct { func (x *SkuComponentStorageController) Reset() { *x = SkuComponentStorageController{} - mi := &file_nico_nico_proto_msgTypes[607] + mi := &file_nico_nico_proto_msgTypes[609] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44298,7 +44446,7 @@ func (x *SkuComponentStorageController) String() string { func (*SkuComponentStorageController) ProtoMessage() {} func (x *SkuComponentStorageController) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[607] + mi := &file_nico_nico_proto_msgTypes[609] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44311,7 +44459,7 @@ func (x *SkuComponentStorageController) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponentStorageController.ProtoReflect.Descriptor instead. func (*SkuComponentStorageController) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{607} + return file_nico_nico_proto_rawDescGZIP(), []int{609} } func (x *SkuComponentStorageController) GetVendor() string { @@ -44346,7 +44494,7 @@ type SkuComponentMemory struct { func (x *SkuComponentMemory) Reset() { *x = SkuComponentMemory{} - mi := &file_nico_nico_proto_msgTypes[608] + mi := &file_nico_nico_proto_msgTypes[610] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44358,7 +44506,7 @@ func (x *SkuComponentMemory) String() string { func (*SkuComponentMemory) ProtoMessage() {} func (x *SkuComponentMemory) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[608] + mi := &file_nico_nico_proto_msgTypes[610] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44371,7 +44519,7 @@ func (x *SkuComponentMemory) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponentMemory.ProtoReflect.Descriptor instead. func (*SkuComponentMemory) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{608} + return file_nico_nico_proto_rawDescGZIP(), []int{610} } func (x *SkuComponentMemory) GetMemoryType() string { @@ -44405,7 +44553,7 @@ type SkuComponentTpm struct { func (x *SkuComponentTpm) Reset() { *x = SkuComponentTpm{} - mi := &file_nico_nico_proto_msgTypes[609] + mi := &file_nico_nico_proto_msgTypes[611] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44417,7 +44565,7 @@ func (x *SkuComponentTpm) String() string { func (*SkuComponentTpm) ProtoMessage() {} func (x *SkuComponentTpm) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[609] + mi := &file_nico_nico_proto_msgTypes[611] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44430,7 +44578,7 @@ func (x *SkuComponentTpm) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponentTpm.ProtoReflect.Descriptor instead. func (*SkuComponentTpm) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{609} + return file_nico_nico_proto_rawDescGZIP(), []int{611} } func (x *SkuComponentTpm) GetVendor() string { @@ -44463,7 +44611,7 @@ type SkuComponents struct { func (x *SkuComponents) Reset() { *x = SkuComponents{} - mi := &file_nico_nico_proto_msgTypes[610] + mi := &file_nico_nico_proto_msgTypes[612] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44475,7 +44623,7 @@ func (x *SkuComponents) String() string { func (*SkuComponents) ProtoMessage() {} func (x *SkuComponents) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[610] + mi := &file_nico_nico_proto_msgTypes[612] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44488,7 +44636,7 @@ func (x *SkuComponents) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponents.ProtoReflect.Descriptor instead. func (*SkuComponents) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{610} + return file_nico_nico_proto_rawDescGZIP(), []int{612} } func (x *SkuComponents) GetChassis() *SkuComponentChassis { @@ -44562,7 +44710,7 @@ type Sku struct { func (x *Sku) Reset() { *x = Sku{} - mi := &file_nico_nico_proto_msgTypes[611] + mi := &file_nico_nico_proto_msgTypes[613] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44574,7 +44722,7 @@ func (x *Sku) String() string { func (*Sku) ProtoMessage() {} func (x *Sku) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[611] + mi := &file_nico_nico_proto_msgTypes[613] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44587,7 +44735,7 @@ func (x *Sku) ProtoReflect() protoreflect.Message { // Deprecated: Use Sku.ProtoReflect.Descriptor instead. func (*Sku) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{611} + return file_nico_nico_proto_rawDescGZIP(), []int{613} } func (x *Sku) GetId() string { @@ -44650,7 +44798,7 @@ type SkuMachinePair struct { func (x *SkuMachinePair) Reset() { *x = SkuMachinePair{} - mi := &file_nico_nico_proto_msgTypes[612] + mi := &file_nico_nico_proto_msgTypes[614] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44662,7 +44810,7 @@ func (x *SkuMachinePair) String() string { func (*SkuMachinePair) ProtoMessage() {} func (x *SkuMachinePair) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[612] + mi := &file_nico_nico_proto_msgTypes[614] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44675,7 +44823,7 @@ func (x *SkuMachinePair) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuMachinePair.ProtoReflect.Descriptor instead. func (*SkuMachinePair) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{612} + return file_nico_nico_proto_rawDescGZIP(), []int{614} } func (x *SkuMachinePair) GetSkuId() string { @@ -44709,7 +44857,7 @@ type RemoveSkuRequest struct { func (x *RemoveSkuRequest) Reset() { *x = RemoveSkuRequest{} - mi := &file_nico_nico_proto_msgTypes[613] + mi := &file_nico_nico_proto_msgTypes[615] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44721,7 +44869,7 @@ func (x *RemoveSkuRequest) String() string { func (*RemoveSkuRequest) ProtoMessage() {} func (x *RemoveSkuRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[613] + mi := &file_nico_nico_proto_msgTypes[615] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44734,7 +44882,7 @@ func (x *RemoveSkuRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveSkuRequest.ProtoReflect.Descriptor instead. func (*RemoveSkuRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{613} + return file_nico_nico_proto_rawDescGZIP(), []int{615} } func (x *RemoveSkuRequest) GetMachineId() *MachineId { @@ -44760,7 +44908,7 @@ type SkuList struct { func (x *SkuList) Reset() { *x = SkuList{} - mi := &file_nico_nico_proto_msgTypes[614] + mi := &file_nico_nico_proto_msgTypes[616] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44772,7 +44920,7 @@ func (x *SkuList) String() string { func (*SkuList) ProtoMessage() {} func (x *SkuList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[614] + mi := &file_nico_nico_proto_msgTypes[616] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44785,7 +44933,7 @@ func (x *SkuList) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuList.ProtoReflect.Descriptor instead. func (*SkuList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{614} + return file_nico_nico_proto_rawDescGZIP(), []int{616} } func (x *SkuList) GetSkus() []*Sku { @@ -44804,7 +44952,7 @@ type SkuIdList struct { func (x *SkuIdList) Reset() { *x = SkuIdList{} - mi := &file_nico_nico_proto_msgTypes[615] + mi := &file_nico_nico_proto_msgTypes[617] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44816,7 +44964,7 @@ func (x *SkuIdList) String() string { func (*SkuIdList) ProtoMessage() {} func (x *SkuIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[615] + mi := &file_nico_nico_proto_msgTypes[617] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44829,7 +44977,7 @@ func (x *SkuIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuIdList.ProtoReflect.Descriptor instead. func (*SkuIdList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{615} + return file_nico_nico_proto_rawDescGZIP(), []int{617} } func (x *SkuIdList) GetIds() []string { @@ -44850,7 +44998,7 @@ type SkuStatus struct { func (x *SkuStatus) Reset() { *x = SkuStatus{} - mi := &file_nico_nico_proto_msgTypes[616] + mi := &file_nico_nico_proto_msgTypes[618] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44862,7 +45010,7 @@ func (x *SkuStatus) String() string { func (*SkuStatus) ProtoMessage() {} func (x *SkuStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[616] + mi := &file_nico_nico_proto_msgTypes[618] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44875,7 +45023,7 @@ func (x *SkuStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuStatus.ProtoReflect.Descriptor instead. func (*SkuStatus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{616} + return file_nico_nico_proto_rawDescGZIP(), []int{618} } func (x *SkuStatus) GetVerifyRequestTime() *timestamppb.Timestamp { @@ -44908,7 +45056,7 @@ type SkusByIdsRequest struct { func (x *SkusByIdsRequest) Reset() { *x = SkusByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[617] + mi := &file_nico_nico_proto_msgTypes[619] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44920,7 +45068,7 @@ func (x *SkusByIdsRequest) String() string { func (*SkusByIdsRequest) ProtoMessage() {} func (x *SkusByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[617] + mi := &file_nico_nico_proto_msgTypes[619] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44933,7 +45081,7 @@ func (x *SkusByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SkusByIdsRequest.ProtoReflect.Descriptor instead. func (*SkusByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{617} + return file_nico_nico_proto_rawDescGZIP(), []int{619} } func (x *SkusByIdsRequest) GetIds() []string { @@ -44951,7 +45099,7 @@ type SkuSearchFilter struct { func (x *SkuSearchFilter) Reset() { *x = SkuSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[618] + mi := &file_nico_nico_proto_msgTypes[620] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44963,7 +45111,7 @@ func (x *SkuSearchFilter) String() string { func (*SkuSearchFilter) ProtoMessage() {} func (x *SkuSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[618] + mi := &file_nico_nico_proto_msgTypes[620] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44976,7 +45124,7 @@ func (x *SkuSearchFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuSearchFilter.ProtoReflect.Descriptor instead. func (*SkuSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{618} + return file_nico_nico_proto_rawDescGZIP(), []int{620} } type DpaInterface struct { @@ -45016,7 +45164,7 @@ type DpaInterface struct { func (x *DpaInterface) Reset() { *x = DpaInterface{} - mi := &file_nico_nico_proto_msgTypes[619] + mi := &file_nico_nico_proto_msgTypes[621] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45028,7 +45176,7 @@ func (x *DpaInterface) String() string { func (*DpaInterface) ProtoMessage() {} func (x *DpaInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[619] + mi := &file_nico_nico_proto_msgTypes[621] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45041,7 +45189,7 @@ func (x *DpaInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use DpaInterface.ProtoReflect.Descriptor instead. func (*DpaInterface) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{619} + return file_nico_nico_proto_rawDescGZIP(), []int{621} } func (x *DpaInterface) GetId() *DpaInterfaceId { @@ -45198,7 +45346,7 @@ type DpaInterfaceCreationRequest struct { func (x *DpaInterfaceCreationRequest) Reset() { *x = DpaInterfaceCreationRequest{} - mi := &file_nico_nico_proto_msgTypes[620] + mi := &file_nico_nico_proto_msgTypes[622] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45210,7 +45358,7 @@ func (x *DpaInterfaceCreationRequest) String() string { func (*DpaInterfaceCreationRequest) ProtoMessage() {} func (x *DpaInterfaceCreationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[620] + mi := &file_nico_nico_proto_msgTypes[622] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45223,7 +45371,7 @@ func (x *DpaInterfaceCreationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DpaInterfaceCreationRequest.ProtoReflect.Descriptor instead. func (*DpaInterfaceCreationRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{620} + return file_nico_nico_proto_rawDescGZIP(), []int{622} } func (x *DpaInterfaceCreationRequest) GetMachineId() *MachineId { @@ -45277,7 +45425,7 @@ type DpaInterfaceIdList struct { func (x *DpaInterfaceIdList) Reset() { *x = DpaInterfaceIdList{} - mi := &file_nico_nico_proto_msgTypes[621] + mi := &file_nico_nico_proto_msgTypes[623] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45289,7 +45437,7 @@ func (x *DpaInterfaceIdList) String() string { func (*DpaInterfaceIdList) ProtoMessage() {} func (x *DpaInterfaceIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[621] + mi := &file_nico_nico_proto_msgTypes[623] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45302,7 +45450,7 @@ func (x *DpaInterfaceIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use DpaInterfaceIdList.ProtoReflect.Descriptor instead. func (*DpaInterfaceIdList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{621} + return file_nico_nico_proto_rawDescGZIP(), []int{623} } func (x *DpaInterfaceIdList) GetIds() []*DpaInterfaceId { @@ -45322,7 +45470,7 @@ type DpaInterfacesByIdsRequest struct { func (x *DpaInterfacesByIdsRequest) Reset() { *x = DpaInterfacesByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[622] + mi := &file_nico_nico_proto_msgTypes[624] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45334,7 +45482,7 @@ func (x *DpaInterfacesByIdsRequest) String() string { func (*DpaInterfacesByIdsRequest) ProtoMessage() {} func (x *DpaInterfacesByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[622] + mi := &file_nico_nico_proto_msgTypes[624] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45347,7 +45495,7 @@ func (x *DpaInterfacesByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DpaInterfacesByIdsRequest.ProtoReflect.Descriptor instead. func (*DpaInterfacesByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{622} + return file_nico_nico_proto_rawDescGZIP(), []int{624} } func (x *DpaInterfacesByIdsRequest) GetIds() []*DpaInterfaceId { @@ -45373,7 +45521,7 @@ type DpaInterfaceList struct { func (x *DpaInterfaceList) Reset() { *x = DpaInterfaceList{} - mi := &file_nico_nico_proto_msgTypes[623] + mi := &file_nico_nico_proto_msgTypes[625] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45385,7 +45533,7 @@ func (x *DpaInterfaceList) String() string { func (*DpaInterfaceList) ProtoMessage() {} func (x *DpaInterfaceList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[623] + mi := &file_nico_nico_proto_msgTypes[625] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45398,7 +45546,7 @@ func (x *DpaInterfaceList) ProtoReflect() protoreflect.Message { // Deprecated: Use DpaInterfaceList.ProtoReflect.Descriptor instead. func (*DpaInterfaceList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{623} + return file_nico_nico_proto_rawDescGZIP(), []int{625} } func (x *DpaInterfaceList) GetInterfaces() []*DpaInterface { @@ -45417,7 +45565,7 @@ type DpaNetworkObservationSetRequest struct { func (x *DpaNetworkObservationSetRequest) Reset() { *x = DpaNetworkObservationSetRequest{} - mi := &file_nico_nico_proto_msgTypes[624] + mi := &file_nico_nico_proto_msgTypes[626] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45429,7 +45577,7 @@ func (x *DpaNetworkObservationSetRequest) String() string { func (*DpaNetworkObservationSetRequest) ProtoMessage() {} func (x *DpaNetworkObservationSetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[624] + mi := &file_nico_nico_proto_msgTypes[626] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45442,7 +45590,7 @@ func (x *DpaNetworkObservationSetRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DpaNetworkObservationSetRequest.ProtoReflect.Descriptor instead. func (*DpaNetworkObservationSetRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{624} + return file_nico_nico_proto_rawDescGZIP(), []int{626} } func (x *DpaNetworkObservationSetRequest) GetId() *DpaInterfaceId { @@ -45461,7 +45609,7 @@ type DpaInterfaceDeletionRequest struct { func (x *DpaInterfaceDeletionRequest) Reset() { *x = DpaInterfaceDeletionRequest{} - mi := &file_nico_nico_proto_msgTypes[625] + mi := &file_nico_nico_proto_msgTypes[627] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45473,7 +45621,7 @@ func (x *DpaInterfaceDeletionRequest) String() string { func (*DpaInterfaceDeletionRequest) ProtoMessage() {} func (x *DpaInterfaceDeletionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[625] + mi := &file_nico_nico_proto_msgTypes[627] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45486,7 +45634,7 @@ func (x *DpaInterfaceDeletionRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DpaInterfaceDeletionRequest.ProtoReflect.Descriptor instead. func (*DpaInterfaceDeletionRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{625} + return file_nico_nico_proto_rawDescGZIP(), []int{627} } func (x *DpaInterfaceDeletionRequest) GetId() *DpaInterfaceId { @@ -45504,7 +45652,7 @@ type DpaInterfaceDeletionResult struct { func (x *DpaInterfaceDeletionResult) Reset() { *x = DpaInterfaceDeletionResult{} - mi := &file_nico_nico_proto_msgTypes[626] + mi := &file_nico_nico_proto_msgTypes[628] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45516,7 +45664,7 @@ func (x *DpaInterfaceDeletionResult) String() string { func (*DpaInterfaceDeletionResult) ProtoMessage() {} func (x *DpaInterfaceDeletionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[626] + mi := &file_nico_nico_proto_msgTypes[628] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45529,7 +45677,7 @@ func (x *DpaInterfaceDeletionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use DpaInterfaceDeletionResult.ProtoReflect.Descriptor instead. func (*DpaInterfaceDeletionResult) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{626} + return file_nico_nico_proto_rawDescGZIP(), []int{628} } type SkuUpdateMetadataRequest struct { @@ -45543,7 +45691,7 @@ type SkuUpdateMetadataRequest struct { func (x *SkuUpdateMetadataRequest) Reset() { *x = SkuUpdateMetadataRequest{} - mi := &file_nico_nico_proto_msgTypes[627] + mi := &file_nico_nico_proto_msgTypes[629] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45555,7 +45703,7 @@ func (x *SkuUpdateMetadataRequest) String() string { func (*SkuUpdateMetadataRequest) ProtoMessage() {} func (x *SkuUpdateMetadataRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[627] + mi := &file_nico_nico_proto_msgTypes[629] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45568,7 +45716,7 @@ func (x *SkuUpdateMetadataRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuUpdateMetadataRequest.ProtoReflect.Descriptor instead. func (*SkuUpdateMetadataRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{627} + return file_nico_nico_proto_rawDescGZIP(), []int{629} } func (x *SkuUpdateMetadataRequest) GetSkuId() string { @@ -45601,7 +45749,7 @@ type PowerOptionRequest struct { func (x *PowerOptionRequest) Reset() { *x = PowerOptionRequest{} - mi := &file_nico_nico_proto_msgTypes[628] + mi := &file_nico_nico_proto_msgTypes[630] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45613,7 +45761,7 @@ func (x *PowerOptionRequest) String() string { func (*PowerOptionRequest) ProtoMessage() {} func (x *PowerOptionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[628] + mi := &file_nico_nico_proto_msgTypes[630] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45626,7 +45774,7 @@ func (x *PowerOptionRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PowerOptionRequest.ProtoReflect.Descriptor instead. func (*PowerOptionRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{628} + return file_nico_nico_proto_rawDescGZIP(), []int{630} } func (x *PowerOptionRequest) GetMachineId() []*MachineId { @@ -45646,7 +45794,7 @@ type PowerOptionUpdateRequest struct { func (x *PowerOptionUpdateRequest) Reset() { *x = PowerOptionUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[629] + mi := &file_nico_nico_proto_msgTypes[631] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45658,7 +45806,7 @@ func (x *PowerOptionUpdateRequest) String() string { func (*PowerOptionUpdateRequest) ProtoMessage() {} func (x *PowerOptionUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[629] + mi := &file_nico_nico_proto_msgTypes[631] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45671,7 +45819,7 @@ func (x *PowerOptionUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PowerOptionUpdateRequest.ProtoReflect.Descriptor instead. func (*PowerOptionUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{629} + return file_nico_nico_proto_rawDescGZIP(), []int{631} } func (x *PowerOptionUpdateRequest) GetMachineId() *MachineId { @@ -45707,7 +45855,7 @@ type PowerOptions struct { func (x *PowerOptions) Reset() { *x = PowerOptions{} - mi := &file_nico_nico_proto_msgTypes[630] + mi := &file_nico_nico_proto_msgTypes[632] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45719,7 +45867,7 @@ func (x *PowerOptions) String() string { func (*PowerOptions) ProtoMessage() {} func (x *PowerOptions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[630] + mi := &file_nico_nico_proto_msgTypes[632] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45732,7 +45880,7 @@ func (x *PowerOptions) ProtoReflect() protoreflect.Message { // Deprecated: Use PowerOptions.ProtoReflect.Descriptor instead. func (*PowerOptions) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{630} + return file_nico_nico_proto_rawDescGZIP(), []int{632} } func (x *PowerOptions) GetDesiredState() PowerState { @@ -45821,7 +45969,7 @@ type PowerOptionResponse struct { func (x *PowerOptionResponse) Reset() { *x = PowerOptionResponse{} - mi := &file_nico_nico_proto_msgTypes[631] + mi := &file_nico_nico_proto_msgTypes[633] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45833,7 +45981,7 @@ func (x *PowerOptionResponse) String() string { func (*PowerOptionResponse) ProtoMessage() {} func (x *PowerOptionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[631] + mi := &file_nico_nico_proto_msgTypes[633] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45846,7 +45994,7 @@ func (x *PowerOptionResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use PowerOptionResponse.ProtoReflect.Descriptor instead. func (*PowerOptionResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{631} + return file_nico_nico_proto_rawDescGZIP(), []int{633} } func (x *PowerOptionResponse) GetResponse() []*PowerOptions { @@ -45872,7 +46020,7 @@ type ComputeAllocationAttributes struct { func (x *ComputeAllocationAttributes) Reset() { *x = ComputeAllocationAttributes{} - mi := &file_nico_nico_proto_msgTypes[632] + mi := &file_nico_nico_proto_msgTypes[634] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45884,7 +46032,7 @@ func (x *ComputeAllocationAttributes) String() string { func (*ComputeAllocationAttributes) ProtoMessage() {} func (x *ComputeAllocationAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[632] + mi := &file_nico_nico_proto_msgTypes[634] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45897,7 +46045,7 @@ func (x *ComputeAllocationAttributes) ProtoReflect() protoreflect.Message { // Deprecated: Use ComputeAllocationAttributes.ProtoReflect.Descriptor instead. func (*ComputeAllocationAttributes) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{632} + return file_nico_nico_proto_rawDescGZIP(), []int{634} } func (x *ComputeAllocationAttributes) GetInstanceTypeId() string { @@ -45930,7 +46078,7 @@ type ComputeAllocation struct { func (x *ComputeAllocation) Reset() { *x = ComputeAllocation{} - mi := &file_nico_nico_proto_msgTypes[633] + mi := &file_nico_nico_proto_msgTypes[635] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45942,7 +46090,7 @@ func (x *ComputeAllocation) String() string { func (*ComputeAllocation) ProtoMessage() {} func (x *ComputeAllocation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[633] + mi := &file_nico_nico_proto_msgTypes[635] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45955,7 +46103,7 @@ func (x *ComputeAllocation) ProtoReflect() protoreflect.Message { // Deprecated: Use ComputeAllocation.ProtoReflect.Descriptor instead. func (*ComputeAllocation) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{633} + return file_nico_nico_proto_rawDescGZIP(), []int{635} } func (x *ComputeAllocation) GetId() *ComputeAllocationId { @@ -46027,7 +46175,7 @@ type CreateComputeAllocationRequest struct { func (x *CreateComputeAllocationRequest) Reset() { *x = CreateComputeAllocationRequest{} - mi := &file_nico_nico_proto_msgTypes[634] + mi := &file_nico_nico_proto_msgTypes[636] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46039,7 +46187,7 @@ func (x *CreateComputeAllocationRequest) String() string { func (*CreateComputeAllocationRequest) ProtoMessage() {} func (x *CreateComputeAllocationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[634] + mi := &file_nico_nico_proto_msgTypes[636] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46052,7 +46200,7 @@ func (x *CreateComputeAllocationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateComputeAllocationRequest.ProtoReflect.Descriptor instead. func (*CreateComputeAllocationRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{634} + return file_nico_nico_proto_rawDescGZIP(), []int{636} } func (x *CreateComputeAllocationRequest) GetId() *ComputeAllocationId { @@ -46099,7 +46247,7 @@ type CreateComputeAllocationResponse struct { func (x *CreateComputeAllocationResponse) Reset() { *x = CreateComputeAllocationResponse{} - mi := &file_nico_nico_proto_msgTypes[635] + mi := &file_nico_nico_proto_msgTypes[637] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46111,7 +46259,7 @@ func (x *CreateComputeAllocationResponse) String() string { func (*CreateComputeAllocationResponse) ProtoMessage() {} func (x *CreateComputeAllocationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[635] + mi := &file_nico_nico_proto_msgTypes[637] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46124,7 +46272,7 @@ func (x *CreateComputeAllocationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateComputeAllocationResponse.ProtoReflect.Descriptor instead. func (*CreateComputeAllocationResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{635} + return file_nico_nico_proto_rawDescGZIP(), []int{637} } func (x *CreateComputeAllocationResponse) GetAllocation() *ComputeAllocation { @@ -46151,7 +46299,7 @@ type FindComputeAllocationIdsRequest struct { func (x *FindComputeAllocationIdsRequest) Reset() { *x = FindComputeAllocationIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[636] + mi := &file_nico_nico_proto_msgTypes[638] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46163,7 +46311,7 @@ func (x *FindComputeAllocationIdsRequest) String() string { func (*FindComputeAllocationIdsRequest) ProtoMessage() {} func (x *FindComputeAllocationIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[636] + mi := &file_nico_nico_proto_msgTypes[638] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46176,7 +46324,7 @@ func (x *FindComputeAllocationIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FindComputeAllocationIdsRequest.ProtoReflect.Descriptor instead. func (*FindComputeAllocationIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{636} + return file_nico_nico_proto_rawDescGZIP(), []int{638} } func (x *FindComputeAllocationIdsRequest) GetName() string { @@ -46209,7 +46357,7 @@ type FindComputeAllocationIdsResponse struct { func (x *FindComputeAllocationIdsResponse) Reset() { *x = FindComputeAllocationIdsResponse{} - mi := &file_nico_nico_proto_msgTypes[637] + mi := &file_nico_nico_proto_msgTypes[639] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46221,7 +46369,7 @@ func (x *FindComputeAllocationIdsResponse) String() string { func (*FindComputeAllocationIdsResponse) ProtoMessage() {} func (x *FindComputeAllocationIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[637] + mi := &file_nico_nico_proto_msgTypes[639] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46234,7 +46382,7 @@ func (x *FindComputeAllocationIdsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use FindComputeAllocationIdsResponse.ProtoReflect.Descriptor instead. func (*FindComputeAllocationIdsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{637} + return file_nico_nico_proto_rawDescGZIP(), []int{639} } func (x *FindComputeAllocationIdsResponse) GetIds() []*ComputeAllocationId { @@ -46256,7 +46404,7 @@ type FindComputeAllocationsByIdsRequest struct { func (x *FindComputeAllocationsByIdsRequest) Reset() { *x = FindComputeAllocationsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[638] + mi := &file_nico_nico_proto_msgTypes[640] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46268,7 +46416,7 @@ func (x *FindComputeAllocationsByIdsRequest) String() string { func (*FindComputeAllocationsByIdsRequest) ProtoMessage() {} func (x *FindComputeAllocationsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[638] + mi := &file_nico_nico_proto_msgTypes[640] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46281,7 +46429,7 @@ func (x *FindComputeAllocationsByIdsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use FindComputeAllocationsByIdsRequest.ProtoReflect.Descriptor instead. func (*FindComputeAllocationsByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{638} + return file_nico_nico_proto_rawDescGZIP(), []int{640} } func (x *FindComputeAllocationsByIdsRequest) GetIds() []*ComputeAllocationId { @@ -46300,7 +46448,7 @@ type FindComputeAllocationsByIdsResponse struct { func (x *FindComputeAllocationsByIdsResponse) Reset() { *x = FindComputeAllocationsByIdsResponse{} - mi := &file_nico_nico_proto_msgTypes[639] + mi := &file_nico_nico_proto_msgTypes[641] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46312,7 +46460,7 @@ func (x *FindComputeAllocationsByIdsResponse) String() string { func (*FindComputeAllocationsByIdsResponse) ProtoMessage() {} func (x *FindComputeAllocationsByIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[639] + mi := &file_nico_nico_proto_msgTypes[641] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46325,7 +46473,7 @@ func (x *FindComputeAllocationsByIdsResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use FindComputeAllocationsByIdsResponse.ProtoReflect.Descriptor instead. func (*FindComputeAllocationsByIdsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{639} + return file_nico_nico_proto_rawDescGZIP(), []int{641} } func (x *FindComputeAllocationsByIdsResponse) GetAllocations() []*ComputeAllocation { @@ -46344,7 +46492,7 @@ type UpdateComputeAllocationResponse struct { func (x *UpdateComputeAllocationResponse) Reset() { *x = UpdateComputeAllocationResponse{} - mi := &file_nico_nico_proto_msgTypes[640] + mi := &file_nico_nico_proto_msgTypes[642] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46356,7 +46504,7 @@ func (x *UpdateComputeAllocationResponse) String() string { func (*UpdateComputeAllocationResponse) ProtoMessage() {} func (x *UpdateComputeAllocationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[640] + mi := &file_nico_nico_proto_msgTypes[642] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46369,7 +46517,7 @@ func (x *UpdateComputeAllocationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateComputeAllocationResponse.ProtoReflect.Descriptor instead. func (*UpdateComputeAllocationResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{640} + return file_nico_nico_proto_rawDescGZIP(), []int{642} } func (x *UpdateComputeAllocationResponse) GetAllocation() *ComputeAllocation { @@ -46393,7 +46541,7 @@ type UpdateComputeAllocationRequest struct { func (x *UpdateComputeAllocationRequest) Reset() { *x = UpdateComputeAllocationRequest{} - mi := &file_nico_nico_proto_msgTypes[641] + mi := &file_nico_nico_proto_msgTypes[643] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46405,7 +46553,7 @@ func (x *UpdateComputeAllocationRequest) String() string { func (*UpdateComputeAllocationRequest) ProtoMessage() {} func (x *UpdateComputeAllocationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[641] + mi := &file_nico_nico_proto_msgTypes[643] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46418,7 +46566,7 @@ func (x *UpdateComputeAllocationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateComputeAllocationRequest.ProtoReflect.Descriptor instead. func (*UpdateComputeAllocationRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{641} + return file_nico_nico_proto_rawDescGZIP(), []int{643} } func (x *UpdateComputeAllocationRequest) GetId() *ComputeAllocationId { @@ -46473,7 +46621,7 @@ type DeleteComputeAllocationRequest struct { func (x *DeleteComputeAllocationRequest) Reset() { *x = DeleteComputeAllocationRequest{} - mi := &file_nico_nico_proto_msgTypes[642] + mi := &file_nico_nico_proto_msgTypes[644] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46485,7 +46633,7 @@ func (x *DeleteComputeAllocationRequest) String() string { func (*DeleteComputeAllocationRequest) ProtoMessage() {} func (x *DeleteComputeAllocationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[642] + mi := &file_nico_nico_proto_msgTypes[644] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46498,7 +46646,7 @@ func (x *DeleteComputeAllocationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteComputeAllocationRequest.ProtoReflect.Descriptor instead. func (*DeleteComputeAllocationRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{642} + return file_nico_nico_proto_rawDescGZIP(), []int{644} } func (x *DeleteComputeAllocationRequest) GetId() *ComputeAllocationId { @@ -46523,7 +46671,7 @@ type DeleteComputeAllocationResponse struct { func (x *DeleteComputeAllocationResponse) Reset() { *x = DeleteComputeAllocationResponse{} - mi := &file_nico_nico_proto_msgTypes[643] + mi := &file_nico_nico_proto_msgTypes[645] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46535,7 +46683,7 @@ func (x *DeleteComputeAllocationResponse) String() string { func (*DeleteComputeAllocationResponse) ProtoMessage() {} func (x *DeleteComputeAllocationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[643] + mi := &file_nico_nico_proto_msgTypes[645] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46548,7 +46696,7 @@ func (x *DeleteComputeAllocationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteComputeAllocationResponse.ProtoReflect.Descriptor instead. func (*DeleteComputeAllocationResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{643} + return file_nico_nico_proto_rawDescGZIP(), []int{645} } // For use with the existing InstanceType message @@ -46573,7 +46721,7 @@ type InstanceTypeAllocationStats struct { func (x *InstanceTypeAllocationStats) Reset() { *x = InstanceTypeAllocationStats{} - mi := &file_nico_nico_proto_msgTypes[644] + mi := &file_nico_nico_proto_msgTypes[646] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46585,7 +46733,7 @@ func (x *InstanceTypeAllocationStats) String() string { func (*InstanceTypeAllocationStats) ProtoMessage() {} func (x *InstanceTypeAllocationStats) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[644] + mi := &file_nico_nico_proto_msgTypes[646] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46598,7 +46746,7 @@ func (x *InstanceTypeAllocationStats) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceTypeAllocationStats.ProtoReflect.Descriptor instead. func (*InstanceTypeAllocationStats) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{644} + return file_nico_nico_proto_rawDescGZIP(), []int{646} } func (x *InstanceTypeAllocationStats) GetMaxAllocatable() uint32 { @@ -46638,7 +46786,7 @@ type GetRackRequest struct { func (x *GetRackRequest) Reset() { *x = GetRackRequest{} - mi := &file_nico_nico_proto_msgTypes[645] + mi := &file_nico_nico_proto_msgTypes[647] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46650,7 +46798,7 @@ func (x *GetRackRequest) String() string { func (*GetRackRequest) ProtoMessage() {} func (x *GetRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[645] + mi := &file_nico_nico_proto_msgTypes[647] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46663,7 +46811,7 @@ func (x *GetRackRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRackRequest.ProtoReflect.Descriptor instead. func (*GetRackRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{645} + return file_nico_nico_proto_rawDescGZIP(), []int{647} } func (x *GetRackRequest) GetId() string { @@ -46682,7 +46830,7 @@ type GetRackResponse struct { func (x *GetRackResponse) Reset() { *x = GetRackResponse{} - mi := &file_nico_nico_proto_msgTypes[646] + mi := &file_nico_nico_proto_msgTypes[648] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46694,7 +46842,7 @@ func (x *GetRackResponse) String() string { func (*GetRackResponse) ProtoMessage() {} func (x *GetRackResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[646] + mi := &file_nico_nico_proto_msgTypes[648] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46707,7 +46855,7 @@ func (x *GetRackResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRackResponse.ProtoReflect.Descriptor instead. func (*GetRackResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{646} + return file_nico_nico_proto_rawDescGZIP(), []int{648} } func (x *GetRackResponse) GetRack() []*Rack { @@ -46726,7 +46874,7 @@ type RackList struct { func (x *RackList) Reset() { *x = RackList{} - mi := &file_nico_nico_proto_msgTypes[647] + mi := &file_nico_nico_proto_msgTypes[649] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46738,7 +46886,7 @@ func (x *RackList) String() string { func (*RackList) ProtoMessage() {} func (x *RackList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[647] + mi := &file_nico_nico_proto_msgTypes[649] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46751,7 +46899,7 @@ func (x *RackList) ProtoReflect() protoreflect.Message { // Deprecated: Use RackList.ProtoReflect.Descriptor instead. func (*RackList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{647} + return file_nico_nico_proto_rawDescGZIP(), []int{649} } func (x *RackList) GetRacks() []*Rack { @@ -46771,7 +46919,7 @@ type RackSearchFilter struct { func (x *RackSearchFilter) Reset() { *x = RackSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[648] + mi := &file_nico_nico_proto_msgTypes[650] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46783,7 +46931,7 @@ func (x *RackSearchFilter) String() string { func (*RackSearchFilter) ProtoMessage() {} func (x *RackSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[648] + mi := &file_nico_nico_proto_msgTypes[650] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46796,7 +46944,7 @@ func (x *RackSearchFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use RackSearchFilter.ProtoReflect.Descriptor instead. func (*RackSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{648} + return file_nico_nico_proto_rawDescGZIP(), []int{650} } func (x *RackSearchFilter) GetLabel() *Label { @@ -46815,7 +46963,7 @@ type RackIdList struct { func (x *RackIdList) Reset() { *x = RackIdList{} - mi := &file_nico_nico_proto_msgTypes[649] + mi := &file_nico_nico_proto_msgTypes[651] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46827,7 +46975,7 @@ func (x *RackIdList) String() string { func (*RackIdList) ProtoMessage() {} func (x *RackIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[649] + mi := &file_nico_nico_proto_msgTypes[651] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46840,7 +46988,7 @@ func (x *RackIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use RackIdList.ProtoReflect.Descriptor instead. func (*RackIdList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{649} + return file_nico_nico_proto_rawDescGZIP(), []int{651} } func (x *RackIdList) GetRackIds() []*RackId { @@ -46859,7 +47007,7 @@ type RacksByIdsRequest struct { func (x *RacksByIdsRequest) Reset() { *x = RacksByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[650] + mi := &file_nico_nico_proto_msgTypes[652] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46871,7 +47019,7 @@ func (x *RacksByIdsRequest) String() string { func (*RacksByIdsRequest) ProtoMessage() {} func (x *RacksByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[650] + mi := &file_nico_nico_proto_msgTypes[652] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46884,7 +47032,7 @@ func (x *RacksByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RacksByIdsRequest.ProtoReflect.Descriptor instead. func (*RacksByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{650} + return file_nico_nico_proto_rawDescGZIP(), []int{652} } func (x *RacksByIdsRequest) GetRackIds() []*RackId { @@ -46912,7 +47060,7 @@ type Rack struct { func (x *Rack) Reset() { *x = Rack{} - mi := &file_nico_nico_proto_msgTypes[651] + mi := &file_nico_nico_proto_msgTypes[653] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46924,7 +47072,7 @@ func (x *Rack) String() string { func (*Rack) ProtoMessage() {} func (x *Rack) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[651] + mi := &file_nico_nico_proto_msgTypes[653] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46937,7 +47085,7 @@ func (x *Rack) ProtoReflect() protoreflect.Message { // Deprecated: Use Rack.ProtoReflect.Descriptor instead. func (*Rack) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{651} + return file_nico_nico_proto_rawDescGZIP(), []int{653} } func (x *Rack) GetId() *RackId { @@ -47011,7 +47159,7 @@ type RackConfig struct { func (x *RackConfig) Reset() { *x = RackConfig{} - mi := &file_nico_nico_proto_msgTypes[652] + mi := &file_nico_nico_proto_msgTypes[654] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47023,7 +47171,7 @@ func (x *RackConfig) String() string { func (*RackConfig) ProtoMessage() {} func (x *RackConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[652] + mi := &file_nico_nico_proto_msgTypes[654] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47036,7 +47184,7 @@ func (x *RackConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use RackConfig.ProtoReflect.Descriptor instead. func (*RackConfig) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{652} + return file_nico_nico_proto_rawDescGZIP(), []int{654} } type RackStatus struct { @@ -47051,7 +47199,7 @@ type RackStatus struct { func (x *RackStatus) Reset() { *x = RackStatus{} - mi := &file_nico_nico_proto_msgTypes[653] + mi := &file_nico_nico_proto_msgTypes[655] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47063,7 +47211,7 @@ func (x *RackStatus) String() string { func (*RackStatus) ProtoMessage() {} func (x *RackStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[653] + mi := &file_nico_nico_proto_msgTypes[655] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47076,7 +47224,7 @@ func (x *RackStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use RackStatus.ProtoReflect.Descriptor instead. func (*RackStatus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{653} + return file_nico_nico_proto_rawDescGZIP(), []int{655} } func (x *RackStatus) GetHealth() *HealthReport { @@ -47109,7 +47257,7 @@ type RackStateHistoriesRequest struct { func (x *RackStateHistoriesRequest) Reset() { *x = RackStateHistoriesRequest{} - mi := &file_nico_nico_proto_msgTypes[654] + mi := &file_nico_nico_proto_msgTypes[656] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47121,7 +47269,7 @@ func (x *RackStateHistoriesRequest) String() string { func (*RackStateHistoriesRequest) ProtoMessage() {} func (x *RackStateHistoriesRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[654] + mi := &file_nico_nico_proto_msgTypes[656] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47134,7 +47282,7 @@ func (x *RackStateHistoriesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RackStateHistoriesRequest.ProtoReflect.Descriptor instead. func (*RackStateHistoriesRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{654} + return file_nico_nico_proto_rawDescGZIP(), []int{656} } func (x *RackStateHistoriesRequest) GetRackIds() []*RackId { @@ -47153,7 +47301,7 @@ type DeleteRackRequest struct { func (x *DeleteRackRequest) Reset() { *x = DeleteRackRequest{} - mi := &file_nico_nico_proto_msgTypes[655] + mi := &file_nico_nico_proto_msgTypes[657] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47165,7 +47313,7 @@ func (x *DeleteRackRequest) String() string { func (*DeleteRackRequest) ProtoMessage() {} func (x *DeleteRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[655] + mi := &file_nico_nico_proto_msgTypes[657] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47178,7 +47326,7 @@ func (x *DeleteRackRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteRackRequest.ProtoReflect.Descriptor instead. func (*DeleteRackRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{655} + return file_nico_nico_proto_rawDescGZIP(), []int{657} } func (x *DeleteRackRequest) GetId() string { @@ -47199,7 +47347,7 @@ type AdminForceDeleteRackRequest struct { func (x *AdminForceDeleteRackRequest) Reset() { *x = AdminForceDeleteRackRequest{} - mi := &file_nico_nico_proto_msgTypes[656] + mi := &file_nico_nico_proto_msgTypes[658] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47211,7 +47359,7 @@ func (x *AdminForceDeleteRackRequest) String() string { func (*AdminForceDeleteRackRequest) ProtoMessage() {} func (x *AdminForceDeleteRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[656] + mi := &file_nico_nico_proto_msgTypes[658] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47224,7 +47372,7 @@ func (x *AdminForceDeleteRackRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminForceDeleteRackRequest.ProtoReflect.Descriptor instead. func (*AdminForceDeleteRackRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{656} + return file_nico_nico_proto_rawDescGZIP(), []int{658} } func (x *AdminForceDeleteRackRequest) GetRackId() *RackId { @@ -47244,7 +47392,7 @@ type AdminForceDeleteRackResponse struct { func (x *AdminForceDeleteRackResponse) Reset() { *x = AdminForceDeleteRackResponse{} - mi := &file_nico_nico_proto_msgTypes[657] + mi := &file_nico_nico_proto_msgTypes[659] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47256,7 +47404,7 @@ func (x *AdminForceDeleteRackResponse) String() string { func (*AdminForceDeleteRackResponse) ProtoMessage() {} func (x *AdminForceDeleteRackResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[657] + mi := &file_nico_nico_proto_msgTypes[659] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47269,7 +47417,7 @@ func (x *AdminForceDeleteRackResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminForceDeleteRackResponse.ProtoReflect.Descriptor instead. func (*AdminForceDeleteRackResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{657} + return file_nico_nico_proto_rawDescGZIP(), []int{659} } func (x *AdminForceDeleteRackResponse) GetRackId() string { @@ -47291,7 +47439,7 @@ type RackCapabilityCompute struct { func (x *RackCapabilityCompute) Reset() { *x = RackCapabilityCompute{} - mi := &file_nico_nico_proto_msgTypes[658] + mi := &file_nico_nico_proto_msgTypes[660] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47303,7 +47451,7 @@ func (x *RackCapabilityCompute) String() string { func (*RackCapabilityCompute) ProtoMessage() {} func (x *RackCapabilityCompute) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[658] + mi := &file_nico_nico_proto_msgTypes[660] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47316,7 +47464,7 @@ func (x *RackCapabilityCompute) ProtoReflect() protoreflect.Message { // Deprecated: Use RackCapabilityCompute.ProtoReflect.Descriptor instead. func (*RackCapabilityCompute) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{658} + return file_nico_nico_proto_rawDescGZIP(), []int{660} } func (x *RackCapabilityCompute) GetName() string { @@ -47359,7 +47507,7 @@ type RackCapabilitySwitch struct { func (x *RackCapabilitySwitch) Reset() { *x = RackCapabilitySwitch{} - mi := &file_nico_nico_proto_msgTypes[659] + mi := &file_nico_nico_proto_msgTypes[661] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47371,7 +47519,7 @@ func (x *RackCapabilitySwitch) String() string { func (*RackCapabilitySwitch) ProtoMessage() {} func (x *RackCapabilitySwitch) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[659] + mi := &file_nico_nico_proto_msgTypes[661] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47384,7 +47532,7 @@ func (x *RackCapabilitySwitch) ProtoReflect() protoreflect.Message { // Deprecated: Use RackCapabilitySwitch.ProtoReflect.Descriptor instead. func (*RackCapabilitySwitch) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{659} + return file_nico_nico_proto_rawDescGZIP(), []int{661} } func (x *RackCapabilitySwitch) GetName() string { @@ -47427,7 +47575,7 @@ type RackCapabilityPowerShelf struct { func (x *RackCapabilityPowerShelf) Reset() { *x = RackCapabilityPowerShelf{} - mi := &file_nico_nico_proto_msgTypes[660] + mi := &file_nico_nico_proto_msgTypes[662] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47439,7 +47587,7 @@ func (x *RackCapabilityPowerShelf) String() string { func (*RackCapabilityPowerShelf) ProtoMessage() {} func (x *RackCapabilityPowerShelf) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[660] + mi := &file_nico_nico_proto_msgTypes[662] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47452,7 +47600,7 @@ func (x *RackCapabilityPowerShelf) ProtoReflect() protoreflect.Message { // Deprecated: Use RackCapabilityPowerShelf.ProtoReflect.Descriptor instead. func (*RackCapabilityPowerShelf) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{660} + return file_nico_nico_proto_rawDescGZIP(), []int{662} } func (x *RackCapabilityPowerShelf) GetName() string { @@ -47494,7 +47642,7 @@ type RackCapabilitiesSet struct { func (x *RackCapabilitiesSet) Reset() { *x = RackCapabilitiesSet{} - mi := &file_nico_nico_proto_msgTypes[661] + mi := &file_nico_nico_proto_msgTypes[663] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47506,7 +47654,7 @@ func (x *RackCapabilitiesSet) String() string { func (*RackCapabilitiesSet) ProtoMessage() {} func (x *RackCapabilitiesSet) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[661] + mi := &file_nico_nico_proto_msgTypes[663] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47519,7 +47667,7 @@ func (x *RackCapabilitiesSet) ProtoReflect() protoreflect.Message { // Deprecated: Use RackCapabilitiesSet.ProtoReflect.Descriptor instead. func (*RackCapabilitiesSet) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{661} + return file_nico_nico_proto_rawDescGZIP(), []int{663} } func (x *RackCapabilitiesSet) GetCompute() *RackCapabilityCompute { @@ -47556,7 +47704,7 @@ type RackProfile struct { func (x *RackProfile) Reset() { *x = RackProfile{} - mi := &file_nico_nico_proto_msgTypes[662] + mi := &file_nico_nico_proto_msgTypes[664] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47568,7 +47716,7 @@ func (x *RackProfile) String() string { func (*RackProfile) ProtoMessage() {} func (x *RackProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[662] + mi := &file_nico_nico_proto_msgTypes[664] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47581,7 +47729,7 @@ func (x *RackProfile) ProtoReflect() protoreflect.Message { // Deprecated: Use RackProfile.ProtoReflect.Descriptor instead. func (*RackProfile) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{662} + return file_nico_nico_proto_rawDescGZIP(), []int{664} } func (x *RackProfile) GetRackHardwareType() *RackHardwareType { @@ -47628,7 +47776,7 @@ type GetRackProfileRequest struct { func (x *GetRackProfileRequest) Reset() { *x = GetRackProfileRequest{} - mi := &file_nico_nico_proto_msgTypes[663] + mi := &file_nico_nico_proto_msgTypes[665] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47640,7 +47788,7 @@ func (x *GetRackProfileRequest) String() string { func (*GetRackProfileRequest) ProtoMessage() {} func (x *GetRackProfileRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[663] + mi := &file_nico_nico_proto_msgTypes[665] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47653,7 +47801,7 @@ func (x *GetRackProfileRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRackProfileRequest.ProtoReflect.Descriptor instead. func (*GetRackProfileRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{663} + return file_nico_nico_proto_rawDescGZIP(), []int{665} } func (x *GetRackProfileRequest) GetRackId() *RackId { @@ -47674,7 +47822,7 @@ type GetRackProfileResponse struct { func (x *GetRackProfileResponse) Reset() { *x = GetRackProfileResponse{} - mi := &file_nico_nico_proto_msgTypes[664] + mi := &file_nico_nico_proto_msgTypes[666] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47686,7 +47834,7 @@ func (x *GetRackProfileResponse) String() string { func (*GetRackProfileResponse) ProtoMessage() {} func (x *GetRackProfileResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[664] + mi := &file_nico_nico_proto_msgTypes[666] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47699,7 +47847,7 @@ func (x *GetRackProfileResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRackProfileResponse.ProtoReflect.Descriptor instead. func (*GetRackProfileResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{664} + return file_nico_nico_proto_rawDescGZIP(), []int{666} } func (x *GetRackProfileResponse) GetRackId() *RackId { @@ -47733,7 +47881,7 @@ type RackManagerForgeRequest struct { func (x *RackManagerForgeRequest) Reset() { *x = RackManagerForgeRequest{} - mi := &file_nico_nico_proto_msgTypes[665] + mi := &file_nico_nico_proto_msgTypes[667] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47745,7 +47893,7 @@ func (x *RackManagerForgeRequest) String() string { func (*RackManagerForgeRequest) ProtoMessage() {} func (x *RackManagerForgeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[665] + mi := &file_nico_nico_proto_msgTypes[667] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47758,7 +47906,7 @@ func (x *RackManagerForgeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RackManagerForgeRequest.ProtoReflect.Descriptor instead. func (*RackManagerForgeRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{665} + return file_nico_nico_proto_rawDescGZIP(), []int{667} } func (x *RackManagerForgeRequest) GetCmd() RackManagerForgeCmd { @@ -47784,7 +47932,7 @@ type RackManagerForgeResponse struct { func (x *RackManagerForgeResponse) Reset() { *x = RackManagerForgeResponse{} - mi := &file_nico_nico_proto_msgTypes[666] + mi := &file_nico_nico_proto_msgTypes[668] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47796,7 +47944,7 @@ func (x *RackManagerForgeResponse) String() string { func (*RackManagerForgeResponse) ProtoMessage() {} func (x *RackManagerForgeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[666] + mi := &file_nico_nico_proto_msgTypes[668] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47809,7 +47957,7 @@ func (x *RackManagerForgeResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RackManagerForgeResponse.ProtoReflect.Descriptor instead. func (*RackManagerForgeResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{666} + return file_nico_nico_proto_rawDescGZIP(), []int{668} } func (x *RackManagerForgeResponse) GetJsonResult() string { @@ -47830,7 +47978,7 @@ type MachineNVLinkInfo struct { func (x *MachineNVLinkInfo) Reset() { *x = MachineNVLinkInfo{} - mi := &file_nico_nico_proto_msgTypes[667] + mi := &file_nico_nico_proto_msgTypes[669] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47842,7 +47990,7 @@ func (x *MachineNVLinkInfo) String() string { func (*MachineNVLinkInfo) ProtoMessage() {} func (x *MachineNVLinkInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[667] + mi := &file_nico_nico_proto_msgTypes[669] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47855,7 +48003,7 @@ func (x *MachineNVLinkInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineNVLinkInfo.ProtoReflect.Descriptor instead. func (*MachineNVLinkInfo) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{667} + return file_nico_nico_proto_rawDescGZIP(), []int{669} } func (x *MachineNVLinkInfo) GetDomainUuid() *NVLinkDomainId { @@ -47889,7 +48037,7 @@ type UpdateMachineNvLinkInfoRequest struct { func (x *UpdateMachineNvLinkInfoRequest) Reset() { *x = UpdateMachineNvLinkInfoRequest{} - mi := &file_nico_nico_proto_msgTypes[668] + mi := &file_nico_nico_proto_msgTypes[670] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47901,7 +48049,7 @@ func (x *UpdateMachineNvLinkInfoRequest) String() string { func (*UpdateMachineNvLinkInfoRequest) ProtoMessage() {} func (x *UpdateMachineNvLinkInfoRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[668] + mi := &file_nico_nico_proto_msgTypes[670] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47914,7 +48062,7 @@ func (x *UpdateMachineNvLinkInfoRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateMachineNvLinkInfoRequest.ProtoReflect.Descriptor instead. func (*UpdateMachineNvLinkInfoRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{668} + return file_nico_nico_proto_rawDescGZIP(), []int{670} } func (x *UpdateMachineNvLinkInfoRequest) GetMachineId() *MachineId { @@ -47941,7 +48089,7 @@ type MachineSpxStatusObservation struct { func (x *MachineSpxStatusObservation) Reset() { *x = MachineSpxStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[669] + mi := &file_nico_nico_proto_msgTypes[671] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47953,7 +48101,7 @@ func (x *MachineSpxStatusObservation) String() string { func (*MachineSpxStatusObservation) ProtoMessage() {} func (x *MachineSpxStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[669] + mi := &file_nico_nico_proto_msgTypes[671] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47966,7 +48114,7 @@ func (x *MachineSpxStatusObservation) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineSpxStatusObservation.ProtoReflect.Descriptor instead. func (*MachineSpxStatusObservation) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{669} + return file_nico_nico_proto_rawDescGZIP(), []int{671} } func (x *MachineSpxStatusObservation) GetAttachmentStatus() []*MachineSpxAttachmentStatusObservation { @@ -47996,7 +48144,7 @@ type MachineSpxAttachmentStatusObservation struct { func (x *MachineSpxAttachmentStatusObservation) Reset() { *x = MachineSpxAttachmentStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[670] + mi := &file_nico_nico_proto_msgTypes[672] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48008,7 +48156,7 @@ func (x *MachineSpxAttachmentStatusObservation) String() string { func (*MachineSpxAttachmentStatusObservation) ProtoMessage() {} func (x *MachineSpxAttachmentStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[670] + mi := &file_nico_nico_proto_msgTypes[672] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48021,7 +48169,7 @@ func (x *MachineSpxAttachmentStatusObservation) ProtoReflect() protoreflect.Mess // Deprecated: Use MachineSpxAttachmentStatusObservation.ProtoReflect.Descriptor instead. func (*MachineSpxAttachmentStatusObservation) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{670} + return file_nico_nico_proto_rawDescGZIP(), []int{672} } func (x *MachineSpxAttachmentStatusObservation) GetMacAddress() string { @@ -48068,7 +48216,7 @@ type AstraConfig struct { func (x *AstraConfig) Reset() { *x = AstraConfig{} - mi := &file_nico_nico_proto_msgTypes[671] + mi := &file_nico_nico_proto_msgTypes[673] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48080,7 +48228,7 @@ func (x *AstraConfig) String() string { func (*AstraConfig) ProtoMessage() {} func (x *AstraConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[671] + mi := &file_nico_nico_proto_msgTypes[673] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48093,7 +48241,7 @@ func (x *AstraConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use AstraConfig.ProtoReflect.Descriptor instead. func (*AstraConfig) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{671} + return file_nico_nico_proto_rawDescGZIP(), []int{673} } func (x *AstraConfig) GetAstraAttachments() []*AstraAttachment { @@ -48119,7 +48267,7 @@ type AstraAttachment struct { func (x *AstraAttachment) Reset() { *x = AstraAttachment{} - mi := &file_nico_nico_proto_msgTypes[672] + mi := &file_nico_nico_proto_msgTypes[674] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48131,7 +48279,7 @@ func (x *AstraAttachment) String() string { func (*AstraAttachment) ProtoMessage() {} func (x *AstraAttachment) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[672] + mi := &file_nico_nico_proto_msgTypes[674] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48144,7 +48292,7 @@ func (x *AstraAttachment) ProtoReflect() protoreflect.Message { // Deprecated: Use AstraAttachment.ProtoReflect.Descriptor instead. func (*AstraAttachment) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{672} + return file_nico_nico_proto_rawDescGZIP(), []int{674} } func (x *AstraAttachment) GetMacAddress() string { @@ -48212,7 +48360,7 @@ type AstraConfigStatus struct { func (x *AstraConfigStatus) Reset() { *x = AstraConfigStatus{} - mi := &file_nico_nico_proto_msgTypes[673] + mi := &file_nico_nico_proto_msgTypes[675] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48224,7 +48372,7 @@ func (x *AstraConfigStatus) String() string { func (*AstraConfigStatus) ProtoMessage() {} func (x *AstraConfigStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[673] + mi := &file_nico_nico_proto_msgTypes[675] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48237,7 +48385,7 @@ func (x *AstraConfigStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use AstraConfigStatus.ProtoReflect.Descriptor instead. func (*AstraConfigStatus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{673} + return file_nico_nico_proto_rawDescGZIP(), []int{675} } func (x *AstraConfigStatus) GetAstraAttachmentsStatus() []*AstraAttachmentStatus { @@ -48264,7 +48412,7 @@ type AstraAttachmentStatus struct { func (x *AstraAttachmentStatus) Reset() { *x = AstraAttachmentStatus{} - mi := &file_nico_nico_proto_msgTypes[674] + mi := &file_nico_nico_proto_msgTypes[676] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48276,7 +48424,7 @@ func (x *AstraAttachmentStatus) String() string { func (*AstraAttachmentStatus) ProtoMessage() {} func (x *AstraAttachmentStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[674] + mi := &file_nico_nico_proto_msgTypes[676] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48289,7 +48437,7 @@ func (x *AstraAttachmentStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use AstraAttachmentStatus.ProtoReflect.Descriptor instead. func (*AstraAttachmentStatus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{674} + return file_nico_nico_proto_rawDescGZIP(), []int{676} } func (x *AstraAttachmentStatus) GetMacAddress() string { @@ -48366,7 +48514,7 @@ type AstraStatus struct { func (x *AstraStatus) Reset() { *x = AstraStatus{} - mi := &file_nico_nico_proto_msgTypes[675] + mi := &file_nico_nico_proto_msgTypes[677] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48378,7 +48526,7 @@ func (x *AstraStatus) String() string { func (*AstraStatus) ProtoMessage() {} func (x *AstraStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[675] + mi := &file_nico_nico_proto_msgTypes[677] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48391,7 +48539,7 @@ func (x *AstraStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use AstraStatus.ProtoReflect.Descriptor instead. func (*AstraStatus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{675} + return file_nico_nico_proto_rawDescGZIP(), []int{677} } func (x *AstraStatus) GetPhase() AstraPhase { @@ -48427,7 +48575,7 @@ type NVLinkGpu struct { func (x *NVLinkGpu) Reset() { *x = NVLinkGpu{} - mi := &file_nico_nico_proto_msgTypes[676] + mi := &file_nico_nico_proto_msgTypes[678] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48439,7 +48587,7 @@ func (x *NVLinkGpu) String() string { func (*NVLinkGpu) ProtoMessage() {} func (x *NVLinkGpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[676] + mi := &file_nico_nico_proto_msgTypes[678] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48452,7 +48600,7 @@ func (x *NVLinkGpu) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkGpu.ProtoReflect.Descriptor instead. func (*NVLinkGpu) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{676} + return file_nico_nico_proto_rawDescGZIP(), []int{678} } func (x *NVLinkGpu) GetTrayIndex() int32 { @@ -48492,7 +48640,7 @@ type MachineNVLinkStatusObservation struct { func (x *MachineNVLinkStatusObservation) Reset() { *x = MachineNVLinkStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[677] + mi := &file_nico_nico_proto_msgTypes[679] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48504,7 +48652,7 @@ func (x *MachineNVLinkStatusObservation) String() string { func (*MachineNVLinkStatusObservation) ProtoMessage() {} func (x *MachineNVLinkStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[677] + mi := &file_nico_nico_proto_msgTypes[679] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48517,7 +48665,7 @@ func (x *MachineNVLinkStatusObservation) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineNVLinkStatusObservation.ProtoReflect.Descriptor instead. func (*MachineNVLinkStatusObservation) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{677} + return file_nico_nico_proto_rawDescGZIP(), []int{679} } func (x *MachineNVLinkStatusObservation) GetGpuStatus() []*MachineNVLinkGpuStatusObservation { @@ -48541,7 +48689,7 @@ type MachineNVLinkGpuStatusObservation struct { func (x *MachineNVLinkGpuStatusObservation) Reset() { *x = MachineNVLinkGpuStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[678] + mi := &file_nico_nico_proto_msgTypes[680] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48553,7 +48701,7 @@ func (x *MachineNVLinkGpuStatusObservation) String() string { func (*MachineNVLinkGpuStatusObservation) ProtoMessage() {} func (x *MachineNVLinkGpuStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[678] + mi := &file_nico_nico_proto_msgTypes[680] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48566,7 +48714,7 @@ func (x *MachineNVLinkGpuStatusObservation) ProtoReflect() protoreflect.Message // Deprecated: Use MachineNVLinkGpuStatusObservation.ProtoReflect.Descriptor instead. func (*MachineNVLinkGpuStatusObservation) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{678} + return file_nico_nico_proto_rawDescGZIP(), []int{680} } func (x *MachineNVLinkGpuStatusObservation) GetGpuId() string { @@ -48624,7 +48772,7 @@ type NmxcBrowseRequest struct { func (x *NmxcBrowseRequest) Reset() { *x = NmxcBrowseRequest{} - mi := &file_nico_nico_proto_msgTypes[679] + mi := &file_nico_nico_proto_msgTypes[681] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48636,7 +48784,7 @@ func (x *NmxcBrowseRequest) String() string { func (*NmxcBrowseRequest) ProtoMessage() {} func (x *NmxcBrowseRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[679] + mi := &file_nico_nico_proto_msgTypes[681] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48649,7 +48797,7 @@ func (x *NmxcBrowseRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use NmxcBrowseRequest.ProtoReflect.Descriptor instead. func (*NmxcBrowseRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{679} + return file_nico_nico_proto_rawDescGZIP(), []int{681} } func (x *NmxcBrowseRequest) GetChassisSerial() string { @@ -48687,7 +48835,7 @@ type NmxcBrowseResponse struct { func (x *NmxcBrowseResponse) Reset() { *x = NmxcBrowseResponse{} - mi := &file_nico_nico_proto_msgTypes[680] + mi := &file_nico_nico_proto_msgTypes[682] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48699,7 +48847,7 @@ func (x *NmxcBrowseResponse) String() string { func (*NmxcBrowseResponse) ProtoMessage() {} func (x *NmxcBrowseResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[680] + mi := &file_nico_nico_proto_msgTypes[682] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48712,7 +48860,7 @@ func (x *NmxcBrowseResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use NmxcBrowseResponse.ProtoReflect.Descriptor instead. func (*NmxcBrowseResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{680} + return file_nico_nico_proto_rawDescGZIP(), []int{682} } func (x *NmxcBrowseResponse) GetBody() string { @@ -48750,7 +48898,7 @@ type NVLinkPartition struct { func (x *NVLinkPartition) Reset() { *x = NVLinkPartition{} - mi := &file_nico_nico_proto_msgTypes[681] + mi := &file_nico_nico_proto_msgTypes[683] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48762,7 +48910,7 @@ func (x *NVLinkPartition) String() string { func (*NVLinkPartition) ProtoMessage() {} func (x *NVLinkPartition) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[681] + mi := &file_nico_nico_proto_msgTypes[683] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48775,7 +48923,7 @@ func (x *NVLinkPartition) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkPartition.ProtoReflect.Descriptor instead. func (*NVLinkPartition) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{681} + return file_nico_nico_proto_rawDescGZIP(), []int{683} } func (x *NVLinkPartition) GetId() *NVLinkPartitionId { @@ -48822,7 +48970,7 @@ type NVLinkPartitionList struct { func (x *NVLinkPartitionList) Reset() { *x = NVLinkPartitionList{} - mi := &file_nico_nico_proto_msgTypes[682] + mi := &file_nico_nico_proto_msgTypes[684] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48834,7 +48982,7 @@ func (x *NVLinkPartitionList) String() string { func (*NVLinkPartitionList) ProtoMessage() {} func (x *NVLinkPartitionList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[682] + mi := &file_nico_nico_proto_msgTypes[684] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48847,7 +48995,7 @@ func (x *NVLinkPartitionList) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkPartitionList.ProtoReflect.Descriptor instead. func (*NVLinkPartitionList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{682} + return file_nico_nico_proto_rawDescGZIP(), []int{684} } func (x *NVLinkPartitionList) GetPartitions() []*NVLinkPartition { @@ -48866,7 +49014,7 @@ type NVLinkPartitionSearchConfig struct { func (x *NVLinkPartitionSearchConfig) Reset() { *x = NVLinkPartitionSearchConfig{} - mi := &file_nico_nico_proto_msgTypes[683] + mi := &file_nico_nico_proto_msgTypes[685] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48878,7 +49026,7 @@ func (x *NVLinkPartitionSearchConfig) String() string { func (*NVLinkPartitionSearchConfig) ProtoMessage() {} func (x *NVLinkPartitionSearchConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[683] + mi := &file_nico_nico_proto_msgTypes[685] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48891,7 +49039,7 @@ func (x *NVLinkPartitionSearchConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkPartitionSearchConfig.ProtoReflect.Descriptor instead. func (*NVLinkPartitionSearchConfig) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{683} + return file_nico_nico_proto_rawDescGZIP(), []int{685} } func (x *NVLinkPartitionSearchConfig) GetIncludeHistory() bool { @@ -48911,7 +49059,7 @@ type NVLinkPartitionQuery struct { func (x *NVLinkPartitionQuery) Reset() { *x = NVLinkPartitionQuery{} - mi := &file_nico_nico_proto_msgTypes[684] + mi := &file_nico_nico_proto_msgTypes[686] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48923,7 +49071,7 @@ func (x *NVLinkPartitionQuery) String() string { func (*NVLinkPartitionQuery) ProtoMessage() {} func (x *NVLinkPartitionQuery) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[684] + mi := &file_nico_nico_proto_msgTypes[686] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48936,7 +49084,7 @@ func (x *NVLinkPartitionQuery) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkPartitionQuery.ProtoReflect.Descriptor instead. func (*NVLinkPartitionQuery) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{684} + return file_nico_nico_proto_rawDescGZIP(), []int{686} } func (x *NVLinkPartitionQuery) GetId() *UUID { @@ -48963,7 +49111,7 @@ type NVLinkPartitionSearchFilter struct { func (x *NVLinkPartitionSearchFilter) Reset() { *x = NVLinkPartitionSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[685] + mi := &file_nico_nico_proto_msgTypes[687] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48975,7 +49123,7 @@ func (x *NVLinkPartitionSearchFilter) String() string { func (*NVLinkPartitionSearchFilter) ProtoMessage() {} func (x *NVLinkPartitionSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[685] + mi := &file_nico_nico_proto_msgTypes[687] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48988,7 +49136,7 @@ func (x *NVLinkPartitionSearchFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkPartitionSearchFilter.ProtoReflect.Descriptor instead. func (*NVLinkPartitionSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{685} + return file_nico_nico_proto_rawDescGZIP(), []int{687} } func (x *NVLinkPartitionSearchFilter) GetTenantOrganizationId() string { @@ -49015,7 +49163,7 @@ type NVLinkPartitionsByIdsRequest struct { func (x *NVLinkPartitionsByIdsRequest) Reset() { *x = NVLinkPartitionsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[686] + mi := &file_nico_nico_proto_msgTypes[688] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49027,7 +49175,7 @@ func (x *NVLinkPartitionsByIdsRequest) String() string { func (*NVLinkPartitionsByIdsRequest) ProtoMessage() {} func (x *NVLinkPartitionsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[686] + mi := &file_nico_nico_proto_msgTypes[688] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49040,7 +49188,7 @@ func (x *NVLinkPartitionsByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkPartitionsByIdsRequest.ProtoReflect.Descriptor instead. func (*NVLinkPartitionsByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{686} + return file_nico_nico_proto_rawDescGZIP(), []int{688} } func (x *NVLinkPartitionsByIdsRequest) GetPartitionIds() []*NVLinkPartitionId { @@ -49066,7 +49214,7 @@ type NVLinkPartitionIdList struct { func (x *NVLinkPartitionIdList) Reset() { *x = NVLinkPartitionIdList{} - mi := &file_nico_nico_proto_msgTypes[687] + mi := &file_nico_nico_proto_msgTypes[689] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49078,7 +49226,7 @@ func (x *NVLinkPartitionIdList) String() string { func (*NVLinkPartitionIdList) ProtoMessage() {} func (x *NVLinkPartitionIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[687] + mi := &file_nico_nico_proto_msgTypes[689] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49091,7 +49239,7 @@ func (x *NVLinkPartitionIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkPartitionIdList.ProtoReflect.Descriptor instead. func (*NVLinkPartitionIdList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{687} + return file_nico_nico_proto_rawDescGZIP(), []int{689} } func (x *NVLinkPartitionIdList) GetPartitionIds() []*NVLinkPartitionId { @@ -49109,7 +49257,7 @@ type NVLinkFabricSearchFilter struct { func (x *NVLinkFabricSearchFilter) Reset() { *x = NVLinkFabricSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[688] + mi := &file_nico_nico_proto_msgTypes[690] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49121,7 +49269,7 @@ func (x *NVLinkFabricSearchFilter) String() string { func (*NVLinkFabricSearchFilter) ProtoMessage() {} func (x *NVLinkFabricSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[688] + mi := &file_nico_nico_proto_msgTypes[690] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49134,7 +49282,7 @@ func (x *NVLinkFabricSearchFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkFabricSearchFilter.ProtoReflect.Descriptor instead. func (*NVLinkFabricSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{688} + return file_nico_nico_proto_rawDescGZIP(), []int{690} } // Describe the desired configuration of an Logical Partition @@ -49149,7 +49297,7 @@ type NVLinkLogicalPartitionConfig struct { func (x *NVLinkLogicalPartitionConfig) Reset() { *x = NVLinkLogicalPartitionConfig{} - mi := &file_nico_nico_proto_msgTypes[689] + mi := &file_nico_nico_proto_msgTypes[691] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49161,7 +49309,7 @@ func (x *NVLinkLogicalPartitionConfig) String() string { func (*NVLinkLogicalPartitionConfig) ProtoMessage() {} func (x *NVLinkLogicalPartitionConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[689] + mi := &file_nico_nico_proto_msgTypes[691] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49174,7 +49322,7 @@ func (x *NVLinkLogicalPartitionConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkLogicalPartitionConfig.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionConfig) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{689} + return file_nico_nico_proto_rawDescGZIP(), []int{691} } func (x *NVLinkLogicalPartitionConfig) GetMetadata() *Metadata { @@ -49202,7 +49350,7 @@ type NVLinkLogicalPartitionStatus struct { func (x *NVLinkLogicalPartitionStatus) Reset() { *x = NVLinkLogicalPartitionStatus{} - mi := &file_nico_nico_proto_msgTypes[690] + mi := &file_nico_nico_proto_msgTypes[692] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49214,7 +49362,7 @@ func (x *NVLinkLogicalPartitionStatus) String() string { func (*NVLinkLogicalPartitionStatus) ProtoMessage() {} func (x *NVLinkLogicalPartitionStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[690] + mi := &file_nico_nico_proto_msgTypes[692] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49227,7 +49375,7 @@ func (x *NVLinkLogicalPartitionStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkLogicalPartitionStatus.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionStatus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{690} + return file_nico_nico_proto_rawDescGZIP(), []int{692} } func (x *NVLinkLogicalPartitionStatus) GetState() TenantState { @@ -49251,7 +49399,7 @@ type NVLinkLogicalPartition struct { func (x *NVLinkLogicalPartition) Reset() { *x = NVLinkLogicalPartition{} - mi := &file_nico_nico_proto_msgTypes[691] + mi := &file_nico_nico_proto_msgTypes[693] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49263,7 +49411,7 @@ func (x *NVLinkLogicalPartition) String() string { func (*NVLinkLogicalPartition) ProtoMessage() {} func (x *NVLinkLogicalPartition) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[691] + mi := &file_nico_nico_proto_msgTypes[693] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49276,7 +49424,7 @@ func (x *NVLinkLogicalPartition) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkLogicalPartition.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartition) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{691} + return file_nico_nico_proto_rawDescGZIP(), []int{693} } func (x *NVLinkLogicalPartition) GetId() *NVLinkLogicalPartitionId { @@ -49323,7 +49471,7 @@ type NVLinkLogicalPartitionList struct { func (x *NVLinkLogicalPartitionList) Reset() { *x = NVLinkLogicalPartitionList{} - mi := &file_nico_nico_proto_msgTypes[692] + mi := &file_nico_nico_proto_msgTypes[694] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49335,7 +49483,7 @@ func (x *NVLinkLogicalPartitionList) String() string { func (*NVLinkLogicalPartitionList) ProtoMessage() {} func (x *NVLinkLogicalPartitionList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[692] + mi := &file_nico_nico_proto_msgTypes[694] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49348,7 +49496,7 @@ func (x *NVLinkLogicalPartitionList) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkLogicalPartitionList.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{692} + return file_nico_nico_proto_rawDescGZIP(), []int{694} } func (x *NVLinkLogicalPartitionList) GetPartitions() []*NVLinkLogicalPartition { @@ -49371,7 +49519,7 @@ type NVLinkLogicalPartitionCreationRequest struct { func (x *NVLinkLogicalPartitionCreationRequest) Reset() { *x = NVLinkLogicalPartitionCreationRequest{} - mi := &file_nico_nico_proto_msgTypes[693] + mi := &file_nico_nico_proto_msgTypes[695] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49383,7 +49531,7 @@ func (x *NVLinkLogicalPartitionCreationRequest) String() string { func (*NVLinkLogicalPartitionCreationRequest) ProtoMessage() {} func (x *NVLinkLogicalPartitionCreationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[693] + mi := &file_nico_nico_proto_msgTypes[695] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49396,7 +49544,7 @@ func (x *NVLinkLogicalPartitionCreationRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use NVLinkLogicalPartitionCreationRequest.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionCreationRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{693} + return file_nico_nico_proto_rawDescGZIP(), []int{695} } func (x *NVLinkLogicalPartitionCreationRequest) GetConfig() *NVLinkLogicalPartitionConfig { @@ -49422,7 +49570,7 @@ type NVLinkLogicalPartitionDeletionRequest struct { func (x *NVLinkLogicalPartitionDeletionRequest) Reset() { *x = NVLinkLogicalPartitionDeletionRequest{} - mi := &file_nico_nico_proto_msgTypes[694] + mi := &file_nico_nico_proto_msgTypes[696] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49434,7 +49582,7 @@ func (x *NVLinkLogicalPartitionDeletionRequest) String() string { func (*NVLinkLogicalPartitionDeletionRequest) ProtoMessage() {} func (x *NVLinkLogicalPartitionDeletionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[694] + mi := &file_nico_nico_proto_msgTypes[696] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49447,7 +49595,7 @@ func (x *NVLinkLogicalPartitionDeletionRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use NVLinkLogicalPartitionDeletionRequest.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionDeletionRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{694} + return file_nico_nico_proto_rawDescGZIP(), []int{696} } func (x *NVLinkLogicalPartitionDeletionRequest) GetId() *NVLinkLogicalPartitionId { @@ -49465,7 +49613,7 @@ type NVLinkLogicalPartitionDeletionResult struct { func (x *NVLinkLogicalPartitionDeletionResult) Reset() { *x = NVLinkLogicalPartitionDeletionResult{} - mi := &file_nico_nico_proto_msgTypes[695] + mi := &file_nico_nico_proto_msgTypes[697] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49477,7 +49625,7 @@ func (x *NVLinkLogicalPartitionDeletionResult) String() string { func (*NVLinkLogicalPartitionDeletionResult) ProtoMessage() {} func (x *NVLinkLogicalPartitionDeletionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[695] + mi := &file_nico_nico_proto_msgTypes[697] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49490,7 +49638,7 @@ func (x *NVLinkLogicalPartitionDeletionResult) ProtoReflect() protoreflect.Messa // Deprecated: Use NVLinkLogicalPartitionDeletionResult.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionDeletionResult) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{695} + return file_nico_nico_proto_rawDescGZIP(), []int{697} } type NVLinkLogicalPartitionSearchFilter struct { @@ -49502,7 +49650,7 @@ type NVLinkLogicalPartitionSearchFilter struct { func (x *NVLinkLogicalPartitionSearchFilter) Reset() { *x = NVLinkLogicalPartitionSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[696] + mi := &file_nico_nico_proto_msgTypes[698] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49514,7 +49662,7 @@ func (x *NVLinkLogicalPartitionSearchFilter) String() string { func (*NVLinkLogicalPartitionSearchFilter) ProtoMessage() {} func (x *NVLinkLogicalPartitionSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[696] + mi := &file_nico_nico_proto_msgTypes[698] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49527,7 +49675,7 @@ func (x *NVLinkLogicalPartitionSearchFilter) ProtoReflect() protoreflect.Message // Deprecated: Use NVLinkLogicalPartitionSearchFilter.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{696} + return file_nico_nico_proto_rawDescGZIP(), []int{698} } func (x *NVLinkLogicalPartitionSearchFilter) GetName() string { @@ -49547,7 +49695,7 @@ type NVLinkLogicalPartitionsByIdsRequest struct { func (x *NVLinkLogicalPartitionsByIdsRequest) Reset() { *x = NVLinkLogicalPartitionsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[697] + mi := &file_nico_nico_proto_msgTypes[699] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49559,7 +49707,7 @@ func (x *NVLinkLogicalPartitionsByIdsRequest) String() string { func (*NVLinkLogicalPartitionsByIdsRequest) ProtoMessage() {} func (x *NVLinkLogicalPartitionsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[697] + mi := &file_nico_nico_proto_msgTypes[699] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49572,7 +49720,7 @@ func (x *NVLinkLogicalPartitionsByIdsRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use NVLinkLogicalPartitionsByIdsRequest.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionsByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{697} + return file_nico_nico_proto_rawDescGZIP(), []int{699} } func (x *NVLinkLogicalPartitionsByIdsRequest) GetPartitionIds() []*NVLinkLogicalPartitionId { @@ -49598,7 +49746,7 @@ type NVLinkLogicalPartitionIdList struct { func (x *NVLinkLogicalPartitionIdList) Reset() { *x = NVLinkLogicalPartitionIdList{} - mi := &file_nico_nico_proto_msgTypes[698] + mi := &file_nico_nico_proto_msgTypes[700] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49610,7 +49758,7 @@ func (x *NVLinkLogicalPartitionIdList) String() string { func (*NVLinkLogicalPartitionIdList) ProtoMessage() {} func (x *NVLinkLogicalPartitionIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[698] + mi := &file_nico_nico_proto_msgTypes[700] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49623,7 +49771,7 @@ func (x *NVLinkLogicalPartitionIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkLogicalPartitionIdList.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionIdList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{698} + return file_nico_nico_proto_rawDescGZIP(), []int{700} } func (x *NVLinkLogicalPartitionIdList) GetPartitionIds() []*NVLinkLogicalPartitionId { @@ -49644,7 +49792,7 @@ type NVLinkLogicalPartitionUpdateRequest struct { func (x *NVLinkLogicalPartitionUpdateRequest) Reset() { *x = NVLinkLogicalPartitionUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[699] + mi := &file_nico_nico_proto_msgTypes[701] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49656,7 +49804,7 @@ func (x *NVLinkLogicalPartitionUpdateRequest) String() string { func (*NVLinkLogicalPartitionUpdateRequest) ProtoMessage() {} func (x *NVLinkLogicalPartitionUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[699] + mi := &file_nico_nico_proto_msgTypes[701] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49669,7 +49817,7 @@ func (x *NVLinkLogicalPartitionUpdateRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use NVLinkLogicalPartitionUpdateRequest.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{699} + return file_nico_nico_proto_rawDescGZIP(), []int{701} } func (x *NVLinkLogicalPartitionUpdateRequest) GetId() *NVLinkLogicalPartitionId { @@ -49701,7 +49849,7 @@ type NVLinkLogicalPartitionUpdateResult struct { func (x *NVLinkLogicalPartitionUpdateResult) Reset() { *x = NVLinkLogicalPartitionUpdateResult{} - mi := &file_nico_nico_proto_msgTypes[700] + mi := &file_nico_nico_proto_msgTypes[702] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49713,7 +49861,7 @@ func (x *NVLinkLogicalPartitionUpdateResult) String() string { func (*NVLinkLogicalPartitionUpdateResult) ProtoMessage() {} func (x *NVLinkLogicalPartitionUpdateResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[700] + mi := &file_nico_nico_proto_msgTypes[702] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49726,7 +49874,7 @@ func (x *NVLinkLogicalPartitionUpdateResult) ProtoReflect() protoreflect.Message // Deprecated: Use NVLinkLogicalPartitionUpdateResult.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionUpdateResult) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{700} + return file_nico_nico_proto_rawDescGZIP(), []int{702} } // Must provide either machine_id or ip/mac pair @@ -49743,7 +49891,7 @@ type CreateBmcUserRequest struct { func (x *CreateBmcUserRequest) Reset() { *x = CreateBmcUserRequest{} - mi := &file_nico_nico_proto_msgTypes[701] + mi := &file_nico_nico_proto_msgTypes[703] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49755,7 +49903,7 @@ func (x *CreateBmcUserRequest) String() string { func (*CreateBmcUserRequest) ProtoMessage() {} func (x *CreateBmcUserRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[701] + mi := &file_nico_nico_proto_msgTypes[703] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49768,7 +49916,7 @@ func (x *CreateBmcUserRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateBmcUserRequest.ProtoReflect.Descriptor instead. func (*CreateBmcUserRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{701} + return file_nico_nico_proto_rawDescGZIP(), []int{703} } func (x *CreateBmcUserRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -49814,7 +49962,7 @@ type CreateBmcUserResponse struct { func (x *CreateBmcUserResponse) Reset() { *x = CreateBmcUserResponse{} - mi := &file_nico_nico_proto_msgTypes[702] + mi := &file_nico_nico_proto_msgTypes[704] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49826,7 +49974,7 @@ func (x *CreateBmcUserResponse) String() string { func (*CreateBmcUserResponse) ProtoMessage() {} func (x *CreateBmcUserResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[702] + mi := &file_nico_nico_proto_msgTypes[704] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49839,7 +49987,7 @@ func (x *CreateBmcUserResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateBmcUserResponse.ProtoReflect.Descriptor instead. func (*CreateBmcUserResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{702} + return file_nico_nico_proto_rawDescGZIP(), []int{704} } type DeleteBmcUserRequest struct { @@ -49853,7 +50001,7 @@ type DeleteBmcUserRequest struct { func (x *DeleteBmcUserRequest) Reset() { *x = DeleteBmcUserRequest{} - mi := &file_nico_nico_proto_msgTypes[703] + mi := &file_nico_nico_proto_msgTypes[705] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49865,7 +50013,7 @@ func (x *DeleteBmcUserRequest) String() string { func (*DeleteBmcUserRequest) ProtoMessage() {} func (x *DeleteBmcUserRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[703] + mi := &file_nico_nico_proto_msgTypes[705] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49878,7 +50026,7 @@ func (x *DeleteBmcUserRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteBmcUserRequest.ProtoReflect.Descriptor instead. func (*DeleteBmcUserRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{703} + return file_nico_nico_proto_rawDescGZIP(), []int{705} } func (x *DeleteBmcUserRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -49910,7 +50058,7 @@ type DeleteBmcUserResponse struct { func (x *DeleteBmcUserResponse) Reset() { *x = DeleteBmcUserResponse{} - mi := &file_nico_nico_proto_msgTypes[704] + mi := &file_nico_nico_proto_msgTypes[706] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49922,7 +50070,7 @@ func (x *DeleteBmcUserResponse) String() string { func (*DeleteBmcUserResponse) ProtoMessage() {} func (x *DeleteBmcUserResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[704] + mi := &file_nico_nico_proto_msgTypes[706] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49935,7 +50083,7 @@ func (x *DeleteBmcUserResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteBmcUserResponse.ProtoReflect.Descriptor instead. func (*DeleteBmcUserResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{704} + return file_nico_nico_proto_rawDescGZIP(), []int{706} } // Must provide either machine_id or ip/mac pair @@ -49953,7 +50101,7 @@ type SetBmcRootPasswordRequest struct { func (x *SetBmcRootPasswordRequest) Reset() { *x = SetBmcRootPasswordRequest{} - mi := &file_nico_nico_proto_msgTypes[705] + mi := &file_nico_nico_proto_msgTypes[707] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49965,7 +50113,7 @@ func (x *SetBmcRootPasswordRequest) String() string { func (*SetBmcRootPasswordRequest) ProtoMessage() {} func (x *SetBmcRootPasswordRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[705] + mi := &file_nico_nico_proto_msgTypes[707] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49978,7 +50126,7 @@ func (x *SetBmcRootPasswordRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetBmcRootPasswordRequest.ProtoReflect.Descriptor instead. func (*SetBmcRootPasswordRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{705} + return file_nico_nico_proto_rawDescGZIP(), []int{707} } func (x *SetBmcRootPasswordRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -50010,7 +50158,7 @@ type SetBmcRootPasswordResponse struct { func (x *SetBmcRootPasswordResponse) Reset() { *x = SetBmcRootPasswordResponse{} - mi := &file_nico_nico_proto_msgTypes[706] + mi := &file_nico_nico_proto_msgTypes[708] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50022,7 +50170,7 @@ func (x *SetBmcRootPasswordResponse) String() string { func (*SetBmcRootPasswordResponse) ProtoMessage() {} func (x *SetBmcRootPasswordResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[706] + mi := &file_nico_nico_proto_msgTypes[708] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50035,7 +50183,7 @@ func (x *SetBmcRootPasswordResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SetBmcRootPasswordResponse.ProtoReflect.Descriptor instead. func (*SetBmcRootPasswordResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{706} + return file_nico_nico_proto_rawDescGZIP(), []int{708} } // Must provide either machine_id or ip/mac pair @@ -50049,7 +50197,7 @@ type ProbeBmcVendorRequest struct { func (x *ProbeBmcVendorRequest) Reset() { *x = ProbeBmcVendorRequest{} - mi := &file_nico_nico_proto_msgTypes[707] + mi := &file_nico_nico_proto_msgTypes[709] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50061,7 +50209,7 @@ func (x *ProbeBmcVendorRequest) String() string { func (*ProbeBmcVendorRequest) ProtoMessage() {} func (x *ProbeBmcVendorRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[707] + mi := &file_nico_nico_proto_msgTypes[709] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50074,7 +50222,7 @@ func (x *ProbeBmcVendorRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ProbeBmcVendorRequest.ProtoReflect.Descriptor instead. func (*ProbeBmcVendorRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{707} + return file_nico_nico_proto_rawDescGZIP(), []int{709} } func (x *ProbeBmcVendorRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -50101,7 +50249,7 @@ type ProbeBmcVendorResponse struct { func (x *ProbeBmcVendorResponse) Reset() { *x = ProbeBmcVendorResponse{} - mi := &file_nico_nico_proto_msgTypes[708] + mi := &file_nico_nico_proto_msgTypes[710] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50113,7 +50261,7 @@ func (x *ProbeBmcVendorResponse) String() string { func (*ProbeBmcVendorResponse) ProtoMessage() {} func (x *ProbeBmcVendorResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[708] + mi := &file_nico_nico_proto_msgTypes[710] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50126,7 +50274,7 @@ func (x *ProbeBmcVendorResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ProbeBmcVendorResponse.ProtoReflect.Descriptor instead. func (*ProbeBmcVendorResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{708} + return file_nico_nico_proto_rawDescGZIP(), []int{710} } func (x *ProbeBmcVendorResponse) GetVendor() string { @@ -50147,7 +50295,7 @@ type SetFirmwareUpdateTimeWindowRequest struct { func (x *SetFirmwareUpdateTimeWindowRequest) Reset() { *x = SetFirmwareUpdateTimeWindowRequest{} - mi := &file_nico_nico_proto_msgTypes[709] + mi := &file_nico_nico_proto_msgTypes[711] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50159,7 +50307,7 @@ func (x *SetFirmwareUpdateTimeWindowRequest) String() string { func (*SetFirmwareUpdateTimeWindowRequest) ProtoMessage() {} func (x *SetFirmwareUpdateTimeWindowRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[709] + mi := &file_nico_nico_proto_msgTypes[711] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50172,7 +50320,7 @@ func (x *SetFirmwareUpdateTimeWindowRequest) ProtoReflect() protoreflect.Message // Deprecated: Use SetFirmwareUpdateTimeWindowRequest.ProtoReflect.Descriptor instead. func (*SetFirmwareUpdateTimeWindowRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{709} + return file_nico_nico_proto_rawDescGZIP(), []int{711} } func (x *SetFirmwareUpdateTimeWindowRequest) GetMachineIds() []*MachineId { @@ -50204,7 +50352,7 @@ type SetFirmwareUpdateTimeWindowResponse struct { func (x *SetFirmwareUpdateTimeWindowResponse) Reset() { *x = SetFirmwareUpdateTimeWindowResponse{} - mi := &file_nico_nico_proto_msgTypes[710] + mi := &file_nico_nico_proto_msgTypes[712] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50216,7 +50364,7 @@ func (x *SetFirmwareUpdateTimeWindowResponse) String() string { func (*SetFirmwareUpdateTimeWindowResponse) ProtoMessage() {} func (x *SetFirmwareUpdateTimeWindowResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[710] + mi := &file_nico_nico_proto_msgTypes[712] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50229,7 +50377,7 @@ func (x *SetFirmwareUpdateTimeWindowResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use SetFirmwareUpdateTimeWindowResponse.ProtoReflect.Descriptor instead. func (*SetFirmwareUpdateTimeWindowResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{710} + return file_nico_nico_proto_rawDescGZIP(), []int{712} } type UpsertHostFirmwareConfigRequest struct { @@ -50245,7 +50393,7 @@ type UpsertHostFirmwareConfigRequest struct { func (x *UpsertHostFirmwareConfigRequest) Reset() { *x = UpsertHostFirmwareConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[711] + mi := &file_nico_nico_proto_msgTypes[713] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50257,7 +50405,7 @@ func (x *UpsertHostFirmwareConfigRequest) String() string { func (*UpsertHostFirmwareConfigRequest) ProtoMessage() {} func (x *UpsertHostFirmwareConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[711] + mi := &file_nico_nico_proto_msgTypes[713] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50270,7 +50418,7 @@ func (x *UpsertHostFirmwareConfigRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpsertHostFirmwareConfigRequest.ProtoReflect.Descriptor instead. func (*UpsertHostFirmwareConfigRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{711} + return file_nico_nico_proto_rawDescGZIP(), []int{713} } func (x *UpsertHostFirmwareConfigRequest) GetVendor() string { @@ -50318,7 +50466,7 @@ type DeleteHostFirmwareConfigRequest struct { func (x *DeleteHostFirmwareConfigRequest) Reset() { *x = DeleteHostFirmwareConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[712] + mi := &file_nico_nico_proto_msgTypes[714] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50330,7 +50478,7 @@ func (x *DeleteHostFirmwareConfigRequest) String() string { func (*DeleteHostFirmwareConfigRequest) ProtoMessage() {} func (x *DeleteHostFirmwareConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[712] + mi := &file_nico_nico_proto_msgTypes[714] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50343,7 +50491,7 @@ func (x *DeleteHostFirmwareConfigRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteHostFirmwareConfigRequest.ProtoReflect.Descriptor instead. func (*DeleteHostFirmwareConfigRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{712} + return file_nico_nico_proto_rawDescGZIP(), []int{714} } func (x *DeleteHostFirmwareConfigRequest) GetVendor() string { @@ -50371,7 +50519,7 @@ type UpsertHostFirmwareComponentConfig struct { func (x *UpsertHostFirmwareComponentConfig) Reset() { *x = UpsertHostFirmwareComponentConfig{} - mi := &file_nico_nico_proto_msgTypes[713] + mi := &file_nico_nico_proto_msgTypes[715] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50383,7 +50531,7 @@ func (x *UpsertHostFirmwareComponentConfig) String() string { func (*UpsertHostFirmwareComponentConfig) ProtoMessage() {} func (x *UpsertHostFirmwareComponentConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[713] + mi := &file_nico_nico_proto_msgTypes[715] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50396,7 +50544,7 @@ func (x *UpsertHostFirmwareComponentConfig) ProtoReflect() protoreflect.Message // Deprecated: Use UpsertHostFirmwareComponentConfig.ProtoReflect.Descriptor instead. func (*UpsertHostFirmwareComponentConfig) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{713} + return file_nico_nico_proto_rawDescGZIP(), []int{715} } func (x *UpsertHostFirmwareComponentConfig) GetType() HostFirmwareComponentType { @@ -50432,7 +50580,7 @@ type HostFirmwareComponentConfigResponse struct { func (x *HostFirmwareComponentConfigResponse) Reset() { *x = HostFirmwareComponentConfigResponse{} - mi := &file_nico_nico_proto_msgTypes[714] + mi := &file_nico_nico_proto_msgTypes[716] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50444,7 +50592,7 @@ func (x *HostFirmwareComponentConfigResponse) String() string { func (*HostFirmwareComponentConfigResponse) ProtoMessage() {} func (x *HostFirmwareComponentConfigResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[714] + mi := &file_nico_nico_proto_msgTypes[716] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50457,7 +50605,7 @@ func (x *HostFirmwareComponentConfigResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use HostFirmwareComponentConfigResponse.ProtoReflect.Descriptor instead. func (*HostFirmwareComponentConfigResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{714} + return file_nico_nico_proto_rawDescGZIP(), []int{716} } func (x *HostFirmwareComponentConfigResponse) GetType() HostFirmwareComponentType { @@ -50503,7 +50651,7 @@ type HostFirmwareVersionConfig struct { func (x *HostFirmwareVersionConfig) Reset() { *x = HostFirmwareVersionConfig{} - mi := &file_nico_nico_proto_msgTypes[715] + mi := &file_nico_nico_proto_msgTypes[717] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50515,7 +50663,7 @@ func (x *HostFirmwareVersionConfig) String() string { func (*HostFirmwareVersionConfig) ProtoMessage() {} func (x *HostFirmwareVersionConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[715] + mi := &file_nico_nico_proto_msgTypes[717] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50528,7 +50676,7 @@ func (x *HostFirmwareVersionConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use HostFirmwareVersionConfig.ProtoReflect.Descriptor instead. func (*HostFirmwareVersionConfig) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{715} + return file_nico_nico_proto_rawDescGZIP(), []int{717} } func (x *HostFirmwareVersionConfig) GetVersion() string { @@ -50590,7 +50738,7 @@ type HostFirmwareArtifact struct { func (x *HostFirmwareArtifact) Reset() { *x = HostFirmwareArtifact{} - mi := &file_nico_nico_proto_msgTypes[716] + mi := &file_nico_nico_proto_msgTypes[718] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50602,7 +50750,7 @@ func (x *HostFirmwareArtifact) String() string { func (*HostFirmwareArtifact) ProtoMessage() {} func (x *HostFirmwareArtifact) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[716] + mi := &file_nico_nico_proto_msgTypes[718] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50615,7 +50763,7 @@ func (x *HostFirmwareArtifact) ProtoReflect() protoreflect.Message { // Deprecated: Use HostFirmwareArtifact.ProtoReflect.Descriptor instead. func (*HostFirmwareArtifact) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{716} + return file_nico_nico_proto_rawDescGZIP(), []int{718} } func (x *HostFirmwareArtifact) GetUrl() string { @@ -50647,7 +50795,7 @@ type HostFirmwareConfigResponse struct { func (x *HostFirmwareConfigResponse) Reset() { *x = HostFirmwareConfigResponse{} - mi := &file_nico_nico_proto_msgTypes[717] + mi := &file_nico_nico_proto_msgTypes[719] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50659,7 +50807,7 @@ func (x *HostFirmwareConfigResponse) String() string { func (*HostFirmwareConfigResponse) ProtoMessage() {} func (x *HostFirmwareConfigResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[717] + mi := &file_nico_nico_proto_msgTypes[719] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50672,7 +50820,7 @@ func (x *HostFirmwareConfigResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use HostFirmwareConfigResponse.ProtoReflect.Descriptor instead. func (*HostFirmwareConfigResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{717} + return file_nico_nico_proto_rawDescGZIP(), []int{719} } func (x *HostFirmwareConfigResponse) GetVendor() string { @@ -50732,7 +50880,7 @@ type ListHostFirmwareRequest struct { func (x *ListHostFirmwareRequest) Reset() { *x = ListHostFirmwareRequest{} - mi := &file_nico_nico_proto_msgTypes[718] + mi := &file_nico_nico_proto_msgTypes[720] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50744,7 +50892,7 @@ func (x *ListHostFirmwareRequest) String() string { func (*ListHostFirmwareRequest) ProtoMessage() {} func (x *ListHostFirmwareRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[718] + mi := &file_nico_nico_proto_msgTypes[720] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50757,7 +50905,7 @@ func (x *ListHostFirmwareRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListHostFirmwareRequest.ProtoReflect.Descriptor instead. func (*ListHostFirmwareRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{718} + return file_nico_nico_proto_rawDescGZIP(), []int{720} } type ListHostFirmwareResponse struct { @@ -50769,7 +50917,7 @@ type ListHostFirmwareResponse struct { func (x *ListHostFirmwareResponse) Reset() { *x = ListHostFirmwareResponse{} - mi := &file_nico_nico_proto_msgTypes[719] + mi := &file_nico_nico_proto_msgTypes[721] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50781,7 +50929,7 @@ func (x *ListHostFirmwareResponse) String() string { func (*ListHostFirmwareResponse) ProtoMessage() {} func (x *ListHostFirmwareResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[719] + mi := &file_nico_nico_proto_msgTypes[721] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50794,7 +50942,7 @@ func (x *ListHostFirmwareResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListHostFirmwareResponse.ProtoReflect.Descriptor instead. func (*ListHostFirmwareResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{719} + return file_nico_nico_proto_rawDescGZIP(), []int{721} } func (x *ListHostFirmwareResponse) GetAvailable() []*AvailableHostFirmware { @@ -50818,7 +50966,7 @@ type AvailableHostFirmware struct { func (x *AvailableHostFirmware) Reset() { *x = AvailableHostFirmware{} - mi := &file_nico_nico_proto_msgTypes[720] + mi := &file_nico_nico_proto_msgTypes[722] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50830,7 +50978,7 @@ func (x *AvailableHostFirmware) String() string { func (*AvailableHostFirmware) ProtoMessage() {} func (x *AvailableHostFirmware) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[720] + mi := &file_nico_nico_proto_msgTypes[722] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50843,7 +50991,7 @@ func (x *AvailableHostFirmware) ProtoReflect() protoreflect.Message { // Deprecated: Use AvailableHostFirmware.ProtoReflect.Descriptor instead. func (*AvailableHostFirmware) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{720} + return file_nico_nico_proto_rawDescGZIP(), []int{722} } func (x *AvailableHostFirmware) GetVendor() string { @@ -50898,7 +51046,7 @@ type TrimTableRequest struct { func (x *TrimTableRequest) Reset() { *x = TrimTableRequest{} - mi := &file_nico_nico_proto_msgTypes[721] + mi := &file_nico_nico_proto_msgTypes[723] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50910,7 +51058,7 @@ func (x *TrimTableRequest) String() string { func (*TrimTableRequest) ProtoMessage() {} func (x *TrimTableRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[721] + mi := &file_nico_nico_proto_msgTypes[723] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50923,7 +51071,7 @@ func (x *TrimTableRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TrimTableRequest.ProtoReflect.Descriptor instead. func (*TrimTableRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{721} + return file_nico_nico_proto_rawDescGZIP(), []int{723} } func (x *TrimTableRequest) GetTarget() TrimTableTarget { @@ -50949,7 +51097,7 @@ type TrimTableResponse struct { func (x *TrimTableResponse) Reset() { *x = TrimTableResponse{} - mi := &file_nico_nico_proto_msgTypes[722] + mi := &file_nico_nico_proto_msgTypes[724] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50961,7 +51109,7 @@ func (x *TrimTableResponse) String() string { func (*TrimTableResponse) ProtoMessage() {} func (x *TrimTableResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[722] + mi := &file_nico_nico_proto_msgTypes[724] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50974,7 +51122,7 @@ func (x *TrimTableResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use TrimTableResponse.ProtoReflect.Descriptor instead. func (*TrimTableResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{722} + return file_nico_nico_proto_rawDescGZIP(), []int{724} } func (x *TrimTableResponse) GetTotalDeleted() string { @@ -50994,7 +51142,7 @@ type NvlinkNmxcEndpoint struct { func (x *NvlinkNmxcEndpoint) Reset() { *x = NvlinkNmxcEndpoint{} - mi := &file_nico_nico_proto_msgTypes[723] + mi := &file_nico_nico_proto_msgTypes[725] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51006,7 +51154,7 @@ func (x *NvlinkNmxcEndpoint) String() string { func (*NvlinkNmxcEndpoint) ProtoMessage() {} func (x *NvlinkNmxcEndpoint) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[723] + mi := &file_nico_nico_proto_msgTypes[725] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51019,7 +51167,7 @@ func (x *NvlinkNmxcEndpoint) ProtoReflect() protoreflect.Message { // Deprecated: Use NvlinkNmxcEndpoint.ProtoReflect.Descriptor instead. func (*NvlinkNmxcEndpoint) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{723} + return file_nico_nico_proto_rawDescGZIP(), []int{725} } func (x *NvlinkNmxcEndpoint) GetChassisSerial() string { @@ -51045,7 +51193,7 @@ type NvlinkNmxcEndpointList struct { func (x *NvlinkNmxcEndpointList) Reset() { *x = NvlinkNmxcEndpointList{} - mi := &file_nico_nico_proto_msgTypes[724] + mi := &file_nico_nico_proto_msgTypes[726] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51057,7 +51205,7 @@ func (x *NvlinkNmxcEndpointList) String() string { func (*NvlinkNmxcEndpointList) ProtoMessage() {} func (x *NvlinkNmxcEndpointList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[724] + mi := &file_nico_nico_proto_msgTypes[726] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51070,7 +51218,7 @@ func (x *NvlinkNmxcEndpointList) ProtoReflect() protoreflect.Message { // Deprecated: Use NvlinkNmxcEndpointList.ProtoReflect.Descriptor instead. func (*NvlinkNmxcEndpointList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{724} + return file_nico_nico_proto_rawDescGZIP(), []int{726} } func (x *NvlinkNmxcEndpointList) GetEntries() []*NvlinkNmxcEndpoint { @@ -51089,7 +51237,7 @@ type DeleteNvlinkNmxcEndpointRequest struct { func (x *DeleteNvlinkNmxcEndpointRequest) Reset() { *x = DeleteNvlinkNmxcEndpointRequest{} - mi := &file_nico_nico_proto_msgTypes[725] + mi := &file_nico_nico_proto_msgTypes[727] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51101,7 +51249,7 @@ func (x *DeleteNvlinkNmxcEndpointRequest) String() string { func (*DeleteNvlinkNmxcEndpointRequest) ProtoMessage() {} func (x *DeleteNvlinkNmxcEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[725] + mi := &file_nico_nico_proto_msgTypes[727] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51114,7 +51262,7 @@ func (x *DeleteNvlinkNmxcEndpointRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteNvlinkNmxcEndpointRequest.ProtoReflect.Descriptor instead. func (*DeleteNvlinkNmxcEndpointRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{725} + return file_nico_nico_proto_rawDescGZIP(), []int{727} } func (x *DeleteNvlinkNmxcEndpointRequest) GetChassisSerial() string { @@ -51136,7 +51284,7 @@ type CreateRemediationRequest struct { func (x *CreateRemediationRequest) Reset() { *x = CreateRemediationRequest{} - mi := &file_nico_nico_proto_msgTypes[726] + mi := &file_nico_nico_proto_msgTypes[728] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51148,7 +51296,7 @@ func (x *CreateRemediationRequest) String() string { func (*CreateRemediationRequest) ProtoMessage() {} func (x *CreateRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[726] + mi := &file_nico_nico_proto_msgTypes[728] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51161,7 +51309,7 @@ func (x *CreateRemediationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateRemediationRequest.ProtoReflect.Descriptor instead. func (*CreateRemediationRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{726} + return file_nico_nico_proto_rawDescGZIP(), []int{728} } func (x *CreateRemediationRequest) GetScript() string { @@ -51194,7 +51342,7 @@ type CreateRemediationResponse struct { func (x *CreateRemediationResponse) Reset() { *x = CreateRemediationResponse{} - mi := &file_nico_nico_proto_msgTypes[727] + mi := &file_nico_nico_proto_msgTypes[729] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51206,7 +51354,7 @@ func (x *CreateRemediationResponse) String() string { func (*CreateRemediationResponse) ProtoMessage() {} func (x *CreateRemediationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[727] + mi := &file_nico_nico_proto_msgTypes[729] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51219,7 +51367,7 @@ func (x *CreateRemediationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateRemediationResponse.ProtoReflect.Descriptor instead. func (*CreateRemediationResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{727} + return file_nico_nico_proto_rawDescGZIP(), []int{729} } func (x *CreateRemediationResponse) GetRemediationId() *RemediationId { @@ -51238,7 +51386,7 @@ type RemediationIdList struct { func (x *RemediationIdList) Reset() { *x = RemediationIdList{} - mi := &file_nico_nico_proto_msgTypes[728] + mi := &file_nico_nico_proto_msgTypes[730] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51250,7 +51398,7 @@ func (x *RemediationIdList) String() string { func (*RemediationIdList) ProtoMessage() {} func (x *RemediationIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[728] + mi := &file_nico_nico_proto_msgTypes[730] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51263,7 +51411,7 @@ func (x *RemediationIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use RemediationIdList.ProtoReflect.Descriptor instead. func (*RemediationIdList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{728} + return file_nico_nico_proto_rawDescGZIP(), []int{730} } func (x *RemediationIdList) GetRemediationIds() []*RemediationId { @@ -51282,7 +51430,7 @@ type RemediationList struct { func (x *RemediationList) Reset() { *x = RemediationList{} - mi := &file_nico_nico_proto_msgTypes[729] + mi := &file_nico_nico_proto_msgTypes[731] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51294,7 +51442,7 @@ func (x *RemediationList) String() string { func (*RemediationList) ProtoMessage() {} func (x *RemediationList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[729] + mi := &file_nico_nico_proto_msgTypes[731] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51307,7 +51455,7 @@ func (x *RemediationList) ProtoReflect() protoreflect.Message { // Deprecated: Use RemediationList.ProtoReflect.Descriptor instead. func (*RemediationList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{729} + return file_nico_nico_proto_rawDescGZIP(), []int{731} } func (x *RemediationList) GetRemediations() []*Remediation { @@ -51333,7 +51481,7 @@ type Remediation struct { func (x *Remediation) Reset() { *x = Remediation{} - mi := &file_nico_nico_proto_msgTypes[730] + mi := &file_nico_nico_proto_msgTypes[732] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51345,7 +51493,7 @@ func (x *Remediation) String() string { func (*Remediation) ProtoMessage() {} func (x *Remediation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[730] + mi := &file_nico_nico_proto_msgTypes[732] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51358,7 +51506,7 @@ func (x *Remediation) ProtoReflect() protoreflect.Message { // Deprecated: Use Remediation.ProtoReflect.Descriptor instead. func (*Remediation) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{730} + return file_nico_nico_proto_rawDescGZIP(), []int{732} } func (x *Remediation) GetId() *RemediationId { @@ -51426,7 +51574,7 @@ type ApproveRemediationRequest struct { func (x *ApproveRemediationRequest) Reset() { *x = ApproveRemediationRequest{} - mi := &file_nico_nico_proto_msgTypes[731] + mi := &file_nico_nico_proto_msgTypes[733] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51438,7 +51586,7 @@ func (x *ApproveRemediationRequest) String() string { func (*ApproveRemediationRequest) ProtoMessage() {} func (x *ApproveRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[731] + mi := &file_nico_nico_proto_msgTypes[733] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51451,7 +51599,7 @@ func (x *ApproveRemediationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ApproveRemediationRequest.ProtoReflect.Descriptor instead. func (*ApproveRemediationRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{731} + return file_nico_nico_proto_rawDescGZIP(), []int{733} } func (x *ApproveRemediationRequest) GetRemediationId() *RemediationId { @@ -51470,7 +51618,7 @@ type RevokeRemediationRequest struct { func (x *RevokeRemediationRequest) Reset() { *x = RevokeRemediationRequest{} - mi := &file_nico_nico_proto_msgTypes[732] + mi := &file_nico_nico_proto_msgTypes[734] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51482,7 +51630,7 @@ func (x *RevokeRemediationRequest) String() string { func (*RevokeRemediationRequest) ProtoMessage() {} func (x *RevokeRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[732] + mi := &file_nico_nico_proto_msgTypes[734] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51495,7 +51643,7 @@ func (x *RevokeRemediationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RevokeRemediationRequest.ProtoReflect.Descriptor instead. func (*RevokeRemediationRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{732} + return file_nico_nico_proto_rawDescGZIP(), []int{734} } func (x *RevokeRemediationRequest) GetRemediationId() *RemediationId { @@ -51514,7 +51662,7 @@ type EnableRemediationRequest struct { func (x *EnableRemediationRequest) Reset() { *x = EnableRemediationRequest{} - mi := &file_nico_nico_proto_msgTypes[733] + mi := &file_nico_nico_proto_msgTypes[735] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51526,7 +51674,7 @@ func (x *EnableRemediationRequest) String() string { func (*EnableRemediationRequest) ProtoMessage() {} func (x *EnableRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[733] + mi := &file_nico_nico_proto_msgTypes[735] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51539,7 +51687,7 @@ func (x *EnableRemediationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use EnableRemediationRequest.ProtoReflect.Descriptor instead. func (*EnableRemediationRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{733} + return file_nico_nico_proto_rawDescGZIP(), []int{735} } func (x *EnableRemediationRequest) GetRemediationId() *RemediationId { @@ -51558,7 +51706,7 @@ type DisableRemediationRequest struct { func (x *DisableRemediationRequest) Reset() { *x = DisableRemediationRequest{} - mi := &file_nico_nico_proto_msgTypes[734] + mi := &file_nico_nico_proto_msgTypes[736] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51570,7 +51718,7 @@ func (x *DisableRemediationRequest) String() string { func (*DisableRemediationRequest) ProtoMessage() {} func (x *DisableRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[734] + mi := &file_nico_nico_proto_msgTypes[736] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51583,7 +51731,7 @@ func (x *DisableRemediationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DisableRemediationRequest.ProtoReflect.Descriptor instead. func (*DisableRemediationRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{734} + return file_nico_nico_proto_rawDescGZIP(), []int{736} } func (x *DisableRemediationRequest) GetRemediationId() *RemediationId { @@ -51605,7 +51753,7 @@ type FindAppliedRemediationIdsRequest struct { func (x *FindAppliedRemediationIdsRequest) Reset() { *x = FindAppliedRemediationIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[735] + mi := &file_nico_nico_proto_msgTypes[737] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51617,7 +51765,7 @@ func (x *FindAppliedRemediationIdsRequest) String() string { func (*FindAppliedRemediationIdsRequest) ProtoMessage() {} func (x *FindAppliedRemediationIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[735] + mi := &file_nico_nico_proto_msgTypes[737] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51630,7 +51778,7 @@ func (x *FindAppliedRemediationIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FindAppliedRemediationIdsRequest.ProtoReflect.Descriptor instead. func (*FindAppliedRemediationIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{735} + return file_nico_nico_proto_rawDescGZIP(), []int{737} } func (x *FindAppliedRemediationIdsRequest) GetRemediationId() *RemediationId { @@ -51657,7 +51805,7 @@ type AppliedRemediationIdList struct { func (x *AppliedRemediationIdList) Reset() { *x = AppliedRemediationIdList{} - mi := &file_nico_nico_proto_msgTypes[736] + mi := &file_nico_nico_proto_msgTypes[738] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51669,7 +51817,7 @@ func (x *AppliedRemediationIdList) String() string { func (*AppliedRemediationIdList) ProtoMessage() {} func (x *AppliedRemediationIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[736] + mi := &file_nico_nico_proto_msgTypes[738] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51682,7 +51830,7 @@ func (x *AppliedRemediationIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use AppliedRemediationIdList.ProtoReflect.Descriptor instead. func (*AppliedRemediationIdList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{736} + return file_nico_nico_proto_rawDescGZIP(), []int{738} } func (x *AppliedRemediationIdList) GetRemediationIds() []*RemediationId { @@ -51709,7 +51857,7 @@ type FindAppliedRemediationsRequest struct { func (x *FindAppliedRemediationsRequest) Reset() { *x = FindAppliedRemediationsRequest{} - mi := &file_nico_nico_proto_msgTypes[737] + mi := &file_nico_nico_proto_msgTypes[739] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51721,7 +51869,7 @@ func (x *FindAppliedRemediationsRequest) String() string { func (*FindAppliedRemediationsRequest) ProtoMessage() {} func (x *FindAppliedRemediationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[737] + mi := &file_nico_nico_proto_msgTypes[739] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51734,7 +51882,7 @@ func (x *FindAppliedRemediationsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FindAppliedRemediationsRequest.ProtoReflect.Descriptor instead. func (*FindAppliedRemediationsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{737} + return file_nico_nico_proto_rawDescGZIP(), []int{739} } func (x *FindAppliedRemediationsRequest) GetRemediationId() *RemediationId { @@ -51765,7 +51913,7 @@ type AppliedRemediation struct { func (x *AppliedRemediation) Reset() { *x = AppliedRemediation{} - mi := &file_nico_nico_proto_msgTypes[738] + mi := &file_nico_nico_proto_msgTypes[740] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51777,7 +51925,7 @@ func (x *AppliedRemediation) String() string { func (*AppliedRemediation) ProtoMessage() {} func (x *AppliedRemediation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[738] + mi := &file_nico_nico_proto_msgTypes[740] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51790,7 +51938,7 @@ func (x *AppliedRemediation) ProtoReflect() protoreflect.Message { // Deprecated: Use AppliedRemediation.ProtoReflect.Descriptor instead. func (*AppliedRemediation) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{738} + return file_nico_nico_proto_rawDescGZIP(), []int{740} } func (x *AppliedRemediation) GetRemediationId() *RemediationId { @@ -51844,7 +51992,7 @@ type AppliedRemediationList struct { func (x *AppliedRemediationList) Reset() { *x = AppliedRemediationList{} - mi := &file_nico_nico_proto_msgTypes[739] + mi := &file_nico_nico_proto_msgTypes[741] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51856,7 +52004,7 @@ func (x *AppliedRemediationList) String() string { func (*AppliedRemediationList) ProtoMessage() {} func (x *AppliedRemediationList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[739] + mi := &file_nico_nico_proto_msgTypes[741] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51869,7 +52017,7 @@ func (x *AppliedRemediationList) ProtoReflect() protoreflect.Message { // Deprecated: Use AppliedRemediationList.ProtoReflect.Descriptor instead. func (*AppliedRemediationList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{739} + return file_nico_nico_proto_rawDescGZIP(), []int{741} } func (x *AppliedRemediationList) GetAppliedRemediations() []*AppliedRemediation { @@ -51888,7 +52036,7 @@ type GetNextRemediationForMachineRequest struct { func (x *GetNextRemediationForMachineRequest) Reset() { *x = GetNextRemediationForMachineRequest{} - mi := &file_nico_nico_proto_msgTypes[740] + mi := &file_nico_nico_proto_msgTypes[742] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51900,7 +52048,7 @@ func (x *GetNextRemediationForMachineRequest) String() string { func (*GetNextRemediationForMachineRequest) ProtoMessage() {} func (x *GetNextRemediationForMachineRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[740] + mi := &file_nico_nico_proto_msgTypes[742] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51913,7 +52061,7 @@ func (x *GetNextRemediationForMachineRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use GetNextRemediationForMachineRequest.ProtoReflect.Descriptor instead. func (*GetNextRemediationForMachineRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{740} + return file_nico_nico_proto_rawDescGZIP(), []int{742} } func (x *GetNextRemediationForMachineRequest) GetDpuMachineId() *MachineId { @@ -51933,7 +52081,7 @@ type GetNextRemediationForMachineResponse struct { func (x *GetNextRemediationForMachineResponse) Reset() { *x = GetNextRemediationForMachineResponse{} - mi := &file_nico_nico_proto_msgTypes[741] + mi := &file_nico_nico_proto_msgTypes[743] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51945,7 +52093,7 @@ func (x *GetNextRemediationForMachineResponse) String() string { func (*GetNextRemediationForMachineResponse) ProtoMessage() {} func (x *GetNextRemediationForMachineResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[741] + mi := &file_nico_nico_proto_msgTypes[743] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51958,7 +52106,7 @@ func (x *GetNextRemediationForMachineResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use GetNextRemediationForMachineResponse.ProtoReflect.Descriptor instead. func (*GetNextRemediationForMachineResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{741} + return file_nico_nico_proto_rawDescGZIP(), []int{743} } func (x *GetNextRemediationForMachineResponse) GetRemediationId() *RemediationId { @@ -51986,7 +52134,7 @@ type RemediationAppliedRequest struct { func (x *RemediationAppliedRequest) Reset() { *x = RemediationAppliedRequest{} - mi := &file_nico_nico_proto_msgTypes[742] + mi := &file_nico_nico_proto_msgTypes[744] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51998,7 +52146,7 @@ func (x *RemediationAppliedRequest) String() string { func (*RemediationAppliedRequest) ProtoMessage() {} func (x *RemediationAppliedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[742] + mi := &file_nico_nico_proto_msgTypes[744] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52011,7 +52159,7 @@ func (x *RemediationAppliedRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemediationAppliedRequest.ProtoReflect.Descriptor instead. func (*RemediationAppliedRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{742} + return file_nico_nico_proto_rawDescGZIP(), []int{744} } func (x *RemediationAppliedRequest) GetRemediationId() *RemediationId { @@ -52045,7 +52193,7 @@ type RemediationApplicationStatus struct { func (x *RemediationApplicationStatus) Reset() { *x = RemediationApplicationStatus{} - mi := &file_nico_nico_proto_msgTypes[743] + mi := &file_nico_nico_proto_msgTypes[745] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52057,7 +52205,7 @@ func (x *RemediationApplicationStatus) String() string { func (*RemediationApplicationStatus) ProtoMessage() {} func (x *RemediationApplicationStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[743] + mi := &file_nico_nico_proto_msgTypes[745] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52070,7 +52218,7 @@ func (x *RemediationApplicationStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use RemediationApplicationStatus.ProtoReflect.Descriptor instead. func (*RemediationApplicationStatus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{743} + return file_nico_nico_proto_rawDescGZIP(), []int{745} } func (x *RemediationApplicationStatus) GetSucceeded() bool { @@ -52098,7 +52246,7 @@ type SetPrimaryDpuRequest struct { func (x *SetPrimaryDpuRequest) Reset() { *x = SetPrimaryDpuRequest{} - mi := &file_nico_nico_proto_msgTypes[744] + mi := &file_nico_nico_proto_msgTypes[746] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52110,7 +52258,7 @@ func (x *SetPrimaryDpuRequest) String() string { func (*SetPrimaryDpuRequest) ProtoMessage() {} func (x *SetPrimaryDpuRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[744] + mi := &file_nico_nico_proto_msgTypes[746] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52123,7 +52271,7 @@ func (x *SetPrimaryDpuRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetPrimaryDpuRequest.ProtoReflect.Descriptor instead. func (*SetPrimaryDpuRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{744} + return file_nico_nico_proto_rawDescGZIP(), []int{746} } func (x *SetPrimaryDpuRequest) GetHostMachineId() *MachineId { @@ -52158,7 +52306,7 @@ type SetPrimaryInterfaceRequest struct { func (x *SetPrimaryInterfaceRequest) Reset() { *x = SetPrimaryInterfaceRequest{} - mi := &file_nico_nico_proto_msgTypes[745] + mi := &file_nico_nico_proto_msgTypes[747] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52170,7 +52318,7 @@ func (x *SetPrimaryInterfaceRequest) String() string { func (*SetPrimaryInterfaceRequest) ProtoMessage() {} func (x *SetPrimaryInterfaceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[745] + mi := &file_nico_nico_proto_msgTypes[747] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52183,7 +52331,7 @@ func (x *SetPrimaryInterfaceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetPrimaryInterfaceRequest.ProtoReflect.Descriptor instead. func (*SetPrimaryInterfaceRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{745} + return file_nico_nico_proto_rawDescGZIP(), []int{747} } func (x *SetPrimaryInterfaceRequest) GetHostMachineId() *MachineId { @@ -52217,7 +52365,7 @@ type UsernamePassword struct { func (x *UsernamePassword) Reset() { *x = UsernamePassword{} - mi := &file_nico_nico_proto_msgTypes[746] + mi := &file_nico_nico_proto_msgTypes[748] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52229,7 +52377,7 @@ func (x *UsernamePassword) String() string { func (*UsernamePassword) ProtoMessage() {} func (x *UsernamePassword) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[746] + mi := &file_nico_nico_proto_msgTypes[748] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52242,7 +52390,7 @@ func (x *UsernamePassword) ProtoReflect() protoreflect.Message { // Deprecated: Use UsernamePassword.ProtoReflect.Descriptor instead. func (*UsernamePassword) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{746} + return file_nico_nico_proto_rawDescGZIP(), []int{748} } func (x *UsernamePassword) GetUsername() string { @@ -52268,7 +52416,7 @@ type SessionToken struct { func (x *SessionToken) Reset() { *x = SessionToken{} - mi := &file_nico_nico_proto_msgTypes[747] + mi := &file_nico_nico_proto_msgTypes[749] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52280,7 +52428,7 @@ func (x *SessionToken) String() string { func (*SessionToken) ProtoMessage() {} func (x *SessionToken) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[747] + mi := &file_nico_nico_proto_msgTypes[749] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52293,7 +52441,7 @@ func (x *SessionToken) ProtoReflect() protoreflect.Message { // Deprecated: Use SessionToken.ProtoReflect.Descriptor instead. func (*SessionToken) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{747} + return file_nico_nico_proto_rawDescGZIP(), []int{749} } func (x *SessionToken) GetToken() string { @@ -52316,7 +52464,7 @@ type DpuExtensionServiceCredential struct { func (x *DpuExtensionServiceCredential) Reset() { *x = DpuExtensionServiceCredential{} - mi := &file_nico_nico_proto_msgTypes[748] + mi := &file_nico_nico_proto_msgTypes[750] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52328,7 +52476,7 @@ func (x *DpuExtensionServiceCredential) String() string { func (*DpuExtensionServiceCredential) ProtoMessage() {} func (x *DpuExtensionServiceCredential) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[748] + mi := &file_nico_nico_proto_msgTypes[750] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52341,7 +52489,7 @@ func (x *DpuExtensionServiceCredential) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuExtensionServiceCredential.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceCredential) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{748} + return file_nico_nico_proto_rawDescGZIP(), []int{750} } func (x *DpuExtensionServiceCredential) GetRegistryUrl() string { @@ -52390,7 +52538,7 @@ type DpuExtensionServiceVersionInfo struct { func (x *DpuExtensionServiceVersionInfo) Reset() { *x = DpuExtensionServiceVersionInfo{} - mi := &file_nico_nico_proto_msgTypes[749] + mi := &file_nico_nico_proto_msgTypes[751] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52402,7 +52550,7 @@ func (x *DpuExtensionServiceVersionInfo) String() string { func (*DpuExtensionServiceVersionInfo) ProtoMessage() {} func (x *DpuExtensionServiceVersionInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[749] + mi := &file_nico_nico_proto_msgTypes[751] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52415,7 +52563,7 @@ func (x *DpuExtensionServiceVersionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuExtensionServiceVersionInfo.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceVersionInfo) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{749} + return file_nico_nico_proto_rawDescGZIP(), []int{751} } func (x *DpuExtensionServiceVersionInfo) GetVersion() string { @@ -52476,7 +52624,7 @@ type DpuExtensionService struct { func (x *DpuExtensionService) Reset() { *x = DpuExtensionService{} - mi := &file_nico_nico_proto_msgTypes[750] + mi := &file_nico_nico_proto_msgTypes[752] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52488,7 +52636,7 @@ func (x *DpuExtensionService) String() string { func (*DpuExtensionService) ProtoMessage() {} func (x *DpuExtensionService) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[750] + mi := &file_nico_nico_proto_msgTypes[752] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52501,7 +52649,7 @@ func (x *DpuExtensionService) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuExtensionService.ProtoReflect.Descriptor instead. func (*DpuExtensionService) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{750} + return file_nico_nico_proto_rawDescGZIP(), []int{752} } func (x *DpuExtensionService) GetServiceId() string { @@ -52594,7 +52742,7 @@ type CreateDpuExtensionServiceRequest struct { func (x *CreateDpuExtensionServiceRequest) Reset() { *x = CreateDpuExtensionServiceRequest{} - mi := &file_nico_nico_proto_msgTypes[751] + mi := &file_nico_nico_proto_msgTypes[753] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52606,7 +52754,7 @@ func (x *CreateDpuExtensionServiceRequest) String() string { func (*CreateDpuExtensionServiceRequest) ProtoMessage() {} func (x *CreateDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[751] + mi := &file_nico_nico_proto_msgTypes[753] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52619,7 +52767,7 @@ func (x *CreateDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateDpuExtensionServiceRequest.ProtoReflect.Descriptor instead. func (*CreateDpuExtensionServiceRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{751} + return file_nico_nico_proto_rawDescGZIP(), []int{753} } func (x *CreateDpuExtensionServiceRequest) GetServiceId() string { @@ -52701,7 +52849,7 @@ type UpdateDpuExtensionServiceRequest struct { func (x *UpdateDpuExtensionServiceRequest) Reset() { *x = UpdateDpuExtensionServiceRequest{} - mi := &file_nico_nico_proto_msgTypes[752] + mi := &file_nico_nico_proto_msgTypes[754] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52713,7 +52861,7 @@ func (x *UpdateDpuExtensionServiceRequest) String() string { func (*UpdateDpuExtensionServiceRequest) ProtoMessage() {} func (x *UpdateDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[752] + mi := &file_nico_nico_proto_msgTypes[754] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52726,7 +52874,7 @@ func (x *UpdateDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateDpuExtensionServiceRequest.ProtoReflect.Descriptor instead. func (*UpdateDpuExtensionServiceRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{752} + return file_nico_nico_proto_rawDescGZIP(), []int{754} } func (x *UpdateDpuExtensionServiceRequest) GetServiceId() string { @@ -52791,7 +52939,7 @@ type DeleteDpuExtensionServiceRequest struct { func (x *DeleteDpuExtensionServiceRequest) Reset() { *x = DeleteDpuExtensionServiceRequest{} - mi := &file_nico_nico_proto_msgTypes[753] + mi := &file_nico_nico_proto_msgTypes[755] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52803,7 +52951,7 @@ func (x *DeleteDpuExtensionServiceRequest) String() string { func (*DeleteDpuExtensionServiceRequest) ProtoMessage() {} func (x *DeleteDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[753] + mi := &file_nico_nico_proto_msgTypes[755] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52816,7 +52964,7 @@ func (x *DeleteDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteDpuExtensionServiceRequest.ProtoReflect.Descriptor instead. func (*DeleteDpuExtensionServiceRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{753} + return file_nico_nico_proto_rawDescGZIP(), []int{755} } func (x *DeleteDpuExtensionServiceRequest) GetServiceId() string { @@ -52841,7 +52989,7 @@ type DeleteDpuExtensionServiceResponse struct { func (x *DeleteDpuExtensionServiceResponse) Reset() { *x = DeleteDpuExtensionServiceResponse{} - mi := &file_nico_nico_proto_msgTypes[754] + mi := &file_nico_nico_proto_msgTypes[756] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52853,7 +53001,7 @@ func (x *DeleteDpuExtensionServiceResponse) String() string { func (*DeleteDpuExtensionServiceResponse) ProtoMessage() {} func (x *DeleteDpuExtensionServiceResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[754] + mi := &file_nico_nico_proto_msgTypes[756] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52866,7 +53014,7 @@ func (x *DeleteDpuExtensionServiceResponse) ProtoReflect() protoreflect.Message // Deprecated: Use DeleteDpuExtensionServiceResponse.ProtoReflect.Descriptor instead. func (*DeleteDpuExtensionServiceResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{754} + return file_nico_nico_proto_rawDescGZIP(), []int{756} } type DpuExtensionServiceSearchFilter struct { @@ -52880,7 +53028,7 @@ type DpuExtensionServiceSearchFilter struct { func (x *DpuExtensionServiceSearchFilter) Reset() { *x = DpuExtensionServiceSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[755] + mi := &file_nico_nico_proto_msgTypes[757] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52892,7 +53040,7 @@ func (x *DpuExtensionServiceSearchFilter) String() string { func (*DpuExtensionServiceSearchFilter) ProtoMessage() {} func (x *DpuExtensionServiceSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[755] + mi := &file_nico_nico_proto_msgTypes[757] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52905,7 +53053,7 @@ func (x *DpuExtensionServiceSearchFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuExtensionServiceSearchFilter.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{755} + return file_nico_nico_proto_rawDescGZIP(), []int{757} } func (x *DpuExtensionServiceSearchFilter) GetServiceType() DpuExtensionServiceType { @@ -52938,7 +53086,7 @@ type DpuExtensionServiceIdList struct { func (x *DpuExtensionServiceIdList) Reset() { *x = DpuExtensionServiceIdList{} - mi := &file_nico_nico_proto_msgTypes[756] + mi := &file_nico_nico_proto_msgTypes[758] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52950,7 +53098,7 @@ func (x *DpuExtensionServiceIdList) String() string { func (*DpuExtensionServiceIdList) ProtoMessage() {} func (x *DpuExtensionServiceIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[756] + mi := &file_nico_nico_proto_msgTypes[758] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52963,7 +53111,7 @@ func (x *DpuExtensionServiceIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuExtensionServiceIdList.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceIdList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{756} + return file_nico_nico_proto_rawDescGZIP(), []int{758} } func (x *DpuExtensionServiceIdList) GetServiceIds() []string { @@ -52982,7 +53130,7 @@ type DpuExtensionServicesByIdsRequest struct { func (x *DpuExtensionServicesByIdsRequest) Reset() { *x = DpuExtensionServicesByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[757] + mi := &file_nico_nico_proto_msgTypes[759] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52994,7 +53142,7 @@ func (x *DpuExtensionServicesByIdsRequest) String() string { func (*DpuExtensionServicesByIdsRequest) ProtoMessage() {} func (x *DpuExtensionServicesByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[757] + mi := &file_nico_nico_proto_msgTypes[759] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53007,7 +53155,7 @@ func (x *DpuExtensionServicesByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuExtensionServicesByIdsRequest.ProtoReflect.Descriptor instead. func (*DpuExtensionServicesByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{757} + return file_nico_nico_proto_rawDescGZIP(), []int{759} } func (x *DpuExtensionServicesByIdsRequest) GetServiceIds() []string { @@ -53026,7 +53174,7 @@ type DpuExtensionServiceList struct { func (x *DpuExtensionServiceList) Reset() { *x = DpuExtensionServiceList{} - mi := &file_nico_nico_proto_msgTypes[758] + mi := &file_nico_nico_proto_msgTypes[760] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53038,7 +53186,7 @@ func (x *DpuExtensionServiceList) String() string { func (*DpuExtensionServiceList) ProtoMessage() {} func (x *DpuExtensionServiceList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[758] + mi := &file_nico_nico_proto_msgTypes[760] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53051,7 +53199,7 @@ func (x *DpuExtensionServiceList) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuExtensionServiceList.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{758} + return file_nico_nico_proto_rawDescGZIP(), []int{760} } func (x *DpuExtensionServiceList) GetServices() []*DpuExtensionService { @@ -53072,7 +53220,7 @@ type GetDpuExtensionServiceVersionsInfoRequest struct { func (x *GetDpuExtensionServiceVersionsInfoRequest) Reset() { *x = GetDpuExtensionServiceVersionsInfoRequest{} - mi := &file_nico_nico_proto_msgTypes[759] + mi := &file_nico_nico_proto_msgTypes[761] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53084,7 +53232,7 @@ func (x *GetDpuExtensionServiceVersionsInfoRequest) String() string { func (*GetDpuExtensionServiceVersionsInfoRequest) ProtoMessage() {} func (x *GetDpuExtensionServiceVersionsInfoRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[759] + mi := &file_nico_nico_proto_msgTypes[761] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53097,7 +53245,7 @@ func (x *GetDpuExtensionServiceVersionsInfoRequest) ProtoReflect() protoreflect. // Deprecated: Use GetDpuExtensionServiceVersionsInfoRequest.ProtoReflect.Descriptor instead. func (*GetDpuExtensionServiceVersionsInfoRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{759} + return file_nico_nico_proto_rawDescGZIP(), []int{761} } func (x *GetDpuExtensionServiceVersionsInfoRequest) GetServiceId() string { @@ -53123,7 +53271,7 @@ type DpuExtensionServiceVersionInfoList struct { func (x *DpuExtensionServiceVersionInfoList) Reset() { *x = DpuExtensionServiceVersionInfoList{} - mi := &file_nico_nico_proto_msgTypes[760] + mi := &file_nico_nico_proto_msgTypes[762] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53135,7 +53283,7 @@ func (x *DpuExtensionServiceVersionInfoList) String() string { func (*DpuExtensionServiceVersionInfoList) ProtoMessage() {} func (x *DpuExtensionServiceVersionInfoList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[760] + mi := &file_nico_nico_proto_msgTypes[762] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53148,7 +53296,7 @@ func (x *DpuExtensionServiceVersionInfoList) ProtoReflect() protoreflect.Message // Deprecated: Use DpuExtensionServiceVersionInfoList.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceVersionInfoList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{760} + return file_nico_nico_proto_rawDescGZIP(), []int{762} } func (x *DpuExtensionServiceVersionInfoList) GetVersionInfos() []*DpuExtensionServiceVersionInfo { @@ -53168,7 +53316,7 @@ type FindInstancesByDpuExtensionServiceRequest struct { func (x *FindInstancesByDpuExtensionServiceRequest) Reset() { *x = FindInstancesByDpuExtensionServiceRequest{} - mi := &file_nico_nico_proto_msgTypes[761] + mi := &file_nico_nico_proto_msgTypes[763] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53180,7 +53328,7 @@ func (x *FindInstancesByDpuExtensionServiceRequest) String() string { func (*FindInstancesByDpuExtensionServiceRequest) ProtoMessage() {} func (x *FindInstancesByDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[761] + mi := &file_nico_nico_proto_msgTypes[763] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53193,7 +53341,7 @@ func (x *FindInstancesByDpuExtensionServiceRequest) ProtoReflect() protoreflect. // Deprecated: Use FindInstancesByDpuExtensionServiceRequest.ProtoReflect.Descriptor instead. func (*FindInstancesByDpuExtensionServiceRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{761} + return file_nico_nico_proto_rawDescGZIP(), []int{763} } func (x *FindInstancesByDpuExtensionServiceRequest) GetServiceId() string { @@ -53219,7 +53367,7 @@ type FindInstancesByDpuExtensionServiceResponse struct { func (x *FindInstancesByDpuExtensionServiceResponse) Reset() { *x = FindInstancesByDpuExtensionServiceResponse{} - mi := &file_nico_nico_proto_msgTypes[762] + mi := &file_nico_nico_proto_msgTypes[764] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53231,7 +53379,7 @@ func (x *FindInstancesByDpuExtensionServiceResponse) String() string { func (*FindInstancesByDpuExtensionServiceResponse) ProtoMessage() {} func (x *FindInstancesByDpuExtensionServiceResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[762] + mi := &file_nico_nico_proto_msgTypes[764] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53244,7 +53392,7 @@ func (x *FindInstancesByDpuExtensionServiceResponse) ProtoReflect() protoreflect // Deprecated: Use FindInstancesByDpuExtensionServiceResponse.ProtoReflect.Descriptor instead. func (*FindInstancesByDpuExtensionServiceResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{762} + return file_nico_nico_proto_rawDescGZIP(), []int{764} } func (x *FindInstancesByDpuExtensionServiceResponse) GetInstances() []*InstanceDpuExtensionServiceInfo { @@ -53266,7 +53414,7 @@ type InstanceDpuExtensionServiceInfo struct { func (x *InstanceDpuExtensionServiceInfo) Reset() { *x = InstanceDpuExtensionServiceInfo{} - mi := &file_nico_nico_proto_msgTypes[763] + mi := &file_nico_nico_proto_msgTypes[765] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53278,7 +53426,7 @@ func (x *InstanceDpuExtensionServiceInfo) String() string { func (*InstanceDpuExtensionServiceInfo) ProtoMessage() {} func (x *InstanceDpuExtensionServiceInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[763] + mi := &file_nico_nico_proto_msgTypes[765] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53291,7 +53439,7 @@ func (x *InstanceDpuExtensionServiceInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceDpuExtensionServiceInfo.ProtoReflect.Descriptor instead. func (*InstanceDpuExtensionServiceInfo) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{763} + return file_nico_nico_proto_rawDescGZIP(), []int{765} } func (x *InstanceDpuExtensionServiceInfo) GetInstanceId() string { @@ -53332,7 +53480,7 @@ type DpuExtensionServiceObservabilityConfigPrometheus struct { func (x *DpuExtensionServiceObservabilityConfigPrometheus) Reset() { *x = DpuExtensionServiceObservabilityConfigPrometheus{} - mi := &file_nico_nico_proto_msgTypes[764] + mi := &file_nico_nico_proto_msgTypes[766] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53344,7 +53492,7 @@ func (x *DpuExtensionServiceObservabilityConfigPrometheus) String() string { func (*DpuExtensionServiceObservabilityConfigPrometheus) ProtoMessage() {} func (x *DpuExtensionServiceObservabilityConfigPrometheus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[764] + mi := &file_nico_nico_proto_msgTypes[766] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53357,7 +53505,7 @@ func (x *DpuExtensionServiceObservabilityConfigPrometheus) ProtoReflect() protor // Deprecated: Use DpuExtensionServiceObservabilityConfigPrometheus.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceObservabilityConfigPrometheus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{764} + return file_nico_nico_proto_rawDescGZIP(), []int{766} } func (x *DpuExtensionServiceObservabilityConfigPrometheus) GetScrapeIntervalSeconds() uint32 { @@ -53383,7 +53531,7 @@ type DpuExtensionServiceObservabilityConfigLogging struct { func (x *DpuExtensionServiceObservabilityConfigLogging) Reset() { *x = DpuExtensionServiceObservabilityConfigLogging{} - mi := &file_nico_nico_proto_msgTypes[765] + mi := &file_nico_nico_proto_msgTypes[767] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53395,7 +53543,7 @@ func (x *DpuExtensionServiceObservabilityConfigLogging) String() string { func (*DpuExtensionServiceObservabilityConfigLogging) ProtoMessage() {} func (x *DpuExtensionServiceObservabilityConfigLogging) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[765] + mi := &file_nico_nico_proto_msgTypes[767] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53408,7 +53556,7 @@ func (x *DpuExtensionServiceObservabilityConfigLogging) ProtoReflect() protorefl // Deprecated: Use DpuExtensionServiceObservabilityConfigLogging.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceObservabilityConfigLogging) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{765} + return file_nico_nico_proto_rawDescGZIP(), []int{767} } func (x *DpuExtensionServiceObservabilityConfigLogging) GetPath() string { @@ -53435,7 +53583,7 @@ type DpuExtensionServiceObservabilityConfig struct { func (x *DpuExtensionServiceObservabilityConfig) Reset() { *x = DpuExtensionServiceObservabilityConfig{} - mi := &file_nico_nico_proto_msgTypes[766] + mi := &file_nico_nico_proto_msgTypes[768] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53447,7 +53595,7 @@ func (x *DpuExtensionServiceObservabilityConfig) String() string { func (*DpuExtensionServiceObservabilityConfig) ProtoMessage() {} func (x *DpuExtensionServiceObservabilityConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[766] + mi := &file_nico_nico_proto_msgTypes[768] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53460,7 +53608,7 @@ func (x *DpuExtensionServiceObservabilityConfig) ProtoReflect() protoreflect.Mes // Deprecated: Use DpuExtensionServiceObservabilityConfig.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceObservabilityConfig) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{766} + return file_nico_nico_proto_rawDescGZIP(), []int{768} } func (x *DpuExtensionServiceObservabilityConfig) GetName() string { @@ -53522,7 +53670,7 @@ type DpuExtensionServiceObservability struct { func (x *DpuExtensionServiceObservability) Reset() { *x = DpuExtensionServiceObservability{} - mi := &file_nico_nico_proto_msgTypes[767] + mi := &file_nico_nico_proto_msgTypes[769] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53534,7 +53682,7 @@ func (x *DpuExtensionServiceObservability) String() string { func (*DpuExtensionServiceObservability) ProtoMessage() {} func (x *DpuExtensionServiceObservability) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[767] + mi := &file_nico_nico_proto_msgTypes[769] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53547,7 +53695,7 @@ func (x *DpuExtensionServiceObservability) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuExtensionServiceObservability.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceObservability) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{767} + return file_nico_nico_proto_rawDescGZIP(), []int{769} } func (x *DpuExtensionServiceObservability) GetConfigs() []*DpuExtensionServiceObservabilityConfig { @@ -53592,7 +53740,7 @@ type ScoutStreamApiBoundMessage struct { func (x *ScoutStreamApiBoundMessage) Reset() { *x = ScoutStreamApiBoundMessage{} - mi := &file_nico_nico_proto_msgTypes[768] + mi := &file_nico_nico_proto_msgTypes[770] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53604,7 +53752,7 @@ func (x *ScoutStreamApiBoundMessage) String() string { func (*ScoutStreamApiBoundMessage) ProtoMessage() {} func (x *ScoutStreamApiBoundMessage) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[768] + mi := &file_nico_nico_proto_msgTypes[770] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53617,7 +53765,7 @@ func (x *ScoutStreamApiBoundMessage) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamApiBoundMessage.ProtoReflect.Descriptor instead. func (*ScoutStreamApiBoundMessage) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{768} + return file_nico_nico_proto_rawDescGZIP(), []int{770} } func (x *ScoutStreamApiBoundMessage) GetFlowUuid() *UUID { @@ -53887,7 +54035,7 @@ type ScoutStreamScoutBoundMessage struct { func (x *ScoutStreamScoutBoundMessage) Reset() { *x = ScoutStreamScoutBoundMessage{} - mi := &file_nico_nico_proto_msgTypes[769] + mi := &file_nico_nico_proto_msgTypes[771] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53899,7 +54047,7 @@ func (x *ScoutStreamScoutBoundMessage) String() string { func (*ScoutStreamScoutBoundMessage) ProtoMessage() {} func (x *ScoutStreamScoutBoundMessage) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[769] + mi := &file_nico_nico_proto_msgTypes[771] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53912,7 +54060,7 @@ func (x *ScoutStreamScoutBoundMessage) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamScoutBoundMessage.ProtoReflect.Descriptor instead. func (*ScoutStreamScoutBoundMessage) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{769} + return file_nico_nico_proto_rawDescGZIP(), []int{771} } func (x *ScoutStreamScoutBoundMessage) GetFlowUuid() *UUID { @@ -54168,7 +54316,7 @@ type ScoutStreamInitRequest struct { func (x *ScoutStreamInitRequest) Reset() { *x = ScoutStreamInitRequest{} - mi := &file_nico_nico_proto_msgTypes[770] + mi := &file_nico_nico_proto_msgTypes[772] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54180,7 +54328,7 @@ func (x *ScoutStreamInitRequest) String() string { func (*ScoutStreamInitRequest) ProtoMessage() {} func (x *ScoutStreamInitRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[770] + mi := &file_nico_nico_proto_msgTypes[772] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54193,7 +54341,7 @@ func (x *ScoutStreamInitRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamInitRequest.ProtoReflect.Descriptor instead. func (*ScoutStreamInitRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{770} + return file_nico_nico_proto_rawDescGZIP(), []int{772} } func (x *ScoutStreamInitRequest) GetMachineId() *MachineId { @@ -54213,7 +54361,7 @@ type ScoutStreamShowConnectionsRequest struct { func (x *ScoutStreamShowConnectionsRequest) Reset() { *x = ScoutStreamShowConnectionsRequest{} - mi := &file_nico_nico_proto_msgTypes[771] + mi := &file_nico_nico_proto_msgTypes[773] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54225,7 +54373,7 @@ func (x *ScoutStreamShowConnectionsRequest) String() string { func (*ScoutStreamShowConnectionsRequest) ProtoMessage() {} func (x *ScoutStreamShowConnectionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[771] + mi := &file_nico_nico_proto_msgTypes[773] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54238,7 +54386,7 @@ func (x *ScoutStreamShowConnectionsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use ScoutStreamShowConnectionsRequest.ProtoReflect.Descriptor instead. func (*ScoutStreamShowConnectionsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{771} + return file_nico_nico_proto_rawDescGZIP(), []int{773} } // ShowConnectionsResponse is the response containing active @@ -54252,7 +54400,7 @@ type ScoutStreamShowConnectionsResponse struct { func (x *ScoutStreamShowConnectionsResponse) Reset() { *x = ScoutStreamShowConnectionsResponse{} - mi := &file_nico_nico_proto_msgTypes[772] + mi := &file_nico_nico_proto_msgTypes[774] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54264,7 +54412,7 @@ func (x *ScoutStreamShowConnectionsResponse) String() string { func (*ScoutStreamShowConnectionsResponse) ProtoMessage() {} func (x *ScoutStreamShowConnectionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[772] + mi := &file_nico_nico_proto_msgTypes[774] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54277,7 +54425,7 @@ func (x *ScoutStreamShowConnectionsResponse) ProtoReflect() protoreflect.Message // Deprecated: Use ScoutStreamShowConnectionsResponse.ProtoReflect.Descriptor instead. func (*ScoutStreamShowConnectionsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{772} + return file_nico_nico_proto_rawDescGZIP(), []int{774} } func (x *ScoutStreamShowConnectionsResponse) GetScoutStreamConnections() []*ScoutStreamConnectionInfo { @@ -54298,7 +54446,7 @@ type ScoutStreamDisconnectRequest struct { func (x *ScoutStreamDisconnectRequest) Reset() { *x = ScoutStreamDisconnectRequest{} - mi := &file_nico_nico_proto_msgTypes[773] + mi := &file_nico_nico_proto_msgTypes[775] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54310,7 +54458,7 @@ func (x *ScoutStreamDisconnectRequest) String() string { func (*ScoutStreamDisconnectRequest) ProtoMessage() {} func (x *ScoutStreamDisconnectRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[773] + mi := &file_nico_nico_proto_msgTypes[775] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54323,7 +54471,7 @@ func (x *ScoutStreamDisconnectRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamDisconnectRequest.ProtoReflect.Descriptor instead. func (*ScoutStreamDisconnectRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{773} + return file_nico_nico_proto_rawDescGZIP(), []int{775} } func (x *ScoutStreamDisconnectRequest) GetMachineId() *MachineId { @@ -54345,7 +54493,7 @@ type ScoutStreamDisconnectResponse struct { func (x *ScoutStreamDisconnectResponse) Reset() { *x = ScoutStreamDisconnectResponse{} - mi := &file_nico_nico_proto_msgTypes[774] + mi := &file_nico_nico_proto_msgTypes[776] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54357,7 +54505,7 @@ func (x *ScoutStreamDisconnectResponse) String() string { func (*ScoutStreamDisconnectResponse) ProtoMessage() {} func (x *ScoutStreamDisconnectResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[774] + mi := &file_nico_nico_proto_msgTypes[776] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54370,7 +54518,7 @@ func (x *ScoutStreamDisconnectResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamDisconnectResponse.ProtoReflect.Descriptor instead. func (*ScoutStreamDisconnectResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{774} + return file_nico_nico_proto_rawDescGZIP(), []int{776} } func (x *ScoutStreamDisconnectResponse) GetMachineId() *MachineId { @@ -54399,7 +54547,7 @@ type ScoutStreamAdminPingRequest struct { func (x *ScoutStreamAdminPingRequest) Reset() { *x = ScoutStreamAdminPingRequest{} - mi := &file_nico_nico_proto_msgTypes[775] + mi := &file_nico_nico_proto_msgTypes[777] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54411,7 +54559,7 @@ func (x *ScoutStreamAdminPingRequest) String() string { func (*ScoutStreamAdminPingRequest) ProtoMessage() {} func (x *ScoutStreamAdminPingRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[775] + mi := &file_nico_nico_proto_msgTypes[777] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54424,7 +54572,7 @@ func (x *ScoutStreamAdminPingRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamAdminPingRequest.ProtoReflect.Descriptor instead. func (*ScoutStreamAdminPingRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{775} + return file_nico_nico_proto_rawDescGZIP(), []int{777} } func (x *ScoutStreamAdminPingRequest) GetMachineId() *MachineId { @@ -54445,7 +54593,7 @@ type ScoutStreamAdminPingResponse struct { func (x *ScoutStreamAdminPingResponse) Reset() { *x = ScoutStreamAdminPingResponse{} - mi := &file_nico_nico_proto_msgTypes[776] + mi := &file_nico_nico_proto_msgTypes[778] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54457,7 +54605,7 @@ func (x *ScoutStreamAdminPingResponse) String() string { func (*ScoutStreamAdminPingResponse) ProtoMessage() {} func (x *ScoutStreamAdminPingResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[776] + mi := &file_nico_nico_proto_msgTypes[778] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54470,7 +54618,7 @@ func (x *ScoutStreamAdminPingResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamAdminPingResponse.ProtoReflect.Descriptor instead. func (*ScoutStreamAdminPingResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{776} + return file_nico_nico_proto_rawDescGZIP(), []int{778} } func (x *ScoutStreamAdminPingResponse) GetPong() string { @@ -54491,7 +54639,7 @@ type ScoutStreamAgentPingRequest struct { func (x *ScoutStreamAgentPingRequest) Reset() { *x = ScoutStreamAgentPingRequest{} - mi := &file_nico_nico_proto_msgTypes[777] + mi := &file_nico_nico_proto_msgTypes[779] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54503,7 +54651,7 @@ func (x *ScoutStreamAgentPingRequest) String() string { func (*ScoutStreamAgentPingRequest) ProtoMessage() {} func (x *ScoutStreamAgentPingRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[777] + mi := &file_nico_nico_proto_msgTypes[779] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54516,7 +54664,7 @@ func (x *ScoutStreamAgentPingRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamAgentPingRequest.ProtoReflect.Descriptor instead. func (*ScoutStreamAgentPingRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{777} + return file_nico_nico_proto_rawDescGZIP(), []int{779} } // ScoutStreamAgentPingResponse is hopefully a response from @@ -54534,7 +54682,7 @@ type ScoutStreamAgentPingResponse struct { func (x *ScoutStreamAgentPingResponse) Reset() { *x = ScoutStreamAgentPingResponse{} - mi := &file_nico_nico_proto_msgTypes[778] + mi := &file_nico_nico_proto_msgTypes[780] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54546,7 +54694,7 @@ func (x *ScoutStreamAgentPingResponse) String() string { func (*ScoutStreamAgentPingResponse) ProtoMessage() {} func (x *ScoutStreamAgentPingResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[778] + mi := &file_nico_nico_proto_msgTypes[780] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54559,7 +54707,7 @@ func (x *ScoutStreamAgentPingResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamAgentPingResponse.ProtoReflect.Descriptor instead. func (*ScoutStreamAgentPingResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{778} + return file_nico_nico_proto_rawDescGZIP(), []int{780} } func (x *ScoutStreamAgentPingResponse) GetReply() isScoutStreamAgentPingResponse_Reply { @@ -54620,7 +54768,7 @@ type ScoutStreamConnectionInfo struct { func (x *ScoutStreamConnectionInfo) Reset() { *x = ScoutStreamConnectionInfo{} - mi := &file_nico_nico_proto_msgTypes[779] + mi := &file_nico_nico_proto_msgTypes[781] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54632,7 +54780,7 @@ func (x *ScoutStreamConnectionInfo) String() string { func (*ScoutStreamConnectionInfo) ProtoMessage() {} func (x *ScoutStreamConnectionInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[779] + mi := &file_nico_nico_proto_msgTypes[781] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54645,7 +54793,7 @@ func (x *ScoutStreamConnectionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamConnectionInfo.ProtoReflect.Descriptor instead. func (*ScoutStreamConnectionInfo) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{779} + return file_nico_nico_proto_rawDescGZIP(), []int{781} } func (x *ScoutStreamConnectionInfo) GetMachineId() *MachineId { @@ -54682,7 +54830,7 @@ type ScoutStreamError struct { func (x *ScoutStreamError) Reset() { *x = ScoutStreamError{} - mi := &file_nico_nico_proto_msgTypes[780] + mi := &file_nico_nico_proto_msgTypes[782] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54694,7 +54842,7 @@ func (x *ScoutStreamError) String() string { func (*ScoutStreamError) ProtoMessage() {} func (x *ScoutStreamError) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[780] + mi := &file_nico_nico_proto_msgTypes[782] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54707,7 +54855,7 @@ func (x *ScoutStreamError) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamError.ProtoReflect.Descriptor instead. func (*ScoutStreamError) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{780} + return file_nico_nico_proto_rawDescGZIP(), []int{782} } func (x *ScoutStreamError) GetStatus() ScoutStreamErrorStatus { @@ -54737,7 +54885,7 @@ type PrefixFilterPolicyEntry struct { func (x *PrefixFilterPolicyEntry) Reset() { *x = PrefixFilterPolicyEntry{} - mi := &file_nico_nico_proto_msgTypes[781] + mi := &file_nico_nico_proto_msgTypes[783] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54749,7 +54897,7 @@ func (x *PrefixFilterPolicyEntry) String() string { func (*PrefixFilterPolicyEntry) ProtoMessage() {} func (x *PrefixFilterPolicyEntry) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[781] + mi := &file_nico_nico_proto_msgTypes[783] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54762,7 +54910,7 @@ func (x *PrefixFilterPolicyEntry) ProtoReflect() protoreflect.Message { // Deprecated: Use PrefixFilterPolicyEntry.ProtoReflect.Descriptor instead. func (*PrefixFilterPolicyEntry) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{781} + return file_nico_nico_proto_rawDescGZIP(), []int{783} } func (x *PrefixFilterPolicyEntry) GetPrefix() string { @@ -54797,7 +54945,7 @@ type RoutingProfile struct { func (x *RoutingProfile) Reset() { *x = RoutingProfile{} - mi := &file_nico_nico_proto_msgTypes[782] + mi := &file_nico_nico_proto_msgTypes[784] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54809,7 +54957,7 @@ func (x *RoutingProfile) String() string { func (*RoutingProfile) ProtoMessage() {} func (x *RoutingProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[782] + mi := &file_nico_nico_proto_msgTypes[784] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54822,7 +54970,7 @@ func (x *RoutingProfile) ProtoReflect() protoreflect.Message { // Deprecated: Use RoutingProfile.ProtoReflect.Descriptor instead. func (*RoutingProfile) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{782} + return file_nico_nico_proto_rawDescGZIP(), []int{784} } func (x *RoutingProfile) GetRouteTargetImports() []*RouteTarget { @@ -54888,7 +55036,7 @@ type DomainLegacy struct { func (x *DomainLegacy) Reset() { *x = DomainLegacy{} - mi := &file_nico_nico_proto_msgTypes[783] + mi := &file_nico_nico_proto_msgTypes[785] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54900,7 +55048,7 @@ func (x *DomainLegacy) String() string { func (*DomainLegacy) ProtoMessage() {} func (x *DomainLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[783] + mi := &file_nico_nico_proto_msgTypes[785] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54913,7 +55061,7 @@ func (x *DomainLegacy) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainLegacy.ProtoReflect.Descriptor instead. func (*DomainLegacy) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{783} + return file_nico_nico_proto_rawDescGZIP(), []int{785} } func (x *DomainLegacy) GetId() *DomainId { @@ -54961,7 +55109,7 @@ type DomainListLegacy struct { func (x *DomainListLegacy) Reset() { *x = DomainListLegacy{} - mi := &file_nico_nico_proto_msgTypes[784] + mi := &file_nico_nico_proto_msgTypes[786] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54973,7 +55121,7 @@ func (x *DomainListLegacy) String() string { func (*DomainListLegacy) ProtoMessage() {} func (x *DomainListLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[784] + mi := &file_nico_nico_proto_msgTypes[786] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54986,7 +55134,7 @@ func (x *DomainListLegacy) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainListLegacy.ProtoReflect.Descriptor instead. func (*DomainListLegacy) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{784} + return file_nico_nico_proto_rawDescGZIP(), []int{786} } func (x *DomainListLegacy) GetDomains() []*DomainLegacy { @@ -55006,7 +55154,7 @@ type DomainDeletionLegacy struct { func (x *DomainDeletionLegacy) Reset() { *x = DomainDeletionLegacy{} - mi := &file_nico_nico_proto_msgTypes[785] + mi := &file_nico_nico_proto_msgTypes[787] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55018,7 +55166,7 @@ func (x *DomainDeletionLegacy) String() string { func (*DomainDeletionLegacy) ProtoMessage() {} func (x *DomainDeletionLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[785] + mi := &file_nico_nico_proto_msgTypes[787] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55031,7 +55179,7 @@ func (x *DomainDeletionLegacy) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainDeletionLegacy.ProtoReflect.Descriptor instead. func (*DomainDeletionLegacy) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{785} + return file_nico_nico_proto_rawDescGZIP(), []int{787} } func (x *DomainDeletionLegacy) GetId() *DomainId { @@ -55050,7 +55198,7 @@ type DomainDeletionResultLegacy struct { func (x *DomainDeletionResultLegacy) Reset() { *x = DomainDeletionResultLegacy{} - mi := &file_nico_nico_proto_msgTypes[786] + mi := &file_nico_nico_proto_msgTypes[788] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55062,7 +55210,7 @@ func (x *DomainDeletionResultLegacy) String() string { func (*DomainDeletionResultLegacy) ProtoMessage() {} func (x *DomainDeletionResultLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[786] + mi := &file_nico_nico_proto_msgTypes[788] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55075,7 +55223,7 @@ func (x *DomainDeletionResultLegacy) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainDeletionResultLegacy.ProtoReflect.Descriptor instead. func (*DomainDeletionResultLegacy) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{786} + return file_nico_nico_proto_rawDescGZIP(), []int{788} } // DEPRECATED: Use dns.DomainSearchQuery instead @@ -55089,7 +55237,7 @@ type DomainSearchQueryLegacy struct { func (x *DomainSearchQueryLegacy) Reset() { *x = DomainSearchQueryLegacy{} - mi := &file_nico_nico_proto_msgTypes[787] + mi := &file_nico_nico_proto_msgTypes[789] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55101,7 +55249,7 @@ func (x *DomainSearchQueryLegacy) String() string { func (*DomainSearchQueryLegacy) ProtoMessage() {} func (x *DomainSearchQueryLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[787] + mi := &file_nico_nico_proto_msgTypes[789] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55114,7 +55262,7 @@ func (x *DomainSearchQueryLegacy) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainSearchQueryLegacy.ProtoReflect.Descriptor instead. func (*DomainSearchQueryLegacy) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{787} + return file_nico_nico_proto_rawDescGZIP(), []int{789} } func (x *DomainSearchQueryLegacy) GetId() *DomainId { @@ -55146,7 +55294,7 @@ type PxeDomain struct { func (x *PxeDomain) Reset() { *x = PxeDomain{} - mi := &file_nico_nico_proto_msgTypes[788] + mi := &file_nico_nico_proto_msgTypes[790] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55158,7 +55306,7 @@ func (x *PxeDomain) String() string { func (*PxeDomain) ProtoMessage() {} func (x *PxeDomain) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[788] + mi := &file_nico_nico_proto_msgTypes[790] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55171,7 +55319,7 @@ func (x *PxeDomain) ProtoReflect() protoreflect.Message { // Deprecated: Use PxeDomain.ProtoReflect.Descriptor instead. func (*PxeDomain) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{788} + return file_nico_nico_proto_rawDescGZIP(), []int{790} } func (x *PxeDomain) GetDomain() isPxeDomain_Domain { @@ -55225,7 +55373,7 @@ type MachinePositionQuery struct { func (x *MachinePositionQuery) Reset() { *x = MachinePositionQuery{} - mi := &file_nico_nico_proto_msgTypes[789] + mi := &file_nico_nico_proto_msgTypes[791] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55237,7 +55385,7 @@ func (x *MachinePositionQuery) String() string { func (*MachinePositionQuery) ProtoMessage() {} func (x *MachinePositionQuery) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[789] + mi := &file_nico_nico_proto_msgTypes[791] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55250,7 +55398,7 @@ func (x *MachinePositionQuery) ProtoReflect() protoreflect.Message { // Deprecated: Use MachinePositionQuery.ProtoReflect.Descriptor instead. func (*MachinePositionQuery) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{789} + return file_nico_nico_proto_rawDescGZIP(), []int{791} } func (x *MachinePositionQuery) GetMachineIds() []*MachineId { @@ -55269,7 +55417,7 @@ type MachinePositionInfoList struct { func (x *MachinePositionInfoList) Reset() { *x = MachinePositionInfoList{} - mi := &file_nico_nico_proto_msgTypes[790] + mi := &file_nico_nico_proto_msgTypes[792] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55281,7 +55429,7 @@ func (x *MachinePositionInfoList) String() string { func (*MachinePositionInfoList) ProtoMessage() {} func (x *MachinePositionInfoList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[790] + mi := &file_nico_nico_proto_msgTypes[792] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55294,7 +55442,7 @@ func (x *MachinePositionInfoList) ProtoReflect() protoreflect.Message { // Deprecated: Use MachinePositionInfoList.ProtoReflect.Descriptor instead. func (*MachinePositionInfoList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{790} + return file_nico_nico_proto_rawDescGZIP(), []int{792} } func (x *MachinePositionInfoList) GetMachinePositionInfo() []*MachinePositionInfo { @@ -55319,7 +55467,7 @@ type MachinePositionInfo struct { func (x *MachinePositionInfo) Reset() { *x = MachinePositionInfo{} - mi := &file_nico_nico_proto_msgTypes[791] + mi := &file_nico_nico_proto_msgTypes[793] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55331,7 +55479,7 @@ func (x *MachinePositionInfo) String() string { func (*MachinePositionInfo) ProtoMessage() {} func (x *MachinePositionInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[791] + mi := &file_nico_nico_proto_msgTypes[793] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55344,7 +55492,7 @@ func (x *MachinePositionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use MachinePositionInfo.ProtoReflect.Descriptor instead. func (*MachinePositionInfo) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{791} + return file_nico_nico_proto_rawDescGZIP(), []int{793} } func (x *MachinePositionInfo) GetMachineId() *MachineId { @@ -55406,7 +55554,7 @@ type ModifyDPFStateRequest struct { func (x *ModifyDPFStateRequest) Reset() { *x = ModifyDPFStateRequest{} - mi := &file_nico_nico_proto_msgTypes[792] + mi := &file_nico_nico_proto_msgTypes[794] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55418,7 +55566,7 @@ func (x *ModifyDPFStateRequest) String() string { func (*ModifyDPFStateRequest) ProtoMessage() {} func (x *ModifyDPFStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[792] + mi := &file_nico_nico_proto_msgTypes[794] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55431,7 +55579,7 @@ func (x *ModifyDPFStateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ModifyDPFStateRequest.ProtoReflect.Descriptor instead. func (*ModifyDPFStateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{792} + return file_nico_nico_proto_rawDescGZIP(), []int{794} } func (x *ModifyDPFStateRequest) GetMachineId() *MachineId { @@ -55457,7 +55605,7 @@ type DPFStateResponse struct { func (x *DPFStateResponse) Reset() { *x = DPFStateResponse{} - mi := &file_nico_nico_proto_msgTypes[793] + mi := &file_nico_nico_proto_msgTypes[795] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55469,7 +55617,7 @@ func (x *DPFStateResponse) String() string { func (*DPFStateResponse) ProtoMessage() {} func (x *DPFStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[793] + mi := &file_nico_nico_proto_msgTypes[795] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55482,7 +55630,7 @@ func (x *DPFStateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DPFStateResponse.ProtoReflect.Descriptor instead. func (*DPFStateResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{793} + return file_nico_nico_proto_rawDescGZIP(), []int{795} } func (x *DPFStateResponse) GetDpfStates() []*DPFStateResponse_DPFState { @@ -55501,7 +55649,7 @@ type GetDPFStateRequest struct { func (x *GetDPFStateRequest) Reset() { *x = GetDPFStateRequest{} - mi := &file_nico_nico_proto_msgTypes[794] + mi := &file_nico_nico_proto_msgTypes[796] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55513,7 +55661,7 @@ func (x *GetDPFStateRequest) String() string { func (*GetDPFStateRequest) ProtoMessage() {} func (x *GetDPFStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[794] + mi := &file_nico_nico_proto_msgTypes[796] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55526,7 +55674,7 @@ func (x *GetDPFStateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetDPFStateRequest.ProtoReflect.Descriptor instead. func (*GetDPFStateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{794} + return file_nico_nico_proto_rawDescGZIP(), []int{796} } func (x *GetDPFStateRequest) GetMachineIds() []*MachineId { @@ -55545,7 +55693,7 @@ type GetDPFHostSnapshotRequest struct { func (x *GetDPFHostSnapshotRequest) Reset() { *x = GetDPFHostSnapshotRequest{} - mi := &file_nico_nico_proto_msgTypes[795] + mi := &file_nico_nico_proto_msgTypes[797] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55557,7 +55705,7 @@ func (x *GetDPFHostSnapshotRequest) String() string { func (*GetDPFHostSnapshotRequest) ProtoMessage() {} func (x *GetDPFHostSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[795] + mi := &file_nico_nico_proto_msgTypes[797] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55570,7 +55718,7 @@ func (x *GetDPFHostSnapshotRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetDPFHostSnapshotRequest.ProtoReflect.Descriptor instead. func (*GetDPFHostSnapshotRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{795} + return file_nico_nico_proto_rawDescGZIP(), []int{797} } func (x *GetDPFHostSnapshotRequest) GetHostMachineId() *MachineId { @@ -55592,7 +55740,7 @@ type DPFHostSnapshotResponse struct { func (x *DPFHostSnapshotResponse) Reset() { *x = DPFHostSnapshotResponse{} - mi := &file_nico_nico_proto_msgTypes[796] + mi := &file_nico_nico_proto_msgTypes[798] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55604,7 +55752,7 @@ func (x *DPFHostSnapshotResponse) String() string { func (*DPFHostSnapshotResponse) ProtoMessage() {} func (x *DPFHostSnapshotResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[796] + mi := &file_nico_nico_proto_msgTypes[798] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55617,7 +55765,7 @@ func (x *DPFHostSnapshotResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DPFHostSnapshotResponse.ProtoReflect.Descriptor instead. func (*DPFHostSnapshotResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{796} + return file_nico_nico_proto_rawDescGZIP(), []int{798} } func (x *DPFHostSnapshotResponse) GetJsonPayload() string { @@ -55635,7 +55783,7 @@ type GetDPFServiceVersionsRequest struct { func (x *GetDPFServiceVersionsRequest) Reset() { *x = GetDPFServiceVersionsRequest{} - mi := &file_nico_nico_proto_msgTypes[797] + mi := &file_nico_nico_proto_msgTypes[799] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55647,7 +55795,7 @@ func (x *GetDPFServiceVersionsRequest) String() string { func (*GetDPFServiceVersionsRequest) ProtoMessage() {} func (x *GetDPFServiceVersionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[797] + mi := &file_nico_nico_proto_msgTypes[799] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55660,7 +55808,7 @@ func (x *GetDPFServiceVersionsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetDPFServiceVersionsRequest.ProtoReflect.Descriptor instead. func (*GetDPFServiceVersionsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{797} + return file_nico_nico_proto_rawDescGZIP(), []int{799} } type DPFServiceVersion struct { @@ -55684,7 +55832,7 @@ type DPFServiceVersion struct { func (x *DPFServiceVersion) Reset() { *x = DPFServiceVersion{} - mi := &file_nico_nico_proto_msgTypes[798] + mi := &file_nico_nico_proto_msgTypes[800] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55696,7 +55844,7 @@ func (x *DPFServiceVersion) String() string { func (*DPFServiceVersion) ProtoMessage() {} func (x *DPFServiceVersion) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[798] + mi := &file_nico_nico_proto_msgTypes[800] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55709,7 +55857,7 @@ func (x *DPFServiceVersion) ProtoReflect() protoreflect.Message { // Deprecated: Use DPFServiceVersion.ProtoReflect.Descriptor instead. func (*DPFServiceVersion) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{798} + return file_nico_nico_proto_rawDescGZIP(), []int{800} } func (x *DPFServiceVersion) GetService() string { @@ -55756,7 +55904,7 @@ type DPFServiceVersionsResponse struct { func (x *DPFServiceVersionsResponse) Reset() { *x = DPFServiceVersionsResponse{} - mi := &file_nico_nico_proto_msgTypes[799] + mi := &file_nico_nico_proto_msgTypes[801] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55768,7 +55916,7 @@ func (x *DPFServiceVersionsResponse) String() string { func (*DPFServiceVersionsResponse) ProtoMessage() {} func (x *DPFServiceVersionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[799] + mi := &file_nico_nico_proto_msgTypes[801] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55781,7 +55929,7 @@ func (x *DPFServiceVersionsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DPFServiceVersionsResponse.ProtoReflect.Descriptor instead. func (*DPFServiceVersionsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{799} + return file_nico_nico_proto_rawDescGZIP(), []int{801} } func (x *DPFServiceVersionsResponse) GetServices() []*DPFServiceVersion { @@ -55802,7 +55950,7 @@ type ComponentResult struct { func (x *ComponentResult) Reset() { *x = ComponentResult{} - mi := &file_nico_nico_proto_msgTypes[800] + mi := &file_nico_nico_proto_msgTypes[802] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55814,7 +55962,7 @@ func (x *ComponentResult) String() string { func (*ComponentResult) ProtoMessage() {} func (x *ComponentResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[800] + mi := &file_nico_nico_proto_msgTypes[802] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55827,7 +55975,7 @@ func (x *ComponentResult) ProtoReflect() protoreflect.Message { // Deprecated: Use ComponentResult.ProtoReflect.Descriptor instead. func (*ComponentResult) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{800} + return file_nico_nico_proto_rawDescGZIP(), []int{802} } func (x *ComponentResult) GetComponentId() string { @@ -55860,7 +56008,7 @@ type SwitchIdList struct { func (x *SwitchIdList) Reset() { *x = SwitchIdList{} - mi := &file_nico_nico_proto_msgTypes[801] + mi := &file_nico_nico_proto_msgTypes[803] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55872,7 +56020,7 @@ func (x *SwitchIdList) String() string { func (*SwitchIdList) ProtoMessage() {} func (x *SwitchIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[801] + mi := &file_nico_nico_proto_msgTypes[803] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55885,7 +56033,7 @@ func (x *SwitchIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use SwitchIdList.ProtoReflect.Descriptor instead. func (*SwitchIdList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{801} + return file_nico_nico_proto_rawDescGZIP(), []int{803} } func (x *SwitchIdList) GetIds() []*SwitchId { @@ -55904,7 +56052,7 @@ type PowerShelfIdList struct { func (x *PowerShelfIdList) Reset() { *x = PowerShelfIdList{} - mi := &file_nico_nico_proto_msgTypes[802] + mi := &file_nico_nico_proto_msgTypes[804] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55916,7 +56064,7 @@ func (x *PowerShelfIdList) String() string { func (*PowerShelfIdList) ProtoMessage() {} func (x *PowerShelfIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[802] + mi := &file_nico_nico_proto_msgTypes[804] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55929,7 +56077,7 @@ func (x *PowerShelfIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use PowerShelfIdList.ProtoReflect.Descriptor instead. func (*PowerShelfIdList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{802} + return file_nico_nico_proto_rawDescGZIP(), []int{804} } func (x *PowerShelfIdList) GetIds() []*PowerShelfId { @@ -55953,7 +56101,7 @@ type GetComponentInventoryRequest struct { func (x *GetComponentInventoryRequest) Reset() { *x = GetComponentInventoryRequest{} - mi := &file_nico_nico_proto_msgTypes[803] + mi := &file_nico_nico_proto_msgTypes[805] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55965,7 +56113,7 @@ func (x *GetComponentInventoryRequest) String() string { func (*GetComponentInventoryRequest) ProtoMessage() {} func (x *GetComponentInventoryRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[803] + mi := &file_nico_nico_proto_msgTypes[805] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55978,7 +56126,7 @@ func (x *GetComponentInventoryRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetComponentInventoryRequest.ProtoReflect.Descriptor instead. func (*GetComponentInventoryRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{803} + return file_nico_nico_proto_rawDescGZIP(), []int{805} } func (x *GetComponentInventoryRequest) GetTarget() isGetComponentInventoryRequest_Target { @@ -56047,7 +56195,7 @@ type ComponentInventoryEntry struct { func (x *ComponentInventoryEntry) Reset() { *x = ComponentInventoryEntry{} - mi := &file_nico_nico_proto_msgTypes[804] + mi := &file_nico_nico_proto_msgTypes[806] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56059,7 +56207,7 @@ func (x *ComponentInventoryEntry) String() string { func (*ComponentInventoryEntry) ProtoMessage() {} func (x *ComponentInventoryEntry) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[804] + mi := &file_nico_nico_proto_msgTypes[806] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56072,7 +56220,7 @@ func (x *ComponentInventoryEntry) ProtoReflect() protoreflect.Message { // Deprecated: Use ComponentInventoryEntry.ProtoReflect.Descriptor instead. func (*ComponentInventoryEntry) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{804} + return file_nico_nico_proto_rawDescGZIP(), []int{806} } func (x *ComponentInventoryEntry) GetResult() *ComponentResult { @@ -56098,7 +56246,7 @@ type GetComponentInventoryResponse struct { func (x *GetComponentInventoryResponse) Reset() { *x = GetComponentInventoryResponse{} - mi := &file_nico_nico_proto_msgTypes[805] + mi := &file_nico_nico_proto_msgTypes[807] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56110,7 +56258,7 @@ func (x *GetComponentInventoryResponse) String() string { func (*GetComponentInventoryResponse) ProtoMessage() {} func (x *GetComponentInventoryResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[805] + mi := &file_nico_nico_proto_msgTypes[807] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56123,7 +56271,7 @@ func (x *GetComponentInventoryResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetComponentInventoryResponse.ProtoReflect.Descriptor instead. func (*GetComponentInventoryResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{805} + return file_nico_nico_proto_rawDescGZIP(), []int{807} } func (x *GetComponentInventoryResponse) GetEntries() []*ComponentInventoryEntry { @@ -56151,7 +56299,7 @@ type ComponentPowerControlRequest struct { func (x *ComponentPowerControlRequest) Reset() { *x = ComponentPowerControlRequest{} - mi := &file_nico_nico_proto_msgTypes[806] + mi := &file_nico_nico_proto_msgTypes[808] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56163,7 +56311,7 @@ func (x *ComponentPowerControlRequest) String() string { func (*ComponentPowerControlRequest) ProtoMessage() {} func (x *ComponentPowerControlRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[806] + mi := &file_nico_nico_proto_msgTypes[808] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56176,7 +56324,7 @@ func (x *ComponentPowerControlRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ComponentPowerControlRequest.ProtoReflect.Descriptor instead. func (*ComponentPowerControlRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{806} + return file_nico_nico_proto_rawDescGZIP(), []int{808} } func (x *ComponentPowerControlRequest) GetTarget() isComponentPowerControlRequest_Target { @@ -56258,7 +56406,7 @@ type ComponentPowerControlResponse struct { func (x *ComponentPowerControlResponse) Reset() { *x = ComponentPowerControlResponse{} - mi := &file_nico_nico_proto_msgTypes[807] + mi := &file_nico_nico_proto_msgTypes[809] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56270,7 +56418,7 @@ func (x *ComponentPowerControlResponse) String() string { func (*ComponentPowerControlResponse) ProtoMessage() {} func (x *ComponentPowerControlResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[807] + mi := &file_nico_nico_proto_msgTypes[809] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56283,7 +56431,7 @@ func (x *ComponentPowerControlResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ComponentPowerControlResponse.ProtoReflect.Descriptor instead. func (*ComponentPowerControlResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{807} + return file_nico_nico_proto_rawDescGZIP(), []int{809} } func (x *ComponentPowerControlResponse) GetResults() []*ComponentResult { @@ -56307,7 +56455,7 @@ type ComponentConfigureSwitchCertificateRequest struct { func (x *ComponentConfigureSwitchCertificateRequest) Reset() { *x = ComponentConfigureSwitchCertificateRequest{} - mi := &file_nico_nico_proto_msgTypes[808] + mi := &file_nico_nico_proto_msgTypes[810] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56319,7 +56467,7 @@ func (x *ComponentConfigureSwitchCertificateRequest) String() string { func (*ComponentConfigureSwitchCertificateRequest) ProtoMessage() {} func (x *ComponentConfigureSwitchCertificateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[808] + mi := &file_nico_nico_proto_msgTypes[810] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56332,7 +56480,7 @@ func (x *ComponentConfigureSwitchCertificateRequest) ProtoReflect() protoreflect // Deprecated: Use ComponentConfigureSwitchCertificateRequest.ProtoReflect.Descriptor instead. func (*ComponentConfigureSwitchCertificateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{808} + return file_nico_nico_proto_rawDescGZIP(), []int{810} } func (x *ComponentConfigureSwitchCertificateRequest) GetSwitchIds() *SwitchIdList { @@ -56365,7 +56513,7 @@ type ComponentConfigureSwitchCertificateResponse struct { func (x *ComponentConfigureSwitchCertificateResponse) Reset() { *x = ComponentConfigureSwitchCertificateResponse{} - mi := &file_nico_nico_proto_msgTypes[809] + mi := &file_nico_nico_proto_msgTypes[811] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56377,7 +56525,7 @@ func (x *ComponentConfigureSwitchCertificateResponse) String() string { func (*ComponentConfigureSwitchCertificateResponse) ProtoMessage() {} func (x *ComponentConfigureSwitchCertificateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[809] + mi := &file_nico_nico_proto_msgTypes[811] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56390,7 +56538,7 @@ func (x *ComponentConfigureSwitchCertificateResponse) ProtoReflect() protoreflec // Deprecated: Use ComponentConfigureSwitchCertificateResponse.ProtoReflect.Descriptor instead. func (*ComponentConfigureSwitchCertificateResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{809} + return file_nico_nico_proto_rawDescGZIP(), []int{811} } func (x *ComponentConfigureSwitchCertificateResponse) GetResults() []*ComponentResult { @@ -56412,7 +56560,7 @@ type FirmwareUpdateStatus struct { func (x *FirmwareUpdateStatus) Reset() { *x = FirmwareUpdateStatus{} - mi := &file_nico_nico_proto_msgTypes[810] + mi := &file_nico_nico_proto_msgTypes[812] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56424,7 +56572,7 @@ func (x *FirmwareUpdateStatus) String() string { func (*FirmwareUpdateStatus) ProtoMessage() {} func (x *FirmwareUpdateStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[810] + mi := &file_nico_nico_proto_msgTypes[812] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56437,7 +56585,7 @@ func (x *FirmwareUpdateStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use FirmwareUpdateStatus.ProtoReflect.Descriptor instead. func (*FirmwareUpdateStatus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{810} + return file_nico_nico_proto_rawDescGZIP(), []int{812} } func (x *FirmwareUpdateStatus) GetResult() *ComponentResult { @@ -56478,7 +56626,7 @@ type UpdateComputeTrayFirmwareTarget struct { func (x *UpdateComputeTrayFirmwareTarget) Reset() { *x = UpdateComputeTrayFirmwareTarget{} - mi := &file_nico_nico_proto_msgTypes[811] + mi := &file_nico_nico_proto_msgTypes[813] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56490,7 +56638,7 @@ func (x *UpdateComputeTrayFirmwareTarget) String() string { func (*UpdateComputeTrayFirmwareTarget) ProtoMessage() {} func (x *UpdateComputeTrayFirmwareTarget) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[811] + mi := &file_nico_nico_proto_msgTypes[813] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56503,7 +56651,7 @@ func (x *UpdateComputeTrayFirmwareTarget) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateComputeTrayFirmwareTarget.ProtoReflect.Descriptor instead. func (*UpdateComputeTrayFirmwareTarget) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{811} + return file_nico_nico_proto_rawDescGZIP(), []int{813} } func (x *UpdateComputeTrayFirmwareTarget) GetMachineIds() *MachineIdList { @@ -56530,7 +56678,7 @@ type UpdateSwitchFirmwareTarget struct { func (x *UpdateSwitchFirmwareTarget) Reset() { *x = UpdateSwitchFirmwareTarget{} - mi := &file_nico_nico_proto_msgTypes[812] + mi := &file_nico_nico_proto_msgTypes[814] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56542,7 +56690,7 @@ func (x *UpdateSwitchFirmwareTarget) String() string { func (*UpdateSwitchFirmwareTarget) ProtoMessage() {} func (x *UpdateSwitchFirmwareTarget) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[812] + mi := &file_nico_nico_proto_msgTypes[814] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56555,7 +56703,7 @@ func (x *UpdateSwitchFirmwareTarget) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateSwitchFirmwareTarget.ProtoReflect.Descriptor instead. func (*UpdateSwitchFirmwareTarget) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{812} + return file_nico_nico_proto_rawDescGZIP(), []int{814} } func (x *UpdateSwitchFirmwareTarget) GetSwitchIds() *SwitchIdList { @@ -56582,7 +56730,7 @@ type UpdatePowerShelfFirmwareTarget struct { func (x *UpdatePowerShelfFirmwareTarget) Reset() { *x = UpdatePowerShelfFirmwareTarget{} - mi := &file_nico_nico_proto_msgTypes[813] + mi := &file_nico_nico_proto_msgTypes[815] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56594,7 +56742,7 @@ func (x *UpdatePowerShelfFirmwareTarget) String() string { func (*UpdatePowerShelfFirmwareTarget) ProtoMessage() {} func (x *UpdatePowerShelfFirmwareTarget) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[813] + mi := &file_nico_nico_proto_msgTypes[815] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56607,7 +56755,7 @@ func (x *UpdatePowerShelfFirmwareTarget) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdatePowerShelfFirmwareTarget.ProtoReflect.Descriptor instead. func (*UpdatePowerShelfFirmwareTarget) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{813} + return file_nico_nico_proto_rawDescGZIP(), []int{815} } func (x *UpdatePowerShelfFirmwareTarget) GetPowerShelfIds() *PowerShelfIdList { @@ -56635,7 +56783,7 @@ type UpdateFirmwareObjectTarget struct { func (x *UpdateFirmwareObjectTarget) Reset() { *x = UpdateFirmwareObjectTarget{} - mi := &file_nico_nico_proto_msgTypes[814] + mi := &file_nico_nico_proto_msgTypes[816] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56647,7 +56795,7 @@ func (x *UpdateFirmwareObjectTarget) String() string { func (*UpdateFirmwareObjectTarget) ProtoMessage() {} func (x *UpdateFirmwareObjectTarget) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[814] + mi := &file_nico_nico_proto_msgTypes[816] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56660,7 +56808,7 @@ func (x *UpdateFirmwareObjectTarget) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateFirmwareObjectTarget.ProtoReflect.Descriptor instead. func (*UpdateFirmwareObjectTarget) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{814} + return file_nico_nico_proto_rawDescGZIP(), []int{816} } func (x *UpdateFirmwareObjectTarget) GetRackIds() *RackIdList { @@ -56697,7 +56845,7 @@ type UpdateComponentFirmwareRequest struct { func (x *UpdateComponentFirmwareRequest) Reset() { *x = UpdateComponentFirmwareRequest{} - mi := &file_nico_nico_proto_msgTypes[815] + mi := &file_nico_nico_proto_msgTypes[817] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56709,7 +56857,7 @@ func (x *UpdateComponentFirmwareRequest) String() string { func (*UpdateComponentFirmwareRequest) ProtoMessage() {} func (x *UpdateComponentFirmwareRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[815] + mi := &file_nico_nico_proto_msgTypes[817] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56722,7 +56870,7 @@ func (x *UpdateComponentFirmwareRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateComponentFirmwareRequest.ProtoReflect.Descriptor instead. func (*UpdateComponentFirmwareRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{815} + return file_nico_nico_proto_rawDescGZIP(), []int{817} } func (x *UpdateComponentFirmwareRequest) GetTarget() isUpdateComponentFirmwareRequest_Target { @@ -56834,7 +56982,7 @@ type UpdateComponentFirmwareResponse struct { func (x *UpdateComponentFirmwareResponse) Reset() { *x = UpdateComponentFirmwareResponse{} - mi := &file_nico_nico_proto_msgTypes[816] + mi := &file_nico_nico_proto_msgTypes[818] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56846,7 +56994,7 @@ func (x *UpdateComponentFirmwareResponse) String() string { func (*UpdateComponentFirmwareResponse) ProtoMessage() {} func (x *UpdateComponentFirmwareResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[816] + mi := &file_nico_nico_proto_msgTypes[818] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56859,7 +57007,7 @@ func (x *UpdateComponentFirmwareResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateComponentFirmwareResponse.ProtoReflect.Descriptor instead. func (*UpdateComponentFirmwareResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{816} + return file_nico_nico_proto_rawDescGZIP(), []int{818} } func (x *UpdateComponentFirmwareResponse) GetResults() []*ComponentResult { @@ -56884,7 +57032,7 @@ type GetComponentFirmwareStatusRequest struct { func (x *GetComponentFirmwareStatusRequest) Reset() { *x = GetComponentFirmwareStatusRequest{} - mi := &file_nico_nico_proto_msgTypes[817] + mi := &file_nico_nico_proto_msgTypes[819] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56896,7 +57044,7 @@ func (x *GetComponentFirmwareStatusRequest) String() string { func (*GetComponentFirmwareStatusRequest) ProtoMessage() {} func (x *GetComponentFirmwareStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[817] + mi := &file_nico_nico_proto_msgTypes[819] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56909,7 +57057,7 @@ func (x *GetComponentFirmwareStatusRequest) ProtoReflect() protoreflect.Message // Deprecated: Use GetComponentFirmwareStatusRequest.ProtoReflect.Descriptor instead. func (*GetComponentFirmwareStatusRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{817} + return file_nico_nico_proto_rawDescGZIP(), []int{819} } func (x *GetComponentFirmwareStatusRequest) GetTarget() isGetComponentFirmwareStatusRequest_Target { @@ -56993,7 +57141,7 @@ type GetComponentFirmwareStatusResponse struct { func (x *GetComponentFirmwareStatusResponse) Reset() { *x = GetComponentFirmwareStatusResponse{} - mi := &file_nico_nico_proto_msgTypes[818] + mi := &file_nico_nico_proto_msgTypes[820] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57005,7 +57153,7 @@ func (x *GetComponentFirmwareStatusResponse) String() string { func (*GetComponentFirmwareStatusResponse) ProtoMessage() {} func (x *GetComponentFirmwareStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[818] + mi := &file_nico_nico_proto_msgTypes[820] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57018,7 +57166,7 @@ func (x *GetComponentFirmwareStatusResponse) ProtoReflect() protoreflect.Message // Deprecated: Use GetComponentFirmwareStatusResponse.ProtoReflect.Descriptor instead. func (*GetComponentFirmwareStatusResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{818} + return file_nico_nico_proto_rawDescGZIP(), []int{820} } func (x *GetComponentFirmwareStatusResponse) GetStatuses() []*FirmwareUpdateStatus { @@ -57043,7 +57191,7 @@ type ListComponentFirmwareVersionsRequest struct { func (x *ListComponentFirmwareVersionsRequest) Reset() { *x = ListComponentFirmwareVersionsRequest{} - mi := &file_nico_nico_proto_msgTypes[819] + mi := &file_nico_nico_proto_msgTypes[821] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57055,7 +57203,7 @@ func (x *ListComponentFirmwareVersionsRequest) String() string { func (*ListComponentFirmwareVersionsRequest) ProtoMessage() {} func (x *ListComponentFirmwareVersionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[819] + mi := &file_nico_nico_proto_msgTypes[821] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57068,7 +57216,7 @@ func (x *ListComponentFirmwareVersionsRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use ListComponentFirmwareVersionsRequest.ProtoReflect.Descriptor instead. func (*ListComponentFirmwareVersionsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{819} + return file_nico_nico_proto_rawDescGZIP(), []int{821} } func (x *ListComponentFirmwareVersionsRequest) GetTarget() isListComponentFirmwareVersionsRequest_Target { @@ -57159,7 +57307,7 @@ type ComputeTrayFirmwareVersions struct { func (x *ComputeTrayFirmwareVersions) Reset() { *x = ComputeTrayFirmwareVersions{} - mi := &file_nico_nico_proto_msgTypes[820] + mi := &file_nico_nico_proto_msgTypes[822] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57171,7 +57319,7 @@ func (x *ComputeTrayFirmwareVersions) String() string { func (*ComputeTrayFirmwareVersions) ProtoMessage() {} func (x *ComputeTrayFirmwareVersions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[820] + mi := &file_nico_nico_proto_msgTypes[822] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57184,7 +57332,7 @@ func (x *ComputeTrayFirmwareVersions) ProtoReflect() protoreflect.Message { // Deprecated: Use ComputeTrayFirmwareVersions.ProtoReflect.Descriptor instead. func (*ComputeTrayFirmwareVersions) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{820} + return file_nico_nico_proto_rawDescGZIP(), []int{822} } func (x *ComputeTrayFirmwareVersions) GetComponent() ComputeTrayComponent { @@ -57214,7 +57362,7 @@ type DeviceFirmwareVersions struct { func (x *DeviceFirmwareVersions) Reset() { *x = DeviceFirmwareVersions{} - mi := &file_nico_nico_proto_msgTypes[821] + mi := &file_nico_nico_proto_msgTypes[823] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57226,7 +57374,7 @@ func (x *DeviceFirmwareVersions) String() string { func (*DeviceFirmwareVersions) ProtoMessage() {} func (x *DeviceFirmwareVersions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[821] + mi := &file_nico_nico_proto_msgTypes[823] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57239,7 +57387,7 @@ func (x *DeviceFirmwareVersions) ProtoReflect() protoreflect.Message { // Deprecated: Use DeviceFirmwareVersions.ProtoReflect.Descriptor instead. func (*DeviceFirmwareVersions) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{821} + return file_nico_nico_proto_rawDescGZIP(), []int{823} } func (x *DeviceFirmwareVersions) GetResult() *ComponentResult { @@ -57272,7 +57420,7 @@ type ListComponentFirmwareVersionsResponse struct { func (x *ListComponentFirmwareVersionsResponse) Reset() { *x = ListComponentFirmwareVersionsResponse{} - mi := &file_nico_nico_proto_msgTypes[822] + mi := &file_nico_nico_proto_msgTypes[824] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57284,7 +57432,7 @@ func (x *ListComponentFirmwareVersionsResponse) String() string { func (*ListComponentFirmwareVersionsResponse) ProtoMessage() {} func (x *ListComponentFirmwareVersionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[822] + mi := &file_nico_nico_proto_msgTypes[824] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57297,7 +57445,7 @@ func (x *ListComponentFirmwareVersionsResponse) ProtoReflect() protoreflect.Mess // Deprecated: Use ListComponentFirmwareVersionsResponse.ProtoReflect.Descriptor instead. func (*ListComponentFirmwareVersionsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{822} + return file_nico_nico_proto_rawDescGZIP(), []int{824} } func (x *ListComponentFirmwareVersionsResponse) GetDevices() []*DeviceFirmwareVersions { @@ -57319,7 +57467,7 @@ type SpxPartitionCreationRequest struct { func (x *SpxPartitionCreationRequest) Reset() { *x = SpxPartitionCreationRequest{} - mi := &file_nico_nico_proto_msgTypes[823] + mi := &file_nico_nico_proto_msgTypes[825] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57331,7 +57479,7 @@ func (x *SpxPartitionCreationRequest) String() string { func (*SpxPartitionCreationRequest) ProtoMessage() {} func (x *SpxPartitionCreationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[823] + mi := &file_nico_nico_proto_msgTypes[825] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57344,7 +57492,7 @@ func (x *SpxPartitionCreationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SpxPartitionCreationRequest.ProtoReflect.Descriptor instead. func (*SpxPartitionCreationRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{823} + return file_nico_nico_proto_rawDescGZIP(), []int{825} } func (x *SpxPartitionCreationRequest) GetMetadata() *Metadata { @@ -57387,7 +57535,7 @@ type SpxPartition struct { func (x *SpxPartition) Reset() { *x = SpxPartition{} - mi := &file_nico_nico_proto_msgTypes[824] + mi := &file_nico_nico_proto_msgTypes[826] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57399,7 +57547,7 @@ func (x *SpxPartition) String() string { func (*SpxPartition) ProtoMessage() {} func (x *SpxPartition) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[824] + mi := &file_nico_nico_proto_msgTypes[826] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57412,7 +57560,7 @@ func (x *SpxPartition) ProtoReflect() protoreflect.Message { // Deprecated: Use SpxPartition.ProtoReflect.Descriptor instead. func (*SpxPartition) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{824} + return file_nico_nico_proto_rawDescGZIP(), []int{826} } func (x *SpxPartition) GetMetadata() *Metadata { @@ -57452,7 +57600,7 @@ type SpxPartitionIdList struct { func (x *SpxPartitionIdList) Reset() { *x = SpxPartitionIdList{} - mi := &file_nico_nico_proto_msgTypes[825] + mi := &file_nico_nico_proto_msgTypes[827] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57464,7 +57612,7 @@ func (x *SpxPartitionIdList) String() string { func (*SpxPartitionIdList) ProtoMessage() {} func (x *SpxPartitionIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[825] + mi := &file_nico_nico_proto_msgTypes[827] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57477,7 +57625,7 @@ func (x *SpxPartitionIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use SpxPartitionIdList.ProtoReflect.Descriptor instead. func (*SpxPartitionIdList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{825} + return file_nico_nico_proto_rawDescGZIP(), []int{827} } func (x *SpxPartitionIdList) GetSpxPartitionIds() []*SpxPartitionId { @@ -57496,7 +57644,7 @@ type SpxPartitionDeletionRequest struct { func (x *SpxPartitionDeletionRequest) Reset() { *x = SpxPartitionDeletionRequest{} - mi := &file_nico_nico_proto_msgTypes[826] + mi := &file_nico_nico_proto_msgTypes[828] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57508,7 +57656,7 @@ func (x *SpxPartitionDeletionRequest) String() string { func (*SpxPartitionDeletionRequest) ProtoMessage() {} func (x *SpxPartitionDeletionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[826] + mi := &file_nico_nico_proto_msgTypes[828] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57521,7 +57669,7 @@ func (x *SpxPartitionDeletionRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SpxPartitionDeletionRequest.ProtoReflect.Descriptor instead. func (*SpxPartitionDeletionRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{826} + return file_nico_nico_proto_rawDescGZIP(), []int{828} } func (x *SpxPartitionDeletionRequest) GetId() *SpxPartitionId { @@ -57539,7 +57687,7 @@ type SpxPartitionDeletionResult struct { func (x *SpxPartitionDeletionResult) Reset() { *x = SpxPartitionDeletionResult{} - mi := &file_nico_nico_proto_msgTypes[827] + mi := &file_nico_nico_proto_msgTypes[829] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57551,7 +57699,7 @@ func (x *SpxPartitionDeletionResult) String() string { func (*SpxPartitionDeletionResult) ProtoMessage() {} func (x *SpxPartitionDeletionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[827] + mi := &file_nico_nico_proto_msgTypes[829] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57564,7 +57712,7 @@ func (x *SpxPartitionDeletionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use SpxPartitionDeletionResult.ProtoReflect.Descriptor instead. func (*SpxPartitionDeletionResult) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{827} + return file_nico_nico_proto_rawDescGZIP(), []int{829} } type SpxPartitionSearchFilter struct { @@ -57578,7 +57726,7 @@ type SpxPartitionSearchFilter struct { func (x *SpxPartitionSearchFilter) Reset() { *x = SpxPartitionSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[828] + mi := &file_nico_nico_proto_msgTypes[830] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57590,7 +57738,7 @@ func (x *SpxPartitionSearchFilter) String() string { func (*SpxPartitionSearchFilter) ProtoMessage() {} func (x *SpxPartitionSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[828] + mi := &file_nico_nico_proto_msgTypes[830] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57603,7 +57751,7 @@ func (x *SpxPartitionSearchFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use SpxPartitionSearchFilter.ProtoReflect.Descriptor instead. func (*SpxPartitionSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{828} + return file_nico_nico_proto_rawDescGZIP(), []int{830} } func (x *SpxPartitionSearchFilter) GetName() string { @@ -57636,7 +57784,7 @@ type SpxPartitionList struct { func (x *SpxPartitionList) Reset() { *x = SpxPartitionList{} - mi := &file_nico_nico_proto_msgTypes[829] + mi := &file_nico_nico_proto_msgTypes[831] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57648,7 +57796,7 @@ func (x *SpxPartitionList) String() string { func (*SpxPartitionList) ProtoMessage() {} func (x *SpxPartitionList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[829] + mi := &file_nico_nico_proto_msgTypes[831] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57661,7 +57809,7 @@ func (x *SpxPartitionList) ProtoReflect() protoreflect.Message { // Deprecated: Use SpxPartitionList.ProtoReflect.Descriptor instead. func (*SpxPartitionList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{829} + return file_nico_nico_proto_rawDescGZIP(), []int{831} } func (x *SpxPartitionList) GetSpxPartitions() []*SpxPartition { @@ -57680,7 +57828,7 @@ type SpxPartitionsByIdsRequest struct { func (x *SpxPartitionsByIdsRequest) Reset() { *x = SpxPartitionsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[830] + mi := &file_nico_nico_proto_msgTypes[832] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57692,7 +57840,7 @@ func (x *SpxPartitionsByIdsRequest) String() string { func (*SpxPartitionsByIdsRequest) ProtoMessage() {} func (x *SpxPartitionsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[830] + mi := &file_nico_nico_proto_msgTypes[832] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57705,7 +57853,7 @@ func (x *SpxPartitionsByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SpxPartitionsByIdsRequest.ProtoReflect.Descriptor instead. func (*SpxPartitionsByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{830} + return file_nico_nico_proto_rawDescGZIP(), []int{832} } func (x *SpxPartitionsByIdsRequest) GetSpxPartitionIds() []*SpxPartitionId { @@ -57728,7 +57876,7 @@ type AdminForceDeleteSwitchRequest struct { func (x *AdminForceDeleteSwitchRequest) Reset() { *x = AdminForceDeleteSwitchRequest{} - mi := &file_nico_nico_proto_msgTypes[831] + mi := &file_nico_nico_proto_msgTypes[833] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57740,7 +57888,7 @@ func (x *AdminForceDeleteSwitchRequest) String() string { func (*AdminForceDeleteSwitchRequest) ProtoMessage() {} func (x *AdminForceDeleteSwitchRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[831] + mi := &file_nico_nico_proto_msgTypes[833] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57753,7 +57901,7 @@ func (x *AdminForceDeleteSwitchRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminForceDeleteSwitchRequest.ProtoReflect.Descriptor instead. func (*AdminForceDeleteSwitchRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{831} + return file_nico_nico_proto_rawDescGZIP(), []int{833} } func (x *AdminForceDeleteSwitchRequest) GetSwitchId() *SwitchId { @@ -57782,7 +57930,7 @@ type AdminForceDeleteSwitchResponse struct { func (x *AdminForceDeleteSwitchResponse) Reset() { *x = AdminForceDeleteSwitchResponse{} - mi := &file_nico_nico_proto_msgTypes[832] + mi := &file_nico_nico_proto_msgTypes[834] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57794,7 +57942,7 @@ func (x *AdminForceDeleteSwitchResponse) String() string { func (*AdminForceDeleteSwitchResponse) ProtoMessage() {} func (x *AdminForceDeleteSwitchResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[832] + mi := &file_nico_nico_proto_msgTypes[834] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57807,7 +57955,7 @@ func (x *AdminForceDeleteSwitchResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminForceDeleteSwitchResponse.ProtoReflect.Descriptor instead. func (*AdminForceDeleteSwitchResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{832} + return file_nico_nico_proto_rawDescGZIP(), []int{834} } func (x *AdminForceDeleteSwitchResponse) GetSwitchId() string { @@ -57837,7 +57985,7 @@ type AdminForceDeletePowerShelfRequest struct { func (x *AdminForceDeletePowerShelfRequest) Reset() { *x = AdminForceDeletePowerShelfRequest{} - mi := &file_nico_nico_proto_msgTypes[833] + mi := &file_nico_nico_proto_msgTypes[835] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57849,7 +57997,7 @@ func (x *AdminForceDeletePowerShelfRequest) String() string { func (*AdminForceDeletePowerShelfRequest) ProtoMessage() {} func (x *AdminForceDeletePowerShelfRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[833] + mi := &file_nico_nico_proto_msgTypes[835] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57862,7 +58010,7 @@ func (x *AdminForceDeletePowerShelfRequest) ProtoReflect() protoreflect.Message // Deprecated: Use AdminForceDeletePowerShelfRequest.ProtoReflect.Descriptor instead. func (*AdminForceDeletePowerShelfRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{833} + return file_nico_nico_proto_rawDescGZIP(), []int{835} } func (x *AdminForceDeletePowerShelfRequest) GetPowerShelfId() *PowerShelfId { @@ -57891,7 +58039,7 @@ type AdminForceDeletePowerShelfResponse struct { func (x *AdminForceDeletePowerShelfResponse) Reset() { *x = AdminForceDeletePowerShelfResponse{} - mi := &file_nico_nico_proto_msgTypes[834] + mi := &file_nico_nico_proto_msgTypes[836] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57903,7 +58051,7 @@ func (x *AdminForceDeletePowerShelfResponse) String() string { func (*AdminForceDeletePowerShelfResponse) ProtoMessage() {} func (x *AdminForceDeletePowerShelfResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[834] + mi := &file_nico_nico_proto_msgTypes[836] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57916,7 +58064,7 @@ func (x *AdminForceDeletePowerShelfResponse) ProtoReflect() protoreflect.Message // Deprecated: Use AdminForceDeletePowerShelfResponse.ProtoReflect.Descriptor instead. func (*AdminForceDeletePowerShelfResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{834} + return file_nico_nico_proto_rawDescGZIP(), []int{836} } func (x *AdminForceDeletePowerShelfResponse) GetPowerShelfId() string { @@ -57960,7 +58108,7 @@ type OperatingSystem struct { func (x *OperatingSystem) Reset() { *x = OperatingSystem{} - mi := &file_nico_nico_proto_msgTypes[835] + mi := &file_nico_nico_proto_msgTypes[837] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57972,7 +58120,7 @@ func (x *OperatingSystem) String() string { func (*OperatingSystem) ProtoMessage() {} func (x *OperatingSystem) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[835] + mi := &file_nico_nico_proto_msgTypes[837] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57985,7 +58133,7 @@ func (x *OperatingSystem) ProtoReflect() protoreflect.Message { // Deprecated: Use OperatingSystem.ProtoReflect.Descriptor instead. func (*OperatingSystem) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{835} + return file_nico_nico_proto_rawDescGZIP(), []int{837} } func (x *OperatingSystem) GetId() *OperatingSystemId { @@ -58130,7 +58278,7 @@ type CreateOperatingSystemRequest struct { func (x *CreateOperatingSystemRequest) Reset() { *x = CreateOperatingSystemRequest{} - mi := &file_nico_nico_proto_msgTypes[836] + mi := &file_nico_nico_proto_msgTypes[838] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58142,7 +58290,7 @@ func (x *CreateOperatingSystemRequest) String() string { func (*CreateOperatingSystemRequest) ProtoMessage() {} func (x *CreateOperatingSystemRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[836] + mi := &file_nico_nico_proto_msgTypes[838] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58155,7 +58303,7 @@ func (x *CreateOperatingSystemRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateOperatingSystemRequest.ProtoReflect.Descriptor instead. func (*CreateOperatingSystemRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{836} + return file_nico_nico_proto_rawDescGZIP(), []int{838} } func (x *CreateOperatingSystemRequest) GetName() string { @@ -58253,7 +58401,7 @@ type IpxeTemplateParameters struct { func (x *IpxeTemplateParameters) Reset() { *x = IpxeTemplateParameters{} - mi := &file_nico_nico_proto_msgTypes[837] + mi := &file_nico_nico_proto_msgTypes[839] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58265,7 +58413,7 @@ func (x *IpxeTemplateParameters) String() string { func (*IpxeTemplateParameters) ProtoMessage() {} func (x *IpxeTemplateParameters) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[837] + mi := &file_nico_nico_proto_msgTypes[839] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58278,7 +58426,7 @@ func (x *IpxeTemplateParameters) ProtoReflect() protoreflect.Message { // Deprecated: Use IpxeTemplateParameters.ProtoReflect.Descriptor instead. func (*IpxeTemplateParameters) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{837} + return file_nico_nico_proto_rawDescGZIP(), []int{839} } func (x *IpxeTemplateParameters) GetItems() []*IpxeTemplateParameter { @@ -58298,7 +58446,7 @@ type IpxeTemplateArtifacts struct { func (x *IpxeTemplateArtifacts) Reset() { *x = IpxeTemplateArtifacts{} - mi := &file_nico_nico_proto_msgTypes[838] + mi := &file_nico_nico_proto_msgTypes[840] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58310,7 +58458,7 @@ func (x *IpxeTemplateArtifacts) String() string { func (*IpxeTemplateArtifacts) ProtoMessage() {} func (x *IpxeTemplateArtifacts) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[838] + mi := &file_nico_nico_proto_msgTypes[840] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58323,7 +58471,7 @@ func (x *IpxeTemplateArtifacts) ProtoReflect() protoreflect.Message { // Deprecated: Use IpxeTemplateArtifacts.ProtoReflect.Descriptor instead. func (*IpxeTemplateArtifacts) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{838} + return file_nico_nico_proto_rawDescGZIP(), []int{840} } func (x *IpxeTemplateArtifacts) GetItems() []*IpxeTemplateArtifact { @@ -58353,7 +58501,7 @@ type UpdateOperatingSystemRequest struct { func (x *UpdateOperatingSystemRequest) Reset() { *x = UpdateOperatingSystemRequest{} - mi := &file_nico_nico_proto_msgTypes[839] + mi := &file_nico_nico_proto_msgTypes[841] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58365,7 +58513,7 @@ func (x *UpdateOperatingSystemRequest) String() string { func (*UpdateOperatingSystemRequest) ProtoMessage() {} func (x *UpdateOperatingSystemRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[839] + mi := &file_nico_nico_proto_msgTypes[841] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58378,7 +58526,7 @@ func (x *UpdateOperatingSystemRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateOperatingSystemRequest.ProtoReflect.Descriptor instead. func (*UpdateOperatingSystemRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{839} + return file_nico_nico_proto_rawDescGZIP(), []int{841} } func (x *UpdateOperatingSystemRequest) GetId() *OperatingSystemId { @@ -58474,7 +58622,7 @@ type DeleteOperatingSystemRequest struct { func (x *DeleteOperatingSystemRequest) Reset() { *x = DeleteOperatingSystemRequest{} - mi := &file_nico_nico_proto_msgTypes[840] + mi := &file_nico_nico_proto_msgTypes[842] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58486,7 +58634,7 @@ func (x *DeleteOperatingSystemRequest) String() string { func (*DeleteOperatingSystemRequest) ProtoMessage() {} func (x *DeleteOperatingSystemRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[840] + mi := &file_nico_nico_proto_msgTypes[842] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58499,7 +58647,7 @@ func (x *DeleteOperatingSystemRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteOperatingSystemRequest.ProtoReflect.Descriptor instead. func (*DeleteOperatingSystemRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{840} + return file_nico_nico_proto_rawDescGZIP(), []int{842} } func (x *DeleteOperatingSystemRequest) GetId() *OperatingSystemId { @@ -58517,7 +58665,7 @@ type DeleteOperatingSystemResponse struct { func (x *DeleteOperatingSystemResponse) Reset() { *x = DeleteOperatingSystemResponse{} - mi := &file_nico_nico_proto_msgTypes[841] + mi := &file_nico_nico_proto_msgTypes[843] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58529,7 +58677,7 @@ func (x *DeleteOperatingSystemResponse) String() string { func (*DeleteOperatingSystemResponse) ProtoMessage() {} func (x *DeleteOperatingSystemResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[841] + mi := &file_nico_nico_proto_msgTypes[843] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58542,7 +58690,7 @@ func (x *DeleteOperatingSystemResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteOperatingSystemResponse.ProtoReflect.Descriptor instead. func (*DeleteOperatingSystemResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{841} + return file_nico_nico_proto_rawDescGZIP(), []int{843} } type OperatingSystemSearchFilter struct { @@ -58554,7 +58702,7 @@ type OperatingSystemSearchFilter struct { func (x *OperatingSystemSearchFilter) Reset() { *x = OperatingSystemSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[842] + mi := &file_nico_nico_proto_msgTypes[844] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58566,7 +58714,7 @@ func (x *OperatingSystemSearchFilter) String() string { func (*OperatingSystemSearchFilter) ProtoMessage() {} func (x *OperatingSystemSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[842] + mi := &file_nico_nico_proto_msgTypes[844] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58579,7 +58727,7 @@ func (x *OperatingSystemSearchFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use OperatingSystemSearchFilter.ProtoReflect.Descriptor instead. func (*OperatingSystemSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{842} + return file_nico_nico_proto_rawDescGZIP(), []int{844} } func (x *OperatingSystemSearchFilter) GetTenantOrganizationId() string { @@ -58598,7 +58746,7 @@ type OperatingSystemIdList struct { func (x *OperatingSystemIdList) Reset() { *x = OperatingSystemIdList{} - mi := &file_nico_nico_proto_msgTypes[843] + mi := &file_nico_nico_proto_msgTypes[845] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58610,7 +58758,7 @@ func (x *OperatingSystemIdList) String() string { func (*OperatingSystemIdList) ProtoMessage() {} func (x *OperatingSystemIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[843] + mi := &file_nico_nico_proto_msgTypes[845] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58623,7 +58771,7 @@ func (x *OperatingSystemIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use OperatingSystemIdList.ProtoReflect.Descriptor instead. func (*OperatingSystemIdList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{843} + return file_nico_nico_proto_rawDescGZIP(), []int{845} } func (x *OperatingSystemIdList) GetIds() []*OperatingSystemId { @@ -58642,7 +58790,7 @@ type OperatingSystemsByIdsRequest struct { func (x *OperatingSystemsByIdsRequest) Reset() { *x = OperatingSystemsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[844] + mi := &file_nico_nico_proto_msgTypes[846] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58654,7 +58802,7 @@ func (x *OperatingSystemsByIdsRequest) String() string { func (*OperatingSystemsByIdsRequest) ProtoMessage() {} func (x *OperatingSystemsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[844] + mi := &file_nico_nico_proto_msgTypes[846] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58667,7 +58815,7 @@ func (x *OperatingSystemsByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use OperatingSystemsByIdsRequest.ProtoReflect.Descriptor instead. func (*OperatingSystemsByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{844} + return file_nico_nico_proto_rawDescGZIP(), []int{846} } func (x *OperatingSystemsByIdsRequest) GetIds() []*OperatingSystemId { @@ -58686,7 +58834,7 @@ type OperatingSystemList struct { func (x *OperatingSystemList) Reset() { *x = OperatingSystemList{} - mi := &file_nico_nico_proto_msgTypes[845] + mi := &file_nico_nico_proto_msgTypes[847] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58698,7 +58846,7 @@ func (x *OperatingSystemList) String() string { func (*OperatingSystemList) ProtoMessage() {} func (x *OperatingSystemList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[845] + mi := &file_nico_nico_proto_msgTypes[847] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58711,7 +58859,7 @@ func (x *OperatingSystemList) ProtoReflect() protoreflect.Message { // Deprecated: Use OperatingSystemList.ProtoReflect.Descriptor instead. func (*OperatingSystemList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{845} + return file_nico_nico_proto_rawDescGZIP(), []int{847} } func (x *OperatingSystemList) GetOperatingSystems() []*OperatingSystem { @@ -58730,7 +58878,7 @@ type GetOperatingSystemCachableIpxeTemplateArtifactsRequest struct { func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) Reset() { *x = GetOperatingSystemCachableIpxeTemplateArtifactsRequest{} - mi := &file_nico_nico_proto_msgTypes[846] + mi := &file_nico_nico_proto_msgTypes[848] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58742,7 +58890,7 @@ func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) String() string func (*GetOperatingSystemCachableIpxeTemplateArtifactsRequest) ProtoMessage() {} func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[846] + mi := &file_nico_nico_proto_msgTypes[848] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58755,7 +58903,7 @@ func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) ProtoReflect() // Deprecated: Use GetOperatingSystemCachableIpxeTemplateArtifactsRequest.ProtoReflect.Descriptor instead. func (*GetOperatingSystemCachableIpxeTemplateArtifactsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{846} + return file_nico_nico_proto_rawDescGZIP(), []int{848} } func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) GetId() *OperatingSystemId { @@ -58774,7 +58922,7 @@ type IpxeTemplateArtifactList struct { func (x *IpxeTemplateArtifactList) Reset() { *x = IpxeTemplateArtifactList{} - mi := &file_nico_nico_proto_msgTypes[847] + mi := &file_nico_nico_proto_msgTypes[849] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58786,7 +58934,7 @@ func (x *IpxeTemplateArtifactList) String() string { func (*IpxeTemplateArtifactList) ProtoMessage() {} func (x *IpxeTemplateArtifactList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[847] + mi := &file_nico_nico_proto_msgTypes[849] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58799,7 +58947,7 @@ func (x *IpxeTemplateArtifactList) ProtoReflect() protoreflect.Message { // Deprecated: Use IpxeTemplateArtifactList.ProtoReflect.Descriptor instead. func (*IpxeTemplateArtifactList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{847} + return file_nico_nico_proto_rawDescGZIP(), []int{849} } func (x *IpxeTemplateArtifactList) GetArtifacts() []*IpxeTemplateArtifact { @@ -58821,7 +58969,7 @@ type IpxeTemplateArtifactUpdateRequest struct { func (x *IpxeTemplateArtifactUpdateRequest) Reset() { *x = IpxeTemplateArtifactUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[848] + mi := &file_nico_nico_proto_msgTypes[850] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58833,7 +58981,7 @@ func (x *IpxeTemplateArtifactUpdateRequest) String() string { func (*IpxeTemplateArtifactUpdateRequest) ProtoMessage() {} func (x *IpxeTemplateArtifactUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[848] + mi := &file_nico_nico_proto_msgTypes[850] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58846,7 +58994,7 @@ func (x *IpxeTemplateArtifactUpdateRequest) ProtoReflect() protoreflect.Message // Deprecated: Use IpxeTemplateArtifactUpdateRequest.ProtoReflect.Descriptor instead. func (*IpxeTemplateArtifactUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{848} + return file_nico_nico_proto_rawDescGZIP(), []int{850} } func (x *IpxeTemplateArtifactUpdateRequest) GetName() string { @@ -58873,7 +59021,7 @@ type UpdateOperatingSystemIpxeTemplateArtifactRequest struct { func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) Reset() { *x = UpdateOperatingSystemIpxeTemplateArtifactRequest{} - mi := &file_nico_nico_proto_msgTypes[849] + mi := &file_nico_nico_proto_msgTypes[851] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58885,7 +59033,7 @@ func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) String() string { func (*UpdateOperatingSystemIpxeTemplateArtifactRequest) ProtoMessage() {} func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[849] + mi := &file_nico_nico_proto_msgTypes[851] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58898,7 +59046,7 @@ func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) ProtoReflect() protor // Deprecated: Use UpdateOperatingSystemIpxeTemplateArtifactRequest.ProtoReflect.Descriptor instead. func (*UpdateOperatingSystemIpxeTemplateArtifactRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{849} + return file_nico_nico_proto_rawDescGZIP(), []int{851} } func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) GetId() *OperatingSystemId { @@ -58925,7 +59073,7 @@ type HostRepresentorInterceptBridging struct { func (x *HostRepresentorInterceptBridging) Reset() { *x = HostRepresentorInterceptBridging{} - mi := &file_nico_nico_proto_msgTypes[850] + mi := &file_nico_nico_proto_msgTypes[852] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58937,7 +59085,7 @@ func (x *HostRepresentorInterceptBridging) String() string { func (*HostRepresentorInterceptBridging) ProtoMessage() {} func (x *HostRepresentorInterceptBridging) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[850] + mi := &file_nico_nico_proto_msgTypes[852] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58950,7 +59098,7 @@ func (x *HostRepresentorInterceptBridging) ProtoReflect() protoreflect.Message { // Deprecated: Use HostRepresentorInterceptBridging.ProtoReflect.Descriptor instead. func (*HostRepresentorInterceptBridging) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{850} + return file_nico_nico_proto_rawDescGZIP(), []int{852} } func (x *HostRepresentorInterceptBridging) GetBridge() string { @@ -58981,7 +59129,7 @@ type ReWrapSecretsRequest struct { func (x *ReWrapSecretsRequest) Reset() { *x = ReWrapSecretsRequest{} - mi := &file_nico_nico_proto_msgTypes[851] + mi := &file_nico_nico_proto_msgTypes[853] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58993,7 +59141,7 @@ func (x *ReWrapSecretsRequest) String() string { func (*ReWrapSecretsRequest) ProtoMessage() {} func (x *ReWrapSecretsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[851] + mi := &file_nico_nico_proto_msgTypes[853] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59006,7 +59154,7 @@ func (x *ReWrapSecretsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ReWrapSecretsRequest.ProtoReflect.Descriptor instead. func (*ReWrapSecretsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{851} + return file_nico_nico_proto_rawDescGZIP(), []int{853} } func (x *ReWrapSecretsRequest) GetBatchSize() uint32 { @@ -59033,7 +59181,7 @@ type ReWrapSecretsResponse struct { func (x *ReWrapSecretsResponse) Reset() { *x = ReWrapSecretsResponse{} - mi := &file_nico_nico_proto_msgTypes[852] + mi := &file_nico_nico_proto_msgTypes[854] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59045,7 +59193,7 @@ func (x *ReWrapSecretsResponse) String() string { func (*ReWrapSecretsResponse) ProtoMessage() {} func (x *ReWrapSecretsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[852] + mi := &file_nico_nico_proto_msgTypes[854] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59058,7 +59206,7 @@ func (x *ReWrapSecretsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ReWrapSecretsResponse.ProtoReflect.Descriptor instead. func (*ReWrapSecretsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{852} + return file_nico_nico_proto_rawDescGZIP(), []int{854} } func (x *ReWrapSecretsResponse) GetReWrapped() uint64 { @@ -59091,7 +59239,7 @@ type GetMachineBootInterfacesRequest struct { func (x *GetMachineBootInterfacesRequest) Reset() { *x = GetMachineBootInterfacesRequest{} - mi := &file_nico_nico_proto_msgTypes[853] + mi := &file_nico_nico_proto_msgTypes[855] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59103,7 +59251,7 @@ func (x *GetMachineBootInterfacesRequest) String() string { func (*GetMachineBootInterfacesRequest) ProtoMessage() {} func (x *GetMachineBootInterfacesRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[853] + mi := &file_nico_nico_proto_msgTypes[855] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59116,7 +59264,7 @@ func (x *GetMachineBootInterfacesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetMachineBootInterfacesRequest.ProtoReflect.Descriptor instead. func (*GetMachineBootInterfacesRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{853} + return file_nico_nico_proto_rawDescGZIP(), []int{855} } func (x *GetMachineBootInterfacesRequest) GetMachineId() *MachineId { @@ -59141,7 +59289,7 @@ type MachineBootInterface struct { func (x *MachineBootInterface) Reset() { *x = MachineBootInterface{} - mi := &file_nico_nico_proto_msgTypes[854] + mi := &file_nico_nico_proto_msgTypes[856] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59153,7 +59301,7 @@ func (x *MachineBootInterface) String() string { func (*MachineBootInterface) ProtoMessage() {} func (x *MachineBootInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[854] + mi := &file_nico_nico_proto_msgTypes[856] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59166,7 +59314,7 @@ func (x *MachineBootInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineBootInterface.ProtoReflect.Descriptor instead. func (*MachineBootInterface) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{854} + return file_nico_nico_proto_rawDescGZIP(), []int{856} } func (x *MachineBootInterface) GetMacAddress() string { @@ -59204,7 +59352,7 @@ type MachineInterfaceBootInterface struct { func (x *MachineInterfaceBootInterface) Reset() { *x = MachineInterfaceBootInterface{} - mi := &file_nico_nico_proto_msgTypes[855] + mi := &file_nico_nico_proto_msgTypes[857] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59216,7 +59364,7 @@ func (x *MachineInterfaceBootInterface) String() string { func (*MachineInterfaceBootInterface) ProtoMessage() {} func (x *MachineInterfaceBootInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[855] + mi := &file_nico_nico_proto_msgTypes[857] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59229,7 +59377,7 @@ func (x *MachineInterfaceBootInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineInterfaceBootInterface.ProtoReflect.Descriptor instead. func (*MachineInterfaceBootInterface) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{855} + return file_nico_nico_proto_rawDescGZIP(), []int{857} } func (x *MachineInterfaceBootInterface) GetMacAddress() string { @@ -59282,7 +59430,7 @@ type PredictedBootInterface struct { func (x *PredictedBootInterface) Reset() { *x = PredictedBootInterface{} - mi := &file_nico_nico_proto_msgTypes[856] + mi := &file_nico_nico_proto_msgTypes[858] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59294,7 +59442,7 @@ func (x *PredictedBootInterface) String() string { func (*PredictedBootInterface) ProtoMessage() {} func (x *PredictedBootInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[856] + mi := &file_nico_nico_proto_msgTypes[858] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59307,7 +59455,7 @@ func (x *PredictedBootInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use PredictedBootInterface.ProtoReflect.Descriptor instead. func (*PredictedBootInterface) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{856} + return file_nico_nico_proto_rawDescGZIP(), []int{858} } func (x *PredictedBootInterface) GetMacAddress() string { @@ -59352,7 +59500,7 @@ type ExploredBootInterface struct { func (x *ExploredBootInterface) Reset() { *x = ExploredBootInterface{} - mi := &file_nico_nico_proto_msgTypes[857] + mi := &file_nico_nico_proto_msgTypes[859] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59364,7 +59512,7 @@ func (x *ExploredBootInterface) String() string { func (*ExploredBootInterface) ProtoMessage() {} func (x *ExploredBootInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[857] + mi := &file_nico_nico_proto_msgTypes[859] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59377,7 +59525,7 @@ func (x *ExploredBootInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use ExploredBootInterface.ProtoReflect.Descriptor instead. func (*ExploredBootInterface) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{857} + return file_nico_nico_proto_rawDescGZIP(), []int{859} } func (x *ExploredBootInterface) GetAddress() string { @@ -59415,7 +59563,7 @@ type RetainedBootInterface struct { func (x *RetainedBootInterface) Reset() { *x = RetainedBootInterface{} - mi := &file_nico_nico_proto_msgTypes[858] + mi := &file_nico_nico_proto_msgTypes[860] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59427,7 +59575,7 @@ func (x *RetainedBootInterface) String() string { func (*RetainedBootInterface) ProtoMessage() {} func (x *RetainedBootInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[858] + mi := &file_nico_nico_proto_msgTypes[860] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59440,7 +59588,7 @@ func (x *RetainedBootInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use RetainedBootInterface.ProtoReflect.Descriptor instead. func (*RetainedBootInterface) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{858} + return file_nico_nico_proto_rawDescGZIP(), []int{860} } func (x *RetainedBootInterface) GetMacAddress() string { @@ -59501,7 +59649,7 @@ type GetMachineBootInterfacesResponse struct { func (x *GetMachineBootInterfacesResponse) Reset() { *x = GetMachineBootInterfacesResponse{} - mi := &file_nico_nico_proto_msgTypes[859] + mi := &file_nico_nico_proto_msgTypes[861] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59513,7 +59661,7 @@ func (x *GetMachineBootInterfacesResponse) String() string { func (*GetMachineBootInterfacesResponse) ProtoMessage() {} func (x *GetMachineBootInterfacesResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[859] + mi := &file_nico_nico_proto_msgTypes[861] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59526,7 +59674,7 @@ func (x *GetMachineBootInterfacesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetMachineBootInterfacesResponse.ProtoReflect.Descriptor instead. func (*GetMachineBootInterfacesResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{859} + return file_nico_nico_proto_rawDescGZIP(), []int{861} } func (x *GetMachineBootInterfacesResponse) GetMachineId() *MachineId { @@ -59610,7 +59758,7 @@ type DNSMessage_DNSQuestion struct { func (x *DNSMessage_DNSQuestion) Reset() { *x = DNSMessage_DNSQuestion{} - mi := &file_nico_nico_proto_msgTypes[861] + mi := &file_nico_nico_proto_msgTypes[863] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59622,7 +59770,7 @@ func (x *DNSMessage_DNSQuestion) String() string { func (*DNSMessage_DNSQuestion) ProtoMessage() {} func (x *DNSMessage_DNSQuestion) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[861] + mi := &file_nico_nico_proto_msgTypes[863] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59668,7 +59816,7 @@ type DNSMessage_DNSResponse struct { func (x *DNSMessage_DNSResponse) Reset() { *x = DNSMessage_DNSResponse{} - mi := &file_nico_nico_proto_msgTypes[862] + mi := &file_nico_nico_proto_msgTypes[864] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59680,7 +59828,7 @@ func (x *DNSMessage_DNSResponse) String() string { func (*DNSMessage_DNSResponse) ProtoMessage() {} func (x *DNSMessage_DNSResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[862] + mi := &file_nico_nico_proto_msgTypes[864] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59712,7 +59860,7 @@ type DNSMessage_DNSResponse_DNSRR struct { func (x *DNSMessage_DNSResponse_DNSRR) Reset() { *x = DNSMessage_DNSResponse_DNSRR{} - mi := &file_nico_nico_proto_msgTypes[863] + mi := &file_nico_nico_proto_msgTypes[865] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59724,7 +59872,7 @@ func (x *DNSMessage_DNSResponse_DNSRR) String() string { func (*DNSMessage_DNSResponse_DNSRR) ProtoMessage() {} func (x *DNSMessage_DNSResponse_DNSRR) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[863] + mi := &file_nico_nico_proto_msgTypes[865] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59758,7 +59906,7 @@ type MachineCredentialsUpdateRequest_Credentials struct { func (x *MachineCredentialsUpdateRequest_Credentials) Reset() { *x = MachineCredentialsUpdateRequest_Credentials{} - mi := &file_nico_nico_proto_msgTypes[869] + mi := &file_nico_nico_proto_msgTypes[871] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59770,7 +59918,7 @@ func (x *MachineCredentialsUpdateRequest_Credentials) String() string { func (*MachineCredentialsUpdateRequest_Credentials) ProtoMessage() {} func (x *MachineCredentialsUpdateRequest_Credentials) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[869] + mi := &file_nico_nico_proto_msgTypes[871] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59783,7 +59931,7 @@ func (x *MachineCredentialsUpdateRequest_Credentials) ProtoReflect() protoreflec // Deprecated: Use MachineCredentialsUpdateRequest_Credentials.ProtoReflect.Descriptor instead. func (*MachineCredentialsUpdateRequest_Credentials) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{336, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{338, 0} } func (x *MachineCredentialsUpdateRequest_Credentials) GetUser() string { @@ -59817,7 +59965,7 @@ type ForgeAgentControlResponse_ForgeAgentControlExtraInfo struct { func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo) Reset() { *x = ForgeAgentControlResponse_ForgeAgentControlExtraInfo{} - mi := &file_nico_nico_proto_msgTypes[870] + mi := &file_nico_nico_proto_msgTypes[872] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59829,7 +59977,7 @@ func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo) String() string { func (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo) ProtoMessage() {} func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[870] + mi := &file_nico_nico_proto_msgTypes[872] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59842,7 +59990,7 @@ func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo) ProtoReflect() pr // Deprecated: Use ForgeAgentControlResponse_ForgeAgentControlExtraInfo.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 0} } func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo) GetPair() []*ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair { @@ -59860,7 +60008,7 @@ type ForgeAgentControlResponse_Noop struct { func (x *ForgeAgentControlResponse_Noop) Reset() { *x = ForgeAgentControlResponse_Noop{} - mi := &file_nico_nico_proto_msgTypes[871] + mi := &file_nico_nico_proto_msgTypes[873] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59872,7 +60020,7 @@ func (x *ForgeAgentControlResponse_Noop) String() string { func (*ForgeAgentControlResponse_Noop) ProtoMessage() {} func (x *ForgeAgentControlResponse_Noop) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[871] + mi := &file_nico_nico_proto_msgTypes[873] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59885,7 +60033,7 @@ func (x *ForgeAgentControlResponse_Noop) ProtoReflect() protoreflect.Message { // Deprecated: Use ForgeAgentControlResponse_Noop.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_Noop) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 1} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 1} } type ForgeAgentControlResponse_Reset struct { @@ -59896,7 +60044,7 @@ type ForgeAgentControlResponse_Reset struct { func (x *ForgeAgentControlResponse_Reset) Reset() { *x = ForgeAgentControlResponse_Reset{} - mi := &file_nico_nico_proto_msgTypes[872] + mi := &file_nico_nico_proto_msgTypes[874] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59908,7 +60056,7 @@ func (x *ForgeAgentControlResponse_Reset) String() string { func (*ForgeAgentControlResponse_Reset) ProtoMessage() {} func (x *ForgeAgentControlResponse_Reset) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[872] + mi := &file_nico_nico_proto_msgTypes[874] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59921,7 +60069,7 @@ func (x *ForgeAgentControlResponse_Reset) ProtoReflect() protoreflect.Message { // Deprecated: Use ForgeAgentControlResponse_Reset.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_Reset) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 2} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 2} } type ForgeAgentControlResponse_Discovery struct { @@ -59932,7 +60080,7 @@ type ForgeAgentControlResponse_Discovery struct { func (x *ForgeAgentControlResponse_Discovery) Reset() { *x = ForgeAgentControlResponse_Discovery{} - mi := &file_nico_nico_proto_msgTypes[873] + mi := &file_nico_nico_proto_msgTypes[875] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59944,7 +60092,7 @@ func (x *ForgeAgentControlResponse_Discovery) String() string { func (*ForgeAgentControlResponse_Discovery) ProtoMessage() {} func (x *ForgeAgentControlResponse_Discovery) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[873] + mi := &file_nico_nico_proto_msgTypes[875] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59957,7 +60105,7 @@ func (x *ForgeAgentControlResponse_Discovery) ProtoReflect() protoreflect.Messag // Deprecated: Use ForgeAgentControlResponse_Discovery.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_Discovery) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 3} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 3} } type ForgeAgentControlResponse_Rebuild struct { @@ -59968,7 +60116,7 @@ type ForgeAgentControlResponse_Rebuild struct { func (x *ForgeAgentControlResponse_Rebuild) Reset() { *x = ForgeAgentControlResponse_Rebuild{} - mi := &file_nico_nico_proto_msgTypes[874] + mi := &file_nico_nico_proto_msgTypes[876] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59980,7 +60128,7 @@ func (x *ForgeAgentControlResponse_Rebuild) String() string { func (*ForgeAgentControlResponse_Rebuild) ProtoMessage() {} func (x *ForgeAgentControlResponse_Rebuild) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[874] + mi := &file_nico_nico_proto_msgTypes[876] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59993,7 +60141,7 @@ func (x *ForgeAgentControlResponse_Rebuild) ProtoReflect() protoreflect.Message // Deprecated: Use ForgeAgentControlResponse_Rebuild.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_Rebuild) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 4} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 4} } type ForgeAgentControlResponse_Retry struct { @@ -60004,7 +60152,7 @@ type ForgeAgentControlResponse_Retry struct { func (x *ForgeAgentControlResponse_Retry) Reset() { *x = ForgeAgentControlResponse_Retry{} - mi := &file_nico_nico_proto_msgTypes[875] + mi := &file_nico_nico_proto_msgTypes[877] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60016,7 +60164,7 @@ func (x *ForgeAgentControlResponse_Retry) String() string { func (*ForgeAgentControlResponse_Retry) ProtoMessage() {} func (x *ForgeAgentControlResponse_Retry) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[875] + mi := &file_nico_nico_proto_msgTypes[877] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60029,7 +60177,7 @@ func (x *ForgeAgentControlResponse_Retry) ProtoReflect() protoreflect.Message { // Deprecated: Use ForgeAgentControlResponse_Retry.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_Retry) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 5} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 5} } type ForgeAgentControlResponse_Measure struct { @@ -60040,7 +60188,7 @@ type ForgeAgentControlResponse_Measure struct { func (x *ForgeAgentControlResponse_Measure) Reset() { *x = ForgeAgentControlResponse_Measure{} - mi := &file_nico_nico_proto_msgTypes[876] + mi := &file_nico_nico_proto_msgTypes[878] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60052,7 +60200,7 @@ func (x *ForgeAgentControlResponse_Measure) String() string { func (*ForgeAgentControlResponse_Measure) ProtoMessage() {} func (x *ForgeAgentControlResponse_Measure) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[876] + mi := &file_nico_nico_proto_msgTypes[878] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60065,7 +60213,7 @@ func (x *ForgeAgentControlResponse_Measure) ProtoReflect() protoreflect.Message // Deprecated: Use ForgeAgentControlResponse_Measure.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_Measure) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 6} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 6} } type ForgeAgentControlResponse_LogError struct { @@ -60076,7 +60224,7 @@ type ForgeAgentControlResponse_LogError struct { func (x *ForgeAgentControlResponse_LogError) Reset() { *x = ForgeAgentControlResponse_LogError{} - mi := &file_nico_nico_proto_msgTypes[877] + mi := &file_nico_nico_proto_msgTypes[879] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60088,7 +60236,7 @@ func (x *ForgeAgentControlResponse_LogError) String() string { func (*ForgeAgentControlResponse_LogError) ProtoMessage() {} func (x *ForgeAgentControlResponse_LogError) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[877] + mi := &file_nico_nico_proto_msgTypes[879] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60101,7 +60249,7 @@ func (x *ForgeAgentControlResponse_LogError) ProtoReflect() protoreflect.Message // Deprecated: Use ForgeAgentControlResponse_LogError.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_LogError) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 7} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 7} } type ForgeAgentControlResponse_MachineValidation struct { @@ -60116,7 +60264,7 @@ type ForgeAgentControlResponse_MachineValidation struct { func (x *ForgeAgentControlResponse_MachineValidation) Reset() { *x = ForgeAgentControlResponse_MachineValidation{} - mi := &file_nico_nico_proto_msgTypes[878] + mi := &file_nico_nico_proto_msgTypes[880] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60128,7 +60276,7 @@ func (x *ForgeAgentControlResponse_MachineValidation) String() string { func (*ForgeAgentControlResponse_MachineValidation) ProtoMessage() {} func (x *ForgeAgentControlResponse_MachineValidation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[878] + mi := &file_nico_nico_proto_msgTypes[880] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60141,7 +60289,7 @@ func (x *ForgeAgentControlResponse_MachineValidation) ProtoReflect() protoreflec // Deprecated: Use ForgeAgentControlResponse_MachineValidation.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_MachineValidation) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 8} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 8} } func (x *ForgeAgentControlResponse_MachineValidation) GetIsEnabled() bool { @@ -60184,7 +60332,7 @@ type ForgeAgentControlResponse_MachineValidationFilter struct { func (x *ForgeAgentControlResponse_MachineValidationFilter) Reset() { *x = ForgeAgentControlResponse_MachineValidationFilter{} - mi := &file_nico_nico_proto_msgTypes[879] + mi := &file_nico_nico_proto_msgTypes[881] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60196,7 +60344,7 @@ func (x *ForgeAgentControlResponse_MachineValidationFilter) String() string { func (*ForgeAgentControlResponse_MachineValidationFilter) ProtoMessage() {} func (x *ForgeAgentControlResponse_MachineValidationFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[879] + mi := &file_nico_nico_proto_msgTypes[881] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60209,7 +60357,7 @@ func (x *ForgeAgentControlResponse_MachineValidationFilter) ProtoReflect() proto // Deprecated: Use ForgeAgentControlResponse_MachineValidationFilter.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_MachineValidationFilter) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 9} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 9} } func (x *ForgeAgentControlResponse_MachineValidationFilter) GetTags() []string { @@ -60249,7 +60397,7 @@ type ForgeAgentControlResponse_MlxAction struct { func (x *ForgeAgentControlResponse_MlxAction) Reset() { *x = ForgeAgentControlResponse_MlxAction{} - mi := &file_nico_nico_proto_msgTypes[880] + mi := &file_nico_nico_proto_msgTypes[882] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60261,7 +60409,7 @@ func (x *ForgeAgentControlResponse_MlxAction) String() string { func (*ForgeAgentControlResponse_MlxAction) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxAction) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[880] + mi := &file_nico_nico_proto_msgTypes[882] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60274,7 +60422,7 @@ func (x *ForgeAgentControlResponse_MlxAction) ProtoReflect() protoreflect.Messag // Deprecated: Use ForgeAgentControlResponse_MlxAction.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_MlxAction) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 10} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 10} } func (x *ForgeAgentControlResponse_MlxAction) GetDeviceActions() []*ForgeAgentControlResponse_MlxDeviceAction { @@ -60301,7 +60449,7 @@ type ForgeAgentControlResponse_MlxDeviceAction struct { func (x *ForgeAgentControlResponse_MlxDeviceAction) Reset() { *x = ForgeAgentControlResponse_MlxDeviceAction{} - mi := &file_nico_nico_proto_msgTypes[881] + mi := &file_nico_nico_proto_msgTypes[883] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60313,7 +60461,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceAction) String() string { func (*ForgeAgentControlResponse_MlxDeviceAction) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceAction) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[881] + mi := &file_nico_nico_proto_msgTypes[883] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60326,7 +60474,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceAction) ProtoReflect() protoreflect. // Deprecated: Use ForgeAgentControlResponse_MlxDeviceAction.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_MlxDeviceAction) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 11} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 11} } func (x *ForgeAgentControlResponse_MlxDeviceAction) GetPciName() string { @@ -60435,7 +60583,7 @@ type ForgeAgentControlResponse_MlxDeviceNoop struct { func (x *ForgeAgentControlResponse_MlxDeviceNoop) Reset() { *x = ForgeAgentControlResponse_MlxDeviceNoop{} - mi := &file_nico_nico_proto_msgTypes[882] + mi := &file_nico_nico_proto_msgTypes[884] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60447,7 +60595,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceNoop) String() string { func (*ForgeAgentControlResponse_MlxDeviceNoop) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceNoop) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[882] + mi := &file_nico_nico_proto_msgTypes[884] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60460,7 +60608,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceNoop) ProtoReflect() protoreflect.Me // Deprecated: Use ForgeAgentControlResponse_MlxDeviceNoop.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_MlxDeviceNoop) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 12} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 12} } type ForgeAgentControlResponse_MlxDeviceLock struct { @@ -60472,7 +60620,7 @@ type ForgeAgentControlResponse_MlxDeviceLock struct { func (x *ForgeAgentControlResponse_MlxDeviceLock) Reset() { *x = ForgeAgentControlResponse_MlxDeviceLock{} - mi := &file_nico_nico_proto_msgTypes[883] + mi := &file_nico_nico_proto_msgTypes[885] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60484,7 +60632,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceLock) String() string { func (*ForgeAgentControlResponse_MlxDeviceLock) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceLock) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[883] + mi := &file_nico_nico_proto_msgTypes[885] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60497,7 +60645,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceLock) ProtoReflect() protoreflect.Me // Deprecated: Use ForgeAgentControlResponse_MlxDeviceLock.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_MlxDeviceLock) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 13} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 13} } func (x *ForgeAgentControlResponse_MlxDeviceLock) GetKey() string { @@ -60516,7 +60664,7 @@ type ForgeAgentControlResponse_MlxDeviceUnlock struct { func (x *ForgeAgentControlResponse_MlxDeviceUnlock) Reset() { *x = ForgeAgentControlResponse_MlxDeviceUnlock{} - mi := &file_nico_nico_proto_msgTypes[884] + mi := &file_nico_nico_proto_msgTypes[886] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60528,7 +60676,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceUnlock) String() string { func (*ForgeAgentControlResponse_MlxDeviceUnlock) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceUnlock) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[884] + mi := &file_nico_nico_proto_msgTypes[886] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60541,7 +60689,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceUnlock) ProtoReflect() protoreflect. // Deprecated: Use ForgeAgentControlResponse_MlxDeviceUnlock.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_MlxDeviceUnlock) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 14} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 14} } func (x *ForgeAgentControlResponse_MlxDeviceUnlock) GetKey() string { @@ -60560,7 +60708,7 @@ type ForgeAgentControlResponse_MlxDeviceApplyProfile struct { func (x *ForgeAgentControlResponse_MlxDeviceApplyProfile) Reset() { *x = ForgeAgentControlResponse_MlxDeviceApplyProfile{} - mi := &file_nico_nico_proto_msgTypes[885] + mi := &file_nico_nico_proto_msgTypes[887] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60572,7 +60720,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceApplyProfile) String() string { func (*ForgeAgentControlResponse_MlxDeviceApplyProfile) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceApplyProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[885] + mi := &file_nico_nico_proto_msgTypes[887] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60585,7 +60733,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceApplyProfile) ProtoReflect() protore // Deprecated: Use ForgeAgentControlResponse_MlxDeviceApplyProfile.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_MlxDeviceApplyProfile) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 15} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 15} } func (x *ForgeAgentControlResponse_MlxDeviceApplyProfile) GetSerializedProfile() *SerializableMlxConfigProfile { @@ -60604,7 +60752,7 @@ type ForgeAgentControlResponse_MlxDeviceApplyFirmware struct { func (x *ForgeAgentControlResponse_MlxDeviceApplyFirmware) Reset() { *x = ForgeAgentControlResponse_MlxDeviceApplyFirmware{} - mi := &file_nico_nico_proto_msgTypes[886] + mi := &file_nico_nico_proto_msgTypes[888] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60616,7 +60764,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceApplyFirmware) String() string { func (*ForgeAgentControlResponse_MlxDeviceApplyFirmware) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceApplyFirmware) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[886] + mi := &file_nico_nico_proto_msgTypes[888] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60629,7 +60777,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceApplyFirmware) ProtoReflect() protor // Deprecated: Use ForgeAgentControlResponse_MlxDeviceApplyFirmware.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_MlxDeviceApplyFirmware) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 16} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 16} } func (x *ForgeAgentControlResponse_MlxDeviceApplyFirmware) GetProfile() *FirmwareFlasherProfile { @@ -60648,7 +60796,7 @@ type ForgeAgentControlResponse_FirmwareUpgrade struct { func (x *ForgeAgentControlResponse_FirmwareUpgrade) Reset() { *x = ForgeAgentControlResponse_FirmwareUpgrade{} - mi := &file_nico_nico_proto_msgTypes[887] + mi := &file_nico_nico_proto_msgTypes[889] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60660,7 +60808,7 @@ func (x *ForgeAgentControlResponse_FirmwareUpgrade) String() string { func (*ForgeAgentControlResponse_FirmwareUpgrade) ProtoMessage() {} func (x *ForgeAgentControlResponse_FirmwareUpgrade) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[887] + mi := &file_nico_nico_proto_msgTypes[889] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60673,7 +60821,7 @@ func (x *ForgeAgentControlResponse_FirmwareUpgrade) ProtoReflect() protoreflect. // Deprecated: Use ForgeAgentControlResponse_FirmwareUpgrade.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_FirmwareUpgrade) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 17} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 17} } func (x *ForgeAgentControlResponse_FirmwareUpgrade) GetTask() *ScoutFirmwareUpgradeTask { @@ -60693,7 +60841,7 @@ type ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair struct { func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair) Reset() { *x = ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair{} - mi := &file_nico_nico_proto_msgTypes[888] + mi := &file_nico_nico_proto_msgTypes[890] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60705,7 +60853,7 @@ func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair) Stri func (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair) ProtoMessage() {} func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[888] + mi := &file_nico_nico_proto_msgTypes[890] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60718,7 +60866,7 @@ func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair) Prot // Deprecated: Use ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{339, 0, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{341, 0, 0} } func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair) GetKey() string { @@ -60746,7 +60894,7 @@ type MachineCleanupInfo_CleanupStepResult struct { func (x *MachineCleanupInfo_CleanupStepResult) Reset() { *x = MachineCleanupInfo_CleanupStepResult{} - mi := &file_nico_nico_proto_msgTypes[889] + mi := &file_nico_nico_proto_msgTypes[891] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60758,7 +60906,7 @@ func (x *MachineCleanupInfo_CleanupStepResult) String() string { func (*MachineCleanupInfo_CleanupStepResult) ProtoMessage() {} func (x *MachineCleanupInfo_CleanupStepResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[889] + mi := &file_nico_nico_proto_msgTypes[891] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60771,7 +60919,7 @@ func (x *MachineCleanupInfo_CleanupStepResult) ProtoReflect() protoreflect.Messa // Deprecated: Use MachineCleanupInfo_CleanupStepResult.ProtoReflect.Descriptor instead. func (*MachineCleanupInfo_CleanupStepResult) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{342, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{344, 0} } func (x *MachineCleanupInfo_CleanupStepResult) GetResult() MachineCleanupInfo_CleanupResult { @@ -60803,7 +60951,7 @@ type DpuReprovisioningListResponse_DpuReprovisioningListItem struct { func (x *DpuReprovisioningListResponse_DpuReprovisioningListItem) Reset() { *x = DpuReprovisioningListResponse_DpuReprovisioningListItem{} - mi := &file_nico_nico_proto_msgTypes[890] + mi := &file_nico_nico_proto_msgTypes[892] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60815,7 +60963,7 @@ func (x *DpuReprovisioningListResponse_DpuReprovisioningListItem) String() strin func (*DpuReprovisioningListResponse_DpuReprovisioningListItem) ProtoMessage() {} func (x *DpuReprovisioningListResponse_DpuReprovisioningListItem) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[890] + mi := &file_nico_nico_proto_msgTypes[892] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60828,7 +60976,7 @@ func (x *DpuReprovisioningListResponse_DpuReprovisioningListItem) ProtoReflect() // Deprecated: Use DpuReprovisioningListResponse_DpuReprovisioningListItem.ProtoReflect.Descriptor instead. func (*DpuReprovisioningListResponse_DpuReprovisioningListItem) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{424, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{426, 0} } func (x *DpuReprovisioningListResponse_DpuReprovisioningListItem) GetId() *MachineId { @@ -60894,7 +61042,7 @@ type HostReprovisioningListResponse_HostReprovisioningListItem struct { func (x *HostReprovisioningListResponse_HostReprovisioningListItem) Reset() { *x = HostReprovisioningListResponse_HostReprovisioningListItem{} - mi := &file_nico_nico_proto_msgTypes[891] + mi := &file_nico_nico_proto_msgTypes[893] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60906,7 +61054,7 @@ func (x *HostReprovisioningListResponse_HostReprovisioningListItem) String() str func (*HostReprovisioningListResponse_HostReprovisioningListItem) ProtoMessage() {} func (x *HostReprovisioningListResponse_HostReprovisioningListItem) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[891] + mi := &file_nico_nico_proto_msgTypes[893] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60919,7 +61067,7 @@ func (x *HostReprovisioningListResponse_HostReprovisioningListItem) ProtoReflect // Deprecated: Use HostReprovisioningListResponse_HostReprovisioningListItem.ProtoReflect.Descriptor instead. func (*HostReprovisioningListResponse_HostReprovisioningListItem) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{427, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{429, 0} } func (x *HostReprovisioningListResponse_HostReprovisioningListItem) GetId() *MachineId { @@ -60990,7 +61138,7 @@ type MachineValidationTestUpdateRequest_Payload struct { func (x *MachineValidationTestUpdateRequest_Payload) Reset() { *x = MachineValidationTestUpdateRequest_Payload{} - mi := &file_nico_nico_proto_msgTypes[892] + mi := &file_nico_nico_proto_msgTypes[894] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -61002,7 +61150,7 @@ func (x *MachineValidationTestUpdateRequest_Payload) String() string { func (*MachineValidationTestUpdateRequest_Payload) ProtoMessage() {} func (x *MachineValidationTestUpdateRequest_Payload) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[892] + mi := &file_nico_nico_proto_msgTypes[894] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -61015,7 +61163,7 @@ func (x *MachineValidationTestUpdateRequest_Payload) ProtoReflect() protoreflect // Deprecated: Use MachineValidationTestUpdateRequest_Payload.ProtoReflect.Descriptor instead. func (*MachineValidationTestUpdateRequest_Payload) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{523, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{525, 0} } func (x *MachineValidationTestUpdateRequest_Payload) GetName() string { @@ -61155,7 +61303,7 @@ type DPFStateResponse_DPFState struct { func (x *DPFStateResponse_DPFState) Reset() { *x = DPFStateResponse_DPFState{} - mi := &file_nico_nico_proto_msgTypes[898] + mi := &file_nico_nico_proto_msgTypes[900] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -61167,7 +61315,7 @@ func (x *DPFStateResponse_DPFState) String() string { func (*DPFStateResponse_DPFState) ProtoMessage() {} func (x *DPFStateResponse_DPFState) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[898] + mi := &file_nico_nico_proto_msgTypes[900] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -61180,7 +61328,7 @@ func (x *DPFStateResponse_DPFState) ProtoReflect() protoreflect.Message { // Deprecated: Use DPFStateResponse_DPFState.ProtoReflect.Descriptor instead. func (*DPFStateResponse_DPFState) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{793, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{795, 0} } func (x *DPFStateResponse_DPFState) GetMachineId() *MachineId { @@ -62643,21 +62791,36 @@ const file_nico_nico_proto_rawDesc = "" + "\x0fallocation_type\x18\x02 \x01(\tR\x0eallocationType\"\x96\x01\n" + "\x1eFindInterfaceAddressesResponse\x12=\n" + "\finterface_id\x18\x01 \x01(\v2\x1a.common.MachineInterfaceIdR\vinterfaceId\x125\n" + - "\taddresses\x18\x02 \x03(\v2\x17.forge.InterfaceAddressR\taddresses\"\xc2\x02\n" + + "\taddresses\x18\x02 \x03(\v2\x17.forge.InterfaceAddressR\taddresses\"\xc6\x02\n" + "\aBmcInfo\x12\x13\n" + "\x02ip\x18\x01 \x01(\tH\x00R\x02ip\x88\x01\x01\x12\x15\n" + "\x03mac\x18\x02 \x01(\tH\x01R\x03mac\x88\x01\x01\x12\x1d\n" + "\aversion\x18\x03 \x01(\tH\x02R\aversion\x88\x01\x01\x12.\n" + "\x10firmware_version\x18\x04 \x01(\tH\x03R\x0ffirmwareVersion\x88\x01\x01\x12\x17\n" + "\x04port\x18\x05 \x01(\rH\x04R\x04port\x88\x01\x01\x12Q\n" + - "\x14machine_interface_id\x18\x06 \x01(\v2\x1a.common.MachineInterfaceIdH\x05R\x12machineInterfaceId\x88\x01\x01B\x05\n" + + "\x14machine_interface_id\x18\x06 \x01(\v2\x1a.common.MachineInterfaceIdH\x05R\x12machineInterfaceId\x88\x01\x01:\x02\x18\x01B\x05\n" + "\x03_ipB\x06\n" + "\x04_macB\n" + "\n" + "\b_versionB\x13\n" + "\x11_firmware_versionB\a\n" + "\x05_portB\x17\n" + - "\x15_machine_interface_id\"m\n" + + "\x15_machine_interface_id\"\xd6\x01\n" + + "\vBmcEndpoint\x12\x13\n" + + "\x02ip\x18\x01 \x01(\tH\x00R\x02ip\x88\x01\x01\x12\x15\n" + + "\x03mac\x18\x02 \x01(\tH\x01R\x03mac\x88\x01\x01\x12\x17\n" + + "\x04port\x18\x03 \x01(\rH\x02R\x04port\x88\x01\x01\x12Q\n" + + "\x14machine_interface_id\x18\x04 \x01(\v2\x1a.common.MachineInterfaceIdH\x03R\x12machineInterfaceId\x88\x01\x01B\x05\n" + + "\x03_ipB\x06\n" + + "\x04_macB\a\n" + + "\x05_portB\x17\n" + + "\x15_machine_interface_id\"{\n" + + "\tBmcStatus\x12\x1d\n" + + "\aversion\x18\x02 \x01(\tH\x00R\aversion\x88\x01\x01\x12.\n" + + "\x10firmware_version\x18\x03 \x01(\tH\x01R\x0ffirmwareVersion\x88\x01\x01B\n" + + "\n" + + "\b_versionB\x13\n" + + "\x11_firmware_version\"m\n" + "\x0eSwitchNvosInfo\x12\x13\n" + "\x02ip\x18\x01 \x01(\tH\x00R\x02ip\x88\x01\x01\x12\x15\n" + "\x03mac\x18\x02 \x01(\tH\x01R\x03mac\x88\x01\x01\x12\x17\n" + @@ -62677,7 +62840,7 @@ const file_nico_nico_proto_rawDesc = "" + "\x14_firmware_autoupdateB\x13\n" + "\x11_instance_type_idB\x06\n" + "\x04_dpfB\t\n" + - "\a_hw_sku\"\x82\x0f\n" + + "\a_hw_sku\"\xc7\x0f\n" + "\rMachineStatus\x127\n" + "\n" + "interfaces\x18\x01 \x03(\v2\x17.forge.MachineInterfaceR\n" + @@ -62711,7 +62874,9 @@ const file_nico_nico_proto_rawDesc = "" + "\x03spx\x18\x15 \x01(\v2\".forge.MachineSpxStatusObservationH\fR\x03spx\x88\x01\x01\x12B\n" + "\x1blast_scout_observed_version\x18\x16 \x01(\tH\rR\x18lastScoutObservedVersion\x88\x01\x01\x12k\n" + "\x1dinstance_network_restrictions\x18\x17 \x01(\v2\".forge.InstanceNetworkRestrictionsH\x0eR\x1binstanceNetworkRestrictions\x88\x01\x01\x124\n" + - "\tlifecycle\x18\x18 \x01(\v2\x16.forge.LifecycleStatusR\tlifecycleB\x11\n" + + "\tlifecycle\x18\x18 \x01(\v2\x16.forge.LifecycleStatusR\tlifecycle\x124\n" + + "\n" + + "bmc_status\x18\x19 \x01(\v2\x10.forge.BmcStatusH\x0fR\tbmcStatus\x88\x01\x01B\x11\n" + "\x0f_discovery_infoB\x1d\n" + "\x1b_associated_host_machine_idB\x1d\n" + "\x1b_last_reboot_requested_timeB\x1d\n" + @@ -62726,7 +62891,8 @@ const file_nico_nico_proto_rawDesc = "" + "\a_nvlinkB\x06\n" + "\x04_spxB\x1e\n" + "\x1c_last_scout_observed_versionB \n" + - "\x1e_instance_network_restrictions\"\x9e\x1a\n" + + "\x1e_instance_network_restrictionsB\r\n" + + "\v_bmc_status\"\xc8\x1a\n" + "\aMachine\x12!\n" + "\x02id\x18\x01 \x01(\v2\x11.common.MachineIdR\x02id\x12\x14\n" + "\x05state\x18\a \x01(\tR\x05state\x12#\n" + @@ -62739,8 +62905,8 @@ const file_nico_nico_proto_rawDesc = "" + "interfaces\x12P\n" + "\x0ediscovery_info\x18\n" + " \x01(\v2 .machine_discovery.DiscoveryInfoB\x02\x18\x01H\x01R\rdiscoveryInfo\x88\x01\x01\x125\n" + - "\fmachine_type\x18\v \x01(\x0e2\x12.forge.MachineTypeR\vmachineType\x12)\n" + - "\bbmc_info\x18\f \x01(\v2\x0e.forge.BmcInfoR\abmcInfo\x12H\n" + + "\fmachine_type\x18\v \x01(\x0e2\x12.forge.MachineTypeR\vmachineType\x12-\n" + + "\bbmc_info\x18\f \x01(\v2\x0e.forge.BmcInfoB\x02\x18\x01R\abmcInfo\x12H\n" + "\x10last_reboot_time\x18\x0e \x01(\v2\x1a.google.protobuf.TimestampB\x02\x18\x01R\x0elastRebootTime\x12R\n" + "\x15last_observation_time\x18\x10 \x01(\v2\x1a.google.protobuf.TimestampB\x02\x18\x01R\x13lastObservationTime\x12<\n" + "\x15maintenance_reference\x18\x11 \x01(\tB\x02\x18\x01H\x02R\x14maintenanceReference\x88\x01\x01\x12Y\n" + @@ -62776,7 +62942,8 @@ const file_nico_nico_proto_rawDesc = "" + "\x1blast_scout_observed_version\x180 \x01(\tB\x02\x18\x01H\x17R\x18lastScoutObservedVersion\x88\x01\x01\x121\n" + "\x03dpf\x181 \x01(\v2\x16.forge.DpfMachineStateB\x02\x18\x01H\x18R\x03dpf\x88\x01\x01\x12,\n" + "\x06config\x182 \x01(\v2\x14.forge.MachineConfigR\x06config\x12,\n" + - "\x06status\x183 \x01(\v2\x14.forge.MachineStatusR\x06statusB\x0f\n" + + "\x06status\x183 \x01(\v2\x14.forge.MachineStatusR\x06status\x12$\n" + + "\x03bmc\x184 \x01(\v2\x12.forge.BmcEndpointR\x03bmcB\x0f\n" + "\r_state_reasonB\x11\n" + "\x0f_discovery_infoB\x18\n" + "\x16_maintenance_referenceB\x19\n" + @@ -67164,7 +67331,7 @@ func file_nico_nico_proto_rawDescGZIP() []byte { } var file_nico_nico_proto_enumTypes = make([]protoimpl.EnumInfo, 93) -var file_nico_nico_proto_msgTypes = make([]protoimpl.MessageInfo, 899) +var file_nico_nico_proto_msgTypes = make([]protoimpl.MessageInfo, 901) var file_nico_nico_proto_goTypes = []any{ (SpdmAttestationStatus)(0), // 0: forge.SpdmAttestationStatus (SpdmListAttestationMachinesRequestSelector)(0), // 1: forge.SpdmListAttestationMachinesRequestSelector @@ -67505,1092 +67672,1094 @@ var file_nico_nico_proto_goTypes = []any{ (*InterfaceAddress)(nil), // 336: forge.InterfaceAddress (*FindInterfaceAddressesResponse)(nil), // 337: forge.FindInterfaceAddressesResponse (*BmcInfo)(nil), // 338: forge.BmcInfo - (*SwitchNvosInfo)(nil), // 339: forge.SwitchNvosInfo - (*MachineConfig)(nil), // 340: forge.MachineConfig - (*MachineStatus)(nil), // 341: forge.MachineStatus - (*Machine)(nil), // 342: forge.Machine - (*DpfMachineState)(nil), // 343: forge.DpfMachineState - (*InstanceNetworkRestrictions)(nil), // 344: forge.InstanceNetworkRestrictions - (*MachineMetadataUpdateRequest)(nil), // 345: forge.MachineMetadataUpdateRequest - (*RackMetadataUpdateRequest)(nil), // 346: forge.RackMetadataUpdateRequest - (*SwitchMetadataUpdateRequest)(nil), // 347: forge.SwitchMetadataUpdateRequest - (*PowerShelfMetadataUpdateRequest)(nil), // 348: forge.PowerShelfMetadataUpdateRequest - (*DpuAgentInventoryReport)(nil), // 349: forge.DpuAgentInventoryReport - (*MachineComponentInventory)(nil), // 350: forge.MachineComponentInventory - (*MachineInventorySoftwareComponent)(nil), // 351: forge.MachineInventorySoftwareComponent - (*HealthSourceOrigin)(nil), // 352: forge.HealthSourceOrigin - (*ControllerStateReason)(nil), // 353: forge.ControllerStateReason - (*ControllerStateSourceReference)(nil), // 354: forge.ControllerStateSourceReference - (*StateSla)(nil), // 355: forge.StateSla - (*InstanceTenantStatus)(nil), // 356: forge.InstanceTenantStatus - (*MachineEvent)(nil), // 357: forge.MachineEvent - (*MachineInterface)(nil), // 358: forge.MachineInterface - (*InfinibandStatusObservation)(nil), // 359: forge.InfinibandStatusObservation - (*MachineIbInterface)(nil), // 360: forge.MachineIbInterface - (*DhcpDiscovery)(nil), // 361: forge.DhcpDiscovery - (*ExpireDhcpLeaseRequest)(nil), // 362: forge.ExpireDhcpLeaseRequest - (*ExpireDhcpLeaseResponse)(nil), // 363: forge.ExpireDhcpLeaseResponse - (*DhcpRecord)(nil), // 364: forge.DhcpRecord - (*NetworkSegmentList)(nil), // 365: forge.NetworkSegmentList - (*SSHKeyValidationRequest)(nil), // 366: forge.SSHKeyValidationRequest - (*SSHKeyValidationResponse)(nil), // 367: forge.SSHKeyValidationResponse - (*GetBmcCredentialsRequest)(nil), // 368: forge.GetBmcCredentialsRequest - (*GetSwitchNvosCredentialsRequest)(nil), // 369: forge.GetSwitchNvosCredentialsRequest - (*GetBmcCredentialsResponse)(nil), // 370: forge.GetBmcCredentialsResponse - (*BmcCredentials)(nil), // 371: forge.BmcCredentials - (*GetSiteExplorationRequest)(nil), // 372: forge.GetSiteExplorationRequest - (*ClearSiteExplorationErrorRequest)(nil), // 373: forge.ClearSiteExplorationErrorRequest - (*ReExploreEndpointRequest)(nil), // 374: forge.ReExploreEndpointRequest - (*RefreshEndpointReportRequest)(nil), // 375: forge.RefreshEndpointReportRequest - (*DeleteExploredEndpointRequest)(nil), // 376: forge.DeleteExploredEndpointRequest - (*PauseExploredEndpointRemediationRequest)(nil), // 377: forge.PauseExploredEndpointRemediationRequest - (*DeleteExploredEndpointResponse)(nil), // 378: forge.DeleteExploredEndpointResponse - (*BmcEndpointRequest)(nil), // 379: forge.BmcEndpointRequest - (*SshTimeoutConfig)(nil), // 380: forge.SshTimeoutConfig - (*SshRequest)(nil), // 381: forge.SshRequest - (*CopyBfbToDpuRshimRequest)(nil), // 382: forge.CopyBfbToDpuRshimRequest - (*UpdateMachineHardwareInfoRequest)(nil), // 383: forge.UpdateMachineHardwareInfoRequest - (*MachineHardwareInfo)(nil), // 384: forge.MachineHardwareInfo - (*ManagedHostNetworkConfigRequest)(nil), // 385: forge.ManagedHostNetworkConfigRequest - (*ManagedHostNetworkConfigResponse)(nil), // 386: forge.ManagedHostNetworkConfigResponse - (*TrafficInterceptConfig)(nil), // 387: forge.TrafficInterceptConfig - (*TrafficInterceptBridging)(nil), // 388: forge.TrafficInterceptBridging - (*ManagedHostDpuExtensionServiceConfig)(nil), // 389: forge.ManagedHostDpuExtensionServiceConfig - (*ManagedHostQuarantineState)(nil), // 390: forge.ManagedHostQuarantineState - (*GetManagedHostQuarantineStateRequest)(nil), // 391: forge.GetManagedHostQuarantineStateRequest - (*GetManagedHostQuarantineStateResponse)(nil), // 392: forge.GetManagedHostQuarantineStateResponse - (*SetManagedHostQuarantineStateRequest)(nil), // 393: forge.SetManagedHostQuarantineStateRequest - (*SetManagedHostQuarantineStateResponse)(nil), // 394: forge.SetManagedHostQuarantineStateResponse - (*ClearManagedHostQuarantineStateRequest)(nil), // 395: forge.ClearManagedHostQuarantineStateRequest - (*ClearManagedHostQuarantineStateResponse)(nil), // 396: forge.ClearManagedHostQuarantineStateResponse - (*ManagedHostNetworkConfig)(nil), // 397: forge.ManagedHostNetworkConfig - (*FlatInterfaceConfig)(nil), // 398: forge.FlatInterfaceConfig - (*FlatInterfaceRoutingProfile)(nil), // 399: forge.FlatInterfaceRoutingProfile - (*FlatInterfaceIpv6Config)(nil), // 400: forge.FlatInterfaceIpv6Config - (*FlatInterfaceNetworkSecurityGroupConfig)(nil), // 401: forge.FlatInterfaceNetworkSecurityGroupConfig - (*ManagedHostNetworkStatusRequest)(nil), // 402: forge.ManagedHostNetworkStatusRequest - (*ManagedHostNetworkStatusResponse)(nil), // 403: forge.ManagedHostNetworkStatusResponse - (*DpuAgentUpgradeCheckRequest)(nil), // 404: forge.DpuAgentUpgradeCheckRequest - (*DpuAgentUpgradeCheckResponse)(nil), // 405: forge.DpuAgentUpgradeCheckResponse - (*DpuAgentUpgradePolicyRequest)(nil), // 406: forge.DpuAgentUpgradePolicyRequest - (*DpuAgentUpgradePolicyResponse)(nil), // 407: forge.DpuAgentUpgradePolicyResponse - (*AdminForceDeleteMachineRequest)(nil), // 408: forge.AdminForceDeleteMachineRequest - (*AdminForceDeleteMachineResponse)(nil), // 409: forge.AdminForceDeleteMachineResponse - (*DisableSecureBootResponse)(nil), // 410: forge.DisableSecureBootResponse - (*LockdownRequest)(nil), // 411: forge.LockdownRequest - (*LockdownResponse)(nil), // 412: forge.LockdownResponse - (*LockdownStatusRequest)(nil), // 413: forge.LockdownStatusRequest - (*MachineSetupStatusRequest)(nil), // 414: forge.MachineSetupStatusRequest - (*MachineSetupRequest)(nil), // 415: forge.MachineSetupRequest - (*MachineSetupResponse)(nil), // 416: forge.MachineSetupResponse - (*SetDpuFirstBootOrderRequest)(nil), // 417: forge.SetDpuFirstBootOrderRequest - (*SetDpuFirstBootOrderResponse)(nil), // 418: forge.SetDpuFirstBootOrderResponse - (*AdminRebootRequest)(nil), // 419: forge.AdminRebootRequest - (*AdminRebootResponse)(nil), // 420: forge.AdminRebootResponse - (*AdminBmcResetRequest)(nil), // 421: forge.AdminBmcResetRequest - (*AdminBmcResetResponse)(nil), // 422: forge.AdminBmcResetResponse - (*EnableInfiniteBootRequest)(nil), // 423: forge.EnableInfiniteBootRequest - (*EnableInfiniteBootResponse)(nil), // 424: forge.EnableInfiniteBootResponse - (*IsInfiniteBootEnabledRequest)(nil), // 425: forge.IsInfiniteBootEnabledRequest - (*IsInfiniteBootEnabledResponse)(nil), // 426: forge.IsInfiniteBootEnabledResponse - (*BMCMetaDataGetRequest)(nil), // 427: forge.BMCMetaDataGetRequest - (*BMCMetaDataGetResponse)(nil), // 428: forge.BMCMetaDataGetResponse - (*MachineCredentialsUpdateRequest)(nil), // 429: forge.MachineCredentialsUpdateRequest - (*MachineCredentialsUpdateResponse)(nil), // 430: forge.MachineCredentialsUpdateResponse - (*ForgeAgentControlRequest)(nil), // 431: forge.ForgeAgentControlRequest - (*ForgeAgentControlResponse)(nil), // 432: forge.ForgeAgentControlResponse - (*MachineDiscoveryInfo)(nil), // 433: forge.MachineDiscoveryInfo - (*MachineDiscoveryCompletedRequest)(nil), // 434: forge.MachineDiscoveryCompletedRequest - (*MachineCleanupInfo)(nil), // 435: forge.MachineCleanupInfo - (*MachineCertificate)(nil), // 436: forge.MachineCertificate - (*MachineCertificateRenewRequest)(nil), // 437: forge.MachineCertificateRenewRequest - (*MachineCertificateResult)(nil), // 438: forge.MachineCertificateResult - (*MachineDiscoveryResult)(nil), // 439: forge.MachineDiscoveryResult - (*MachineDiscoveryCompletedResponse)(nil), // 440: forge.MachineDiscoveryCompletedResponse - (*MachineCleanupResult)(nil), // 441: forge.MachineCleanupResult - (*ForgeScoutErrorReport)(nil), // 442: forge.ForgeScoutErrorReport - (*ForgeScoutErrorReportResult)(nil), // 443: forge.ForgeScoutErrorReportResult - (*PxeInstructionRequest)(nil), // 444: forge.PxeInstructionRequest - (*PxeInstructions)(nil), // 445: forge.PxeInstructions - (*CloudInitDiscoveryInstructions)(nil), // 446: forge.CloudInitDiscoveryInstructions - (*CloudInitMetaData)(nil), // 447: forge.CloudInitMetaData - (*CloudInitInstructionsRequest)(nil), // 448: forge.CloudInitInstructionsRequest - (*CloudInitInstructions)(nil), // 449: forge.CloudInitInstructions - (*DpuNetworkStatus)(nil), // 450: forge.DpuNetworkStatus - (*LastDhcpRequest)(nil), // 451: forge.LastDhcpRequest - (*DpuExtensionServiceStatusObservation)(nil), // 452: forge.DpuExtensionServiceStatusObservation - (*DpuExtensionServiceComponent)(nil), // 453: forge.DpuExtensionServiceComponent - (*OptionalHealthReport)(nil), // 454: forge.OptionalHealthReport - (*HealthReportEntry)(nil), // 455: forge.HealthReportEntry - (*InsertMachineHealthReportRequest)(nil), // 456: forge.InsertMachineHealthReportRequest - (*InsertRackHealthReportRequest)(nil), // 457: forge.InsertRackHealthReportRequest - (*RemoveRackHealthReportRequest)(nil), // 458: forge.RemoveRackHealthReportRequest - (*ListRackHealthReportsRequest)(nil), // 459: forge.ListRackHealthReportsRequest - (*InsertSwitchHealthReportRequest)(nil), // 460: forge.InsertSwitchHealthReportRequest - (*RemoveSwitchHealthReportRequest)(nil), // 461: forge.RemoveSwitchHealthReportRequest - (*ListSwitchHealthReportsRequest)(nil), // 462: forge.ListSwitchHealthReportsRequest - (*InsertPowerShelfHealthReportRequest)(nil), // 463: forge.InsertPowerShelfHealthReportRequest - (*RemovePowerShelfHealthReportRequest)(nil), // 464: forge.RemovePowerShelfHealthReportRequest - (*ListPowerShelfHealthReportsRequest)(nil), // 465: forge.ListPowerShelfHealthReportsRequest - (*ListHealthReportResponse)(nil), // 466: forge.ListHealthReportResponse - (*RemoveMachineHealthReportRequest)(nil), // 467: forge.RemoveMachineHealthReportRequest - (*ListNVLinkDomainHealthReportsRequest)(nil), // 468: forge.ListNVLinkDomainHealthReportsRequest - (*InsertNVLinkDomainHealthReportRequest)(nil), // 469: forge.InsertNVLinkDomainHealthReportRequest - (*RemoveNVLinkDomainHealthReportRequest)(nil), // 470: forge.RemoveNVLinkDomainHealthReportRequest - (*InstanceInterfaceStatusObservation)(nil), // 471: forge.InstanceInterfaceStatusObservation - (*FabricInterfaceData)(nil), // 472: forge.FabricInterfaceData - (*LinkData)(nil), // 473: forge.LinkData - (*Tenant)(nil), // 474: forge.Tenant - (*CreateTenantRequest)(nil), // 475: forge.CreateTenantRequest - (*CreateTenantResponse)(nil), // 476: forge.CreateTenantResponse - (*UpdateTenantRequest)(nil), // 477: forge.UpdateTenantRequest - (*UpdateTenantResponse)(nil), // 478: forge.UpdateTenantResponse - (*FindTenantRequest)(nil), // 479: forge.FindTenantRequest - (*FindTenantResponse)(nil), // 480: forge.FindTenantResponse - (*TenantKeysetIdentifier)(nil), // 481: forge.TenantKeysetIdentifier - (*TenantPublicKey)(nil), // 482: forge.TenantPublicKey - (*TenantKeysetContent)(nil), // 483: forge.TenantKeysetContent - (*TenantKeyset)(nil), // 484: forge.TenantKeyset - (*CreateTenantKeysetRequest)(nil), // 485: forge.CreateTenantKeysetRequest - (*CreateTenantKeysetResponse)(nil), // 486: forge.CreateTenantKeysetResponse - (*TenantKeySetList)(nil), // 487: forge.TenantKeySetList - (*UpdateTenantKeysetRequest)(nil), // 488: forge.UpdateTenantKeysetRequest - (*UpdateTenantKeysetResponse)(nil), // 489: forge.UpdateTenantKeysetResponse - (*DeleteTenantKeysetRequest)(nil), // 490: forge.DeleteTenantKeysetRequest - (*DeleteTenantKeysetResponse)(nil), // 491: forge.DeleteTenantKeysetResponse - (*TenantKeysetSearchFilter)(nil), // 492: forge.TenantKeysetSearchFilter - (*TenantKeysetIdList)(nil), // 493: forge.TenantKeysetIdList - (*TenantKeysetsByIdsRequest)(nil), // 494: forge.TenantKeysetsByIdsRequest - (*ValidateTenantPublicKeyRequest)(nil), // 495: forge.ValidateTenantPublicKeyRequest - (*ValidateTenantPublicKeyResponse)(nil), // 496: forge.ValidateTenantPublicKeyResponse - (*ListResourcePoolsRequest)(nil), // 497: forge.ListResourcePoolsRequest - (*ResourcePools)(nil), // 498: forge.ResourcePools - (*ResourcePool)(nil), // 499: forge.ResourcePool - (*GrowResourcePoolRequest)(nil), // 500: forge.GrowResourcePoolRequest - (*GrowResourcePoolResponse)(nil), // 501: forge.GrowResourcePoolResponse - (*Range)(nil), // 502: forge.Range - (*MigrateVpcVniResponse)(nil), // 503: forge.MigrateVpcVniResponse - (*MaintenanceRequest)(nil), // 504: forge.MaintenanceRequest - (*SetDynamicConfigRequest)(nil), // 505: forge.SetDynamicConfigRequest - (*FindIpAddressRequest)(nil), // 506: forge.FindIpAddressRequest - (*FindIpAddressResponse)(nil), // 507: forge.FindIpAddressResponse - (*IdentifyUuidRequest)(nil), // 508: forge.IdentifyUuidRequest - (*IdentifyUuidResponse)(nil), // 509: forge.IdentifyUuidResponse - (*FindBmcIpsRequest)(nil), // 510: forge.FindBmcIpsRequest - (*IdentifyMacRequest)(nil), // 511: forge.IdentifyMacRequest - (*IdentifyMacResponse)(nil), // 512: forge.IdentifyMacResponse - (*IdentifySerialRequest)(nil), // 513: forge.IdentifySerialRequest - (*IdentifySerialResponse)(nil), // 514: forge.IdentifySerialResponse - (*DpuReprovisioningRequest)(nil), // 515: forge.DpuReprovisioningRequest - (*DpuReprovisioningListRequest)(nil), // 516: forge.DpuReprovisioningListRequest - (*DpuReprovisioningListResponse)(nil), // 517: forge.DpuReprovisioningListResponse - (*HostReprovisioningRequest)(nil), // 518: forge.HostReprovisioningRequest - (*HostReprovisioningListRequest)(nil), // 519: forge.HostReprovisioningListRequest - (*HostReprovisioningListResponse)(nil), // 520: forge.HostReprovisioningListResponse - (*DpuOsOperationalState)(nil), // 521: forge.DpuOsOperationalState - (*DpuRepresentorStatus)(nil), // 522: forge.DpuRepresentorStatus - (*DpuInfoStatusObservation)(nil), // 523: forge.DpuInfoStatusObservation - (*DpuInfo)(nil), // 524: forge.DpuInfo - (*GetDpuInfoListRequest)(nil), // 525: forge.GetDpuInfoListRequest - (*GetDpuInfoListResponse)(nil), // 526: forge.GetDpuInfoListResponse - (*IpAddressMatch)(nil), // 527: forge.IpAddressMatch - (*MachineBootOverride)(nil), // 528: forge.MachineBootOverride - (*ConnectedDevice)(nil), // 529: forge.ConnectedDevice - (*ConnectedDeviceList)(nil), // 530: forge.ConnectedDeviceList - (*BmcIpList)(nil), // 531: forge.BmcIpList - (*BmcIp)(nil), // 532: forge.BmcIp - (*MacAddressBmcIp)(nil), // 533: forge.MacAddressBmcIp - (*MachineIdBmcIpPairs)(nil), // 534: forge.MachineIdBmcIpPairs - (*MachineIdBmcIp)(nil), // 535: forge.MachineIdBmcIp - (*NetworkDevice)(nil), // 536: forge.NetworkDevice - (*NetworkTopologyRequest)(nil), // 537: forge.NetworkTopologyRequest - (*NetworkDeviceIdList)(nil), // 538: forge.NetworkDeviceIdList - (*NetworkTopologyData)(nil), // 539: forge.NetworkTopologyData - (*RouteServers)(nil), // 540: forge.RouteServers - (*RouteServerEntries)(nil), // 541: forge.RouteServerEntries - (*RouteServer)(nil), // 542: forge.RouteServer - (*SetHostUefiPasswordRequest)(nil), // 543: forge.SetHostUefiPasswordRequest - (*SetHostUefiPasswordResponse)(nil), // 544: forge.SetHostUefiPasswordResponse - (*ClearHostUefiPasswordRequest)(nil), // 545: forge.ClearHostUefiPasswordRequest - (*ClearHostUefiPasswordResponse)(nil), // 546: forge.ClearHostUefiPasswordResponse - (*OsImageAttributes)(nil), // 547: forge.OsImageAttributes - (*OsImage)(nil), // 548: forge.OsImage - (*ListOsImageRequest)(nil), // 549: forge.ListOsImageRequest - (*ListOsImageResponse)(nil), // 550: forge.ListOsImageResponse - (*DeleteOsImageRequest)(nil), // 551: forge.DeleteOsImageRequest - (*DeleteOsImageResponse)(nil), // 552: forge.DeleteOsImageResponse - (*GetIpxeTemplateRequest)(nil), // 553: forge.GetIpxeTemplateRequest - (*ListIpxeTemplatesRequest)(nil), // 554: forge.ListIpxeTemplatesRequest - (*IpxeTemplateList)(nil), // 555: forge.IpxeTemplateList - (*ExpectedHostNic)(nil), // 556: forge.ExpectedHostNic - (*HostLifecycleProfile)(nil), // 557: forge.HostLifecycleProfile - (*ExpectedMachine)(nil), // 558: forge.ExpectedMachine - (*ExpectedMachineRequest)(nil), // 559: forge.ExpectedMachineRequest - (*ExpectedMachineList)(nil), // 560: forge.ExpectedMachineList - (*LinkedExpectedMachineList)(nil), // 561: forge.LinkedExpectedMachineList - (*LinkedExpectedMachine)(nil), // 562: forge.LinkedExpectedMachine - (*UnexpectedMachineList)(nil), // 563: forge.UnexpectedMachineList - (*UnexpectedMachine)(nil), // 564: forge.UnexpectedMachine - (*BatchExpectedMachineOperationRequest)(nil), // 565: forge.BatchExpectedMachineOperationRequest - (*ExpectedMachineOperationResult)(nil), // 566: forge.ExpectedMachineOperationResult - (*BatchExpectedMachineOperationResponse)(nil), // 567: forge.BatchExpectedMachineOperationResponse - (*MachineRebootCompletedResponse)(nil), // 568: forge.MachineRebootCompletedResponse - (*MachineRebootCompletedRequest)(nil), // 569: forge.MachineRebootCompletedRequest - (*ScoutFirmwareUpgradeStatusRequest)(nil), // 570: forge.ScoutFirmwareUpgradeStatusRequest - (*MachineValidationCompletedRequest)(nil), // 571: forge.MachineValidationCompletedRequest - (*MachineValidationCompletedResponse)(nil), // 572: forge.MachineValidationCompletedResponse - (*MachineValidationResult)(nil), // 573: forge.MachineValidationResult - (*MachineValidationResultPostRequest)(nil), // 574: forge.MachineValidationResultPostRequest - (*MachineValidationResultList)(nil), // 575: forge.MachineValidationResultList - (*MachineValidationGetRequest)(nil), // 576: forge.MachineValidationGetRequest - (*MachineValidationStatus)(nil), // 577: forge.MachineValidationStatus - (*MachineValidationRun)(nil), // 578: forge.MachineValidationRun - (*MachineSetAutoUpdateRequest)(nil), // 579: forge.MachineSetAutoUpdateRequest - (*MachineSetAutoUpdateResponse)(nil), // 580: forge.MachineSetAutoUpdateResponse - (*GetMachineValidationExternalConfigRequest)(nil), // 581: forge.GetMachineValidationExternalConfigRequest - (*MachineValidationExternalConfig)(nil), // 582: forge.MachineValidationExternalConfig - (*GetMachineValidationExternalConfigResponse)(nil), // 583: forge.GetMachineValidationExternalConfigResponse - (*GetMachineValidationExternalConfigsRequest)(nil), // 584: forge.GetMachineValidationExternalConfigsRequest - (*GetMachineValidationExternalConfigsResponse)(nil), // 585: forge.GetMachineValidationExternalConfigsResponse - (*AddUpdateMachineValidationExternalConfigRequest)(nil), // 586: forge.AddUpdateMachineValidationExternalConfigRequest - (*RemoveMachineValidationExternalConfigRequest)(nil), // 587: forge.RemoveMachineValidationExternalConfigRequest - (*MachineValidationOnDemandRequest)(nil), // 588: forge.MachineValidationOnDemandRequest - (*MachineValidationOnDemandResponse)(nil), // 589: forge.MachineValidationOnDemandResponse - (*FirmwareUpgradeActivity)(nil), // 590: forge.FirmwareUpgradeActivity - (*NvosUpdateActivity)(nil), // 591: forge.NvosUpdateActivity - (*ConfigureNmxClusterActivity)(nil), // 592: forge.ConfigureNmxClusterActivity - (*PowerSequenceActivity)(nil), // 593: forge.PowerSequenceActivity - (*MaintenanceActivityConfig)(nil), // 594: forge.MaintenanceActivityConfig - (*RackMaintenanceScope)(nil), // 595: forge.RackMaintenanceScope - (*RackMaintenanceOnDemandRequest)(nil), // 596: forge.RackMaintenanceOnDemandRequest - (*RackMaintenanceOnDemandResponse)(nil), // 597: forge.RackMaintenanceOnDemandResponse - (*AdminPowerControlRequest)(nil), // 598: forge.AdminPowerControlRequest - (*AdminPowerControlResponse)(nil), // 599: forge.AdminPowerControlResponse - (*GetRedfishJobStateRequest)(nil), // 600: forge.GetRedfishJobStateRequest - (*GetRedfishJobStateResponse)(nil), // 601: forge.GetRedfishJobStateResponse - (*MachineValidationRunList)(nil), // 602: forge.MachineValidationRunList - (*MachineValidationRunListGetRequest)(nil), // 603: forge.MachineValidationRunListGetRequest - (*MachineValidationRunItemSearchFilter)(nil), // 604: forge.MachineValidationRunItemSearchFilter - (*MachineValidationRunItemIdList)(nil), // 605: forge.MachineValidationRunItemIdList - (*MachineValidationRunItemsByIdsRequest)(nil), // 606: forge.MachineValidationRunItemsByIdsRequest - (*MachineValidationRunItemList)(nil), // 607: forge.MachineValidationRunItemList - (*MachineValidationRunItem)(nil), // 608: forge.MachineValidationRunItem - (*MachineValidationAttemptGetRequest)(nil), // 609: forge.MachineValidationAttemptGetRequest - (*MachineValidationAttempt)(nil), // 610: forge.MachineValidationAttempt - (*MachineValidationHeartbeatRequest)(nil), // 611: forge.MachineValidationHeartbeatRequest - (*MachineValidationHeartbeatResponse)(nil), // 612: forge.MachineValidationHeartbeatResponse - (*IsBmcInManagedHostResponse)(nil), // 613: forge.IsBmcInManagedHostResponse - (*BmcCredentialStatusResponse)(nil), // 614: forge.BmcCredentialStatusResponse - (*MachineValidationTestsGetRequest)(nil), // 615: forge.MachineValidationTestsGetRequest - (*MachineValidationTestUpdateRequest)(nil), // 616: forge.MachineValidationTestUpdateRequest - (*MachineValidationTestAddRequest)(nil), // 617: forge.MachineValidationTestAddRequest - (*MachineValidationTestAddUpdateResponse)(nil), // 618: forge.MachineValidationTestAddUpdateResponse - (*MachineValidationTestsGetResponse)(nil), // 619: forge.MachineValidationTestsGetResponse - (*MachineValidationTestVerfiedRequest)(nil), // 620: forge.MachineValidationTestVerfiedRequest - (*MachineValidationTestVerfiedResponse)(nil), // 621: forge.MachineValidationTestVerfiedResponse - (*MachineValidationTest)(nil), // 622: forge.MachineValidationTest - (*MachineValidationTestNextVersionResponse)(nil), // 623: forge.MachineValidationTestNextVersionResponse - (*MachineValidationTestNextVersionRequest)(nil), // 624: forge.MachineValidationTestNextVersionRequest - (*MachineValidationTestEnableDisableTestRequest)(nil), // 625: forge.MachineValidationTestEnableDisableTestRequest - (*MachineValidationTestEnableDisableTestResponse)(nil), // 626: forge.MachineValidationTestEnableDisableTestResponse - (*MachineValidationRunRequest)(nil), // 627: forge.MachineValidationRunRequest - (*MachineValidationRunResponse)(nil), // 628: forge.MachineValidationRunResponse - (*MachineCapabilityAttributesCpu)(nil), // 629: forge.MachineCapabilityAttributesCpu - (*MachineCapabilityAttributesGpu)(nil), // 630: forge.MachineCapabilityAttributesGpu - (*MachineCapabilityAttributesMemory)(nil), // 631: forge.MachineCapabilityAttributesMemory - (*MachineCapabilityAttributesStorage)(nil), // 632: forge.MachineCapabilityAttributesStorage - (*MachineCapabilityAttributesNetwork)(nil), // 633: forge.MachineCapabilityAttributesNetwork - (*MachineCapabilityAttributesInfiniband)(nil), // 634: forge.MachineCapabilityAttributesInfiniband - (*MachineCapabilityAttributesDpu)(nil), // 635: forge.MachineCapabilityAttributesDpu - (*MachineCapabilitiesSet)(nil), // 636: forge.MachineCapabilitiesSet - (*InstanceTypeAttributes)(nil), // 637: forge.InstanceTypeAttributes - (*InstanceType)(nil), // 638: forge.InstanceType - (*InstanceTypeMachineCapabilityFilterAttributes)(nil), // 639: forge.InstanceTypeMachineCapabilityFilterAttributes - (*CreateInstanceTypeRequest)(nil), // 640: forge.CreateInstanceTypeRequest - (*CreateInstanceTypeResponse)(nil), // 641: forge.CreateInstanceTypeResponse - (*FindInstanceTypeIdsRequest)(nil), // 642: forge.FindInstanceTypeIdsRequest - (*FindInstanceTypeIdsResponse)(nil), // 643: forge.FindInstanceTypeIdsResponse - (*FindInstanceTypesByIdsRequest)(nil), // 644: forge.FindInstanceTypesByIdsRequest - (*FindInstanceTypesByIdsResponse)(nil), // 645: forge.FindInstanceTypesByIdsResponse - (*DeleteInstanceTypeRequest)(nil), // 646: forge.DeleteInstanceTypeRequest - (*DeleteInstanceTypeResponse)(nil), // 647: forge.DeleteInstanceTypeResponse - (*UpdateInstanceTypeResponse)(nil), // 648: forge.UpdateInstanceTypeResponse - (*UpdateInstanceTypeRequest)(nil), // 649: forge.UpdateInstanceTypeRequest - (*AssociateMachinesWithInstanceTypeRequest)(nil), // 650: forge.AssociateMachinesWithInstanceTypeRequest - (*AssociateMachinesWithInstanceTypeResponse)(nil), // 651: forge.AssociateMachinesWithInstanceTypeResponse - (*RemoveMachineInstanceTypeAssociationRequest)(nil), // 652: forge.RemoveMachineInstanceTypeAssociationRequest - (*RemoveMachineInstanceTypeAssociationResponse)(nil), // 653: forge.RemoveMachineInstanceTypeAssociationResponse - (*RedfishBrowseRequest)(nil), // 654: forge.RedfishBrowseRequest - (*RedfishBrowseResponse)(nil), // 655: forge.RedfishBrowseResponse - (*RedfishListActionsRequest)(nil), // 656: forge.RedfishListActionsRequest - (*RedfishListActionsResponse)(nil), // 657: forge.RedfishListActionsResponse - (*RedfishAction)(nil), // 658: forge.RedfishAction - (*OptionalRedfishActionResult)(nil), // 659: forge.OptionalRedfishActionResult - (*RedfishActionResult)(nil), // 660: forge.RedfishActionResult - (*RedfishCreateActionRequest)(nil), // 661: forge.RedfishCreateActionRequest - (*RedfishCreateActionResponse)(nil), // 662: forge.RedfishCreateActionResponse - (*RedfishActionID)(nil), // 663: forge.RedfishActionID - (*RedfishApproveActionResponse)(nil), // 664: forge.RedfishApproveActionResponse - (*RedfishApplyActionResponse)(nil), // 665: forge.RedfishApplyActionResponse - (*RedfishCancelActionResponse)(nil), // 666: forge.RedfishCancelActionResponse - (*UfmBrowseRequest)(nil), // 667: forge.UfmBrowseRequest - (*UfmBrowseResponse)(nil), // 668: forge.UfmBrowseResponse - (*NetworkSecurityGroupAttributes)(nil), // 669: forge.NetworkSecurityGroupAttributes - (*NetworkSecurityGroup)(nil), // 670: forge.NetworkSecurityGroup - (*CreateNetworkSecurityGroupRequest)(nil), // 671: forge.CreateNetworkSecurityGroupRequest - (*CreateNetworkSecurityGroupResponse)(nil), // 672: forge.CreateNetworkSecurityGroupResponse - (*FindNetworkSecurityGroupIdsRequest)(nil), // 673: forge.FindNetworkSecurityGroupIdsRequest - (*FindNetworkSecurityGroupIdsResponse)(nil), // 674: forge.FindNetworkSecurityGroupIdsResponse - (*FindNetworkSecurityGroupsByIdsRequest)(nil), // 675: forge.FindNetworkSecurityGroupsByIdsRequest - (*FindNetworkSecurityGroupsByIdsResponse)(nil), // 676: forge.FindNetworkSecurityGroupsByIdsResponse - (*UpdateNetworkSecurityGroupResponse)(nil), // 677: forge.UpdateNetworkSecurityGroupResponse - (*UpdateNetworkSecurityGroupRequest)(nil), // 678: forge.UpdateNetworkSecurityGroupRequest - (*DeleteNetworkSecurityGroupRequest)(nil), // 679: forge.DeleteNetworkSecurityGroupRequest - (*DeleteNetworkSecurityGroupResponse)(nil), // 680: forge.DeleteNetworkSecurityGroupResponse - (*NetworkSecurityGroupStatus)(nil), // 681: forge.NetworkSecurityGroupStatus - (*NetworkSecurityGroupPropagationObjectStatus)(nil), // 682: forge.NetworkSecurityGroupPropagationObjectStatus - (*GetNetworkSecurityGroupPropagationStatusResponse)(nil), // 683: forge.GetNetworkSecurityGroupPropagationStatusResponse - (*NetworkSecurityGroupIdList)(nil), // 684: forge.NetworkSecurityGroupIdList - (*GetNetworkSecurityGroupPropagationStatusRequest)(nil), // 685: forge.GetNetworkSecurityGroupPropagationStatusRequest - (*NetworkSecurityGroupRuleAttributes)(nil), // 686: forge.NetworkSecurityGroupRuleAttributes - (*ResolvedNetworkSecurityGroupRule)(nil), // 687: forge.ResolvedNetworkSecurityGroupRule - (*GetNetworkSecurityGroupAttachmentsRequest)(nil), // 688: forge.GetNetworkSecurityGroupAttachmentsRequest - (*NetworkSecurityGroupAttachments)(nil), // 689: forge.NetworkSecurityGroupAttachments - (*GetNetworkSecurityGroupAttachmentsResponse)(nil), // 690: forge.GetNetworkSecurityGroupAttachmentsResponse - (*GetDesiredFirmwareVersionsRequest)(nil), // 691: forge.GetDesiredFirmwareVersionsRequest - (*GetDesiredFirmwareVersionsResponse)(nil), // 692: forge.GetDesiredFirmwareVersionsResponse - (*DesiredFirmwareVersionEntry)(nil), // 693: forge.DesiredFirmwareVersionEntry - (*SkuComponentChassis)(nil), // 694: forge.SkuComponentChassis - (*SkuComponentCpu)(nil), // 695: forge.SkuComponentCpu - (*SkuComponentGpu)(nil), // 696: forge.SkuComponentGpu - (*SkuComponentEthernetDevices)(nil), // 697: forge.SkuComponentEthernetDevices - (*SkuComponentInfinibandDevices)(nil), // 698: forge.SkuComponentInfinibandDevices - (*SkuComponentStorage)(nil), // 699: forge.SkuComponentStorage - (*SkuComponentStorageController)(nil), // 700: forge.SkuComponentStorageController - (*SkuComponentMemory)(nil), // 701: forge.SkuComponentMemory - (*SkuComponentTpm)(nil), // 702: forge.SkuComponentTpm - (*SkuComponents)(nil), // 703: forge.SkuComponents - (*Sku)(nil), // 704: forge.Sku - (*SkuMachinePair)(nil), // 705: forge.SkuMachinePair - (*RemoveSkuRequest)(nil), // 706: forge.RemoveSkuRequest - (*SkuList)(nil), // 707: forge.SkuList - (*SkuIdList)(nil), // 708: forge.SkuIdList - (*SkuStatus)(nil), // 709: forge.SkuStatus - (*SkusByIdsRequest)(nil), // 710: forge.SkusByIdsRequest - (*SkuSearchFilter)(nil), // 711: forge.SkuSearchFilter - (*DpaInterface)(nil), // 712: forge.DpaInterface - (*DpaInterfaceCreationRequest)(nil), // 713: forge.DpaInterfaceCreationRequest - (*DpaInterfaceIdList)(nil), // 714: forge.DpaInterfaceIdList - (*DpaInterfacesByIdsRequest)(nil), // 715: forge.DpaInterfacesByIdsRequest - (*DpaInterfaceList)(nil), // 716: forge.DpaInterfaceList - (*DpaNetworkObservationSetRequest)(nil), // 717: forge.DpaNetworkObservationSetRequest - (*DpaInterfaceDeletionRequest)(nil), // 718: forge.DpaInterfaceDeletionRequest - (*DpaInterfaceDeletionResult)(nil), // 719: forge.DpaInterfaceDeletionResult - (*SkuUpdateMetadataRequest)(nil), // 720: forge.SkuUpdateMetadataRequest - (*PowerOptionRequest)(nil), // 721: forge.PowerOptionRequest - (*PowerOptionUpdateRequest)(nil), // 722: forge.PowerOptionUpdateRequest - (*PowerOptions)(nil), // 723: forge.PowerOptions - (*PowerOptionResponse)(nil), // 724: forge.PowerOptionResponse - (*ComputeAllocationAttributes)(nil), // 725: forge.ComputeAllocationAttributes - (*ComputeAllocation)(nil), // 726: forge.ComputeAllocation - (*CreateComputeAllocationRequest)(nil), // 727: forge.CreateComputeAllocationRequest - (*CreateComputeAllocationResponse)(nil), // 728: forge.CreateComputeAllocationResponse - (*FindComputeAllocationIdsRequest)(nil), // 729: forge.FindComputeAllocationIdsRequest - (*FindComputeAllocationIdsResponse)(nil), // 730: forge.FindComputeAllocationIdsResponse - (*FindComputeAllocationsByIdsRequest)(nil), // 731: forge.FindComputeAllocationsByIdsRequest - (*FindComputeAllocationsByIdsResponse)(nil), // 732: forge.FindComputeAllocationsByIdsResponse - (*UpdateComputeAllocationResponse)(nil), // 733: forge.UpdateComputeAllocationResponse - (*UpdateComputeAllocationRequest)(nil), // 734: forge.UpdateComputeAllocationRequest - (*DeleteComputeAllocationRequest)(nil), // 735: forge.DeleteComputeAllocationRequest - (*DeleteComputeAllocationResponse)(nil), // 736: forge.DeleteComputeAllocationResponse - (*InstanceTypeAllocationStats)(nil), // 737: forge.InstanceTypeAllocationStats - (*GetRackRequest)(nil), // 738: forge.GetRackRequest - (*GetRackResponse)(nil), // 739: forge.GetRackResponse - (*RackList)(nil), // 740: forge.RackList - (*RackSearchFilter)(nil), // 741: forge.RackSearchFilter - (*RackIdList)(nil), // 742: forge.RackIdList - (*RacksByIdsRequest)(nil), // 743: forge.RacksByIdsRequest - (*Rack)(nil), // 744: forge.Rack - (*RackConfig)(nil), // 745: forge.RackConfig - (*RackStatus)(nil), // 746: forge.RackStatus - (*RackStateHistoriesRequest)(nil), // 747: forge.RackStateHistoriesRequest - (*DeleteRackRequest)(nil), // 748: forge.DeleteRackRequest - (*AdminForceDeleteRackRequest)(nil), // 749: forge.AdminForceDeleteRackRequest - (*AdminForceDeleteRackResponse)(nil), // 750: forge.AdminForceDeleteRackResponse - (*RackCapabilityCompute)(nil), // 751: forge.RackCapabilityCompute - (*RackCapabilitySwitch)(nil), // 752: forge.RackCapabilitySwitch - (*RackCapabilityPowerShelf)(nil), // 753: forge.RackCapabilityPowerShelf - (*RackCapabilitiesSet)(nil), // 754: forge.RackCapabilitiesSet - (*RackProfile)(nil), // 755: forge.RackProfile - (*GetRackProfileRequest)(nil), // 756: forge.GetRackProfileRequest - (*GetRackProfileResponse)(nil), // 757: forge.GetRackProfileResponse - (*RackManagerForgeRequest)(nil), // 758: forge.RackManagerForgeRequest - (*RackManagerForgeResponse)(nil), // 759: forge.RackManagerForgeResponse - (*MachineNVLinkInfo)(nil), // 760: forge.MachineNVLinkInfo - (*UpdateMachineNvLinkInfoRequest)(nil), // 761: forge.UpdateMachineNvLinkInfoRequest - (*MachineSpxStatusObservation)(nil), // 762: forge.MachineSpxStatusObservation - (*MachineSpxAttachmentStatusObservation)(nil), // 763: forge.MachineSpxAttachmentStatusObservation - (*AstraConfig)(nil), // 764: forge.AstraConfig - (*AstraAttachment)(nil), // 765: forge.AstraAttachment - (*AstraConfigStatus)(nil), // 766: forge.AstraConfigStatus - (*AstraAttachmentStatus)(nil), // 767: forge.AstraAttachmentStatus - (*AstraStatus)(nil), // 768: forge.AstraStatus - (*NVLinkGpu)(nil), // 769: forge.NVLinkGpu - (*MachineNVLinkStatusObservation)(nil), // 770: forge.MachineNVLinkStatusObservation - (*MachineNVLinkGpuStatusObservation)(nil), // 771: forge.MachineNVLinkGpuStatusObservation - (*NmxcBrowseRequest)(nil), // 772: forge.NmxcBrowseRequest - (*NmxcBrowseResponse)(nil), // 773: forge.NmxcBrowseResponse - (*NVLinkPartition)(nil), // 774: forge.NVLinkPartition - (*NVLinkPartitionList)(nil), // 775: forge.NVLinkPartitionList - (*NVLinkPartitionSearchConfig)(nil), // 776: forge.NVLinkPartitionSearchConfig - (*NVLinkPartitionQuery)(nil), // 777: forge.NVLinkPartitionQuery - (*NVLinkPartitionSearchFilter)(nil), // 778: forge.NVLinkPartitionSearchFilter - (*NVLinkPartitionsByIdsRequest)(nil), // 779: forge.NVLinkPartitionsByIdsRequest - (*NVLinkPartitionIdList)(nil), // 780: forge.NVLinkPartitionIdList - (*NVLinkFabricSearchFilter)(nil), // 781: forge.NVLinkFabricSearchFilter - (*NVLinkLogicalPartitionConfig)(nil), // 782: forge.NVLinkLogicalPartitionConfig - (*NVLinkLogicalPartitionStatus)(nil), // 783: forge.NVLinkLogicalPartitionStatus - (*NVLinkLogicalPartition)(nil), // 784: forge.NVLinkLogicalPartition - (*NVLinkLogicalPartitionList)(nil), // 785: forge.NVLinkLogicalPartitionList - (*NVLinkLogicalPartitionCreationRequest)(nil), // 786: forge.NVLinkLogicalPartitionCreationRequest - (*NVLinkLogicalPartitionDeletionRequest)(nil), // 787: forge.NVLinkLogicalPartitionDeletionRequest - (*NVLinkLogicalPartitionDeletionResult)(nil), // 788: forge.NVLinkLogicalPartitionDeletionResult - (*NVLinkLogicalPartitionSearchFilter)(nil), // 789: forge.NVLinkLogicalPartitionSearchFilter - (*NVLinkLogicalPartitionsByIdsRequest)(nil), // 790: forge.NVLinkLogicalPartitionsByIdsRequest - (*NVLinkLogicalPartitionIdList)(nil), // 791: forge.NVLinkLogicalPartitionIdList - (*NVLinkLogicalPartitionUpdateRequest)(nil), // 792: forge.NVLinkLogicalPartitionUpdateRequest - (*NVLinkLogicalPartitionUpdateResult)(nil), // 793: forge.NVLinkLogicalPartitionUpdateResult - (*CreateBmcUserRequest)(nil), // 794: forge.CreateBmcUserRequest - (*CreateBmcUserResponse)(nil), // 795: forge.CreateBmcUserResponse - (*DeleteBmcUserRequest)(nil), // 796: forge.DeleteBmcUserRequest - (*DeleteBmcUserResponse)(nil), // 797: forge.DeleteBmcUserResponse - (*SetBmcRootPasswordRequest)(nil), // 798: forge.SetBmcRootPasswordRequest - (*SetBmcRootPasswordResponse)(nil), // 799: forge.SetBmcRootPasswordResponse - (*ProbeBmcVendorRequest)(nil), // 800: forge.ProbeBmcVendorRequest - (*ProbeBmcVendorResponse)(nil), // 801: forge.ProbeBmcVendorResponse - (*SetFirmwareUpdateTimeWindowRequest)(nil), // 802: forge.SetFirmwareUpdateTimeWindowRequest - (*SetFirmwareUpdateTimeWindowResponse)(nil), // 803: forge.SetFirmwareUpdateTimeWindowResponse - (*UpsertHostFirmwareConfigRequest)(nil), // 804: forge.UpsertHostFirmwareConfigRequest - (*DeleteHostFirmwareConfigRequest)(nil), // 805: forge.DeleteHostFirmwareConfigRequest - (*UpsertHostFirmwareComponentConfig)(nil), // 806: forge.UpsertHostFirmwareComponentConfig - (*HostFirmwareComponentConfigResponse)(nil), // 807: forge.HostFirmwareComponentConfigResponse - (*HostFirmwareVersionConfig)(nil), // 808: forge.HostFirmwareVersionConfig - (*HostFirmwareArtifact)(nil), // 809: forge.HostFirmwareArtifact - (*HostFirmwareConfigResponse)(nil), // 810: forge.HostFirmwareConfigResponse - (*ListHostFirmwareRequest)(nil), // 811: forge.ListHostFirmwareRequest - (*ListHostFirmwareResponse)(nil), // 812: forge.ListHostFirmwareResponse - (*AvailableHostFirmware)(nil), // 813: forge.AvailableHostFirmware - (*TrimTableRequest)(nil), // 814: forge.TrimTableRequest - (*TrimTableResponse)(nil), // 815: forge.TrimTableResponse - (*NvlinkNmxcEndpoint)(nil), // 816: forge.NvlinkNmxcEndpoint - (*NvlinkNmxcEndpointList)(nil), // 817: forge.NvlinkNmxcEndpointList - (*DeleteNvlinkNmxcEndpointRequest)(nil), // 818: forge.DeleteNvlinkNmxcEndpointRequest - (*CreateRemediationRequest)(nil), // 819: forge.CreateRemediationRequest - (*CreateRemediationResponse)(nil), // 820: forge.CreateRemediationResponse - (*RemediationIdList)(nil), // 821: forge.RemediationIdList - (*RemediationList)(nil), // 822: forge.RemediationList - (*Remediation)(nil), // 823: forge.Remediation - (*ApproveRemediationRequest)(nil), // 824: forge.ApproveRemediationRequest - (*RevokeRemediationRequest)(nil), // 825: forge.RevokeRemediationRequest - (*EnableRemediationRequest)(nil), // 826: forge.EnableRemediationRequest - (*DisableRemediationRequest)(nil), // 827: forge.DisableRemediationRequest - (*FindAppliedRemediationIdsRequest)(nil), // 828: forge.FindAppliedRemediationIdsRequest - (*AppliedRemediationIdList)(nil), // 829: forge.AppliedRemediationIdList - (*FindAppliedRemediationsRequest)(nil), // 830: forge.FindAppliedRemediationsRequest - (*AppliedRemediation)(nil), // 831: forge.AppliedRemediation - (*AppliedRemediationList)(nil), // 832: forge.AppliedRemediationList - (*GetNextRemediationForMachineRequest)(nil), // 833: forge.GetNextRemediationForMachineRequest - (*GetNextRemediationForMachineResponse)(nil), // 834: forge.GetNextRemediationForMachineResponse - (*RemediationAppliedRequest)(nil), // 835: forge.RemediationAppliedRequest - (*RemediationApplicationStatus)(nil), // 836: forge.RemediationApplicationStatus - (*SetPrimaryDpuRequest)(nil), // 837: forge.SetPrimaryDpuRequest - (*SetPrimaryInterfaceRequest)(nil), // 838: forge.SetPrimaryInterfaceRequest - (*UsernamePassword)(nil), // 839: forge.UsernamePassword - (*SessionToken)(nil), // 840: forge.SessionToken - (*DpuExtensionServiceCredential)(nil), // 841: forge.DpuExtensionServiceCredential - (*DpuExtensionServiceVersionInfo)(nil), // 842: forge.DpuExtensionServiceVersionInfo - (*DpuExtensionService)(nil), // 843: forge.DpuExtensionService - (*CreateDpuExtensionServiceRequest)(nil), // 844: forge.CreateDpuExtensionServiceRequest - (*UpdateDpuExtensionServiceRequest)(nil), // 845: forge.UpdateDpuExtensionServiceRequest - (*DeleteDpuExtensionServiceRequest)(nil), // 846: forge.DeleteDpuExtensionServiceRequest - (*DeleteDpuExtensionServiceResponse)(nil), // 847: forge.DeleteDpuExtensionServiceResponse - (*DpuExtensionServiceSearchFilter)(nil), // 848: forge.DpuExtensionServiceSearchFilter - (*DpuExtensionServiceIdList)(nil), // 849: forge.DpuExtensionServiceIdList - (*DpuExtensionServicesByIdsRequest)(nil), // 850: forge.DpuExtensionServicesByIdsRequest - (*DpuExtensionServiceList)(nil), // 851: forge.DpuExtensionServiceList - (*GetDpuExtensionServiceVersionsInfoRequest)(nil), // 852: forge.GetDpuExtensionServiceVersionsInfoRequest - (*DpuExtensionServiceVersionInfoList)(nil), // 853: forge.DpuExtensionServiceVersionInfoList - (*FindInstancesByDpuExtensionServiceRequest)(nil), // 854: forge.FindInstancesByDpuExtensionServiceRequest - (*FindInstancesByDpuExtensionServiceResponse)(nil), // 855: forge.FindInstancesByDpuExtensionServiceResponse - (*InstanceDpuExtensionServiceInfo)(nil), // 856: forge.InstanceDpuExtensionServiceInfo - (*DpuExtensionServiceObservabilityConfigPrometheus)(nil), // 857: forge.DpuExtensionServiceObservabilityConfigPrometheus - (*DpuExtensionServiceObservabilityConfigLogging)(nil), // 858: forge.DpuExtensionServiceObservabilityConfigLogging - (*DpuExtensionServiceObservabilityConfig)(nil), // 859: forge.DpuExtensionServiceObservabilityConfig - (*DpuExtensionServiceObservability)(nil), // 860: forge.DpuExtensionServiceObservability - (*ScoutStreamApiBoundMessage)(nil), // 861: forge.ScoutStreamApiBoundMessage - (*ScoutStreamScoutBoundMessage)(nil), // 862: forge.ScoutStreamScoutBoundMessage - (*ScoutStreamInitRequest)(nil), // 863: forge.ScoutStreamInitRequest - (*ScoutStreamShowConnectionsRequest)(nil), // 864: forge.ScoutStreamShowConnectionsRequest - (*ScoutStreamShowConnectionsResponse)(nil), // 865: forge.ScoutStreamShowConnectionsResponse - (*ScoutStreamDisconnectRequest)(nil), // 866: forge.ScoutStreamDisconnectRequest - (*ScoutStreamDisconnectResponse)(nil), // 867: forge.ScoutStreamDisconnectResponse - (*ScoutStreamAdminPingRequest)(nil), // 868: forge.ScoutStreamAdminPingRequest - (*ScoutStreamAdminPingResponse)(nil), // 869: forge.ScoutStreamAdminPingResponse - (*ScoutStreamAgentPingRequest)(nil), // 870: forge.ScoutStreamAgentPingRequest - (*ScoutStreamAgentPingResponse)(nil), // 871: forge.ScoutStreamAgentPingResponse - (*ScoutStreamConnectionInfo)(nil), // 872: forge.ScoutStreamConnectionInfo - (*ScoutStreamError)(nil), // 873: forge.ScoutStreamError - (*PrefixFilterPolicyEntry)(nil), // 874: forge.PrefixFilterPolicyEntry - (*RoutingProfile)(nil), // 875: forge.RoutingProfile - (*DomainLegacy)(nil), // 876: forge.DomainLegacy - (*DomainListLegacy)(nil), // 877: forge.DomainListLegacy - (*DomainDeletionLegacy)(nil), // 878: forge.DomainDeletionLegacy - (*DomainDeletionResultLegacy)(nil), // 879: forge.DomainDeletionResultLegacy - (*DomainSearchQueryLegacy)(nil), // 880: forge.DomainSearchQueryLegacy - (*PxeDomain)(nil), // 881: forge.PxeDomain - (*MachinePositionQuery)(nil), // 882: forge.MachinePositionQuery - (*MachinePositionInfoList)(nil), // 883: forge.MachinePositionInfoList - (*MachinePositionInfo)(nil), // 884: forge.MachinePositionInfo - (*ModifyDPFStateRequest)(nil), // 885: forge.ModifyDPFStateRequest - (*DPFStateResponse)(nil), // 886: forge.DPFStateResponse - (*GetDPFStateRequest)(nil), // 887: forge.GetDPFStateRequest - (*GetDPFHostSnapshotRequest)(nil), // 888: forge.GetDPFHostSnapshotRequest - (*DPFHostSnapshotResponse)(nil), // 889: forge.DPFHostSnapshotResponse - (*GetDPFServiceVersionsRequest)(nil), // 890: forge.GetDPFServiceVersionsRequest - (*DPFServiceVersion)(nil), // 891: forge.DPFServiceVersion - (*DPFServiceVersionsResponse)(nil), // 892: forge.DPFServiceVersionsResponse - (*ComponentResult)(nil), // 893: forge.ComponentResult - (*SwitchIdList)(nil), // 894: forge.SwitchIdList - (*PowerShelfIdList)(nil), // 895: forge.PowerShelfIdList - (*GetComponentInventoryRequest)(nil), // 896: forge.GetComponentInventoryRequest - (*ComponentInventoryEntry)(nil), // 897: forge.ComponentInventoryEntry - (*GetComponentInventoryResponse)(nil), // 898: forge.GetComponentInventoryResponse - (*ComponentPowerControlRequest)(nil), // 899: forge.ComponentPowerControlRequest - (*ComponentPowerControlResponse)(nil), // 900: forge.ComponentPowerControlResponse - (*ComponentConfigureSwitchCertificateRequest)(nil), // 901: forge.ComponentConfigureSwitchCertificateRequest - (*ComponentConfigureSwitchCertificateResponse)(nil), // 902: forge.ComponentConfigureSwitchCertificateResponse - (*FirmwareUpdateStatus)(nil), // 903: forge.FirmwareUpdateStatus - (*UpdateComputeTrayFirmwareTarget)(nil), // 904: forge.UpdateComputeTrayFirmwareTarget - (*UpdateSwitchFirmwareTarget)(nil), // 905: forge.UpdateSwitchFirmwareTarget - (*UpdatePowerShelfFirmwareTarget)(nil), // 906: forge.UpdatePowerShelfFirmwareTarget - (*UpdateFirmwareObjectTarget)(nil), // 907: forge.UpdateFirmwareObjectTarget - (*UpdateComponentFirmwareRequest)(nil), // 908: forge.UpdateComponentFirmwareRequest - (*UpdateComponentFirmwareResponse)(nil), // 909: forge.UpdateComponentFirmwareResponse - (*GetComponentFirmwareStatusRequest)(nil), // 910: forge.GetComponentFirmwareStatusRequest - (*GetComponentFirmwareStatusResponse)(nil), // 911: forge.GetComponentFirmwareStatusResponse - (*ListComponentFirmwareVersionsRequest)(nil), // 912: forge.ListComponentFirmwareVersionsRequest - (*ComputeTrayFirmwareVersions)(nil), // 913: forge.ComputeTrayFirmwareVersions - (*DeviceFirmwareVersions)(nil), // 914: forge.DeviceFirmwareVersions - (*ListComponentFirmwareVersionsResponse)(nil), // 915: forge.ListComponentFirmwareVersionsResponse - (*SpxPartitionCreationRequest)(nil), // 916: forge.SpxPartitionCreationRequest - (*SpxPartition)(nil), // 917: forge.SpxPartition - (*SpxPartitionIdList)(nil), // 918: forge.SpxPartitionIdList - (*SpxPartitionDeletionRequest)(nil), // 919: forge.SpxPartitionDeletionRequest - (*SpxPartitionDeletionResult)(nil), // 920: forge.SpxPartitionDeletionResult - (*SpxPartitionSearchFilter)(nil), // 921: forge.SpxPartitionSearchFilter - (*SpxPartitionList)(nil), // 922: forge.SpxPartitionList - (*SpxPartitionsByIdsRequest)(nil), // 923: forge.SpxPartitionsByIdsRequest - (*AdminForceDeleteSwitchRequest)(nil), // 924: forge.AdminForceDeleteSwitchRequest - (*AdminForceDeleteSwitchResponse)(nil), // 925: forge.AdminForceDeleteSwitchResponse - (*AdminForceDeletePowerShelfRequest)(nil), // 926: forge.AdminForceDeletePowerShelfRequest - (*AdminForceDeletePowerShelfResponse)(nil), // 927: forge.AdminForceDeletePowerShelfResponse - (*OperatingSystem)(nil), // 928: forge.OperatingSystem - (*CreateOperatingSystemRequest)(nil), // 929: forge.CreateOperatingSystemRequest - (*IpxeTemplateParameters)(nil), // 930: forge.IpxeTemplateParameters - (*IpxeTemplateArtifacts)(nil), // 931: forge.IpxeTemplateArtifacts - (*UpdateOperatingSystemRequest)(nil), // 932: forge.UpdateOperatingSystemRequest - (*DeleteOperatingSystemRequest)(nil), // 933: forge.DeleteOperatingSystemRequest - (*DeleteOperatingSystemResponse)(nil), // 934: forge.DeleteOperatingSystemResponse - (*OperatingSystemSearchFilter)(nil), // 935: forge.OperatingSystemSearchFilter - (*OperatingSystemIdList)(nil), // 936: forge.OperatingSystemIdList - (*OperatingSystemsByIdsRequest)(nil), // 937: forge.OperatingSystemsByIdsRequest - (*OperatingSystemList)(nil), // 938: forge.OperatingSystemList - (*GetOperatingSystemCachableIpxeTemplateArtifactsRequest)(nil), // 939: forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest - (*IpxeTemplateArtifactList)(nil), // 940: forge.IpxeTemplateArtifactList - (*IpxeTemplateArtifactUpdateRequest)(nil), // 941: forge.IpxeTemplateArtifactUpdateRequest - (*UpdateOperatingSystemIpxeTemplateArtifactRequest)(nil), // 942: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest - (*HostRepresentorInterceptBridging)(nil), // 943: forge.HostRepresentorInterceptBridging - (*ReWrapSecretsRequest)(nil), // 944: forge.ReWrapSecretsRequest - (*ReWrapSecretsResponse)(nil), // 945: forge.ReWrapSecretsResponse - (*GetMachineBootInterfacesRequest)(nil), // 946: forge.GetMachineBootInterfacesRequest - (*MachineBootInterface)(nil), // 947: forge.MachineBootInterface - (*MachineInterfaceBootInterface)(nil), // 948: forge.MachineInterfaceBootInterface - (*PredictedBootInterface)(nil), // 949: forge.PredictedBootInterface - (*ExploredBootInterface)(nil), // 950: forge.ExploredBootInterface - (*RetainedBootInterface)(nil), // 951: forge.RetainedBootInterface - (*GetMachineBootInterfacesResponse)(nil), // 952: forge.GetMachineBootInterfacesResponse - nil, // 953: forge.RuntimeConfig.DpuNicFirmwareUpdateVersionEntry - (*DNSMessage_DNSQuestion)(nil), // 954: forge.DNSMessage.DNSQuestion - (*DNSMessage_DNSResponse)(nil), // 955: forge.DNSMessage.DNSResponse - (*DNSMessage_DNSResponse_DNSRR)(nil), // 956: forge.DNSMessage.DNSResponse.DNSRR - nil, // 957: forge.FabricManagerConfig.ConfigMapEntry - nil, // 958: forge.StateHistories.HistoriesEntry - nil, // 959: forge.MachineStateHistories.HistoriesEntry - nil, // 960: forge.HealthHistories.HistoriesEntry - nil, // 961: forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry - (*MachineCredentialsUpdateRequest_Credentials)(nil), // 962: forge.MachineCredentialsUpdateRequest.Credentials - (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo)(nil), // 963: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo - (*ForgeAgentControlResponse_Noop)(nil), // 964: forge.ForgeAgentControlResponse.Noop - (*ForgeAgentControlResponse_Reset)(nil), // 965: forge.ForgeAgentControlResponse.Reset - (*ForgeAgentControlResponse_Discovery)(nil), // 966: forge.ForgeAgentControlResponse.Discovery - (*ForgeAgentControlResponse_Rebuild)(nil), // 967: forge.ForgeAgentControlResponse.Rebuild - (*ForgeAgentControlResponse_Retry)(nil), // 968: forge.ForgeAgentControlResponse.Retry - (*ForgeAgentControlResponse_Measure)(nil), // 969: forge.ForgeAgentControlResponse.Measure - (*ForgeAgentControlResponse_LogError)(nil), // 970: forge.ForgeAgentControlResponse.LogError - (*ForgeAgentControlResponse_MachineValidation)(nil), // 971: forge.ForgeAgentControlResponse.MachineValidation - (*ForgeAgentControlResponse_MachineValidationFilter)(nil), // 972: forge.ForgeAgentControlResponse.MachineValidationFilter - (*ForgeAgentControlResponse_MlxAction)(nil), // 973: forge.ForgeAgentControlResponse.MlxAction - (*ForgeAgentControlResponse_MlxDeviceAction)(nil), // 974: forge.ForgeAgentControlResponse.MlxDeviceAction - (*ForgeAgentControlResponse_MlxDeviceNoop)(nil), // 975: forge.ForgeAgentControlResponse.MlxDeviceNoop - (*ForgeAgentControlResponse_MlxDeviceLock)(nil), // 976: forge.ForgeAgentControlResponse.MlxDeviceLock - (*ForgeAgentControlResponse_MlxDeviceUnlock)(nil), // 977: forge.ForgeAgentControlResponse.MlxDeviceUnlock - (*ForgeAgentControlResponse_MlxDeviceApplyProfile)(nil), // 978: forge.ForgeAgentControlResponse.MlxDeviceApplyProfile - (*ForgeAgentControlResponse_MlxDeviceApplyFirmware)(nil), // 979: forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware - (*ForgeAgentControlResponse_FirmwareUpgrade)(nil), // 980: forge.ForgeAgentControlResponse.FirmwareUpgrade - (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair)(nil), // 981: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.KeyValuePair - (*MachineCleanupInfo_CleanupStepResult)(nil), // 982: forge.MachineCleanupInfo.CleanupStepResult - (*DpuReprovisioningListResponse_DpuReprovisioningListItem)(nil), // 983: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem - (*HostReprovisioningListResponse_HostReprovisioningListItem)(nil), // 984: forge.HostReprovisioningListResponse.HostReprovisioningListItem - (*MachineValidationTestUpdateRequest_Payload)(nil), // 985: forge.MachineValidationTestUpdateRequest.Payload - nil, // 986: forge.RedfishBrowseResponse.HeadersEntry - nil, // 987: forge.RedfishActionResult.HeadersEntry - nil, // 988: forge.UfmBrowseResponse.HeadersEntry - nil, // 989: forge.DesiredFirmwareVersionEntry.ComponentVersionsEntry - nil, // 990: forge.NmxcBrowseResponse.HeadersEntry - (*DPFStateResponse_DPFState)(nil), // 991: forge.DPFStateResponse.DPFState - (*MachineId)(nil), // 992: common.MachineId - (*timestamppb.Timestamp)(nil), // 993: google.protobuf.Timestamp - (*VpcId)(nil), // 994: common.VpcId - (*NVLinkLogicalPartitionId)(nil), // 995: common.NVLinkLogicalPartitionId - (*VpcPrefixId)(nil), // 996: common.VpcPrefixId - (*VpcPeeringId)(nil), // 997: common.VpcPeeringId - (*IBPartitionId)(nil), // 998: common.IBPartitionId - (*HealthReport)(nil), // 999: health.HealthReport - (*PowerShelfId)(nil), // 1000: common.PowerShelfId - (*RackId)(nil), // 1001: common.RackId - (*UUID)(nil), // 1002: common.UUID - (*SwitchId)(nil), // 1003: common.SwitchId - (*RackProfileId)(nil), // 1004: common.RackProfileId - (*DomainId)(nil), // 1005: common.DomainId - (*NetworkSegmentId)(nil), // 1006: common.NetworkSegmentId - (*NetworkPrefixId)(nil), // 1007: common.NetworkPrefixId - (*InstanceId)(nil), // 1008: common.InstanceId - (*IpxeTemplateId)(nil), // 1009: common.IpxeTemplateId - (*OperatingSystemId)(nil), // 1010: common.OperatingSystemId - (*SpxPartitionId)(nil), // 1011: common.SpxPartitionId - (*NVLinkDomainId)(nil), // 1012: common.NVLinkDomainId - (*MachineInterfaceId)(nil), // 1013: common.MachineInterfaceId - (*DiscoveryInfo)(nil), // 1014: machine_discovery.DiscoveryInfo - (*durationpb.Duration)(nil), // 1015: google.protobuf.Duration - (*StringList)(nil), // 1016: common.StringList - (*Gpu)(nil), // 1017: machine_discovery.Gpu - (*RouteTarget)(nil), // 1018: common.RouteTarget - (*MachineValidationId)(nil), // 1019: common.MachineValidationId - (*Uint32List)(nil), // 1020: common.Uint32List - (*DpaInterfaceId)(nil), // 1021: common.DpaInterfaceId - (*ComputeAllocationId)(nil), // 1022: common.ComputeAllocationId - (*RackHardwareType)(nil), // 1023: common.RackHardwareType - (*NVLinkPartitionId)(nil), // 1024: common.NVLinkPartitionId - (*RemediationId)(nil), // 1025: common.RemediationId - (*MlxDeviceLockdownResponse)(nil), // 1026: mlx_device.MlxDeviceLockdownResponse - (*MlxDeviceProfileSyncResponse)(nil), // 1027: mlx_device.MlxDeviceProfileSyncResponse - (*MlxDeviceProfileCompareResponse)(nil), // 1028: mlx_device.MlxDeviceProfileCompareResponse - (*MlxDeviceInfoDeviceResponse)(nil), // 1029: mlx_device.MlxDeviceInfoDeviceResponse - (*MlxDeviceInfoReportResponse)(nil), // 1030: mlx_device.MlxDeviceInfoReportResponse - (*MlxDeviceRegistryListResponse)(nil), // 1031: mlx_device.MlxDeviceRegistryListResponse - (*MlxDeviceRegistryShowResponse)(nil), // 1032: mlx_device.MlxDeviceRegistryShowResponse - (*MlxDeviceConfigQueryResponse)(nil), // 1033: mlx_device.MlxDeviceConfigQueryResponse - (*MlxDeviceConfigSetResponse)(nil), // 1034: mlx_device.MlxDeviceConfigSetResponse - (*MlxDeviceConfigSyncResponse)(nil), // 1035: mlx_device.MlxDeviceConfigSyncResponse - (*MlxDeviceConfigCompareResponse)(nil), // 1036: mlx_device.MlxDeviceConfigCompareResponse - (*MlxDeviceLockdownLockRequest)(nil), // 1037: mlx_device.MlxDeviceLockdownLockRequest - (*MlxDeviceLockdownUnlockRequest)(nil), // 1038: mlx_device.MlxDeviceLockdownUnlockRequest - (*MlxDeviceLockdownStatusRequest)(nil), // 1039: mlx_device.MlxDeviceLockdownStatusRequest - (*MlxDeviceProfileSyncRequest)(nil), // 1040: mlx_device.MlxDeviceProfileSyncRequest - (*MlxDeviceProfileCompareRequest)(nil), // 1041: mlx_device.MlxDeviceProfileCompareRequest - (*MlxDeviceInfoDeviceRequest)(nil), // 1042: mlx_device.MlxDeviceInfoDeviceRequest - (*MlxDeviceInfoReportRequest)(nil), // 1043: mlx_device.MlxDeviceInfoReportRequest - (*MlxDeviceRegistryListRequest)(nil), // 1044: mlx_device.MlxDeviceRegistryListRequest - (*MlxDeviceRegistryShowRequest)(nil), // 1045: mlx_device.MlxDeviceRegistryShowRequest - (*MlxDeviceConfigQueryRequest)(nil), // 1046: mlx_device.MlxDeviceConfigQueryRequest - (*MlxDeviceConfigSetRequest)(nil), // 1047: mlx_device.MlxDeviceConfigSetRequest - (*MlxDeviceConfigSyncRequest)(nil), // 1048: mlx_device.MlxDeviceConfigSyncRequest - (*MlxDeviceConfigCompareRequest)(nil), // 1049: mlx_device.MlxDeviceConfigCompareRequest - (*Domain)(nil), // 1050: dns.Domain - (*MachineIdList)(nil), // 1051: common.MachineIdList - (*EndpointExplorationReport)(nil), // 1052: site_explorer.EndpointExplorationReport - (SystemPowerControl)(0), // 1053: common.SystemPowerControl - (*SerializableMlxConfigProfile)(nil), // 1054: mlx_device.SerializableMlxConfigProfile - (*FirmwareFlasherProfile)(nil), // 1055: mlx_device.FirmwareFlasherProfile - (*ScoutFirmwareUpgradeTask)(nil), // 1056: scout_firmware_upgrade.ScoutFirmwareUpgradeTask - (*CreateDomainRequest)(nil), // 1057: dns.CreateDomainRequest - (*UpdateDomainRequest)(nil), // 1058: dns.UpdateDomainRequest - (*DomainDeletionRequest)(nil), // 1059: dns.DomainDeletionRequest - (*DomainSearchQuery)(nil), // 1060: dns.DomainSearchQuery - (*DnsResourceRecordLookupRequest)(nil), // 1061: dns.DnsResourceRecordLookupRequest - (*GetAllDomainsRequest)(nil), // 1062: dns.GetAllDomainsRequest - (*DomainMetadataRequest)(nil), // 1063: dns.DomainMetadataRequest - (*emptypb.Empty)(nil), // 1064: google.protobuf.Empty - (*ExploredEndpointSearchFilter)(nil), // 1065: site_explorer.ExploredEndpointSearchFilter - (*ExploredEndpointsByIdsRequest)(nil), // 1066: site_explorer.ExploredEndpointsByIdsRequest - (*ExploredManagedHostSearchFilter)(nil), // 1067: site_explorer.ExploredManagedHostSearchFilter - (*ExploredManagedHostsByIdsRequest)(nil), // 1068: site_explorer.ExploredManagedHostsByIdsRequest - (*ExploredMlxDeviceHostSearchFilter)(nil), // 1069: site_explorer.ExploredMlxDeviceHostSearchFilter - (*ExploredMlxDevicesByIdsRequest)(nil), // 1070: site_explorer.ExploredMlxDevicesByIdsRequest - (*CreateMeasurementBundleRequest)(nil), // 1071: measured_boot.CreateMeasurementBundleRequest - (*DeleteMeasurementBundleRequest)(nil), // 1072: measured_boot.DeleteMeasurementBundleRequest - (*RenameMeasurementBundleRequest)(nil), // 1073: measured_boot.RenameMeasurementBundleRequest - (*UpdateMeasurementBundleRequest)(nil), // 1074: measured_boot.UpdateMeasurementBundleRequest - (*ShowMeasurementBundleRequest)(nil), // 1075: measured_boot.ShowMeasurementBundleRequest - (*ShowMeasurementBundlesRequest)(nil), // 1076: measured_boot.ShowMeasurementBundlesRequest - (*ListMeasurementBundlesRequest)(nil), // 1077: measured_boot.ListMeasurementBundlesRequest - (*ListMeasurementBundleMachinesRequest)(nil), // 1078: measured_boot.ListMeasurementBundleMachinesRequest - (*FindClosestBundleMatchRequest)(nil), // 1079: measured_boot.FindClosestBundleMatchRequest - (*DeleteMeasurementJournalRequest)(nil), // 1080: measured_boot.DeleteMeasurementJournalRequest - (*ShowMeasurementJournalRequest)(nil), // 1081: measured_boot.ShowMeasurementJournalRequest - (*ShowMeasurementJournalsRequest)(nil), // 1082: measured_boot.ShowMeasurementJournalsRequest - (*ListMeasurementJournalRequest)(nil), // 1083: measured_boot.ListMeasurementJournalRequest - (*AttestCandidateMachineRequest)(nil), // 1084: measured_boot.AttestCandidateMachineRequest - (*ShowCandidateMachineRequest)(nil), // 1085: measured_boot.ShowCandidateMachineRequest - (*ShowCandidateMachinesRequest)(nil), // 1086: measured_boot.ShowCandidateMachinesRequest - (*ListCandidateMachinesRequest)(nil), // 1087: measured_boot.ListCandidateMachinesRequest - (*CreateMeasurementSystemProfileRequest)(nil), // 1088: measured_boot.CreateMeasurementSystemProfileRequest - (*DeleteMeasurementSystemProfileRequest)(nil), // 1089: measured_boot.DeleteMeasurementSystemProfileRequest - (*RenameMeasurementSystemProfileRequest)(nil), // 1090: measured_boot.RenameMeasurementSystemProfileRequest - (*ShowMeasurementSystemProfileRequest)(nil), // 1091: measured_boot.ShowMeasurementSystemProfileRequest - (*ShowMeasurementSystemProfilesRequest)(nil), // 1092: measured_boot.ShowMeasurementSystemProfilesRequest - (*ListMeasurementSystemProfilesRequest)(nil), // 1093: measured_boot.ListMeasurementSystemProfilesRequest - (*ListMeasurementSystemProfileBundlesRequest)(nil), // 1094: measured_boot.ListMeasurementSystemProfileBundlesRequest - (*ListMeasurementSystemProfileMachinesRequest)(nil), // 1095: measured_boot.ListMeasurementSystemProfileMachinesRequest - (*CreateMeasurementReportRequest)(nil), // 1096: measured_boot.CreateMeasurementReportRequest - (*DeleteMeasurementReportRequest)(nil), // 1097: measured_boot.DeleteMeasurementReportRequest - (*PromoteMeasurementReportRequest)(nil), // 1098: measured_boot.PromoteMeasurementReportRequest - (*RevokeMeasurementReportRequest)(nil), // 1099: measured_boot.RevokeMeasurementReportRequest - (*ShowMeasurementReportForIdRequest)(nil), // 1100: measured_boot.ShowMeasurementReportForIdRequest - (*ShowMeasurementReportsForMachineRequest)(nil), // 1101: measured_boot.ShowMeasurementReportsForMachineRequest - (*ShowMeasurementReportsRequest)(nil), // 1102: measured_boot.ShowMeasurementReportsRequest - (*ListMeasurementReportRequest)(nil), // 1103: measured_boot.ListMeasurementReportRequest - (*MatchMeasurementReportRequest)(nil), // 1104: measured_boot.MatchMeasurementReportRequest - (*ImportSiteMeasurementsRequest)(nil), // 1105: measured_boot.ImportSiteMeasurementsRequest - (*ExportSiteMeasurementsRequest)(nil), // 1106: measured_boot.ExportSiteMeasurementsRequest - (*AddMeasurementTrustedMachineRequest)(nil), // 1107: measured_boot.AddMeasurementTrustedMachineRequest - (*RemoveMeasurementTrustedMachineRequest)(nil), // 1108: measured_boot.RemoveMeasurementTrustedMachineRequest - (*AddMeasurementTrustedProfileRequest)(nil), // 1109: measured_boot.AddMeasurementTrustedProfileRequest - (*RemoveMeasurementTrustedProfileRequest)(nil), // 1110: measured_boot.RemoveMeasurementTrustedProfileRequest - (*ListMeasurementTrustedMachinesRequest)(nil), // 1111: measured_boot.ListMeasurementTrustedMachinesRequest - (*ListMeasurementTrustedProfilesRequest)(nil), // 1112: measured_boot.ListMeasurementTrustedProfilesRequest - (*ListAttestationSummaryRequest)(nil), // 1113: measured_boot.ListAttestationSummaryRequest - (*PublishMlxDeviceReportRequest)(nil), // 1114: mlx_device.PublishMlxDeviceReportRequest - (*PublishMlxObservationReportRequest)(nil), // 1115: mlx_device.PublishMlxObservationReportRequest - (*MlxAdminProfileSyncRequest)(nil), // 1116: mlx_device.MlxAdminProfileSyncRequest - (*MlxAdminProfileShowRequest)(nil), // 1117: mlx_device.MlxAdminProfileShowRequest - (*MlxAdminProfileCompareRequest)(nil), // 1118: mlx_device.MlxAdminProfileCompareRequest - (*MlxAdminProfileListRequest)(nil), // 1119: mlx_device.MlxAdminProfileListRequest - (*MlxAdminLockdownLockRequest)(nil), // 1120: mlx_device.MlxAdminLockdownLockRequest - (*MlxAdminLockdownUnlockRequest)(nil), // 1121: mlx_device.MlxAdminLockdownUnlockRequest - (*MlxAdminLockdownStatusRequest)(nil), // 1122: mlx_device.MlxAdminLockdownStatusRequest - (*MlxAdminDeviceInfoRequest)(nil), // 1123: mlx_device.MlxAdminDeviceInfoRequest - (*MlxAdminDeviceReportRequest)(nil), // 1124: mlx_device.MlxAdminDeviceReportRequest - (*MlxAdminRegistryListRequest)(nil), // 1125: mlx_device.MlxAdminRegistryListRequest - (*MlxAdminRegistryShowRequest)(nil), // 1126: mlx_device.MlxAdminRegistryShowRequest - (*MlxAdminConfigQueryRequest)(nil), // 1127: mlx_device.MlxAdminConfigQueryRequest - (*MlxAdminConfigSetRequest)(nil), // 1128: mlx_device.MlxAdminConfigSetRequest - (*MlxAdminConfigSyncRequest)(nil), // 1129: mlx_device.MlxAdminConfigSyncRequest - (*MlxAdminConfigCompareRequest)(nil), // 1130: mlx_device.MlxAdminConfigCompareRequest - (*DomainDeletionResult)(nil), // 1131: dns.DomainDeletionResult - (*DomainList)(nil), // 1132: dns.DomainList - (*DnsResourceRecordLookupResponse)(nil), // 1133: dns.DnsResourceRecordLookupResponse - (*GetAllDomainsResponse)(nil), // 1134: dns.GetAllDomainsResponse - (*DomainMetadataResponse)(nil), // 1135: dns.DomainMetadataResponse - (*SiteExplorationReport)(nil), // 1136: site_explorer.SiteExplorationReport - (*SiteExplorerLastRunResponse)(nil), // 1137: site_explorer.SiteExplorerLastRunResponse - (*ExploredEndpoint)(nil), // 1138: site_explorer.ExploredEndpoint - (*ExploredEndpointIdList)(nil), // 1139: site_explorer.ExploredEndpointIdList - (*ExploredEndpointList)(nil), // 1140: site_explorer.ExploredEndpointList - (*ExploredManagedHostIdList)(nil), // 1141: site_explorer.ExploredManagedHostIdList - (*ExploredManagedHostList)(nil), // 1142: site_explorer.ExploredManagedHostList - (*ExploredMlxDeviceHostIdList)(nil), // 1143: site_explorer.ExploredMlxDeviceHostIdList - (*ExploredMlxDeviceList)(nil), // 1144: site_explorer.ExploredMlxDeviceList - (*CreateMeasurementBundleResponse)(nil), // 1145: measured_boot.CreateMeasurementBundleResponse - (*DeleteMeasurementBundleResponse)(nil), // 1146: measured_boot.DeleteMeasurementBundleResponse - (*RenameMeasurementBundleResponse)(nil), // 1147: measured_boot.RenameMeasurementBundleResponse - (*UpdateMeasurementBundleResponse)(nil), // 1148: measured_boot.UpdateMeasurementBundleResponse - (*ShowMeasurementBundleResponse)(nil), // 1149: measured_boot.ShowMeasurementBundleResponse - (*ShowMeasurementBundlesResponse)(nil), // 1150: measured_boot.ShowMeasurementBundlesResponse - (*ListMeasurementBundlesResponse)(nil), // 1151: measured_boot.ListMeasurementBundlesResponse - (*ListMeasurementBundleMachinesResponse)(nil), // 1152: measured_boot.ListMeasurementBundleMachinesResponse - (*DeleteMeasurementJournalResponse)(nil), // 1153: measured_boot.DeleteMeasurementJournalResponse - (*ShowMeasurementJournalResponse)(nil), // 1154: measured_boot.ShowMeasurementJournalResponse - (*ShowMeasurementJournalsResponse)(nil), // 1155: measured_boot.ShowMeasurementJournalsResponse - (*ListMeasurementJournalResponse)(nil), // 1156: measured_boot.ListMeasurementJournalResponse - (*AttestCandidateMachineResponse)(nil), // 1157: measured_boot.AttestCandidateMachineResponse - (*ShowCandidateMachineResponse)(nil), // 1158: measured_boot.ShowCandidateMachineResponse - (*ShowCandidateMachinesResponse)(nil), // 1159: measured_boot.ShowCandidateMachinesResponse - (*ListCandidateMachinesResponse)(nil), // 1160: measured_boot.ListCandidateMachinesResponse - (*CreateMeasurementSystemProfileResponse)(nil), // 1161: measured_boot.CreateMeasurementSystemProfileResponse - (*DeleteMeasurementSystemProfileResponse)(nil), // 1162: measured_boot.DeleteMeasurementSystemProfileResponse - (*RenameMeasurementSystemProfileResponse)(nil), // 1163: measured_boot.RenameMeasurementSystemProfileResponse - (*ShowMeasurementSystemProfileResponse)(nil), // 1164: measured_boot.ShowMeasurementSystemProfileResponse - (*ShowMeasurementSystemProfilesResponse)(nil), // 1165: measured_boot.ShowMeasurementSystemProfilesResponse - (*ListMeasurementSystemProfilesResponse)(nil), // 1166: measured_boot.ListMeasurementSystemProfilesResponse - (*ListMeasurementSystemProfileBundlesResponse)(nil), // 1167: measured_boot.ListMeasurementSystemProfileBundlesResponse - (*ListMeasurementSystemProfileMachinesResponse)(nil), // 1168: measured_boot.ListMeasurementSystemProfileMachinesResponse - (*CreateMeasurementReportResponse)(nil), // 1169: measured_boot.CreateMeasurementReportResponse - (*DeleteMeasurementReportResponse)(nil), // 1170: measured_boot.DeleteMeasurementReportResponse - (*PromoteMeasurementReportResponse)(nil), // 1171: measured_boot.PromoteMeasurementReportResponse - (*RevokeMeasurementReportResponse)(nil), // 1172: measured_boot.RevokeMeasurementReportResponse - (*ShowMeasurementReportForIdResponse)(nil), // 1173: measured_boot.ShowMeasurementReportForIdResponse - (*ShowMeasurementReportsForMachineResponse)(nil), // 1174: measured_boot.ShowMeasurementReportsForMachineResponse - (*ShowMeasurementReportsResponse)(nil), // 1175: measured_boot.ShowMeasurementReportsResponse - (*ListMeasurementReportResponse)(nil), // 1176: measured_boot.ListMeasurementReportResponse - (*MatchMeasurementReportResponse)(nil), // 1177: measured_boot.MatchMeasurementReportResponse - (*ImportSiteMeasurementsResponse)(nil), // 1178: measured_boot.ImportSiteMeasurementsResponse - (*ExportSiteMeasurementsResponse)(nil), // 1179: measured_boot.ExportSiteMeasurementsResponse - (*AddMeasurementTrustedMachineResponse)(nil), // 1180: measured_boot.AddMeasurementTrustedMachineResponse - (*RemoveMeasurementTrustedMachineResponse)(nil), // 1181: measured_boot.RemoveMeasurementTrustedMachineResponse - (*AddMeasurementTrustedProfileResponse)(nil), // 1182: measured_boot.AddMeasurementTrustedProfileResponse - (*RemoveMeasurementTrustedProfileResponse)(nil), // 1183: measured_boot.RemoveMeasurementTrustedProfileResponse - (*ListMeasurementTrustedMachinesResponse)(nil), // 1184: measured_boot.ListMeasurementTrustedMachinesResponse - (*ListMeasurementTrustedProfilesResponse)(nil), // 1185: measured_boot.ListMeasurementTrustedProfilesResponse - (*ListAttestationSummaryResponse)(nil), // 1186: measured_boot.ListAttestationSummaryResponse - (*LockdownStatus)(nil), // 1187: site_explorer.LockdownStatus - (*PublishMlxDeviceReportResponse)(nil), // 1188: mlx_device.PublishMlxDeviceReportResponse - (*PublishMlxObservationReportResponse)(nil), // 1189: mlx_device.PublishMlxObservationReportResponse - (*MlxAdminProfileSyncResponse)(nil), // 1190: mlx_device.MlxAdminProfileSyncResponse - (*MlxAdminProfileShowResponse)(nil), // 1191: mlx_device.MlxAdminProfileShowResponse - (*MlxAdminProfileCompareResponse)(nil), // 1192: mlx_device.MlxAdminProfileCompareResponse - (*MlxAdminProfileListResponse)(nil), // 1193: mlx_device.MlxAdminProfileListResponse - (*MlxAdminLockdownLockResponse)(nil), // 1194: mlx_device.MlxAdminLockdownLockResponse - (*MlxAdminLockdownUnlockResponse)(nil), // 1195: mlx_device.MlxAdminLockdownUnlockResponse - (*MlxAdminLockdownStatusResponse)(nil), // 1196: mlx_device.MlxAdminLockdownStatusResponse - (*MlxAdminDeviceInfoResponse)(nil), // 1197: mlx_device.MlxAdminDeviceInfoResponse - (*MlxAdminDeviceReportResponse)(nil), // 1198: mlx_device.MlxAdminDeviceReportResponse - (*MlxAdminRegistryListResponse)(nil), // 1199: mlx_device.MlxAdminRegistryListResponse - (*MlxAdminRegistryShowResponse)(nil), // 1200: mlx_device.MlxAdminRegistryShowResponse - (*MlxAdminConfigQueryResponse)(nil), // 1201: mlx_device.MlxAdminConfigQueryResponse - (*MlxAdminConfigSetResponse)(nil), // 1202: mlx_device.MlxAdminConfigSetResponse - (*MlxAdminConfigSyncResponse)(nil), // 1203: mlx_device.MlxAdminConfigSyncResponse - (*MlxAdminConfigCompareResponse)(nil), // 1204: mlx_device.MlxAdminConfigCompareResponse + (*BmcEndpoint)(nil), // 339: forge.BmcEndpoint + (*BmcStatus)(nil), // 340: forge.BmcStatus + (*SwitchNvosInfo)(nil), // 341: forge.SwitchNvosInfo + (*MachineConfig)(nil), // 342: forge.MachineConfig + (*MachineStatus)(nil), // 343: forge.MachineStatus + (*Machine)(nil), // 344: forge.Machine + (*DpfMachineState)(nil), // 345: forge.DpfMachineState + (*InstanceNetworkRestrictions)(nil), // 346: forge.InstanceNetworkRestrictions + (*MachineMetadataUpdateRequest)(nil), // 347: forge.MachineMetadataUpdateRequest + (*RackMetadataUpdateRequest)(nil), // 348: forge.RackMetadataUpdateRequest + (*SwitchMetadataUpdateRequest)(nil), // 349: forge.SwitchMetadataUpdateRequest + (*PowerShelfMetadataUpdateRequest)(nil), // 350: forge.PowerShelfMetadataUpdateRequest + (*DpuAgentInventoryReport)(nil), // 351: forge.DpuAgentInventoryReport + (*MachineComponentInventory)(nil), // 352: forge.MachineComponentInventory + (*MachineInventorySoftwareComponent)(nil), // 353: forge.MachineInventorySoftwareComponent + (*HealthSourceOrigin)(nil), // 354: forge.HealthSourceOrigin + (*ControllerStateReason)(nil), // 355: forge.ControllerStateReason + (*ControllerStateSourceReference)(nil), // 356: forge.ControllerStateSourceReference + (*StateSla)(nil), // 357: forge.StateSla + (*InstanceTenantStatus)(nil), // 358: forge.InstanceTenantStatus + (*MachineEvent)(nil), // 359: forge.MachineEvent + (*MachineInterface)(nil), // 360: forge.MachineInterface + (*InfinibandStatusObservation)(nil), // 361: forge.InfinibandStatusObservation + (*MachineIbInterface)(nil), // 362: forge.MachineIbInterface + (*DhcpDiscovery)(nil), // 363: forge.DhcpDiscovery + (*ExpireDhcpLeaseRequest)(nil), // 364: forge.ExpireDhcpLeaseRequest + (*ExpireDhcpLeaseResponse)(nil), // 365: forge.ExpireDhcpLeaseResponse + (*DhcpRecord)(nil), // 366: forge.DhcpRecord + (*NetworkSegmentList)(nil), // 367: forge.NetworkSegmentList + (*SSHKeyValidationRequest)(nil), // 368: forge.SSHKeyValidationRequest + (*SSHKeyValidationResponse)(nil), // 369: forge.SSHKeyValidationResponse + (*GetBmcCredentialsRequest)(nil), // 370: forge.GetBmcCredentialsRequest + (*GetSwitchNvosCredentialsRequest)(nil), // 371: forge.GetSwitchNvosCredentialsRequest + (*GetBmcCredentialsResponse)(nil), // 372: forge.GetBmcCredentialsResponse + (*BmcCredentials)(nil), // 373: forge.BmcCredentials + (*GetSiteExplorationRequest)(nil), // 374: forge.GetSiteExplorationRequest + (*ClearSiteExplorationErrorRequest)(nil), // 375: forge.ClearSiteExplorationErrorRequest + (*ReExploreEndpointRequest)(nil), // 376: forge.ReExploreEndpointRequest + (*RefreshEndpointReportRequest)(nil), // 377: forge.RefreshEndpointReportRequest + (*DeleteExploredEndpointRequest)(nil), // 378: forge.DeleteExploredEndpointRequest + (*PauseExploredEndpointRemediationRequest)(nil), // 379: forge.PauseExploredEndpointRemediationRequest + (*DeleteExploredEndpointResponse)(nil), // 380: forge.DeleteExploredEndpointResponse + (*BmcEndpointRequest)(nil), // 381: forge.BmcEndpointRequest + (*SshTimeoutConfig)(nil), // 382: forge.SshTimeoutConfig + (*SshRequest)(nil), // 383: forge.SshRequest + (*CopyBfbToDpuRshimRequest)(nil), // 384: forge.CopyBfbToDpuRshimRequest + (*UpdateMachineHardwareInfoRequest)(nil), // 385: forge.UpdateMachineHardwareInfoRequest + (*MachineHardwareInfo)(nil), // 386: forge.MachineHardwareInfo + (*ManagedHostNetworkConfigRequest)(nil), // 387: forge.ManagedHostNetworkConfigRequest + (*ManagedHostNetworkConfigResponse)(nil), // 388: forge.ManagedHostNetworkConfigResponse + (*TrafficInterceptConfig)(nil), // 389: forge.TrafficInterceptConfig + (*TrafficInterceptBridging)(nil), // 390: forge.TrafficInterceptBridging + (*ManagedHostDpuExtensionServiceConfig)(nil), // 391: forge.ManagedHostDpuExtensionServiceConfig + (*ManagedHostQuarantineState)(nil), // 392: forge.ManagedHostQuarantineState + (*GetManagedHostQuarantineStateRequest)(nil), // 393: forge.GetManagedHostQuarantineStateRequest + (*GetManagedHostQuarantineStateResponse)(nil), // 394: forge.GetManagedHostQuarantineStateResponse + (*SetManagedHostQuarantineStateRequest)(nil), // 395: forge.SetManagedHostQuarantineStateRequest + (*SetManagedHostQuarantineStateResponse)(nil), // 396: forge.SetManagedHostQuarantineStateResponse + (*ClearManagedHostQuarantineStateRequest)(nil), // 397: forge.ClearManagedHostQuarantineStateRequest + (*ClearManagedHostQuarantineStateResponse)(nil), // 398: forge.ClearManagedHostQuarantineStateResponse + (*ManagedHostNetworkConfig)(nil), // 399: forge.ManagedHostNetworkConfig + (*FlatInterfaceConfig)(nil), // 400: forge.FlatInterfaceConfig + (*FlatInterfaceRoutingProfile)(nil), // 401: forge.FlatInterfaceRoutingProfile + (*FlatInterfaceIpv6Config)(nil), // 402: forge.FlatInterfaceIpv6Config + (*FlatInterfaceNetworkSecurityGroupConfig)(nil), // 403: forge.FlatInterfaceNetworkSecurityGroupConfig + (*ManagedHostNetworkStatusRequest)(nil), // 404: forge.ManagedHostNetworkStatusRequest + (*ManagedHostNetworkStatusResponse)(nil), // 405: forge.ManagedHostNetworkStatusResponse + (*DpuAgentUpgradeCheckRequest)(nil), // 406: forge.DpuAgentUpgradeCheckRequest + (*DpuAgentUpgradeCheckResponse)(nil), // 407: forge.DpuAgentUpgradeCheckResponse + (*DpuAgentUpgradePolicyRequest)(nil), // 408: forge.DpuAgentUpgradePolicyRequest + (*DpuAgentUpgradePolicyResponse)(nil), // 409: forge.DpuAgentUpgradePolicyResponse + (*AdminForceDeleteMachineRequest)(nil), // 410: forge.AdminForceDeleteMachineRequest + (*AdminForceDeleteMachineResponse)(nil), // 411: forge.AdminForceDeleteMachineResponse + (*DisableSecureBootResponse)(nil), // 412: forge.DisableSecureBootResponse + (*LockdownRequest)(nil), // 413: forge.LockdownRequest + (*LockdownResponse)(nil), // 414: forge.LockdownResponse + (*LockdownStatusRequest)(nil), // 415: forge.LockdownStatusRequest + (*MachineSetupStatusRequest)(nil), // 416: forge.MachineSetupStatusRequest + (*MachineSetupRequest)(nil), // 417: forge.MachineSetupRequest + (*MachineSetupResponse)(nil), // 418: forge.MachineSetupResponse + (*SetDpuFirstBootOrderRequest)(nil), // 419: forge.SetDpuFirstBootOrderRequest + (*SetDpuFirstBootOrderResponse)(nil), // 420: forge.SetDpuFirstBootOrderResponse + (*AdminRebootRequest)(nil), // 421: forge.AdminRebootRequest + (*AdminRebootResponse)(nil), // 422: forge.AdminRebootResponse + (*AdminBmcResetRequest)(nil), // 423: forge.AdminBmcResetRequest + (*AdminBmcResetResponse)(nil), // 424: forge.AdminBmcResetResponse + (*EnableInfiniteBootRequest)(nil), // 425: forge.EnableInfiniteBootRequest + (*EnableInfiniteBootResponse)(nil), // 426: forge.EnableInfiniteBootResponse + (*IsInfiniteBootEnabledRequest)(nil), // 427: forge.IsInfiniteBootEnabledRequest + (*IsInfiniteBootEnabledResponse)(nil), // 428: forge.IsInfiniteBootEnabledResponse + (*BMCMetaDataGetRequest)(nil), // 429: forge.BMCMetaDataGetRequest + (*BMCMetaDataGetResponse)(nil), // 430: forge.BMCMetaDataGetResponse + (*MachineCredentialsUpdateRequest)(nil), // 431: forge.MachineCredentialsUpdateRequest + (*MachineCredentialsUpdateResponse)(nil), // 432: forge.MachineCredentialsUpdateResponse + (*ForgeAgentControlRequest)(nil), // 433: forge.ForgeAgentControlRequest + (*ForgeAgentControlResponse)(nil), // 434: forge.ForgeAgentControlResponse + (*MachineDiscoveryInfo)(nil), // 435: forge.MachineDiscoveryInfo + (*MachineDiscoveryCompletedRequest)(nil), // 436: forge.MachineDiscoveryCompletedRequest + (*MachineCleanupInfo)(nil), // 437: forge.MachineCleanupInfo + (*MachineCertificate)(nil), // 438: forge.MachineCertificate + (*MachineCertificateRenewRequest)(nil), // 439: forge.MachineCertificateRenewRequest + (*MachineCertificateResult)(nil), // 440: forge.MachineCertificateResult + (*MachineDiscoveryResult)(nil), // 441: forge.MachineDiscoveryResult + (*MachineDiscoveryCompletedResponse)(nil), // 442: forge.MachineDiscoveryCompletedResponse + (*MachineCleanupResult)(nil), // 443: forge.MachineCleanupResult + (*ForgeScoutErrorReport)(nil), // 444: forge.ForgeScoutErrorReport + (*ForgeScoutErrorReportResult)(nil), // 445: forge.ForgeScoutErrorReportResult + (*PxeInstructionRequest)(nil), // 446: forge.PxeInstructionRequest + (*PxeInstructions)(nil), // 447: forge.PxeInstructions + (*CloudInitDiscoveryInstructions)(nil), // 448: forge.CloudInitDiscoveryInstructions + (*CloudInitMetaData)(nil), // 449: forge.CloudInitMetaData + (*CloudInitInstructionsRequest)(nil), // 450: forge.CloudInitInstructionsRequest + (*CloudInitInstructions)(nil), // 451: forge.CloudInitInstructions + (*DpuNetworkStatus)(nil), // 452: forge.DpuNetworkStatus + (*LastDhcpRequest)(nil), // 453: forge.LastDhcpRequest + (*DpuExtensionServiceStatusObservation)(nil), // 454: forge.DpuExtensionServiceStatusObservation + (*DpuExtensionServiceComponent)(nil), // 455: forge.DpuExtensionServiceComponent + (*OptionalHealthReport)(nil), // 456: forge.OptionalHealthReport + (*HealthReportEntry)(nil), // 457: forge.HealthReportEntry + (*InsertMachineHealthReportRequest)(nil), // 458: forge.InsertMachineHealthReportRequest + (*InsertRackHealthReportRequest)(nil), // 459: forge.InsertRackHealthReportRequest + (*RemoveRackHealthReportRequest)(nil), // 460: forge.RemoveRackHealthReportRequest + (*ListRackHealthReportsRequest)(nil), // 461: forge.ListRackHealthReportsRequest + (*InsertSwitchHealthReportRequest)(nil), // 462: forge.InsertSwitchHealthReportRequest + (*RemoveSwitchHealthReportRequest)(nil), // 463: forge.RemoveSwitchHealthReportRequest + (*ListSwitchHealthReportsRequest)(nil), // 464: forge.ListSwitchHealthReportsRequest + (*InsertPowerShelfHealthReportRequest)(nil), // 465: forge.InsertPowerShelfHealthReportRequest + (*RemovePowerShelfHealthReportRequest)(nil), // 466: forge.RemovePowerShelfHealthReportRequest + (*ListPowerShelfHealthReportsRequest)(nil), // 467: forge.ListPowerShelfHealthReportsRequest + (*ListHealthReportResponse)(nil), // 468: forge.ListHealthReportResponse + (*RemoveMachineHealthReportRequest)(nil), // 469: forge.RemoveMachineHealthReportRequest + (*ListNVLinkDomainHealthReportsRequest)(nil), // 470: forge.ListNVLinkDomainHealthReportsRequest + (*InsertNVLinkDomainHealthReportRequest)(nil), // 471: forge.InsertNVLinkDomainHealthReportRequest + (*RemoveNVLinkDomainHealthReportRequest)(nil), // 472: forge.RemoveNVLinkDomainHealthReportRequest + (*InstanceInterfaceStatusObservation)(nil), // 473: forge.InstanceInterfaceStatusObservation + (*FabricInterfaceData)(nil), // 474: forge.FabricInterfaceData + (*LinkData)(nil), // 475: forge.LinkData + (*Tenant)(nil), // 476: forge.Tenant + (*CreateTenantRequest)(nil), // 477: forge.CreateTenantRequest + (*CreateTenantResponse)(nil), // 478: forge.CreateTenantResponse + (*UpdateTenantRequest)(nil), // 479: forge.UpdateTenantRequest + (*UpdateTenantResponse)(nil), // 480: forge.UpdateTenantResponse + (*FindTenantRequest)(nil), // 481: forge.FindTenantRequest + (*FindTenantResponse)(nil), // 482: forge.FindTenantResponse + (*TenantKeysetIdentifier)(nil), // 483: forge.TenantKeysetIdentifier + (*TenantPublicKey)(nil), // 484: forge.TenantPublicKey + (*TenantKeysetContent)(nil), // 485: forge.TenantKeysetContent + (*TenantKeyset)(nil), // 486: forge.TenantKeyset + (*CreateTenantKeysetRequest)(nil), // 487: forge.CreateTenantKeysetRequest + (*CreateTenantKeysetResponse)(nil), // 488: forge.CreateTenantKeysetResponse + (*TenantKeySetList)(nil), // 489: forge.TenantKeySetList + (*UpdateTenantKeysetRequest)(nil), // 490: forge.UpdateTenantKeysetRequest + (*UpdateTenantKeysetResponse)(nil), // 491: forge.UpdateTenantKeysetResponse + (*DeleteTenantKeysetRequest)(nil), // 492: forge.DeleteTenantKeysetRequest + (*DeleteTenantKeysetResponse)(nil), // 493: forge.DeleteTenantKeysetResponse + (*TenantKeysetSearchFilter)(nil), // 494: forge.TenantKeysetSearchFilter + (*TenantKeysetIdList)(nil), // 495: forge.TenantKeysetIdList + (*TenantKeysetsByIdsRequest)(nil), // 496: forge.TenantKeysetsByIdsRequest + (*ValidateTenantPublicKeyRequest)(nil), // 497: forge.ValidateTenantPublicKeyRequest + (*ValidateTenantPublicKeyResponse)(nil), // 498: forge.ValidateTenantPublicKeyResponse + (*ListResourcePoolsRequest)(nil), // 499: forge.ListResourcePoolsRequest + (*ResourcePools)(nil), // 500: forge.ResourcePools + (*ResourcePool)(nil), // 501: forge.ResourcePool + (*GrowResourcePoolRequest)(nil), // 502: forge.GrowResourcePoolRequest + (*GrowResourcePoolResponse)(nil), // 503: forge.GrowResourcePoolResponse + (*Range)(nil), // 504: forge.Range + (*MigrateVpcVniResponse)(nil), // 505: forge.MigrateVpcVniResponse + (*MaintenanceRequest)(nil), // 506: forge.MaintenanceRequest + (*SetDynamicConfigRequest)(nil), // 507: forge.SetDynamicConfigRequest + (*FindIpAddressRequest)(nil), // 508: forge.FindIpAddressRequest + (*FindIpAddressResponse)(nil), // 509: forge.FindIpAddressResponse + (*IdentifyUuidRequest)(nil), // 510: forge.IdentifyUuidRequest + (*IdentifyUuidResponse)(nil), // 511: forge.IdentifyUuidResponse + (*FindBmcIpsRequest)(nil), // 512: forge.FindBmcIpsRequest + (*IdentifyMacRequest)(nil), // 513: forge.IdentifyMacRequest + (*IdentifyMacResponse)(nil), // 514: forge.IdentifyMacResponse + (*IdentifySerialRequest)(nil), // 515: forge.IdentifySerialRequest + (*IdentifySerialResponse)(nil), // 516: forge.IdentifySerialResponse + (*DpuReprovisioningRequest)(nil), // 517: forge.DpuReprovisioningRequest + (*DpuReprovisioningListRequest)(nil), // 518: forge.DpuReprovisioningListRequest + (*DpuReprovisioningListResponse)(nil), // 519: forge.DpuReprovisioningListResponse + (*HostReprovisioningRequest)(nil), // 520: forge.HostReprovisioningRequest + (*HostReprovisioningListRequest)(nil), // 521: forge.HostReprovisioningListRequest + (*HostReprovisioningListResponse)(nil), // 522: forge.HostReprovisioningListResponse + (*DpuOsOperationalState)(nil), // 523: forge.DpuOsOperationalState + (*DpuRepresentorStatus)(nil), // 524: forge.DpuRepresentorStatus + (*DpuInfoStatusObservation)(nil), // 525: forge.DpuInfoStatusObservation + (*DpuInfo)(nil), // 526: forge.DpuInfo + (*GetDpuInfoListRequest)(nil), // 527: forge.GetDpuInfoListRequest + (*GetDpuInfoListResponse)(nil), // 528: forge.GetDpuInfoListResponse + (*IpAddressMatch)(nil), // 529: forge.IpAddressMatch + (*MachineBootOverride)(nil), // 530: forge.MachineBootOverride + (*ConnectedDevice)(nil), // 531: forge.ConnectedDevice + (*ConnectedDeviceList)(nil), // 532: forge.ConnectedDeviceList + (*BmcIpList)(nil), // 533: forge.BmcIpList + (*BmcIp)(nil), // 534: forge.BmcIp + (*MacAddressBmcIp)(nil), // 535: forge.MacAddressBmcIp + (*MachineIdBmcIpPairs)(nil), // 536: forge.MachineIdBmcIpPairs + (*MachineIdBmcIp)(nil), // 537: forge.MachineIdBmcIp + (*NetworkDevice)(nil), // 538: forge.NetworkDevice + (*NetworkTopologyRequest)(nil), // 539: forge.NetworkTopologyRequest + (*NetworkDeviceIdList)(nil), // 540: forge.NetworkDeviceIdList + (*NetworkTopologyData)(nil), // 541: forge.NetworkTopologyData + (*RouteServers)(nil), // 542: forge.RouteServers + (*RouteServerEntries)(nil), // 543: forge.RouteServerEntries + (*RouteServer)(nil), // 544: forge.RouteServer + (*SetHostUefiPasswordRequest)(nil), // 545: forge.SetHostUefiPasswordRequest + (*SetHostUefiPasswordResponse)(nil), // 546: forge.SetHostUefiPasswordResponse + (*ClearHostUefiPasswordRequest)(nil), // 547: forge.ClearHostUefiPasswordRequest + (*ClearHostUefiPasswordResponse)(nil), // 548: forge.ClearHostUefiPasswordResponse + (*OsImageAttributes)(nil), // 549: forge.OsImageAttributes + (*OsImage)(nil), // 550: forge.OsImage + (*ListOsImageRequest)(nil), // 551: forge.ListOsImageRequest + (*ListOsImageResponse)(nil), // 552: forge.ListOsImageResponse + (*DeleteOsImageRequest)(nil), // 553: forge.DeleteOsImageRequest + (*DeleteOsImageResponse)(nil), // 554: forge.DeleteOsImageResponse + (*GetIpxeTemplateRequest)(nil), // 555: forge.GetIpxeTemplateRequest + (*ListIpxeTemplatesRequest)(nil), // 556: forge.ListIpxeTemplatesRequest + (*IpxeTemplateList)(nil), // 557: forge.IpxeTemplateList + (*ExpectedHostNic)(nil), // 558: forge.ExpectedHostNic + (*HostLifecycleProfile)(nil), // 559: forge.HostLifecycleProfile + (*ExpectedMachine)(nil), // 560: forge.ExpectedMachine + (*ExpectedMachineRequest)(nil), // 561: forge.ExpectedMachineRequest + (*ExpectedMachineList)(nil), // 562: forge.ExpectedMachineList + (*LinkedExpectedMachineList)(nil), // 563: forge.LinkedExpectedMachineList + (*LinkedExpectedMachine)(nil), // 564: forge.LinkedExpectedMachine + (*UnexpectedMachineList)(nil), // 565: forge.UnexpectedMachineList + (*UnexpectedMachine)(nil), // 566: forge.UnexpectedMachine + (*BatchExpectedMachineOperationRequest)(nil), // 567: forge.BatchExpectedMachineOperationRequest + (*ExpectedMachineOperationResult)(nil), // 568: forge.ExpectedMachineOperationResult + (*BatchExpectedMachineOperationResponse)(nil), // 569: forge.BatchExpectedMachineOperationResponse + (*MachineRebootCompletedResponse)(nil), // 570: forge.MachineRebootCompletedResponse + (*MachineRebootCompletedRequest)(nil), // 571: forge.MachineRebootCompletedRequest + (*ScoutFirmwareUpgradeStatusRequest)(nil), // 572: forge.ScoutFirmwareUpgradeStatusRequest + (*MachineValidationCompletedRequest)(nil), // 573: forge.MachineValidationCompletedRequest + (*MachineValidationCompletedResponse)(nil), // 574: forge.MachineValidationCompletedResponse + (*MachineValidationResult)(nil), // 575: forge.MachineValidationResult + (*MachineValidationResultPostRequest)(nil), // 576: forge.MachineValidationResultPostRequest + (*MachineValidationResultList)(nil), // 577: forge.MachineValidationResultList + (*MachineValidationGetRequest)(nil), // 578: forge.MachineValidationGetRequest + (*MachineValidationStatus)(nil), // 579: forge.MachineValidationStatus + (*MachineValidationRun)(nil), // 580: forge.MachineValidationRun + (*MachineSetAutoUpdateRequest)(nil), // 581: forge.MachineSetAutoUpdateRequest + (*MachineSetAutoUpdateResponse)(nil), // 582: forge.MachineSetAutoUpdateResponse + (*GetMachineValidationExternalConfigRequest)(nil), // 583: forge.GetMachineValidationExternalConfigRequest + (*MachineValidationExternalConfig)(nil), // 584: forge.MachineValidationExternalConfig + (*GetMachineValidationExternalConfigResponse)(nil), // 585: forge.GetMachineValidationExternalConfigResponse + (*GetMachineValidationExternalConfigsRequest)(nil), // 586: forge.GetMachineValidationExternalConfigsRequest + (*GetMachineValidationExternalConfigsResponse)(nil), // 587: forge.GetMachineValidationExternalConfigsResponse + (*AddUpdateMachineValidationExternalConfigRequest)(nil), // 588: forge.AddUpdateMachineValidationExternalConfigRequest + (*RemoveMachineValidationExternalConfigRequest)(nil), // 589: forge.RemoveMachineValidationExternalConfigRequest + (*MachineValidationOnDemandRequest)(nil), // 590: forge.MachineValidationOnDemandRequest + (*MachineValidationOnDemandResponse)(nil), // 591: forge.MachineValidationOnDemandResponse + (*FirmwareUpgradeActivity)(nil), // 592: forge.FirmwareUpgradeActivity + (*NvosUpdateActivity)(nil), // 593: forge.NvosUpdateActivity + (*ConfigureNmxClusterActivity)(nil), // 594: forge.ConfigureNmxClusterActivity + (*PowerSequenceActivity)(nil), // 595: forge.PowerSequenceActivity + (*MaintenanceActivityConfig)(nil), // 596: forge.MaintenanceActivityConfig + (*RackMaintenanceScope)(nil), // 597: forge.RackMaintenanceScope + (*RackMaintenanceOnDemandRequest)(nil), // 598: forge.RackMaintenanceOnDemandRequest + (*RackMaintenanceOnDemandResponse)(nil), // 599: forge.RackMaintenanceOnDemandResponse + (*AdminPowerControlRequest)(nil), // 600: forge.AdminPowerControlRequest + (*AdminPowerControlResponse)(nil), // 601: forge.AdminPowerControlResponse + (*GetRedfishJobStateRequest)(nil), // 602: forge.GetRedfishJobStateRequest + (*GetRedfishJobStateResponse)(nil), // 603: forge.GetRedfishJobStateResponse + (*MachineValidationRunList)(nil), // 604: forge.MachineValidationRunList + (*MachineValidationRunListGetRequest)(nil), // 605: forge.MachineValidationRunListGetRequest + (*MachineValidationRunItemSearchFilter)(nil), // 606: forge.MachineValidationRunItemSearchFilter + (*MachineValidationRunItemIdList)(nil), // 607: forge.MachineValidationRunItemIdList + (*MachineValidationRunItemsByIdsRequest)(nil), // 608: forge.MachineValidationRunItemsByIdsRequest + (*MachineValidationRunItemList)(nil), // 609: forge.MachineValidationRunItemList + (*MachineValidationRunItem)(nil), // 610: forge.MachineValidationRunItem + (*MachineValidationAttemptGetRequest)(nil), // 611: forge.MachineValidationAttemptGetRequest + (*MachineValidationAttempt)(nil), // 612: forge.MachineValidationAttempt + (*MachineValidationHeartbeatRequest)(nil), // 613: forge.MachineValidationHeartbeatRequest + (*MachineValidationHeartbeatResponse)(nil), // 614: forge.MachineValidationHeartbeatResponse + (*IsBmcInManagedHostResponse)(nil), // 615: forge.IsBmcInManagedHostResponse + (*BmcCredentialStatusResponse)(nil), // 616: forge.BmcCredentialStatusResponse + (*MachineValidationTestsGetRequest)(nil), // 617: forge.MachineValidationTestsGetRequest + (*MachineValidationTestUpdateRequest)(nil), // 618: forge.MachineValidationTestUpdateRequest + (*MachineValidationTestAddRequest)(nil), // 619: forge.MachineValidationTestAddRequest + (*MachineValidationTestAddUpdateResponse)(nil), // 620: forge.MachineValidationTestAddUpdateResponse + (*MachineValidationTestsGetResponse)(nil), // 621: forge.MachineValidationTestsGetResponse + (*MachineValidationTestVerfiedRequest)(nil), // 622: forge.MachineValidationTestVerfiedRequest + (*MachineValidationTestVerfiedResponse)(nil), // 623: forge.MachineValidationTestVerfiedResponse + (*MachineValidationTest)(nil), // 624: forge.MachineValidationTest + (*MachineValidationTestNextVersionResponse)(nil), // 625: forge.MachineValidationTestNextVersionResponse + (*MachineValidationTestNextVersionRequest)(nil), // 626: forge.MachineValidationTestNextVersionRequest + (*MachineValidationTestEnableDisableTestRequest)(nil), // 627: forge.MachineValidationTestEnableDisableTestRequest + (*MachineValidationTestEnableDisableTestResponse)(nil), // 628: forge.MachineValidationTestEnableDisableTestResponse + (*MachineValidationRunRequest)(nil), // 629: forge.MachineValidationRunRequest + (*MachineValidationRunResponse)(nil), // 630: forge.MachineValidationRunResponse + (*MachineCapabilityAttributesCpu)(nil), // 631: forge.MachineCapabilityAttributesCpu + (*MachineCapabilityAttributesGpu)(nil), // 632: forge.MachineCapabilityAttributesGpu + (*MachineCapabilityAttributesMemory)(nil), // 633: forge.MachineCapabilityAttributesMemory + (*MachineCapabilityAttributesStorage)(nil), // 634: forge.MachineCapabilityAttributesStorage + (*MachineCapabilityAttributesNetwork)(nil), // 635: forge.MachineCapabilityAttributesNetwork + (*MachineCapabilityAttributesInfiniband)(nil), // 636: forge.MachineCapabilityAttributesInfiniband + (*MachineCapabilityAttributesDpu)(nil), // 637: forge.MachineCapabilityAttributesDpu + (*MachineCapabilitiesSet)(nil), // 638: forge.MachineCapabilitiesSet + (*InstanceTypeAttributes)(nil), // 639: forge.InstanceTypeAttributes + (*InstanceType)(nil), // 640: forge.InstanceType + (*InstanceTypeMachineCapabilityFilterAttributes)(nil), // 641: forge.InstanceTypeMachineCapabilityFilterAttributes + (*CreateInstanceTypeRequest)(nil), // 642: forge.CreateInstanceTypeRequest + (*CreateInstanceTypeResponse)(nil), // 643: forge.CreateInstanceTypeResponse + (*FindInstanceTypeIdsRequest)(nil), // 644: forge.FindInstanceTypeIdsRequest + (*FindInstanceTypeIdsResponse)(nil), // 645: forge.FindInstanceTypeIdsResponse + (*FindInstanceTypesByIdsRequest)(nil), // 646: forge.FindInstanceTypesByIdsRequest + (*FindInstanceTypesByIdsResponse)(nil), // 647: forge.FindInstanceTypesByIdsResponse + (*DeleteInstanceTypeRequest)(nil), // 648: forge.DeleteInstanceTypeRequest + (*DeleteInstanceTypeResponse)(nil), // 649: forge.DeleteInstanceTypeResponse + (*UpdateInstanceTypeResponse)(nil), // 650: forge.UpdateInstanceTypeResponse + (*UpdateInstanceTypeRequest)(nil), // 651: forge.UpdateInstanceTypeRequest + (*AssociateMachinesWithInstanceTypeRequest)(nil), // 652: forge.AssociateMachinesWithInstanceTypeRequest + (*AssociateMachinesWithInstanceTypeResponse)(nil), // 653: forge.AssociateMachinesWithInstanceTypeResponse + (*RemoveMachineInstanceTypeAssociationRequest)(nil), // 654: forge.RemoveMachineInstanceTypeAssociationRequest + (*RemoveMachineInstanceTypeAssociationResponse)(nil), // 655: forge.RemoveMachineInstanceTypeAssociationResponse + (*RedfishBrowseRequest)(nil), // 656: forge.RedfishBrowseRequest + (*RedfishBrowseResponse)(nil), // 657: forge.RedfishBrowseResponse + (*RedfishListActionsRequest)(nil), // 658: forge.RedfishListActionsRequest + (*RedfishListActionsResponse)(nil), // 659: forge.RedfishListActionsResponse + (*RedfishAction)(nil), // 660: forge.RedfishAction + (*OptionalRedfishActionResult)(nil), // 661: forge.OptionalRedfishActionResult + (*RedfishActionResult)(nil), // 662: forge.RedfishActionResult + (*RedfishCreateActionRequest)(nil), // 663: forge.RedfishCreateActionRequest + (*RedfishCreateActionResponse)(nil), // 664: forge.RedfishCreateActionResponse + (*RedfishActionID)(nil), // 665: forge.RedfishActionID + (*RedfishApproveActionResponse)(nil), // 666: forge.RedfishApproveActionResponse + (*RedfishApplyActionResponse)(nil), // 667: forge.RedfishApplyActionResponse + (*RedfishCancelActionResponse)(nil), // 668: forge.RedfishCancelActionResponse + (*UfmBrowseRequest)(nil), // 669: forge.UfmBrowseRequest + (*UfmBrowseResponse)(nil), // 670: forge.UfmBrowseResponse + (*NetworkSecurityGroupAttributes)(nil), // 671: forge.NetworkSecurityGroupAttributes + (*NetworkSecurityGroup)(nil), // 672: forge.NetworkSecurityGroup + (*CreateNetworkSecurityGroupRequest)(nil), // 673: forge.CreateNetworkSecurityGroupRequest + (*CreateNetworkSecurityGroupResponse)(nil), // 674: forge.CreateNetworkSecurityGroupResponse + (*FindNetworkSecurityGroupIdsRequest)(nil), // 675: forge.FindNetworkSecurityGroupIdsRequest + (*FindNetworkSecurityGroupIdsResponse)(nil), // 676: forge.FindNetworkSecurityGroupIdsResponse + (*FindNetworkSecurityGroupsByIdsRequest)(nil), // 677: forge.FindNetworkSecurityGroupsByIdsRequest + (*FindNetworkSecurityGroupsByIdsResponse)(nil), // 678: forge.FindNetworkSecurityGroupsByIdsResponse + (*UpdateNetworkSecurityGroupResponse)(nil), // 679: forge.UpdateNetworkSecurityGroupResponse + (*UpdateNetworkSecurityGroupRequest)(nil), // 680: forge.UpdateNetworkSecurityGroupRequest + (*DeleteNetworkSecurityGroupRequest)(nil), // 681: forge.DeleteNetworkSecurityGroupRequest + (*DeleteNetworkSecurityGroupResponse)(nil), // 682: forge.DeleteNetworkSecurityGroupResponse + (*NetworkSecurityGroupStatus)(nil), // 683: forge.NetworkSecurityGroupStatus + (*NetworkSecurityGroupPropagationObjectStatus)(nil), // 684: forge.NetworkSecurityGroupPropagationObjectStatus + (*GetNetworkSecurityGroupPropagationStatusResponse)(nil), // 685: forge.GetNetworkSecurityGroupPropagationStatusResponse + (*NetworkSecurityGroupIdList)(nil), // 686: forge.NetworkSecurityGroupIdList + (*GetNetworkSecurityGroupPropagationStatusRequest)(nil), // 687: forge.GetNetworkSecurityGroupPropagationStatusRequest + (*NetworkSecurityGroupRuleAttributes)(nil), // 688: forge.NetworkSecurityGroupRuleAttributes + (*ResolvedNetworkSecurityGroupRule)(nil), // 689: forge.ResolvedNetworkSecurityGroupRule + (*GetNetworkSecurityGroupAttachmentsRequest)(nil), // 690: forge.GetNetworkSecurityGroupAttachmentsRequest + (*NetworkSecurityGroupAttachments)(nil), // 691: forge.NetworkSecurityGroupAttachments + (*GetNetworkSecurityGroupAttachmentsResponse)(nil), // 692: forge.GetNetworkSecurityGroupAttachmentsResponse + (*GetDesiredFirmwareVersionsRequest)(nil), // 693: forge.GetDesiredFirmwareVersionsRequest + (*GetDesiredFirmwareVersionsResponse)(nil), // 694: forge.GetDesiredFirmwareVersionsResponse + (*DesiredFirmwareVersionEntry)(nil), // 695: forge.DesiredFirmwareVersionEntry + (*SkuComponentChassis)(nil), // 696: forge.SkuComponentChassis + (*SkuComponentCpu)(nil), // 697: forge.SkuComponentCpu + (*SkuComponentGpu)(nil), // 698: forge.SkuComponentGpu + (*SkuComponentEthernetDevices)(nil), // 699: forge.SkuComponentEthernetDevices + (*SkuComponentInfinibandDevices)(nil), // 700: forge.SkuComponentInfinibandDevices + (*SkuComponentStorage)(nil), // 701: forge.SkuComponentStorage + (*SkuComponentStorageController)(nil), // 702: forge.SkuComponentStorageController + (*SkuComponentMemory)(nil), // 703: forge.SkuComponentMemory + (*SkuComponentTpm)(nil), // 704: forge.SkuComponentTpm + (*SkuComponents)(nil), // 705: forge.SkuComponents + (*Sku)(nil), // 706: forge.Sku + (*SkuMachinePair)(nil), // 707: forge.SkuMachinePair + (*RemoveSkuRequest)(nil), // 708: forge.RemoveSkuRequest + (*SkuList)(nil), // 709: forge.SkuList + (*SkuIdList)(nil), // 710: forge.SkuIdList + (*SkuStatus)(nil), // 711: forge.SkuStatus + (*SkusByIdsRequest)(nil), // 712: forge.SkusByIdsRequest + (*SkuSearchFilter)(nil), // 713: forge.SkuSearchFilter + (*DpaInterface)(nil), // 714: forge.DpaInterface + (*DpaInterfaceCreationRequest)(nil), // 715: forge.DpaInterfaceCreationRequest + (*DpaInterfaceIdList)(nil), // 716: forge.DpaInterfaceIdList + (*DpaInterfacesByIdsRequest)(nil), // 717: forge.DpaInterfacesByIdsRequest + (*DpaInterfaceList)(nil), // 718: forge.DpaInterfaceList + (*DpaNetworkObservationSetRequest)(nil), // 719: forge.DpaNetworkObservationSetRequest + (*DpaInterfaceDeletionRequest)(nil), // 720: forge.DpaInterfaceDeletionRequest + (*DpaInterfaceDeletionResult)(nil), // 721: forge.DpaInterfaceDeletionResult + (*SkuUpdateMetadataRequest)(nil), // 722: forge.SkuUpdateMetadataRequest + (*PowerOptionRequest)(nil), // 723: forge.PowerOptionRequest + (*PowerOptionUpdateRequest)(nil), // 724: forge.PowerOptionUpdateRequest + (*PowerOptions)(nil), // 725: forge.PowerOptions + (*PowerOptionResponse)(nil), // 726: forge.PowerOptionResponse + (*ComputeAllocationAttributes)(nil), // 727: forge.ComputeAllocationAttributes + (*ComputeAllocation)(nil), // 728: forge.ComputeAllocation + (*CreateComputeAllocationRequest)(nil), // 729: forge.CreateComputeAllocationRequest + (*CreateComputeAllocationResponse)(nil), // 730: forge.CreateComputeAllocationResponse + (*FindComputeAllocationIdsRequest)(nil), // 731: forge.FindComputeAllocationIdsRequest + (*FindComputeAllocationIdsResponse)(nil), // 732: forge.FindComputeAllocationIdsResponse + (*FindComputeAllocationsByIdsRequest)(nil), // 733: forge.FindComputeAllocationsByIdsRequest + (*FindComputeAllocationsByIdsResponse)(nil), // 734: forge.FindComputeAllocationsByIdsResponse + (*UpdateComputeAllocationResponse)(nil), // 735: forge.UpdateComputeAllocationResponse + (*UpdateComputeAllocationRequest)(nil), // 736: forge.UpdateComputeAllocationRequest + (*DeleteComputeAllocationRequest)(nil), // 737: forge.DeleteComputeAllocationRequest + (*DeleteComputeAllocationResponse)(nil), // 738: forge.DeleteComputeAllocationResponse + (*InstanceTypeAllocationStats)(nil), // 739: forge.InstanceTypeAllocationStats + (*GetRackRequest)(nil), // 740: forge.GetRackRequest + (*GetRackResponse)(nil), // 741: forge.GetRackResponse + (*RackList)(nil), // 742: forge.RackList + (*RackSearchFilter)(nil), // 743: forge.RackSearchFilter + (*RackIdList)(nil), // 744: forge.RackIdList + (*RacksByIdsRequest)(nil), // 745: forge.RacksByIdsRequest + (*Rack)(nil), // 746: forge.Rack + (*RackConfig)(nil), // 747: forge.RackConfig + (*RackStatus)(nil), // 748: forge.RackStatus + (*RackStateHistoriesRequest)(nil), // 749: forge.RackStateHistoriesRequest + (*DeleteRackRequest)(nil), // 750: forge.DeleteRackRequest + (*AdminForceDeleteRackRequest)(nil), // 751: forge.AdminForceDeleteRackRequest + (*AdminForceDeleteRackResponse)(nil), // 752: forge.AdminForceDeleteRackResponse + (*RackCapabilityCompute)(nil), // 753: forge.RackCapabilityCompute + (*RackCapabilitySwitch)(nil), // 754: forge.RackCapabilitySwitch + (*RackCapabilityPowerShelf)(nil), // 755: forge.RackCapabilityPowerShelf + (*RackCapabilitiesSet)(nil), // 756: forge.RackCapabilitiesSet + (*RackProfile)(nil), // 757: forge.RackProfile + (*GetRackProfileRequest)(nil), // 758: forge.GetRackProfileRequest + (*GetRackProfileResponse)(nil), // 759: forge.GetRackProfileResponse + (*RackManagerForgeRequest)(nil), // 760: forge.RackManagerForgeRequest + (*RackManagerForgeResponse)(nil), // 761: forge.RackManagerForgeResponse + (*MachineNVLinkInfo)(nil), // 762: forge.MachineNVLinkInfo + (*UpdateMachineNvLinkInfoRequest)(nil), // 763: forge.UpdateMachineNvLinkInfoRequest + (*MachineSpxStatusObservation)(nil), // 764: forge.MachineSpxStatusObservation + (*MachineSpxAttachmentStatusObservation)(nil), // 765: forge.MachineSpxAttachmentStatusObservation + (*AstraConfig)(nil), // 766: forge.AstraConfig + (*AstraAttachment)(nil), // 767: forge.AstraAttachment + (*AstraConfigStatus)(nil), // 768: forge.AstraConfigStatus + (*AstraAttachmentStatus)(nil), // 769: forge.AstraAttachmentStatus + (*AstraStatus)(nil), // 770: forge.AstraStatus + (*NVLinkGpu)(nil), // 771: forge.NVLinkGpu + (*MachineNVLinkStatusObservation)(nil), // 772: forge.MachineNVLinkStatusObservation + (*MachineNVLinkGpuStatusObservation)(nil), // 773: forge.MachineNVLinkGpuStatusObservation + (*NmxcBrowseRequest)(nil), // 774: forge.NmxcBrowseRequest + (*NmxcBrowseResponse)(nil), // 775: forge.NmxcBrowseResponse + (*NVLinkPartition)(nil), // 776: forge.NVLinkPartition + (*NVLinkPartitionList)(nil), // 777: forge.NVLinkPartitionList + (*NVLinkPartitionSearchConfig)(nil), // 778: forge.NVLinkPartitionSearchConfig + (*NVLinkPartitionQuery)(nil), // 779: forge.NVLinkPartitionQuery + (*NVLinkPartitionSearchFilter)(nil), // 780: forge.NVLinkPartitionSearchFilter + (*NVLinkPartitionsByIdsRequest)(nil), // 781: forge.NVLinkPartitionsByIdsRequest + (*NVLinkPartitionIdList)(nil), // 782: forge.NVLinkPartitionIdList + (*NVLinkFabricSearchFilter)(nil), // 783: forge.NVLinkFabricSearchFilter + (*NVLinkLogicalPartitionConfig)(nil), // 784: forge.NVLinkLogicalPartitionConfig + (*NVLinkLogicalPartitionStatus)(nil), // 785: forge.NVLinkLogicalPartitionStatus + (*NVLinkLogicalPartition)(nil), // 786: forge.NVLinkLogicalPartition + (*NVLinkLogicalPartitionList)(nil), // 787: forge.NVLinkLogicalPartitionList + (*NVLinkLogicalPartitionCreationRequest)(nil), // 788: forge.NVLinkLogicalPartitionCreationRequest + (*NVLinkLogicalPartitionDeletionRequest)(nil), // 789: forge.NVLinkLogicalPartitionDeletionRequest + (*NVLinkLogicalPartitionDeletionResult)(nil), // 790: forge.NVLinkLogicalPartitionDeletionResult + (*NVLinkLogicalPartitionSearchFilter)(nil), // 791: forge.NVLinkLogicalPartitionSearchFilter + (*NVLinkLogicalPartitionsByIdsRequest)(nil), // 792: forge.NVLinkLogicalPartitionsByIdsRequest + (*NVLinkLogicalPartitionIdList)(nil), // 793: forge.NVLinkLogicalPartitionIdList + (*NVLinkLogicalPartitionUpdateRequest)(nil), // 794: forge.NVLinkLogicalPartitionUpdateRequest + (*NVLinkLogicalPartitionUpdateResult)(nil), // 795: forge.NVLinkLogicalPartitionUpdateResult + (*CreateBmcUserRequest)(nil), // 796: forge.CreateBmcUserRequest + (*CreateBmcUserResponse)(nil), // 797: forge.CreateBmcUserResponse + (*DeleteBmcUserRequest)(nil), // 798: forge.DeleteBmcUserRequest + (*DeleteBmcUserResponse)(nil), // 799: forge.DeleteBmcUserResponse + (*SetBmcRootPasswordRequest)(nil), // 800: forge.SetBmcRootPasswordRequest + (*SetBmcRootPasswordResponse)(nil), // 801: forge.SetBmcRootPasswordResponse + (*ProbeBmcVendorRequest)(nil), // 802: forge.ProbeBmcVendorRequest + (*ProbeBmcVendorResponse)(nil), // 803: forge.ProbeBmcVendorResponse + (*SetFirmwareUpdateTimeWindowRequest)(nil), // 804: forge.SetFirmwareUpdateTimeWindowRequest + (*SetFirmwareUpdateTimeWindowResponse)(nil), // 805: forge.SetFirmwareUpdateTimeWindowResponse + (*UpsertHostFirmwareConfigRequest)(nil), // 806: forge.UpsertHostFirmwareConfigRequest + (*DeleteHostFirmwareConfigRequest)(nil), // 807: forge.DeleteHostFirmwareConfigRequest + (*UpsertHostFirmwareComponentConfig)(nil), // 808: forge.UpsertHostFirmwareComponentConfig + (*HostFirmwareComponentConfigResponse)(nil), // 809: forge.HostFirmwareComponentConfigResponse + (*HostFirmwareVersionConfig)(nil), // 810: forge.HostFirmwareVersionConfig + (*HostFirmwareArtifact)(nil), // 811: forge.HostFirmwareArtifact + (*HostFirmwareConfigResponse)(nil), // 812: forge.HostFirmwareConfigResponse + (*ListHostFirmwareRequest)(nil), // 813: forge.ListHostFirmwareRequest + (*ListHostFirmwareResponse)(nil), // 814: forge.ListHostFirmwareResponse + (*AvailableHostFirmware)(nil), // 815: forge.AvailableHostFirmware + (*TrimTableRequest)(nil), // 816: forge.TrimTableRequest + (*TrimTableResponse)(nil), // 817: forge.TrimTableResponse + (*NvlinkNmxcEndpoint)(nil), // 818: forge.NvlinkNmxcEndpoint + (*NvlinkNmxcEndpointList)(nil), // 819: forge.NvlinkNmxcEndpointList + (*DeleteNvlinkNmxcEndpointRequest)(nil), // 820: forge.DeleteNvlinkNmxcEndpointRequest + (*CreateRemediationRequest)(nil), // 821: forge.CreateRemediationRequest + (*CreateRemediationResponse)(nil), // 822: forge.CreateRemediationResponse + (*RemediationIdList)(nil), // 823: forge.RemediationIdList + (*RemediationList)(nil), // 824: forge.RemediationList + (*Remediation)(nil), // 825: forge.Remediation + (*ApproveRemediationRequest)(nil), // 826: forge.ApproveRemediationRequest + (*RevokeRemediationRequest)(nil), // 827: forge.RevokeRemediationRequest + (*EnableRemediationRequest)(nil), // 828: forge.EnableRemediationRequest + (*DisableRemediationRequest)(nil), // 829: forge.DisableRemediationRequest + (*FindAppliedRemediationIdsRequest)(nil), // 830: forge.FindAppliedRemediationIdsRequest + (*AppliedRemediationIdList)(nil), // 831: forge.AppliedRemediationIdList + (*FindAppliedRemediationsRequest)(nil), // 832: forge.FindAppliedRemediationsRequest + (*AppliedRemediation)(nil), // 833: forge.AppliedRemediation + (*AppliedRemediationList)(nil), // 834: forge.AppliedRemediationList + (*GetNextRemediationForMachineRequest)(nil), // 835: forge.GetNextRemediationForMachineRequest + (*GetNextRemediationForMachineResponse)(nil), // 836: forge.GetNextRemediationForMachineResponse + (*RemediationAppliedRequest)(nil), // 837: forge.RemediationAppliedRequest + (*RemediationApplicationStatus)(nil), // 838: forge.RemediationApplicationStatus + (*SetPrimaryDpuRequest)(nil), // 839: forge.SetPrimaryDpuRequest + (*SetPrimaryInterfaceRequest)(nil), // 840: forge.SetPrimaryInterfaceRequest + (*UsernamePassword)(nil), // 841: forge.UsernamePassword + (*SessionToken)(nil), // 842: forge.SessionToken + (*DpuExtensionServiceCredential)(nil), // 843: forge.DpuExtensionServiceCredential + (*DpuExtensionServiceVersionInfo)(nil), // 844: forge.DpuExtensionServiceVersionInfo + (*DpuExtensionService)(nil), // 845: forge.DpuExtensionService + (*CreateDpuExtensionServiceRequest)(nil), // 846: forge.CreateDpuExtensionServiceRequest + (*UpdateDpuExtensionServiceRequest)(nil), // 847: forge.UpdateDpuExtensionServiceRequest + (*DeleteDpuExtensionServiceRequest)(nil), // 848: forge.DeleteDpuExtensionServiceRequest + (*DeleteDpuExtensionServiceResponse)(nil), // 849: forge.DeleteDpuExtensionServiceResponse + (*DpuExtensionServiceSearchFilter)(nil), // 850: forge.DpuExtensionServiceSearchFilter + (*DpuExtensionServiceIdList)(nil), // 851: forge.DpuExtensionServiceIdList + (*DpuExtensionServicesByIdsRequest)(nil), // 852: forge.DpuExtensionServicesByIdsRequest + (*DpuExtensionServiceList)(nil), // 853: forge.DpuExtensionServiceList + (*GetDpuExtensionServiceVersionsInfoRequest)(nil), // 854: forge.GetDpuExtensionServiceVersionsInfoRequest + (*DpuExtensionServiceVersionInfoList)(nil), // 855: forge.DpuExtensionServiceVersionInfoList + (*FindInstancesByDpuExtensionServiceRequest)(nil), // 856: forge.FindInstancesByDpuExtensionServiceRequest + (*FindInstancesByDpuExtensionServiceResponse)(nil), // 857: forge.FindInstancesByDpuExtensionServiceResponse + (*InstanceDpuExtensionServiceInfo)(nil), // 858: forge.InstanceDpuExtensionServiceInfo + (*DpuExtensionServiceObservabilityConfigPrometheus)(nil), // 859: forge.DpuExtensionServiceObservabilityConfigPrometheus + (*DpuExtensionServiceObservabilityConfigLogging)(nil), // 860: forge.DpuExtensionServiceObservabilityConfigLogging + (*DpuExtensionServiceObservabilityConfig)(nil), // 861: forge.DpuExtensionServiceObservabilityConfig + (*DpuExtensionServiceObservability)(nil), // 862: forge.DpuExtensionServiceObservability + (*ScoutStreamApiBoundMessage)(nil), // 863: forge.ScoutStreamApiBoundMessage + (*ScoutStreamScoutBoundMessage)(nil), // 864: forge.ScoutStreamScoutBoundMessage + (*ScoutStreamInitRequest)(nil), // 865: forge.ScoutStreamInitRequest + (*ScoutStreamShowConnectionsRequest)(nil), // 866: forge.ScoutStreamShowConnectionsRequest + (*ScoutStreamShowConnectionsResponse)(nil), // 867: forge.ScoutStreamShowConnectionsResponse + (*ScoutStreamDisconnectRequest)(nil), // 868: forge.ScoutStreamDisconnectRequest + (*ScoutStreamDisconnectResponse)(nil), // 869: forge.ScoutStreamDisconnectResponse + (*ScoutStreamAdminPingRequest)(nil), // 870: forge.ScoutStreamAdminPingRequest + (*ScoutStreamAdminPingResponse)(nil), // 871: forge.ScoutStreamAdminPingResponse + (*ScoutStreamAgentPingRequest)(nil), // 872: forge.ScoutStreamAgentPingRequest + (*ScoutStreamAgentPingResponse)(nil), // 873: forge.ScoutStreamAgentPingResponse + (*ScoutStreamConnectionInfo)(nil), // 874: forge.ScoutStreamConnectionInfo + (*ScoutStreamError)(nil), // 875: forge.ScoutStreamError + (*PrefixFilterPolicyEntry)(nil), // 876: forge.PrefixFilterPolicyEntry + (*RoutingProfile)(nil), // 877: forge.RoutingProfile + (*DomainLegacy)(nil), // 878: forge.DomainLegacy + (*DomainListLegacy)(nil), // 879: forge.DomainListLegacy + (*DomainDeletionLegacy)(nil), // 880: forge.DomainDeletionLegacy + (*DomainDeletionResultLegacy)(nil), // 881: forge.DomainDeletionResultLegacy + (*DomainSearchQueryLegacy)(nil), // 882: forge.DomainSearchQueryLegacy + (*PxeDomain)(nil), // 883: forge.PxeDomain + (*MachinePositionQuery)(nil), // 884: forge.MachinePositionQuery + (*MachinePositionInfoList)(nil), // 885: forge.MachinePositionInfoList + (*MachinePositionInfo)(nil), // 886: forge.MachinePositionInfo + (*ModifyDPFStateRequest)(nil), // 887: forge.ModifyDPFStateRequest + (*DPFStateResponse)(nil), // 888: forge.DPFStateResponse + (*GetDPFStateRequest)(nil), // 889: forge.GetDPFStateRequest + (*GetDPFHostSnapshotRequest)(nil), // 890: forge.GetDPFHostSnapshotRequest + (*DPFHostSnapshotResponse)(nil), // 891: forge.DPFHostSnapshotResponse + (*GetDPFServiceVersionsRequest)(nil), // 892: forge.GetDPFServiceVersionsRequest + (*DPFServiceVersion)(nil), // 893: forge.DPFServiceVersion + (*DPFServiceVersionsResponse)(nil), // 894: forge.DPFServiceVersionsResponse + (*ComponentResult)(nil), // 895: forge.ComponentResult + (*SwitchIdList)(nil), // 896: forge.SwitchIdList + (*PowerShelfIdList)(nil), // 897: forge.PowerShelfIdList + (*GetComponentInventoryRequest)(nil), // 898: forge.GetComponentInventoryRequest + (*ComponentInventoryEntry)(nil), // 899: forge.ComponentInventoryEntry + (*GetComponentInventoryResponse)(nil), // 900: forge.GetComponentInventoryResponse + (*ComponentPowerControlRequest)(nil), // 901: forge.ComponentPowerControlRequest + (*ComponentPowerControlResponse)(nil), // 902: forge.ComponentPowerControlResponse + (*ComponentConfigureSwitchCertificateRequest)(nil), // 903: forge.ComponentConfigureSwitchCertificateRequest + (*ComponentConfigureSwitchCertificateResponse)(nil), // 904: forge.ComponentConfigureSwitchCertificateResponse + (*FirmwareUpdateStatus)(nil), // 905: forge.FirmwareUpdateStatus + (*UpdateComputeTrayFirmwareTarget)(nil), // 906: forge.UpdateComputeTrayFirmwareTarget + (*UpdateSwitchFirmwareTarget)(nil), // 907: forge.UpdateSwitchFirmwareTarget + (*UpdatePowerShelfFirmwareTarget)(nil), // 908: forge.UpdatePowerShelfFirmwareTarget + (*UpdateFirmwareObjectTarget)(nil), // 909: forge.UpdateFirmwareObjectTarget + (*UpdateComponentFirmwareRequest)(nil), // 910: forge.UpdateComponentFirmwareRequest + (*UpdateComponentFirmwareResponse)(nil), // 911: forge.UpdateComponentFirmwareResponse + (*GetComponentFirmwareStatusRequest)(nil), // 912: forge.GetComponentFirmwareStatusRequest + (*GetComponentFirmwareStatusResponse)(nil), // 913: forge.GetComponentFirmwareStatusResponse + (*ListComponentFirmwareVersionsRequest)(nil), // 914: forge.ListComponentFirmwareVersionsRequest + (*ComputeTrayFirmwareVersions)(nil), // 915: forge.ComputeTrayFirmwareVersions + (*DeviceFirmwareVersions)(nil), // 916: forge.DeviceFirmwareVersions + (*ListComponentFirmwareVersionsResponse)(nil), // 917: forge.ListComponentFirmwareVersionsResponse + (*SpxPartitionCreationRequest)(nil), // 918: forge.SpxPartitionCreationRequest + (*SpxPartition)(nil), // 919: forge.SpxPartition + (*SpxPartitionIdList)(nil), // 920: forge.SpxPartitionIdList + (*SpxPartitionDeletionRequest)(nil), // 921: forge.SpxPartitionDeletionRequest + (*SpxPartitionDeletionResult)(nil), // 922: forge.SpxPartitionDeletionResult + (*SpxPartitionSearchFilter)(nil), // 923: forge.SpxPartitionSearchFilter + (*SpxPartitionList)(nil), // 924: forge.SpxPartitionList + (*SpxPartitionsByIdsRequest)(nil), // 925: forge.SpxPartitionsByIdsRequest + (*AdminForceDeleteSwitchRequest)(nil), // 926: forge.AdminForceDeleteSwitchRequest + (*AdminForceDeleteSwitchResponse)(nil), // 927: forge.AdminForceDeleteSwitchResponse + (*AdminForceDeletePowerShelfRequest)(nil), // 928: forge.AdminForceDeletePowerShelfRequest + (*AdminForceDeletePowerShelfResponse)(nil), // 929: forge.AdminForceDeletePowerShelfResponse + (*OperatingSystem)(nil), // 930: forge.OperatingSystem + (*CreateOperatingSystemRequest)(nil), // 931: forge.CreateOperatingSystemRequest + (*IpxeTemplateParameters)(nil), // 932: forge.IpxeTemplateParameters + (*IpxeTemplateArtifacts)(nil), // 933: forge.IpxeTemplateArtifacts + (*UpdateOperatingSystemRequest)(nil), // 934: forge.UpdateOperatingSystemRequest + (*DeleteOperatingSystemRequest)(nil), // 935: forge.DeleteOperatingSystemRequest + (*DeleteOperatingSystemResponse)(nil), // 936: forge.DeleteOperatingSystemResponse + (*OperatingSystemSearchFilter)(nil), // 937: forge.OperatingSystemSearchFilter + (*OperatingSystemIdList)(nil), // 938: forge.OperatingSystemIdList + (*OperatingSystemsByIdsRequest)(nil), // 939: forge.OperatingSystemsByIdsRequest + (*OperatingSystemList)(nil), // 940: forge.OperatingSystemList + (*GetOperatingSystemCachableIpxeTemplateArtifactsRequest)(nil), // 941: forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest + (*IpxeTemplateArtifactList)(nil), // 942: forge.IpxeTemplateArtifactList + (*IpxeTemplateArtifactUpdateRequest)(nil), // 943: forge.IpxeTemplateArtifactUpdateRequest + (*UpdateOperatingSystemIpxeTemplateArtifactRequest)(nil), // 944: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest + (*HostRepresentorInterceptBridging)(nil), // 945: forge.HostRepresentorInterceptBridging + (*ReWrapSecretsRequest)(nil), // 946: forge.ReWrapSecretsRequest + (*ReWrapSecretsResponse)(nil), // 947: forge.ReWrapSecretsResponse + (*GetMachineBootInterfacesRequest)(nil), // 948: forge.GetMachineBootInterfacesRequest + (*MachineBootInterface)(nil), // 949: forge.MachineBootInterface + (*MachineInterfaceBootInterface)(nil), // 950: forge.MachineInterfaceBootInterface + (*PredictedBootInterface)(nil), // 951: forge.PredictedBootInterface + (*ExploredBootInterface)(nil), // 952: forge.ExploredBootInterface + (*RetainedBootInterface)(nil), // 953: forge.RetainedBootInterface + (*GetMachineBootInterfacesResponse)(nil), // 954: forge.GetMachineBootInterfacesResponse + nil, // 955: forge.RuntimeConfig.DpuNicFirmwareUpdateVersionEntry + (*DNSMessage_DNSQuestion)(nil), // 956: forge.DNSMessage.DNSQuestion + (*DNSMessage_DNSResponse)(nil), // 957: forge.DNSMessage.DNSResponse + (*DNSMessage_DNSResponse_DNSRR)(nil), // 958: forge.DNSMessage.DNSResponse.DNSRR + nil, // 959: forge.FabricManagerConfig.ConfigMapEntry + nil, // 960: forge.StateHistories.HistoriesEntry + nil, // 961: forge.MachineStateHistories.HistoriesEntry + nil, // 962: forge.HealthHistories.HistoriesEntry + nil, // 963: forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry + (*MachineCredentialsUpdateRequest_Credentials)(nil), // 964: forge.MachineCredentialsUpdateRequest.Credentials + (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo)(nil), // 965: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo + (*ForgeAgentControlResponse_Noop)(nil), // 966: forge.ForgeAgentControlResponse.Noop + (*ForgeAgentControlResponse_Reset)(nil), // 967: forge.ForgeAgentControlResponse.Reset + (*ForgeAgentControlResponse_Discovery)(nil), // 968: forge.ForgeAgentControlResponse.Discovery + (*ForgeAgentControlResponse_Rebuild)(nil), // 969: forge.ForgeAgentControlResponse.Rebuild + (*ForgeAgentControlResponse_Retry)(nil), // 970: forge.ForgeAgentControlResponse.Retry + (*ForgeAgentControlResponse_Measure)(nil), // 971: forge.ForgeAgentControlResponse.Measure + (*ForgeAgentControlResponse_LogError)(nil), // 972: forge.ForgeAgentControlResponse.LogError + (*ForgeAgentControlResponse_MachineValidation)(nil), // 973: forge.ForgeAgentControlResponse.MachineValidation + (*ForgeAgentControlResponse_MachineValidationFilter)(nil), // 974: forge.ForgeAgentControlResponse.MachineValidationFilter + (*ForgeAgentControlResponse_MlxAction)(nil), // 975: forge.ForgeAgentControlResponse.MlxAction + (*ForgeAgentControlResponse_MlxDeviceAction)(nil), // 976: forge.ForgeAgentControlResponse.MlxDeviceAction + (*ForgeAgentControlResponse_MlxDeviceNoop)(nil), // 977: forge.ForgeAgentControlResponse.MlxDeviceNoop + (*ForgeAgentControlResponse_MlxDeviceLock)(nil), // 978: forge.ForgeAgentControlResponse.MlxDeviceLock + (*ForgeAgentControlResponse_MlxDeviceUnlock)(nil), // 979: forge.ForgeAgentControlResponse.MlxDeviceUnlock + (*ForgeAgentControlResponse_MlxDeviceApplyProfile)(nil), // 980: forge.ForgeAgentControlResponse.MlxDeviceApplyProfile + (*ForgeAgentControlResponse_MlxDeviceApplyFirmware)(nil), // 981: forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware + (*ForgeAgentControlResponse_FirmwareUpgrade)(nil), // 982: forge.ForgeAgentControlResponse.FirmwareUpgrade + (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair)(nil), // 983: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.KeyValuePair + (*MachineCleanupInfo_CleanupStepResult)(nil), // 984: forge.MachineCleanupInfo.CleanupStepResult + (*DpuReprovisioningListResponse_DpuReprovisioningListItem)(nil), // 985: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem + (*HostReprovisioningListResponse_HostReprovisioningListItem)(nil), // 986: forge.HostReprovisioningListResponse.HostReprovisioningListItem + (*MachineValidationTestUpdateRequest_Payload)(nil), // 987: forge.MachineValidationTestUpdateRequest.Payload + nil, // 988: forge.RedfishBrowseResponse.HeadersEntry + nil, // 989: forge.RedfishActionResult.HeadersEntry + nil, // 990: forge.UfmBrowseResponse.HeadersEntry + nil, // 991: forge.DesiredFirmwareVersionEntry.ComponentVersionsEntry + nil, // 992: forge.NmxcBrowseResponse.HeadersEntry + (*DPFStateResponse_DPFState)(nil), // 993: forge.DPFStateResponse.DPFState + (*MachineId)(nil), // 994: common.MachineId + (*timestamppb.Timestamp)(nil), // 995: google.protobuf.Timestamp + (*VpcId)(nil), // 996: common.VpcId + (*NVLinkLogicalPartitionId)(nil), // 997: common.NVLinkLogicalPartitionId + (*VpcPrefixId)(nil), // 998: common.VpcPrefixId + (*VpcPeeringId)(nil), // 999: common.VpcPeeringId + (*IBPartitionId)(nil), // 1000: common.IBPartitionId + (*HealthReport)(nil), // 1001: health.HealthReport + (*PowerShelfId)(nil), // 1002: common.PowerShelfId + (*RackId)(nil), // 1003: common.RackId + (*UUID)(nil), // 1004: common.UUID + (*SwitchId)(nil), // 1005: common.SwitchId + (*RackProfileId)(nil), // 1006: common.RackProfileId + (*DomainId)(nil), // 1007: common.DomainId + (*NetworkSegmentId)(nil), // 1008: common.NetworkSegmentId + (*NetworkPrefixId)(nil), // 1009: common.NetworkPrefixId + (*InstanceId)(nil), // 1010: common.InstanceId + (*IpxeTemplateId)(nil), // 1011: common.IpxeTemplateId + (*OperatingSystemId)(nil), // 1012: common.OperatingSystemId + (*SpxPartitionId)(nil), // 1013: common.SpxPartitionId + (*NVLinkDomainId)(nil), // 1014: common.NVLinkDomainId + (*MachineInterfaceId)(nil), // 1015: common.MachineInterfaceId + (*DiscoveryInfo)(nil), // 1016: machine_discovery.DiscoveryInfo + (*durationpb.Duration)(nil), // 1017: google.protobuf.Duration + (*StringList)(nil), // 1018: common.StringList + (*Gpu)(nil), // 1019: machine_discovery.Gpu + (*RouteTarget)(nil), // 1020: common.RouteTarget + (*MachineValidationId)(nil), // 1021: common.MachineValidationId + (*Uint32List)(nil), // 1022: common.Uint32List + (*DpaInterfaceId)(nil), // 1023: common.DpaInterfaceId + (*ComputeAllocationId)(nil), // 1024: common.ComputeAllocationId + (*RackHardwareType)(nil), // 1025: common.RackHardwareType + (*NVLinkPartitionId)(nil), // 1026: common.NVLinkPartitionId + (*RemediationId)(nil), // 1027: common.RemediationId + (*MlxDeviceLockdownResponse)(nil), // 1028: mlx_device.MlxDeviceLockdownResponse + (*MlxDeviceProfileSyncResponse)(nil), // 1029: mlx_device.MlxDeviceProfileSyncResponse + (*MlxDeviceProfileCompareResponse)(nil), // 1030: mlx_device.MlxDeviceProfileCompareResponse + (*MlxDeviceInfoDeviceResponse)(nil), // 1031: mlx_device.MlxDeviceInfoDeviceResponse + (*MlxDeviceInfoReportResponse)(nil), // 1032: mlx_device.MlxDeviceInfoReportResponse + (*MlxDeviceRegistryListResponse)(nil), // 1033: mlx_device.MlxDeviceRegistryListResponse + (*MlxDeviceRegistryShowResponse)(nil), // 1034: mlx_device.MlxDeviceRegistryShowResponse + (*MlxDeviceConfigQueryResponse)(nil), // 1035: mlx_device.MlxDeviceConfigQueryResponse + (*MlxDeviceConfigSetResponse)(nil), // 1036: mlx_device.MlxDeviceConfigSetResponse + (*MlxDeviceConfigSyncResponse)(nil), // 1037: mlx_device.MlxDeviceConfigSyncResponse + (*MlxDeviceConfigCompareResponse)(nil), // 1038: mlx_device.MlxDeviceConfigCompareResponse + (*MlxDeviceLockdownLockRequest)(nil), // 1039: mlx_device.MlxDeviceLockdownLockRequest + (*MlxDeviceLockdownUnlockRequest)(nil), // 1040: mlx_device.MlxDeviceLockdownUnlockRequest + (*MlxDeviceLockdownStatusRequest)(nil), // 1041: mlx_device.MlxDeviceLockdownStatusRequest + (*MlxDeviceProfileSyncRequest)(nil), // 1042: mlx_device.MlxDeviceProfileSyncRequest + (*MlxDeviceProfileCompareRequest)(nil), // 1043: mlx_device.MlxDeviceProfileCompareRequest + (*MlxDeviceInfoDeviceRequest)(nil), // 1044: mlx_device.MlxDeviceInfoDeviceRequest + (*MlxDeviceInfoReportRequest)(nil), // 1045: mlx_device.MlxDeviceInfoReportRequest + (*MlxDeviceRegistryListRequest)(nil), // 1046: mlx_device.MlxDeviceRegistryListRequest + (*MlxDeviceRegistryShowRequest)(nil), // 1047: mlx_device.MlxDeviceRegistryShowRequest + (*MlxDeviceConfigQueryRequest)(nil), // 1048: mlx_device.MlxDeviceConfigQueryRequest + (*MlxDeviceConfigSetRequest)(nil), // 1049: mlx_device.MlxDeviceConfigSetRequest + (*MlxDeviceConfigSyncRequest)(nil), // 1050: mlx_device.MlxDeviceConfigSyncRequest + (*MlxDeviceConfigCompareRequest)(nil), // 1051: mlx_device.MlxDeviceConfigCompareRequest + (*Domain)(nil), // 1052: dns.Domain + (*MachineIdList)(nil), // 1053: common.MachineIdList + (*EndpointExplorationReport)(nil), // 1054: site_explorer.EndpointExplorationReport + (SystemPowerControl)(0), // 1055: common.SystemPowerControl + (*SerializableMlxConfigProfile)(nil), // 1056: mlx_device.SerializableMlxConfigProfile + (*FirmwareFlasherProfile)(nil), // 1057: mlx_device.FirmwareFlasherProfile + (*ScoutFirmwareUpgradeTask)(nil), // 1058: scout_firmware_upgrade.ScoutFirmwareUpgradeTask + (*CreateDomainRequest)(nil), // 1059: dns.CreateDomainRequest + (*UpdateDomainRequest)(nil), // 1060: dns.UpdateDomainRequest + (*DomainDeletionRequest)(nil), // 1061: dns.DomainDeletionRequest + (*DomainSearchQuery)(nil), // 1062: dns.DomainSearchQuery + (*DnsResourceRecordLookupRequest)(nil), // 1063: dns.DnsResourceRecordLookupRequest + (*GetAllDomainsRequest)(nil), // 1064: dns.GetAllDomainsRequest + (*DomainMetadataRequest)(nil), // 1065: dns.DomainMetadataRequest + (*emptypb.Empty)(nil), // 1066: google.protobuf.Empty + (*ExploredEndpointSearchFilter)(nil), // 1067: site_explorer.ExploredEndpointSearchFilter + (*ExploredEndpointsByIdsRequest)(nil), // 1068: site_explorer.ExploredEndpointsByIdsRequest + (*ExploredManagedHostSearchFilter)(nil), // 1069: site_explorer.ExploredManagedHostSearchFilter + (*ExploredManagedHostsByIdsRequest)(nil), // 1070: site_explorer.ExploredManagedHostsByIdsRequest + (*ExploredMlxDeviceHostSearchFilter)(nil), // 1071: site_explorer.ExploredMlxDeviceHostSearchFilter + (*ExploredMlxDevicesByIdsRequest)(nil), // 1072: site_explorer.ExploredMlxDevicesByIdsRequest + (*CreateMeasurementBundleRequest)(nil), // 1073: measured_boot.CreateMeasurementBundleRequest + (*DeleteMeasurementBundleRequest)(nil), // 1074: measured_boot.DeleteMeasurementBundleRequest + (*RenameMeasurementBundleRequest)(nil), // 1075: measured_boot.RenameMeasurementBundleRequest + (*UpdateMeasurementBundleRequest)(nil), // 1076: measured_boot.UpdateMeasurementBundleRequest + (*ShowMeasurementBundleRequest)(nil), // 1077: measured_boot.ShowMeasurementBundleRequest + (*ShowMeasurementBundlesRequest)(nil), // 1078: measured_boot.ShowMeasurementBundlesRequest + (*ListMeasurementBundlesRequest)(nil), // 1079: measured_boot.ListMeasurementBundlesRequest + (*ListMeasurementBundleMachinesRequest)(nil), // 1080: measured_boot.ListMeasurementBundleMachinesRequest + (*FindClosestBundleMatchRequest)(nil), // 1081: measured_boot.FindClosestBundleMatchRequest + (*DeleteMeasurementJournalRequest)(nil), // 1082: measured_boot.DeleteMeasurementJournalRequest + (*ShowMeasurementJournalRequest)(nil), // 1083: measured_boot.ShowMeasurementJournalRequest + (*ShowMeasurementJournalsRequest)(nil), // 1084: measured_boot.ShowMeasurementJournalsRequest + (*ListMeasurementJournalRequest)(nil), // 1085: measured_boot.ListMeasurementJournalRequest + (*AttestCandidateMachineRequest)(nil), // 1086: measured_boot.AttestCandidateMachineRequest + (*ShowCandidateMachineRequest)(nil), // 1087: measured_boot.ShowCandidateMachineRequest + (*ShowCandidateMachinesRequest)(nil), // 1088: measured_boot.ShowCandidateMachinesRequest + (*ListCandidateMachinesRequest)(nil), // 1089: measured_boot.ListCandidateMachinesRequest + (*CreateMeasurementSystemProfileRequest)(nil), // 1090: measured_boot.CreateMeasurementSystemProfileRequest + (*DeleteMeasurementSystemProfileRequest)(nil), // 1091: measured_boot.DeleteMeasurementSystemProfileRequest + (*RenameMeasurementSystemProfileRequest)(nil), // 1092: measured_boot.RenameMeasurementSystemProfileRequest + (*ShowMeasurementSystemProfileRequest)(nil), // 1093: measured_boot.ShowMeasurementSystemProfileRequest + (*ShowMeasurementSystemProfilesRequest)(nil), // 1094: measured_boot.ShowMeasurementSystemProfilesRequest + (*ListMeasurementSystemProfilesRequest)(nil), // 1095: measured_boot.ListMeasurementSystemProfilesRequest + (*ListMeasurementSystemProfileBundlesRequest)(nil), // 1096: measured_boot.ListMeasurementSystemProfileBundlesRequest + (*ListMeasurementSystemProfileMachinesRequest)(nil), // 1097: measured_boot.ListMeasurementSystemProfileMachinesRequest + (*CreateMeasurementReportRequest)(nil), // 1098: measured_boot.CreateMeasurementReportRequest + (*DeleteMeasurementReportRequest)(nil), // 1099: measured_boot.DeleteMeasurementReportRequest + (*PromoteMeasurementReportRequest)(nil), // 1100: measured_boot.PromoteMeasurementReportRequest + (*RevokeMeasurementReportRequest)(nil), // 1101: measured_boot.RevokeMeasurementReportRequest + (*ShowMeasurementReportForIdRequest)(nil), // 1102: measured_boot.ShowMeasurementReportForIdRequest + (*ShowMeasurementReportsForMachineRequest)(nil), // 1103: measured_boot.ShowMeasurementReportsForMachineRequest + (*ShowMeasurementReportsRequest)(nil), // 1104: measured_boot.ShowMeasurementReportsRequest + (*ListMeasurementReportRequest)(nil), // 1105: measured_boot.ListMeasurementReportRequest + (*MatchMeasurementReportRequest)(nil), // 1106: measured_boot.MatchMeasurementReportRequest + (*ImportSiteMeasurementsRequest)(nil), // 1107: measured_boot.ImportSiteMeasurementsRequest + (*ExportSiteMeasurementsRequest)(nil), // 1108: measured_boot.ExportSiteMeasurementsRequest + (*AddMeasurementTrustedMachineRequest)(nil), // 1109: measured_boot.AddMeasurementTrustedMachineRequest + (*RemoveMeasurementTrustedMachineRequest)(nil), // 1110: measured_boot.RemoveMeasurementTrustedMachineRequest + (*AddMeasurementTrustedProfileRequest)(nil), // 1111: measured_boot.AddMeasurementTrustedProfileRequest + (*RemoveMeasurementTrustedProfileRequest)(nil), // 1112: measured_boot.RemoveMeasurementTrustedProfileRequest + (*ListMeasurementTrustedMachinesRequest)(nil), // 1113: measured_boot.ListMeasurementTrustedMachinesRequest + (*ListMeasurementTrustedProfilesRequest)(nil), // 1114: measured_boot.ListMeasurementTrustedProfilesRequest + (*ListAttestationSummaryRequest)(nil), // 1115: measured_boot.ListAttestationSummaryRequest + (*PublishMlxDeviceReportRequest)(nil), // 1116: mlx_device.PublishMlxDeviceReportRequest + (*PublishMlxObservationReportRequest)(nil), // 1117: mlx_device.PublishMlxObservationReportRequest + (*MlxAdminProfileSyncRequest)(nil), // 1118: mlx_device.MlxAdminProfileSyncRequest + (*MlxAdminProfileShowRequest)(nil), // 1119: mlx_device.MlxAdminProfileShowRequest + (*MlxAdminProfileCompareRequest)(nil), // 1120: mlx_device.MlxAdminProfileCompareRequest + (*MlxAdminProfileListRequest)(nil), // 1121: mlx_device.MlxAdminProfileListRequest + (*MlxAdminLockdownLockRequest)(nil), // 1122: mlx_device.MlxAdminLockdownLockRequest + (*MlxAdminLockdownUnlockRequest)(nil), // 1123: mlx_device.MlxAdminLockdownUnlockRequest + (*MlxAdminLockdownStatusRequest)(nil), // 1124: mlx_device.MlxAdminLockdownStatusRequest + (*MlxAdminDeviceInfoRequest)(nil), // 1125: mlx_device.MlxAdminDeviceInfoRequest + (*MlxAdminDeviceReportRequest)(nil), // 1126: mlx_device.MlxAdminDeviceReportRequest + (*MlxAdminRegistryListRequest)(nil), // 1127: mlx_device.MlxAdminRegistryListRequest + (*MlxAdminRegistryShowRequest)(nil), // 1128: mlx_device.MlxAdminRegistryShowRequest + (*MlxAdminConfigQueryRequest)(nil), // 1129: mlx_device.MlxAdminConfigQueryRequest + (*MlxAdminConfigSetRequest)(nil), // 1130: mlx_device.MlxAdminConfigSetRequest + (*MlxAdminConfigSyncRequest)(nil), // 1131: mlx_device.MlxAdminConfigSyncRequest + (*MlxAdminConfigCompareRequest)(nil), // 1132: mlx_device.MlxAdminConfigCompareRequest + (*DomainDeletionResult)(nil), // 1133: dns.DomainDeletionResult + (*DomainList)(nil), // 1134: dns.DomainList + (*DnsResourceRecordLookupResponse)(nil), // 1135: dns.DnsResourceRecordLookupResponse + (*GetAllDomainsResponse)(nil), // 1136: dns.GetAllDomainsResponse + (*DomainMetadataResponse)(nil), // 1137: dns.DomainMetadataResponse + (*SiteExplorationReport)(nil), // 1138: site_explorer.SiteExplorationReport + (*SiteExplorerLastRunResponse)(nil), // 1139: site_explorer.SiteExplorerLastRunResponse + (*ExploredEndpoint)(nil), // 1140: site_explorer.ExploredEndpoint + (*ExploredEndpointIdList)(nil), // 1141: site_explorer.ExploredEndpointIdList + (*ExploredEndpointList)(nil), // 1142: site_explorer.ExploredEndpointList + (*ExploredManagedHostIdList)(nil), // 1143: site_explorer.ExploredManagedHostIdList + (*ExploredManagedHostList)(nil), // 1144: site_explorer.ExploredManagedHostList + (*ExploredMlxDeviceHostIdList)(nil), // 1145: site_explorer.ExploredMlxDeviceHostIdList + (*ExploredMlxDeviceList)(nil), // 1146: site_explorer.ExploredMlxDeviceList + (*CreateMeasurementBundleResponse)(nil), // 1147: measured_boot.CreateMeasurementBundleResponse + (*DeleteMeasurementBundleResponse)(nil), // 1148: measured_boot.DeleteMeasurementBundleResponse + (*RenameMeasurementBundleResponse)(nil), // 1149: measured_boot.RenameMeasurementBundleResponse + (*UpdateMeasurementBundleResponse)(nil), // 1150: measured_boot.UpdateMeasurementBundleResponse + (*ShowMeasurementBundleResponse)(nil), // 1151: measured_boot.ShowMeasurementBundleResponse + (*ShowMeasurementBundlesResponse)(nil), // 1152: measured_boot.ShowMeasurementBundlesResponse + (*ListMeasurementBundlesResponse)(nil), // 1153: measured_boot.ListMeasurementBundlesResponse + (*ListMeasurementBundleMachinesResponse)(nil), // 1154: measured_boot.ListMeasurementBundleMachinesResponse + (*DeleteMeasurementJournalResponse)(nil), // 1155: measured_boot.DeleteMeasurementJournalResponse + (*ShowMeasurementJournalResponse)(nil), // 1156: measured_boot.ShowMeasurementJournalResponse + (*ShowMeasurementJournalsResponse)(nil), // 1157: measured_boot.ShowMeasurementJournalsResponse + (*ListMeasurementJournalResponse)(nil), // 1158: measured_boot.ListMeasurementJournalResponse + (*AttestCandidateMachineResponse)(nil), // 1159: measured_boot.AttestCandidateMachineResponse + (*ShowCandidateMachineResponse)(nil), // 1160: measured_boot.ShowCandidateMachineResponse + (*ShowCandidateMachinesResponse)(nil), // 1161: measured_boot.ShowCandidateMachinesResponse + (*ListCandidateMachinesResponse)(nil), // 1162: measured_boot.ListCandidateMachinesResponse + (*CreateMeasurementSystemProfileResponse)(nil), // 1163: measured_boot.CreateMeasurementSystemProfileResponse + (*DeleteMeasurementSystemProfileResponse)(nil), // 1164: measured_boot.DeleteMeasurementSystemProfileResponse + (*RenameMeasurementSystemProfileResponse)(nil), // 1165: measured_boot.RenameMeasurementSystemProfileResponse + (*ShowMeasurementSystemProfileResponse)(nil), // 1166: measured_boot.ShowMeasurementSystemProfileResponse + (*ShowMeasurementSystemProfilesResponse)(nil), // 1167: measured_boot.ShowMeasurementSystemProfilesResponse + (*ListMeasurementSystemProfilesResponse)(nil), // 1168: measured_boot.ListMeasurementSystemProfilesResponse + (*ListMeasurementSystemProfileBundlesResponse)(nil), // 1169: measured_boot.ListMeasurementSystemProfileBundlesResponse + (*ListMeasurementSystemProfileMachinesResponse)(nil), // 1170: measured_boot.ListMeasurementSystemProfileMachinesResponse + (*CreateMeasurementReportResponse)(nil), // 1171: measured_boot.CreateMeasurementReportResponse + (*DeleteMeasurementReportResponse)(nil), // 1172: measured_boot.DeleteMeasurementReportResponse + (*PromoteMeasurementReportResponse)(nil), // 1173: measured_boot.PromoteMeasurementReportResponse + (*RevokeMeasurementReportResponse)(nil), // 1174: measured_boot.RevokeMeasurementReportResponse + (*ShowMeasurementReportForIdResponse)(nil), // 1175: measured_boot.ShowMeasurementReportForIdResponse + (*ShowMeasurementReportsForMachineResponse)(nil), // 1176: measured_boot.ShowMeasurementReportsForMachineResponse + (*ShowMeasurementReportsResponse)(nil), // 1177: measured_boot.ShowMeasurementReportsResponse + (*ListMeasurementReportResponse)(nil), // 1178: measured_boot.ListMeasurementReportResponse + (*MatchMeasurementReportResponse)(nil), // 1179: measured_boot.MatchMeasurementReportResponse + (*ImportSiteMeasurementsResponse)(nil), // 1180: measured_boot.ImportSiteMeasurementsResponse + (*ExportSiteMeasurementsResponse)(nil), // 1181: measured_boot.ExportSiteMeasurementsResponse + (*AddMeasurementTrustedMachineResponse)(nil), // 1182: measured_boot.AddMeasurementTrustedMachineResponse + (*RemoveMeasurementTrustedMachineResponse)(nil), // 1183: measured_boot.RemoveMeasurementTrustedMachineResponse + (*AddMeasurementTrustedProfileResponse)(nil), // 1184: measured_boot.AddMeasurementTrustedProfileResponse + (*RemoveMeasurementTrustedProfileResponse)(nil), // 1185: measured_boot.RemoveMeasurementTrustedProfileResponse + (*ListMeasurementTrustedMachinesResponse)(nil), // 1186: measured_boot.ListMeasurementTrustedMachinesResponse + (*ListMeasurementTrustedProfilesResponse)(nil), // 1187: measured_boot.ListMeasurementTrustedProfilesResponse + (*ListAttestationSummaryResponse)(nil), // 1188: measured_boot.ListAttestationSummaryResponse + (*LockdownStatus)(nil), // 1189: site_explorer.LockdownStatus + (*PublishMlxDeviceReportResponse)(nil), // 1190: mlx_device.PublishMlxDeviceReportResponse + (*PublishMlxObservationReportResponse)(nil), // 1191: mlx_device.PublishMlxObservationReportResponse + (*MlxAdminProfileSyncResponse)(nil), // 1192: mlx_device.MlxAdminProfileSyncResponse + (*MlxAdminProfileShowResponse)(nil), // 1193: mlx_device.MlxAdminProfileShowResponse + (*MlxAdminProfileCompareResponse)(nil), // 1194: mlx_device.MlxAdminProfileCompareResponse + (*MlxAdminProfileListResponse)(nil), // 1195: mlx_device.MlxAdminProfileListResponse + (*MlxAdminLockdownLockResponse)(nil), // 1196: mlx_device.MlxAdminLockdownLockResponse + (*MlxAdminLockdownUnlockResponse)(nil), // 1197: mlx_device.MlxAdminLockdownUnlockResponse + (*MlxAdminLockdownStatusResponse)(nil), // 1198: mlx_device.MlxAdminLockdownStatusResponse + (*MlxAdminDeviceInfoResponse)(nil), // 1199: mlx_device.MlxAdminDeviceInfoResponse + (*MlxAdminDeviceReportResponse)(nil), // 1200: mlx_device.MlxAdminDeviceReportResponse + (*MlxAdminRegistryListResponse)(nil), // 1201: mlx_device.MlxAdminRegistryListResponse + (*MlxAdminRegistryShowResponse)(nil), // 1202: mlx_device.MlxAdminRegistryShowResponse + (*MlxAdminConfigQueryResponse)(nil), // 1203: mlx_device.MlxAdminConfigQueryResponse + (*MlxAdminConfigSetResponse)(nil), // 1204: mlx_device.MlxAdminConfigSetResponse + (*MlxAdminConfigSyncResponse)(nil), // 1205: mlx_device.MlxAdminConfigSyncResponse + (*MlxAdminConfigCompareResponse)(nil), // 1206: mlx_device.MlxAdminConfigCompareResponse } var file_nico_nico_proto_depIdxs = []int32{ - 353, // 0: forge.LifecycleStatus.state_reason:type_name -> forge.ControllerStateReason - 355, // 1: forge.LifecycleStatus.sla:type_name -> forge.StateSla - 992, // 2: forge.SpdmMachineAttestationStatus.machine_id:type_name -> common.MachineId + 355, // 0: forge.LifecycleStatus.state_reason:type_name -> forge.ControllerStateReason + 357, // 1: forge.LifecycleStatus.sla:type_name -> forge.StateSla + 994, // 2: forge.SpdmMachineAttestationStatus.machine_id:type_name -> common.MachineId 0, // 3: forge.SpdmMachineAttestationStatus.attestation_status:type_name -> forge.SpdmAttestationStatus - 992, // 4: forge.SpdmMachineAttestationTriggerResponse.machine_id:type_name -> common.MachineId - 992, // 5: forge.SpdmAttestationDetails.machine_id:type_name -> common.MachineId - 993, // 6: forge.SpdmAttestationDetails.started_at:type_name -> google.protobuf.Timestamp - 993, // 7: forge.SpdmAttestationDetails.cancelled_at:type_name -> google.protobuf.Timestamp - 993, // 8: forge.SpdmAttestationDetails.completed_at:type_name -> google.protobuf.Timestamp + 994, // 4: forge.SpdmMachineAttestationTriggerResponse.machine_id:type_name -> common.MachineId + 994, // 5: forge.SpdmAttestationDetails.machine_id:type_name -> common.MachineId + 995, // 6: forge.SpdmAttestationDetails.started_at:type_name -> google.protobuf.Timestamp + 995, // 7: forge.SpdmAttestationDetails.cancelled_at:type_name -> google.protobuf.Timestamp + 995, // 8: forge.SpdmAttestationDetails.completed_at:type_name -> google.protobuf.Timestamp 96, // 9: forge.SpdmGetAttestationMachineResponse.attestations_details:type_name -> forge.SpdmAttestationDetails - 992, // 10: forge.SpdmMachineAttestationTriggerRequest.machine_id:type_name -> common.MachineId - 992, // 11: forge.SpdmListAttestationMachinesRequest.machine_id:type_name -> common.MachineId + 994, // 10: forge.SpdmMachineAttestationTriggerRequest.machine_id:type_name -> common.MachineId + 994, // 11: forge.SpdmListAttestationMachinesRequest.machine_id:type_name -> common.MachineId 1, // 12: forge.SpdmListAttestationMachinesRequest.selector:type_name -> forge.SpdmListAttestationMachinesRequestSelector 94, // 13: forge.SpdmListAttestationMachinesResponse.statuses:type_name -> forge.SpdmMachineAttestationStatus - 993, // 14: forge.TenantIdentitySigningKey.expire_at:type_name -> google.protobuf.Timestamp + 995, // 14: forge.TenantIdentitySigningKey.expire_at:type_name -> google.protobuf.Timestamp 105, // 15: forge.SetTenantIdentityConfigRequest.config:type_name -> forge.TenantIdentityConfig 105, // 16: forge.TenantIdentityConfigResponse.config:type_name -> forge.TenantIdentityConfig - 993, // 17: forge.TenantIdentityConfigResponse.created_at:type_name -> google.protobuf.Timestamp - 993, // 18: forge.TenantIdentityConfigResponse.updated_at:type_name -> google.protobuf.Timestamp + 995, // 17: forge.TenantIdentityConfigResponse.created_at:type_name -> google.protobuf.Timestamp + 995, // 18: forge.TenantIdentityConfigResponse.updated_at:type_name -> google.protobuf.Timestamp 104, // 19: forge.TenantIdentityConfigResponse.signing_keys:type_name -> forge.TenantIdentitySigningKey 109, // 20: forge.TokenDelegationResponse.client_secret_basic:type_name -> forge.ClientSecretBasicResponse - 993, // 21: forge.TokenDelegationResponse.created_at:type_name -> google.protobuf.Timestamp - 993, // 22: forge.TokenDelegationResponse.updated_at:type_name -> google.protobuf.Timestamp + 995, // 21: forge.TokenDelegationResponse.created_at:type_name -> google.protobuf.Timestamp + 995, // 22: forge.TokenDelegationResponse.updated_at:type_name -> google.protobuf.Timestamp 108, // 23: forge.TokenDelegation.client_secret_basic:type_name -> forge.ClientSecretBasic 112, // 24: forge.TokenDelegationRequest.config:type_name -> forge.TokenDelegation 115, // 25: forge.ReencryptTenantIdentitySecretsResponse.failures:type_name -> forge.ReencryptTenantIdentityFailure 2, // 26: forge.JwksRequest.kind:type_name -> forge.JwksKind 3, // 27: forge.MachineIngestionStateResponse.machine_ingestion_state:type_name -> forge.MachineIngestionState 123, // 28: forge.TpmCaAddedCaStatus.id:type_name -> forge.TpmCaCertId - 992, // 29: forge.TpmEkCertStatus.machine_id:type_name -> common.MachineId + 994, // 29: forge.TpmEkCertStatus.machine_id:type_name -> common.MachineId 124, // 30: forge.TpmEkCertStatusCollection.tpm_ek_cert_statuses:type_name -> forge.TpmEkCertStatus 127, // 31: forge.TpmCaCertDetailCollection.tpm_ca_cert_details:type_name -> forge.TpmCaCertDetail - 992, // 32: forge.AttestQuoteRequest.machine_id:type_name -> common.MachineId - 436, // 33: forge.AttestQuoteResponse.machine_certificate:type_name -> forge.MachineCertificate + 994, // 32: forge.AttestQuoteRequest.machine_id:type_name -> common.MachineId + 438, // 33: forge.AttestQuoteResponse.machine_certificate:type_name -> forge.MachineCertificate 4, // 34: forge.CredentialCreationRequest.credential_type:type_name -> forge.CredentialType 4, // 35: forge.CredentialDeletionRequest.credential_type:type_name -> forge.CredentialType 5, // 36: forge.RotateCredentialRequest.credential_type:type_name -> forge.RotationCredentialType 5, // 37: forge.RotateCredentialResult.credential_type:type_name -> forge.RotationCredentialType - 993, // 38: forge.RotateCredentialResult.started_at:type_name -> google.protobuf.Timestamp + 995, // 38: forge.RotateCredentialResult.started_at:type_name -> google.protobuf.Timestamp 5, // 39: forge.CredentialRotationStatusRequest.credential_type:type_name -> forge.RotationCredentialType - 993, // 40: forge.DeviceCredentialRotationStatus.quarantined_until:type_name -> google.protobuf.Timestamp - 993, // 41: forge.DeviceCredentialRotationStatus.last_attempt_at:type_name -> google.protobuf.Timestamp - 993, // 42: forge.CredentialRotationStatusResult.started_at:type_name -> google.protobuf.Timestamp + 995, // 40: forge.DeviceCredentialRotationStatus.quarantined_until:type_name -> google.protobuf.Timestamp + 995, // 41: forge.DeviceCredentialRotationStatus.last_attempt_at:type_name -> google.protobuf.Timestamp + 995, // 42: forge.CredentialRotationStatusResult.started_at:type_name -> google.protobuf.Timestamp 139, // 43: forge.CredentialRotationStatusResult.device:type_name -> forge.DeviceCredentialRotationStatus 143, // 44: forge.BuildInfo.runtime_config:type_name -> forge.RuntimeConfig - 953, // 45: forge.RuntimeConfig.dpu_nic_firmware_update_version:type_name -> forge.RuntimeConfig.DpuNicFirmwareUpdateVersionEntry - 954, // 46: forge.DNSMessage.question:type_name -> forge.DNSMessage.DNSQuestion - 955, // 47: forge.DNSMessage.response:type_name -> forge.DNSMessage.DNSResponse - 994, // 48: forge.VpcSearchQuery.id:type_name -> common.VpcId + 955, // 45: forge.RuntimeConfig.dpu_nic_firmware_update_version:type_name -> forge.RuntimeConfig.DpuNicFirmwareUpdateVersionEntry + 956, // 46: forge.DNSMessage.question:type_name -> forge.DNSMessage.DNSQuestion + 957, // 47: forge.DNSMessage.response:type_name -> forge.DNSMessage.DNSResponse + 996, // 48: forge.VpcSearchQuery.id:type_name -> common.VpcId 261, // 49: forge.VpcSearchFilter.label:type_name -> forge.Label - 994, // 50: forge.VpcIdList.vpc_ids:type_name -> common.VpcId - 994, // 51: forge.VpcsByIdsRequest.vpc_ids:type_name -> common.VpcId + 996, // 50: forge.VpcIdList.vpc_ids:type_name -> common.VpcId + 996, // 51: forge.VpcsByIdsRequest.vpc_ids:type_name -> common.VpcId 6, // 52: forge.VpcConfig.network_virtualization_type:type_name -> forge.VpcVirtualizationType - 995, // 53: forge.VpcConfig.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 994, // 54: forge.Vpc.id:type_name -> common.VpcId - 993, // 55: forge.Vpc.created:type_name -> google.protobuf.Timestamp - 993, // 56: forge.Vpc.updated:type_name -> google.protobuf.Timestamp - 993, // 57: forge.Vpc.deleted:type_name -> google.protobuf.Timestamp + 997, // 53: forge.VpcConfig.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 996, // 54: forge.Vpc.id:type_name -> common.VpcId + 995, // 55: forge.Vpc.created:type_name -> google.protobuf.Timestamp + 995, // 56: forge.Vpc.updated:type_name -> google.protobuf.Timestamp + 995, // 57: forge.Vpc.deleted:type_name -> google.protobuf.Timestamp 6, // 58: forge.Vpc.network_virtualization_type:type_name -> forge.VpcVirtualizationType 262, // 59: forge.Vpc.metadata:type_name -> forge.Metadata - 995, // 60: forge.Vpc.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 997, // 60: forge.Vpc.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId 158, // 61: forge.Vpc.status:type_name -> forge.VpcStatus 157, // 62: forge.Vpc.config:type_name -> forge.VpcConfig 6, // 63: forge.VpcCreationRequest.network_virtualization_type:type_name -> forge.VpcVirtualizationType - 994, // 64: forge.VpcCreationRequest.id:type_name -> common.VpcId + 996, // 64: forge.VpcCreationRequest.id:type_name -> common.VpcId 262, // 65: forge.VpcCreationRequest.metadata:type_name -> forge.Metadata - 995, // 66: forge.VpcCreationRequest.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 994, // 67: forge.VpcUpdateRequest.id:type_name -> common.VpcId + 997, // 66: forge.VpcCreationRequest.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 996, // 67: forge.VpcUpdateRequest.id:type_name -> common.VpcId 262, // 68: forge.VpcUpdateRequest.metadata:type_name -> forge.Metadata - 995, // 69: forge.VpcUpdateRequest.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 997, // 69: forge.VpcUpdateRequest.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId 159, // 70: forge.VpcUpdateResult.vpc:type_name -> forge.Vpc - 994, // 71: forge.VpcUpdateVirtualizationRequest.id:type_name -> common.VpcId + 996, // 71: forge.VpcUpdateVirtualizationRequest.id:type_name -> common.VpcId 6, // 72: forge.VpcUpdateVirtualizationRequest.network_virtualization_type:type_name -> forge.VpcVirtualizationType - 994, // 73: forge.VpcDeletionRequest.id:type_name -> common.VpcId + 996, // 73: forge.VpcDeletionRequest.id:type_name -> common.VpcId 159, // 74: forge.VpcList.vpcs:type_name -> forge.Vpc - 996, // 75: forge.VpcPrefix.id:type_name -> common.VpcPrefixId - 994, // 76: forge.VpcPrefix.vpc_id:type_name -> common.VpcId + 998, // 75: forge.VpcPrefix.id:type_name -> common.VpcPrefixId + 996, // 76: forge.VpcPrefix.vpc_id:type_name -> common.VpcId 169, // 77: forge.VpcPrefix.config:type_name -> forge.VpcPrefixConfig 170, // 78: forge.VpcPrefix.status:type_name -> forge.VpcPrefixStatus 262, // 79: forge.VpcPrefix.metadata:type_name -> forge.Metadata 93, // 80: forge.VpcPrefixStatus.lifecycle:type_name -> forge.LifecycleStatus 8, // 81: forge.VpcPrefixStatus.tenant_state:type_name -> forge.TenantState - 996, // 82: forge.VpcPrefixCreationRequest.id:type_name -> common.VpcPrefixId - 994, // 83: forge.VpcPrefixCreationRequest.vpc_id:type_name -> common.VpcId + 998, // 82: forge.VpcPrefixCreationRequest.id:type_name -> common.VpcPrefixId + 996, // 83: forge.VpcPrefixCreationRequest.vpc_id:type_name -> common.VpcId 169, // 84: forge.VpcPrefixCreationRequest.config:type_name -> forge.VpcPrefixConfig 262, // 85: forge.VpcPrefixCreationRequest.metadata:type_name -> forge.Metadata - 994, // 86: forge.VpcPrefixSearchQuery.vpc_id:type_name -> common.VpcId - 996, // 87: forge.VpcPrefixSearchQuery.tenant_prefix_id:type_name -> common.VpcPrefixId + 996, // 86: forge.VpcPrefixSearchQuery.vpc_id:type_name -> common.VpcId + 998, // 87: forge.VpcPrefixSearchQuery.tenant_prefix_id:type_name -> common.VpcPrefixId 7, // 88: forge.VpcPrefixSearchQuery.prefix_match_type:type_name -> forge.PrefixMatchType 10, // 89: forge.VpcPrefixSearchQuery.deleted:type_name -> forge.DeletedFilter - 996, // 90: forge.VpcPrefixGetRequest.vpc_prefix_ids:type_name -> common.VpcPrefixId + 998, // 90: forge.VpcPrefixGetRequest.vpc_prefix_ids:type_name -> common.VpcPrefixId 10, // 91: forge.VpcPrefixGetRequest.deleted:type_name -> forge.DeletedFilter - 996, // 92: forge.VpcPrefixIdList.vpc_prefix_ids:type_name -> common.VpcPrefixId + 998, // 92: forge.VpcPrefixIdList.vpc_prefix_ids:type_name -> common.VpcPrefixId 168, // 93: forge.VpcPrefixList.vpc_prefixes:type_name -> forge.VpcPrefix - 996, // 94: forge.VpcPrefixUpdateRequest.id:type_name -> common.VpcPrefixId + 998, // 94: forge.VpcPrefixUpdateRequest.id:type_name -> common.VpcPrefixId 169, // 95: forge.VpcPrefixUpdateRequest.config:type_name -> forge.VpcPrefixConfig 262, // 96: forge.VpcPrefixUpdateRequest.metadata:type_name -> forge.Metadata - 996, // 97: forge.VpcPrefixDeletionRequest.id:type_name -> common.VpcPrefixId - 996, // 98: forge.VpcPrefixStateHistoriesRequest.vpc_prefix_ids:type_name -> common.VpcPrefixId - 997, // 99: forge.VpcPeering.id:type_name -> common.VpcPeeringId - 994, // 100: forge.VpcPeering.vpc_id:type_name -> common.VpcId - 994, // 101: forge.VpcPeering.peer_vpc_id:type_name -> common.VpcId - 997, // 102: forge.VpcPeeringIdList.vpc_peering_ids:type_name -> common.VpcPeeringId + 998, // 97: forge.VpcPrefixDeletionRequest.id:type_name -> common.VpcPrefixId + 998, // 98: forge.VpcPrefixStateHistoriesRequest.vpc_prefix_ids:type_name -> common.VpcPrefixId + 999, // 99: forge.VpcPeering.id:type_name -> common.VpcPeeringId + 996, // 100: forge.VpcPeering.vpc_id:type_name -> common.VpcId + 996, // 101: forge.VpcPeering.peer_vpc_id:type_name -> common.VpcId + 999, // 102: forge.VpcPeeringIdList.vpc_peering_ids:type_name -> common.VpcPeeringId 180, // 103: forge.VpcPeeringList.vpc_peerings:type_name -> forge.VpcPeering - 994, // 104: forge.VpcPeeringCreationRequest.vpc_id:type_name -> common.VpcId - 994, // 105: forge.VpcPeeringCreationRequest.peer_vpc_id:type_name -> common.VpcId - 997, // 106: forge.VpcPeeringCreationRequest.id:type_name -> common.VpcPeeringId - 994, // 107: forge.VpcPeeringSearchFilter.vpc_id:type_name -> common.VpcId - 997, // 108: forge.VpcPeeringsByIdsRequest.vpc_peering_ids:type_name -> common.VpcPeeringId - 997, // 109: forge.VpcPeeringDeletionRequest.id:type_name -> common.VpcPeeringId + 996, // 104: forge.VpcPeeringCreationRequest.vpc_id:type_name -> common.VpcId + 996, // 105: forge.VpcPeeringCreationRequest.peer_vpc_id:type_name -> common.VpcId + 999, // 106: forge.VpcPeeringCreationRequest.id:type_name -> common.VpcPeeringId + 996, // 107: forge.VpcPeeringSearchFilter.vpc_id:type_name -> common.VpcId + 999, // 108: forge.VpcPeeringsByIdsRequest.vpc_peering_ids:type_name -> common.VpcPeeringId + 999, // 109: forge.VpcPeeringDeletionRequest.id:type_name -> common.VpcPeeringId 8, // 110: forge.IBPartitionStatus.state:type_name -> forge.TenantState - 353, // 111: forge.IBPartitionStatus.state_reason:type_name -> forge.ControllerStateReason - 355, // 112: forge.IBPartitionStatus.state_sla:type_name -> forge.StateSla - 998, // 113: forge.IBPartition.id:type_name -> common.IBPartitionId + 355, // 111: forge.IBPartitionStatus.state_reason:type_name -> forge.ControllerStateReason + 357, // 112: forge.IBPartitionStatus.state_sla:type_name -> forge.StateSla + 1000, // 113: forge.IBPartition.id:type_name -> common.IBPartitionId 188, // 114: forge.IBPartition.config:type_name -> forge.IBPartitionConfig 189, // 115: forge.IBPartition.status:type_name -> forge.IBPartitionStatus 262, // 116: forge.IBPartition.metadata:type_name -> forge.Metadata 190, // 117: forge.IBPartitionList.ib_partitions:type_name -> forge.IBPartition 188, // 118: forge.IBPartitionCreationRequest.config:type_name -> forge.IBPartitionConfig - 998, // 119: forge.IBPartitionCreationRequest.id:type_name -> common.IBPartitionId + 1000, // 119: forge.IBPartitionCreationRequest.id:type_name -> common.IBPartitionId 262, // 120: forge.IBPartitionCreationRequest.metadata:type_name -> forge.Metadata - 998, // 121: forge.IBPartitionUpdateRequest.id:type_name -> common.IBPartitionId + 1000, // 121: forge.IBPartitionUpdateRequest.id:type_name -> common.IBPartitionId 188, // 122: forge.IBPartitionUpdateRequest.config:type_name -> forge.IBPartitionConfig 262, // 123: forge.IBPartitionUpdateRequest.metadata:type_name -> forge.Metadata - 998, // 124: forge.IBPartitionDeletionRequest.id:type_name -> common.IBPartitionId - 998, // 125: forge.IBPartitionsByIdsRequest.ib_partition_ids:type_name -> common.IBPartitionId - 998, // 126: forge.IBPartitionIdList.ib_partition_ids:type_name -> common.IBPartitionId - 353, // 127: forge.PowerShelfStatus.state_reason:type_name -> forge.ControllerStateReason - 355, // 128: forge.PowerShelfStatus.state_sla:type_name -> forge.StateSla - 999, // 129: forge.PowerShelfStatus.health:type_name -> health.HealthReport - 352, // 130: forge.PowerShelfStatus.health_sources:type_name -> forge.HealthSourceOrigin + 1000, // 124: forge.IBPartitionDeletionRequest.id:type_name -> common.IBPartitionId + 1000, // 125: forge.IBPartitionsByIdsRequest.ib_partition_ids:type_name -> common.IBPartitionId + 1000, // 126: forge.IBPartitionIdList.ib_partition_ids:type_name -> common.IBPartitionId + 355, // 127: forge.PowerShelfStatus.state_reason:type_name -> forge.ControllerStateReason + 357, // 128: forge.PowerShelfStatus.state_sla:type_name -> forge.StateSla + 1001, // 129: forge.PowerShelfStatus.health:type_name -> health.HealthReport + 354, // 130: forge.PowerShelfStatus.health_sources:type_name -> forge.HealthSourceOrigin 93, // 131: forge.PowerShelfStatus.lifecycle:type_name -> forge.LifecycleStatus - 1000, // 132: forge.PowerShelf.id:type_name -> common.PowerShelfId + 1002, // 132: forge.PowerShelf.id:type_name -> common.PowerShelfId 199, // 133: forge.PowerShelf.config:type_name -> forge.PowerShelfConfig 200, // 134: forge.PowerShelf.status:type_name -> forge.PowerShelfStatus - 993, // 135: forge.PowerShelf.deleted:type_name -> google.protobuf.Timestamp + 995, // 135: forge.PowerShelf.deleted:type_name -> google.protobuf.Timestamp 262, // 136: forge.PowerShelf.metadata:type_name -> forge.Metadata 338, // 137: forge.PowerShelf.bmc_info:type_name -> forge.BmcInfo - 1001, // 138: forge.PowerShelf.rack_id:type_name -> common.RackId + 1003, // 138: forge.PowerShelf.rack_id:type_name -> common.RackId 201, // 139: forge.PowerShelfList.power_shelves:type_name -> forge.PowerShelf 199, // 140: forge.PowerShelfCreationRequest.config:type_name -> forge.PowerShelfConfig - 1000, // 141: forge.PowerShelfCreationRequest.id:type_name -> common.PowerShelfId - 1000, // 142: forge.PowerShelfDeletionRequest.id:type_name -> common.PowerShelfId - 1000, // 143: forge.PowerShelfMaintenanceRequest.power_shelf_ids:type_name -> common.PowerShelfId + 1002, // 141: forge.PowerShelfCreationRequest.id:type_name -> common.PowerShelfId + 1002, // 142: forge.PowerShelfDeletionRequest.id:type_name -> common.PowerShelfId + 1002, // 143: forge.PowerShelfMaintenanceRequest.power_shelf_ids:type_name -> common.PowerShelfId 9, // 144: forge.PowerShelfMaintenanceRequest.operation:type_name -> forge.PowerShelfMaintenanceOperation - 1000, // 145: forge.PowerShelfStateHistoriesRequest.power_shelf_ids:type_name -> common.PowerShelfId - 1000, // 146: forge.PowerShelfQuery.power_shelf_id:type_name -> common.PowerShelfId - 1001, // 147: forge.PowerShelfSearchFilter.rack_id:type_name -> common.RackId + 1002, // 145: forge.PowerShelfStateHistoriesRequest.power_shelf_ids:type_name -> common.PowerShelfId + 1002, // 146: forge.PowerShelfQuery.power_shelf_id:type_name -> common.PowerShelfId + 1003, // 147: forge.PowerShelfSearchFilter.rack_id:type_name -> common.RackId 10, // 148: forge.PowerShelfSearchFilter.deleted:type_name -> forge.DeletedFilter - 1000, // 149: forge.PowerShelvesByIdsRequest.power_shelf_ids:type_name -> common.PowerShelfId + 1002, // 149: forge.PowerShelvesByIdsRequest.power_shelf_ids:type_name -> common.PowerShelfId 262, // 150: forge.ExpectedPowerShelf.metadata:type_name -> forge.Metadata - 1001, // 151: forge.ExpectedPowerShelf.rack_id:type_name -> common.RackId - 1002, // 152: forge.ExpectedPowerShelf.expected_power_shelf_id:type_name -> common.UUID - 1002, // 153: forge.ExpectedPowerShelfRequest.expected_power_shelf_id:type_name -> common.UUID + 1003, // 151: forge.ExpectedPowerShelf.rack_id:type_name -> common.RackId + 1004, // 152: forge.ExpectedPowerShelf.expected_power_shelf_id:type_name -> common.UUID + 1004, // 153: forge.ExpectedPowerShelfRequest.expected_power_shelf_id:type_name -> common.UUID 211, // 154: forge.ExpectedPowerShelfList.expected_power_shelves:type_name -> forge.ExpectedPowerShelf 215, // 155: forge.LinkedExpectedPowerShelfList.expected_power_shelves:type_name -> forge.LinkedExpectedPowerShelf - 1000, // 156: forge.LinkedExpectedPowerShelf.power_shelf_id:type_name -> common.PowerShelfId - 1002, // 157: forge.LinkedExpectedPowerShelf.expected_power_shelf_id:type_name -> common.UUID - 1001, // 158: forge.LinkedExpectedPowerShelf.rack_id:type_name -> common.RackId + 1002, // 156: forge.LinkedExpectedPowerShelf.power_shelf_id:type_name -> common.PowerShelfId + 1004, // 157: forge.LinkedExpectedPowerShelf.expected_power_shelf_id:type_name -> common.UUID + 1003, // 158: forge.LinkedExpectedPowerShelf.rack_id:type_name -> common.RackId 217, // 159: forge.SwitchConfig.fabric_manager_config:type_name -> forge.FabricManagerConfig - 957, // 160: forge.FabricManagerConfig.config_map:type_name -> forge.FabricManagerConfig.ConfigMapEntry + 959, // 160: forge.FabricManagerConfig.config_map:type_name -> forge.FabricManagerConfig.ConfigMapEntry 11, // 161: forge.FabricManagerStatus.fabric_manager_state:type_name -> forge.FabricManagerState - 353, // 162: forge.SwitchStatus.state_reason:type_name -> forge.ControllerStateReason - 355, // 163: forge.SwitchStatus.state_sla:type_name -> forge.StateSla - 999, // 164: forge.SwitchStatus.health:type_name -> health.HealthReport - 352, // 165: forge.SwitchStatus.health_sources:type_name -> forge.HealthSourceOrigin + 355, // 162: forge.SwitchStatus.state_reason:type_name -> forge.ControllerStateReason + 357, // 163: forge.SwitchStatus.state_sla:type_name -> forge.StateSla + 1001, // 164: forge.SwitchStatus.health:type_name -> health.HealthReport + 354, // 165: forge.SwitchStatus.health_sources:type_name -> forge.HealthSourceOrigin 93, // 166: forge.SwitchStatus.lifecycle:type_name -> forge.LifecycleStatus 218, // 167: forge.SwitchStatus.fabric_manager_status_details:type_name -> forge.FabricManagerStatus - 1003, // 168: forge.Switch.id:type_name -> common.SwitchId + 1005, // 168: forge.Switch.id:type_name -> common.SwitchId 216, // 169: forge.Switch.config:type_name -> forge.SwitchConfig 219, // 170: forge.Switch.status:type_name -> forge.SwitchStatus - 993, // 171: forge.Switch.deleted:type_name -> google.protobuf.Timestamp + 995, // 171: forge.Switch.deleted:type_name -> google.protobuf.Timestamp 338, // 172: forge.Switch.bmc_info:type_name -> forge.BmcInfo 262, // 173: forge.Switch.metadata:type_name -> forge.Metadata - 1001, // 174: forge.Switch.rack_id:type_name -> common.RackId + 1003, // 174: forge.Switch.rack_id:type_name -> common.RackId 220, // 175: forge.Switch.placement_in_rack:type_name -> forge.PlacementInRack - 339, // 176: forge.Switch.nvos_info:type_name -> forge.SwitchNvosInfo + 341, // 176: forge.Switch.nvos_info:type_name -> forge.SwitchNvosInfo 221, // 177: forge.SwitchList.switches:type_name -> forge.Switch 216, // 178: forge.SwitchCreationRequest.config:type_name -> forge.SwitchConfig - 1002, // 179: forge.SwitchCreationRequest.id:type_name -> common.UUID + 1004, // 179: forge.SwitchCreationRequest.id:type_name -> common.UUID 220, // 180: forge.SwitchCreationRequest.placement_in_rack:type_name -> forge.PlacementInRack - 1003, // 181: forge.SwitchDeletionRequest.id:type_name -> common.SwitchId - 993, // 182: forge.StateHistoryRecord.time:type_name -> google.protobuf.Timestamp + 1005, // 181: forge.SwitchDeletionRequest.id:type_name -> common.SwitchId + 995, // 182: forge.StateHistoryRecord.time:type_name -> google.protobuf.Timestamp 226, // 183: forge.StateHistoryRecords.records:type_name -> forge.StateHistoryRecord - 1003, // 184: forge.SwitchStateHistoriesRequest.switch_ids:type_name -> common.SwitchId - 958, // 185: forge.StateHistories.histories:type_name -> forge.StateHistories.HistoriesEntry - 1003, // 186: forge.SwitchQuery.switch_id:type_name -> common.SwitchId - 1001, // 187: forge.SwitchSearchFilter.rack_id:type_name -> common.RackId + 1005, // 184: forge.SwitchStateHistoriesRequest.switch_ids:type_name -> common.SwitchId + 960, // 185: forge.StateHistories.histories:type_name -> forge.StateHistories.HistoriesEntry + 1005, // 186: forge.SwitchQuery.switch_id:type_name -> common.SwitchId + 1003, // 187: forge.SwitchSearchFilter.rack_id:type_name -> common.RackId 10, // 188: forge.SwitchSearchFilter.deleted:type_name -> forge.DeletedFilter - 1003, // 189: forge.SwitchesByIdsRequest.switch_ids:type_name -> common.SwitchId + 1005, // 189: forge.SwitchesByIdsRequest.switch_ids:type_name -> common.SwitchId 262, // 190: forge.ExpectedSwitch.metadata:type_name -> forge.Metadata - 1001, // 191: forge.ExpectedSwitch.rack_id:type_name -> common.RackId - 1002, // 192: forge.ExpectedSwitch.expected_switch_id:type_name -> common.UUID - 1002, // 193: forge.ExpectedSwitchRequest.expected_switch_id:type_name -> common.UUID + 1003, // 191: forge.ExpectedSwitch.rack_id:type_name -> common.RackId + 1004, // 192: forge.ExpectedSwitch.expected_switch_id:type_name -> common.UUID + 1004, // 193: forge.ExpectedSwitchRequest.expected_switch_id:type_name -> common.UUID 233, // 194: forge.ExpectedSwitchList.expected_switches:type_name -> forge.ExpectedSwitch 237, // 195: forge.LinkedExpectedSwitchList.expected_switches:type_name -> forge.LinkedExpectedSwitch - 1003, // 196: forge.LinkedExpectedSwitch.switch_id:type_name -> common.SwitchId - 1002, // 197: forge.LinkedExpectedSwitch.expected_switch_id:type_name -> common.UUID - 1001, // 198: forge.LinkedExpectedSwitch.rack_id:type_name -> common.RackId - 1001, // 199: forge.ExpectedRack.rack_id:type_name -> common.RackId - 1004, // 200: forge.ExpectedRack.rack_profile_id:type_name -> common.RackProfileId + 1005, // 196: forge.LinkedExpectedSwitch.switch_id:type_name -> common.SwitchId + 1004, // 197: forge.LinkedExpectedSwitch.expected_switch_id:type_name -> common.UUID + 1003, // 198: forge.LinkedExpectedSwitch.rack_id:type_name -> common.RackId + 1003, // 199: forge.ExpectedRack.rack_id:type_name -> common.RackId + 1006, // 200: forge.ExpectedRack.rack_profile_id:type_name -> common.RackProfileId 262, // 201: forge.ExpectedRack.metadata:type_name -> forge.Metadata 238, // 202: forge.ExpectedRackList.expected_racks:type_name -> forge.ExpectedRack - 993, // 203: forge.NetworkSegmentStateHistory.time:type_name -> google.protobuf.Timestamp - 994, // 204: forge.NetworkSegmentConfig.vpc_id:type_name -> common.VpcId - 1005, // 205: forge.NetworkSegmentConfig.subdomain_id:type_name -> common.DomainId + 995, // 203: forge.NetworkSegmentStateHistory.time:type_name -> google.protobuf.Timestamp + 996, // 204: forge.NetworkSegmentConfig.vpc_id:type_name -> common.VpcId + 1007, // 205: forge.NetworkSegmentConfig.subdomain_id:type_name -> common.DomainId 12, // 206: forge.NetworkSegmentConfig.segment_type:type_name -> forge.NetworkSegmentType 256, // 207: forge.NetworkSegmentConfig.prefixes:type_name -> forge.NetworkPrefix 13, // 208: forge.NetworkSegmentStatus.flags:type_name -> forge.NetworkSegmentFlag 93, // 209: forge.NetworkSegmentStatus.lifecycle:type_name -> forge.LifecycleStatus 8, // 210: forge.NetworkSegmentStatus.tenant_state:type_name -> forge.TenantState - 1006, // 211: forge.NetworkSegment.id:type_name -> common.NetworkSegmentId - 994, // 212: forge.NetworkSegment.vpc_id:type_name -> common.VpcId - 1005, // 213: forge.NetworkSegment.subdomain_id:type_name -> common.DomainId + 1008, // 211: forge.NetworkSegment.id:type_name -> common.NetworkSegmentId + 996, // 212: forge.NetworkSegment.vpc_id:type_name -> common.VpcId + 1007, // 213: forge.NetworkSegment.subdomain_id:type_name -> common.DomainId 256, // 214: forge.NetworkSegment.prefixes:type_name -> forge.NetworkPrefix - 993, // 215: forge.NetworkSegment.created:type_name -> google.protobuf.Timestamp - 993, // 216: forge.NetworkSegment.updated:type_name -> google.protobuf.Timestamp - 993, // 217: forge.NetworkSegment.deleted:type_name -> google.protobuf.Timestamp + 995, // 215: forge.NetworkSegment.created:type_name -> google.protobuf.Timestamp + 995, // 216: forge.NetworkSegment.updated:type_name -> google.protobuf.Timestamp + 995, // 217: forge.NetworkSegment.deleted:type_name -> google.protobuf.Timestamp 12, // 218: forge.NetworkSegment.segment_type:type_name -> forge.NetworkSegmentType 13, // 219: forge.NetworkSegment.flags:type_name -> forge.NetworkSegmentFlag 244, // 220: forge.NetworkSegment.config:type_name -> forge.NetworkSegmentConfig @@ -68598,39 +68767,39 @@ var file_nico_nico_proto_depIdxs = []int32{ 262, // 222: forge.NetworkSegment.metadata:type_name -> forge.Metadata 8, // 223: forge.NetworkSegment.state:type_name -> forge.TenantState 243, // 224: forge.NetworkSegment.history:type_name -> forge.NetworkSegmentStateHistory - 353, // 225: forge.NetworkSegment.state_reason:type_name -> forge.ControllerStateReason - 355, // 226: forge.NetworkSegment.state_sla:type_name -> forge.StateSla - 994, // 227: forge.NetworkSegmentCreationRequest.vpc_id:type_name -> common.VpcId - 1005, // 228: forge.NetworkSegmentCreationRequest.subdomain_id:type_name -> common.DomainId + 355, // 225: forge.NetworkSegment.state_reason:type_name -> forge.ControllerStateReason + 357, // 226: forge.NetworkSegment.state_sla:type_name -> forge.StateSla + 996, // 227: forge.NetworkSegmentCreationRequest.vpc_id:type_name -> common.VpcId + 1007, // 228: forge.NetworkSegmentCreationRequest.subdomain_id:type_name -> common.DomainId 256, // 229: forge.NetworkSegmentCreationRequest.prefixes:type_name -> forge.NetworkPrefix 12, // 230: forge.NetworkSegmentCreationRequest.segment_type:type_name -> forge.NetworkSegmentType - 1006, // 231: forge.NetworkSegmentCreationRequest.id:type_name -> common.NetworkSegmentId - 1006, // 232: forge.NetworkSegmentDeletionRequest.id:type_name -> common.NetworkSegmentId - 1006, // 233: forge.AttachNetworkSegmentToVpcRequest.network_segment_id:type_name -> common.NetworkSegmentId - 994, // 234: forge.AttachNetworkSegmentToVpcRequest.vpc_id:type_name -> common.VpcId - 1006, // 235: forge.NetworkSegmentStateHistoriesRequest.network_segment_ids:type_name -> common.NetworkSegmentId - 1006, // 236: forge.NetworkSegmentIdList.network_segments_ids:type_name -> common.NetworkSegmentId - 1006, // 237: forge.NetworkSegmentsByIdsRequest.network_segments_ids:type_name -> common.NetworkSegmentId - 1007, // 238: forge.NetworkPrefix.id:type_name -> common.NetworkPrefixId + 1008, // 231: forge.NetworkSegmentCreationRequest.id:type_name -> common.NetworkSegmentId + 1008, // 232: forge.NetworkSegmentDeletionRequest.id:type_name -> common.NetworkSegmentId + 1008, // 233: forge.AttachNetworkSegmentToVpcRequest.network_segment_id:type_name -> common.NetworkSegmentId + 996, // 234: forge.AttachNetworkSegmentToVpcRequest.vpc_id:type_name -> common.VpcId + 1008, // 235: forge.NetworkSegmentStateHistoriesRequest.network_segment_ids:type_name -> common.NetworkSegmentId + 1008, // 236: forge.NetworkSegmentIdList.network_segments_ids:type_name -> common.NetworkSegmentId + 1008, // 237: forge.NetworkSegmentsByIdsRequest.network_segments_ids:type_name -> common.NetworkSegmentId + 1009, // 238: forge.NetworkPrefix.id:type_name -> common.NetworkPrefixId 82, // 239: forge.InstancePowerRequest.operation:type_name -> forge.InstancePowerRequest.Operation - 1008, // 240: forge.InstancePowerRequest.instance_id:type_name -> common.InstanceId + 1010, // 240: forge.InstancePowerRequest.instance_id:type_name -> common.InstanceId 295, // 241: forge.InstanceList.instances:type_name -> forge.Instance 261, // 242: forge.Metadata.labels:type_name -> forge.Label 261, // 243: forge.InstanceSearchFilter.label:type_name -> forge.Label - 1008, // 244: forge.InstanceIdList.instance_ids:type_name -> common.InstanceId - 1008, // 245: forge.InstancesByIdsRequest.instance_ids:type_name -> common.InstanceId - 992, // 246: forge.InstanceAllocationRequest.machine_id:type_name -> common.MachineId + 1010, // 244: forge.InstanceIdList.instance_ids:type_name -> common.InstanceId + 1010, // 245: forge.InstancesByIdsRequest.instance_ids:type_name -> common.InstanceId + 994, // 246: forge.InstanceAllocationRequest.machine_id:type_name -> common.MachineId 275, // 247: forge.InstanceAllocationRequest.config:type_name -> forge.InstanceConfig - 1008, // 248: forge.InstanceAllocationRequest.instance_id:type_name -> common.InstanceId + 1010, // 248: forge.InstanceAllocationRequest.instance_id:type_name -> common.InstanceId 262, // 249: forge.InstanceAllocationRequest.metadata:type_name -> forge.Metadata 266, // 250: forge.BatchInstanceAllocationRequest.instance_requests:type_name -> forge.InstanceAllocationRequest 295, // 251: forge.BatchInstanceAllocationResponse.instances:type_name -> forge.Instance 14, // 252: forge.IpxeTemplateArtifact.cache_strategy:type_name -> forge.IpxeTemplateArtifactCacheStrategy - 1009, // 253: forge.IpxeTemplate.id:type_name -> common.IpxeTemplateId + 1011, // 253: forge.IpxeTemplate.id:type_name -> common.IpxeTemplateId 15, // 254: forge.IpxeTemplate.visibility:type_name -> forge.IpxeTemplateVisibility 274, // 255: forge.InstanceOperatingSystemConfig.ipxe:type_name -> forge.InlineIpxe - 1002, // 256: forge.InstanceOperatingSystemConfig.os_image_id:type_name -> common.UUID - 1010, // 257: forge.InstanceOperatingSystemConfig.operating_system_id:type_name -> common.OperatingSystemId + 1004, // 256: forge.InstanceOperatingSystemConfig.os_image_id:type_name -> common.UUID + 1012, // 257: forge.InstanceOperatingSystemConfig.operating_system_id:type_name -> common.OperatingSystemId 272, // 258: forge.InstanceConfig.tenant:type_name -> forge.TenantConfig 273, // 259: forge.InstanceConfig.os:type_name -> forge.InstanceOperatingSystemConfig 276, // 260: forge.InstanceConfig.network:type_name -> forge.InstanceNetworkConfig @@ -68640,19 +68809,19 @@ var file_nico_nico_proto_depIdxs = []int32{ 282, // 264: forge.InstanceConfig.spxconfig:type_name -> forge.InstanceSpxConfig 297, // 265: forge.InstanceNetworkConfig.interfaces:type_name -> forge.InstanceInterfaceConfig 277, // 266: forge.InstanceNetworkConfig.auto_config:type_name -> forge.InstanceNetworkAutoConfig - 994, // 267: forge.InstanceNetworkAutoConfig.vpc_id:type_name -> common.VpcId + 996, // 267: forge.InstanceNetworkAutoConfig.vpc_id:type_name -> common.VpcId 301, // 268: forge.InstanceInfinibandConfig.ib_interfaces:type_name -> forge.InstanceIBInterfaceConfig 279, // 269: forge.InstanceDpuExtensionServicesConfig.service_configs:type_name -> forge.InstanceDpuExtensionServiceConfig 306, // 270: forge.InstanceNVLinkConfig.gpu_configs:type_name -> forge.InstanceNVLinkGpuConfig 283, // 271: forge.InstanceSpxConfig.spx_attachments:type_name -> forge.InstanceSpxAttachment - 1011, // 272: forge.InstanceSpxAttachment.spx_partition_id:type_name -> common.SpxPartitionId + 1013, // 272: forge.InstanceSpxAttachment.spx_partition_id:type_name -> common.SpxPartitionId 16, // 273: forge.InstanceSpxAttachment.attachment_type:type_name -> forge.SpxAttachmentType - 1008, // 274: forge.InstanceOperatingSystemUpdateRequest.instance_id:type_name -> common.InstanceId + 1010, // 274: forge.InstanceOperatingSystemUpdateRequest.instance_id:type_name -> common.InstanceId 273, // 275: forge.InstanceOperatingSystemUpdateRequest.os:type_name -> forge.InstanceOperatingSystemConfig - 1008, // 276: forge.InstanceConfigUpdateRequest.instance_id:type_name -> common.InstanceId + 1010, // 276: forge.InstanceConfigUpdateRequest.instance_id:type_name -> common.InstanceId 275, // 277: forge.InstanceConfigUpdateRequest.config:type_name -> forge.InstanceConfig 262, // 278: forge.InstanceConfigUpdateRequest.metadata:type_name -> forge.Metadata - 356, // 279: forge.InstanceStatus.tenant:type_name -> forge.InstanceTenantStatus + 358, // 279: forge.InstanceStatus.tenant:type_name -> forge.InstanceTenantStatus 289, // 280: forge.InstanceStatus.network:type_name -> forge.InstanceNetworkStatus 290, // 281: forge.InstanceStatus.infiniband:type_name -> forge.InstanceInfinibandStatus 293, // 282: forge.InstanceStatus.dpu_extension_services:type_name -> forge.InstanceDpuExtensionServicesStatus @@ -68663,1835 +68832,1838 @@ var file_nico_nico_proto_depIdxs = []int32{ 288, // 287: forge.InstanceSpxStatus.attachment_statuses:type_name -> forge.InstanceSpxAttachmentStatus 24, // 288: forge.InstanceSpxStatus.configs_synced:type_name -> forge.SyncState 16, // 289: forge.InstanceSpxAttachmentStatus.attachment_type:type_name -> forge.SpxAttachmentType - 1011, // 290: forge.InstanceSpxAttachmentStatus.spx_partition_id:type_name -> common.SpxPartitionId + 1013, // 290: forge.InstanceSpxAttachmentStatus.spx_partition_id:type_name -> common.SpxPartitionId 303, // 291: forge.InstanceNetworkStatus.interfaces:type_name -> forge.InstanceInterfaceStatus 24, // 292: forge.InstanceNetworkStatus.configs_synced:type_name -> forge.SyncState 304, // 293: forge.InstanceInfinibandStatus.ib_interfaces:type_name -> forge.InstanceIBInterfaceStatus 24, // 294: forge.InstanceInfinibandStatus.configs_synced:type_name -> forge.SyncState - 992, // 295: forge.DpuExtensionServiceStatus.dpu_machine_id:type_name -> common.MachineId + 994, // 295: forge.DpuExtensionServiceStatus.dpu_machine_id:type_name -> common.MachineId 74, // 296: forge.DpuExtensionServiceStatus.status:type_name -> forge.DpuExtensionServiceDeploymentStatus - 453, // 297: forge.DpuExtensionServiceStatus.components:type_name -> forge.DpuExtensionServiceComponent + 455, // 297: forge.DpuExtensionServiceStatus.components:type_name -> forge.DpuExtensionServiceComponent 74, // 298: forge.InstanceDpuExtensionServiceStatus.deployment_status:type_name -> forge.DpuExtensionServiceDeploymentStatus 291, // 299: forge.InstanceDpuExtensionServiceStatus.dpu_statuses:type_name -> forge.DpuExtensionServiceStatus 292, // 300: forge.InstanceDpuExtensionServicesStatus.dpu_extension_services:type_name -> forge.InstanceDpuExtensionServiceStatus 24, // 301: forge.InstanceDpuExtensionServicesStatus.configs_synced:type_name -> forge.SyncState 305, // 302: forge.InstanceNVLinkStatus.gpu_statuses:type_name -> forge.InstanceNVLinkGpuStatus 24, // 303: forge.InstanceNVLinkStatus.configs_synced:type_name -> forge.SyncState - 1008, // 304: forge.Instance.id:type_name -> common.InstanceId - 992, // 305: forge.Instance.machine_id:type_name -> common.MachineId + 1010, // 304: forge.Instance.id:type_name -> common.InstanceId + 994, // 305: forge.Instance.machine_id:type_name -> common.MachineId 262, // 306: forge.Instance.metadata:type_name -> forge.Metadata 275, // 307: forge.Instance.config:type_name -> forge.InstanceConfig 286, // 308: forge.Instance.status:type_name -> forge.InstanceStatus 83, // 309: forge.InstanceUpdateStatus.module:type_name -> forge.InstanceUpdateStatus.Module - 993, // 310: forge.InstanceUpdateStatus.trigger_received_at:type_name -> google.protobuf.Timestamp - 993, // 311: forge.InstanceUpdateStatus.update_triggered_at:type_name -> google.protobuf.Timestamp + 995, // 310: forge.InstanceUpdateStatus.trigger_received_at:type_name -> google.protobuf.Timestamp + 995, // 311: forge.InstanceUpdateStatus.update_triggered_at:type_name -> google.protobuf.Timestamp 40, // 312: forge.InstanceInterfaceConfig.function_type:type_name -> forge.InterfaceFunctionType - 1006, // 313: forge.InstanceInterfaceConfig.network_segment_id:type_name -> common.NetworkSegmentId - 1006, // 314: forge.InstanceInterfaceConfig.segment_id:type_name -> common.NetworkSegmentId - 996, // 315: forge.InstanceInterfaceConfig.vpc_prefix_id:type_name -> common.VpcPrefixId + 1008, // 313: forge.InstanceInterfaceConfig.network_segment_id:type_name -> common.NetworkSegmentId + 1008, // 314: forge.InstanceInterfaceConfig.segment_id:type_name -> common.NetworkSegmentId + 998, // 315: forge.InstanceInterfaceConfig.vpc_prefix_id:type_name -> common.VpcPrefixId 298, // 316: forge.InstanceInterfaceConfig.vpc:type_name -> forge.InstanceInterfaceVpcSelection 299, // 317: forge.InstanceInterfaceConfig.ipv6_interface_config:type_name -> forge.InstanceInterfaceIpv6Config 300, // 318: forge.InstanceInterfaceConfig.routing_profile:type_name -> forge.InstanceInterfaceRoutingProfile - 994, // 319: forge.InstanceInterfaceVpcSelection.vpc_id:type_name -> common.VpcId + 996, // 319: forge.InstanceInterfaceVpcSelection.vpc_id:type_name -> common.VpcId 17, // 320: forge.InstanceInterfaceVpcSelection.family_mode:type_name -> forge.InstanceInterfaceIpFamilyMode - 996, // 321: forge.InstanceInterfaceIpv6Config.vpc_prefix_id:type_name -> common.VpcPrefixId - 874, // 322: forge.InstanceInterfaceRoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry + 998, // 321: forge.InstanceInterfaceIpv6Config.vpc_prefix_id:type_name -> common.VpcPrefixId + 876, // 322: forge.InstanceInterfaceRoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry 40, // 323: forge.InstanceIBInterfaceConfig.function_type:type_name -> forge.InterfaceFunctionType - 998, // 324: forge.InstanceIBInterfaceConfig.ib_partition_id:type_name -> common.IBPartitionId - 996, // 325: forge.InstanceInterfaceResolvedVpcPrefixes.ipv4_vpc_prefix_id:type_name -> common.VpcPrefixId - 996, // 326: forge.InstanceInterfaceResolvedVpcPrefixes.ipv6_vpc_prefix_id:type_name -> common.VpcPrefixId - 994, // 327: forge.InstanceInterfaceStatus.vpc_id:type_name -> common.VpcId + 1000, // 324: forge.InstanceIBInterfaceConfig.ib_partition_id:type_name -> common.IBPartitionId + 998, // 325: forge.InstanceInterfaceResolvedVpcPrefixes.ipv4_vpc_prefix_id:type_name -> common.VpcPrefixId + 998, // 326: forge.InstanceInterfaceResolvedVpcPrefixes.ipv6_vpc_prefix_id:type_name -> common.VpcPrefixId + 996, // 327: forge.InstanceInterfaceStatus.vpc_id:type_name -> common.VpcId 302, // 328: forge.InstanceInterfaceStatus.resolved_vpc_prefixes:type_name -> forge.InstanceInterfaceResolvedVpcPrefixes - 1012, // 329: forge.InstanceNVLinkGpuStatus.domain_id:type_name -> common.NVLinkDomainId - 995, // 330: forge.InstanceNVLinkGpuStatus.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 995, // 331: forge.InstanceNVLinkGpuConfig.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 1008, // 332: forge.InstancePhoneHomeLastContactRequest.instance_id:type_name -> common.InstanceId - 993, // 333: forge.InstancePhoneHomeLastContactResponse.timestamp:type_name -> google.protobuf.Timestamp + 1014, // 329: forge.InstanceNVLinkGpuStatus.domain_id:type_name -> common.NVLinkDomainId + 997, // 330: forge.InstanceNVLinkGpuStatus.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 997, // 331: forge.InstanceNVLinkGpuConfig.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 1010, // 332: forge.InstancePhoneHomeLastContactRequest.instance_id:type_name -> common.InstanceId + 995, // 333: forge.InstancePhoneHomeLastContactResponse.timestamp:type_name -> google.protobuf.Timestamp 18, // 334: forge.Issue.category:type_name -> forge.IssueCategory 310, // 335: forge.DeleteAttribution.initiated_by:type_name -> forge.DeleteInitiatedBy - 1008, // 336: forge.InstanceReleaseRequest.id:type_name -> common.InstanceId + 1010, // 336: forge.InstanceReleaseRequest.id:type_name -> common.InstanceId 309, // 337: forge.InstanceReleaseRequest.issue:type_name -> forge.Issue 311, // 338: forge.InstanceReleaseRequest.delete_attribution:type_name -> forge.DeleteAttribution - 992, // 339: forge.MachinesByIdsRequest.machine_ids:type_name -> common.MachineId - 1001, // 340: forge.MachineSearchConfig.rack_id:type_name -> common.RackId - 992, // 341: forge.MachineStateHistoriesRequest.machine_ids:type_name -> common.MachineId - 959, // 342: forge.MachineStateHistories.histories:type_name -> forge.MachineStateHistories.HistoriesEntry - 357, // 343: forge.MachineStateHistoryRecords.records:type_name -> forge.MachineEvent - 992, // 344: forge.MachineHealthHistoriesRequest.machine_ids:type_name -> common.MachineId - 993, // 345: forge.MachineHealthHistoriesRequest.start_time:type_name -> google.protobuf.Timestamp - 993, // 346: forge.MachineHealthHistoriesRequest.end_time:type_name -> google.protobuf.Timestamp - 960, // 347: forge.HealthHistories.histories:type_name -> forge.HealthHistories.HistoriesEntry + 994, // 339: forge.MachinesByIdsRequest.machine_ids:type_name -> common.MachineId + 1003, // 340: forge.MachineSearchConfig.rack_id:type_name -> common.RackId + 994, // 341: forge.MachineStateHistoriesRequest.machine_ids:type_name -> common.MachineId + 961, // 342: forge.MachineStateHistories.histories:type_name -> forge.MachineStateHistories.HistoriesEntry + 359, // 343: forge.MachineStateHistoryRecords.records:type_name -> forge.MachineEvent + 994, // 344: forge.MachineHealthHistoriesRequest.machine_ids:type_name -> common.MachineId + 995, // 345: forge.MachineHealthHistoriesRequest.start_time:type_name -> google.protobuf.Timestamp + 995, // 346: forge.MachineHealthHistoriesRequest.end_time:type_name -> google.protobuf.Timestamp + 962, // 347: forge.HealthHistories.histories:type_name -> forge.HealthHistories.HistoriesEntry 322, // 348: forge.HealthHistoryRecords.records:type_name -> forge.HealthHistoryRecord - 999, // 349: forge.HealthHistoryRecord.health:type_name -> health.HealthReport - 993, // 350: forge.HealthHistoryRecord.time:type_name -> google.protobuf.Timestamp - 474, // 351: forge.TenantList.tenants:type_name -> forge.Tenant - 358, // 352: forge.InterfaceList.interfaces:type_name -> forge.MachineInterface - 342, // 353: forge.MachineList.machines:type_name -> forge.Machine - 1013, // 354: forge.InterfaceDeleteQuery.id:type_name -> common.MachineInterfaceId - 1013, // 355: forge.InterfaceSearchQuery.id:type_name -> common.MachineInterfaceId - 1013, // 356: forge.AssignStaticAddressRequest.interface_id:type_name -> common.MachineInterfaceId - 1013, // 357: forge.AssignStaticAddressResponse.interface_id:type_name -> common.MachineInterfaceId + 1001, // 349: forge.HealthHistoryRecord.health:type_name -> health.HealthReport + 995, // 350: forge.HealthHistoryRecord.time:type_name -> google.protobuf.Timestamp + 476, // 351: forge.TenantList.tenants:type_name -> forge.Tenant + 360, // 352: forge.InterfaceList.interfaces:type_name -> forge.MachineInterface + 344, // 353: forge.MachineList.machines:type_name -> forge.Machine + 1015, // 354: forge.InterfaceDeleteQuery.id:type_name -> common.MachineInterfaceId + 1015, // 355: forge.InterfaceSearchQuery.id:type_name -> common.MachineInterfaceId + 1015, // 356: forge.AssignStaticAddressRequest.interface_id:type_name -> common.MachineInterfaceId + 1015, // 357: forge.AssignStaticAddressResponse.interface_id:type_name -> common.MachineInterfaceId 19, // 358: forge.AssignStaticAddressResponse.status:type_name -> forge.AssignStaticAddressStatus - 1013, // 359: forge.RemoveStaticAddressRequest.interface_id:type_name -> common.MachineInterfaceId - 1013, // 360: forge.RemoveStaticAddressResponse.interface_id:type_name -> common.MachineInterfaceId + 1015, // 359: forge.RemoveStaticAddressRequest.interface_id:type_name -> common.MachineInterfaceId + 1015, // 360: forge.RemoveStaticAddressResponse.interface_id:type_name -> common.MachineInterfaceId 20, // 361: forge.RemoveStaticAddressResponse.status:type_name -> forge.RemoveStaticAddressStatus - 1013, // 362: forge.FindInterfaceAddressesRequest.interface_id:type_name -> common.MachineInterfaceId - 1013, // 363: forge.FindInterfaceAddressesResponse.interface_id:type_name -> common.MachineInterfaceId + 1015, // 362: forge.FindInterfaceAddressesRequest.interface_id:type_name -> common.MachineInterfaceId + 1015, // 363: forge.FindInterfaceAddressesResponse.interface_id:type_name -> common.MachineInterfaceId 336, // 364: forge.FindInterfaceAddressesResponse.addresses:type_name -> forge.InterfaceAddress - 1013, // 365: forge.BmcInfo.machine_interface_id:type_name -> common.MachineInterfaceId - 993, // 366: forge.MachineConfig.maintenance_start_time:type_name -> google.protobuf.Timestamp - 343, // 367: forge.MachineConfig.dpf:type_name -> forge.DpfMachineState - 358, // 368: forge.MachineStatus.interfaces:type_name -> forge.MachineInterface - 1014, // 369: forge.MachineStatus.discovery_info:type_name -> machine_discovery.DiscoveryInfo - 993, // 370: forge.MachineStatus.last_reboot_time:type_name -> google.protobuf.Timestamp - 993, // 371: forge.MachineStatus.last_observation_time:type_name -> google.protobuf.Timestamp - 992, // 372: forge.MachineStatus.associated_host_machine_id:type_name -> common.MachineId - 992, // 373: forge.MachineStatus.associated_dpu_machine_ids:type_name -> common.MachineId - 993, // 374: forge.MachineStatus.last_reboot_requested_time:type_name -> google.protobuf.Timestamp - 999, // 375: forge.MachineStatus.health:type_name -> health.HealthReport - 352, // 376: forge.MachineStatus.health_sources:type_name -> forge.HealthSourceOrigin - 359, // 377: forge.MachineStatus.infiniband:type_name -> forge.InfinibandStatusObservation - 636, // 378: forge.MachineStatus.capabilities:type_name -> forge.MachineCapabilitiesSet - 709, // 379: forge.MachineStatus.hw_sku:type_name -> forge.SkuStatus - 390, // 380: forge.MachineStatus.quarantine:type_name -> forge.ManagedHostQuarantineState - 760, // 381: forge.MachineStatus.nvlink_info:type_name -> forge.MachineNVLinkInfo - 770, // 382: forge.MachineStatus.nvlink:type_name -> forge.MachineNVLinkStatusObservation - 762, // 383: forge.MachineStatus.spx:type_name -> forge.MachineSpxStatusObservation - 344, // 384: forge.MachineStatus.instance_network_restrictions:type_name -> forge.InstanceNetworkRestrictions - 93, // 385: forge.MachineStatus.lifecycle:type_name -> forge.LifecycleStatus - 992, // 386: forge.Machine.id:type_name -> common.MachineId - 353, // 387: forge.Machine.state_reason:type_name -> forge.ControllerStateReason - 355, // 388: forge.Machine.state_sla:type_name -> forge.StateSla - 357, // 389: forge.Machine.events:type_name -> forge.MachineEvent - 358, // 390: forge.Machine.interfaces:type_name -> forge.MachineInterface - 1014, // 391: forge.Machine.discovery_info:type_name -> machine_discovery.DiscoveryInfo - 21, // 392: forge.Machine.machine_type:type_name -> forge.MachineType - 338, // 393: forge.Machine.bmc_info:type_name -> forge.BmcInfo - 993, // 394: forge.Machine.last_reboot_time:type_name -> google.protobuf.Timestamp - 993, // 395: forge.Machine.last_observation_time:type_name -> google.protobuf.Timestamp - 993, // 396: forge.Machine.maintenance_start_time:type_name -> google.protobuf.Timestamp - 992, // 397: forge.Machine.associated_host_machine_id:type_name -> common.MachineId - 350, // 398: forge.Machine.inventory:type_name -> forge.MachineComponentInventory - 993, // 399: forge.Machine.last_reboot_requested_time:type_name -> google.protobuf.Timestamp - 992, // 400: forge.Machine.associated_dpu_machine_ids:type_name -> common.MachineId - 999, // 401: forge.Machine.health:type_name -> health.HealthReport - 352, // 402: forge.Machine.health_sources:type_name -> forge.HealthSourceOrigin - 359, // 403: forge.Machine.ib_status:type_name -> forge.InfinibandStatusObservation - 262, // 404: forge.Machine.metadata:type_name -> forge.Metadata - 344, // 405: forge.Machine.instance_network_restrictions:type_name -> forge.InstanceNetworkRestrictions - 636, // 406: forge.Machine.capabilities:type_name -> forge.MachineCapabilitiesSet - 709, // 407: forge.Machine.hw_sku_status:type_name -> forge.SkuStatus - 390, // 408: forge.Machine.quarantine_state:type_name -> forge.ManagedHostQuarantineState - 760, // 409: forge.Machine.nvlink_info:type_name -> forge.MachineNVLinkInfo - 770, // 410: forge.Machine.nvlink_status_observation:type_name -> forge.MachineNVLinkStatusObservation - 1001, // 411: forge.Machine.rack_id:type_name -> common.RackId - 220, // 412: forge.Machine.placement_in_rack:type_name -> forge.PlacementInRack - 762, // 413: forge.Machine.spx_status_observation:type_name -> forge.MachineSpxStatusObservation - 343, // 414: forge.Machine.dpf:type_name -> forge.DpfMachineState - 340, // 415: forge.Machine.config:type_name -> forge.MachineConfig - 341, // 416: forge.Machine.status:type_name -> forge.MachineStatus - 22, // 417: forge.InstanceNetworkRestrictions.network_segment_membership_type:type_name -> forge.InstanceNetworkSegmentMembershipType - 1006, // 418: forge.InstanceNetworkRestrictions.network_segment_ids:type_name -> common.NetworkSegmentId - 992, // 419: forge.MachineMetadataUpdateRequest.machine_id:type_name -> common.MachineId - 262, // 420: forge.MachineMetadataUpdateRequest.metadata:type_name -> forge.Metadata - 1001, // 421: forge.RackMetadataUpdateRequest.rack_id:type_name -> common.RackId - 262, // 422: forge.RackMetadataUpdateRequest.metadata:type_name -> forge.Metadata - 1003, // 423: forge.SwitchMetadataUpdateRequest.switch_id:type_name -> common.SwitchId - 262, // 424: forge.SwitchMetadataUpdateRequest.metadata:type_name -> forge.Metadata - 1000, // 425: forge.PowerShelfMetadataUpdateRequest.power_shelf_id:type_name -> common.PowerShelfId - 262, // 426: forge.PowerShelfMetadataUpdateRequest.metadata:type_name -> forge.Metadata - 992, // 427: forge.DpuAgentInventoryReport.machine_id:type_name -> common.MachineId - 350, // 428: forge.DpuAgentInventoryReport.inventory:type_name -> forge.MachineComponentInventory - 351, // 429: forge.MachineComponentInventory.components:type_name -> forge.MachineInventorySoftwareComponent - 41, // 430: forge.HealthSourceOrigin.mode:type_name -> forge.HealthReportApplyMode - 23, // 431: forge.ControllerStateReason.outcome:type_name -> forge.ControllerStateOutcome - 354, // 432: forge.ControllerStateReason.source_ref:type_name -> forge.ControllerStateSourceReference - 1015, // 433: forge.StateSla.sla:type_name -> google.protobuf.Duration - 8, // 434: forge.InstanceTenantStatus.state:type_name -> forge.TenantState - 993, // 435: forge.MachineEvent.time:type_name -> google.protobuf.Timestamp - 1013, // 436: forge.MachineInterface.id:type_name -> common.MachineInterfaceId - 992, // 437: forge.MachineInterface.attached_dpu_machine_id:type_name -> common.MachineId - 992, // 438: forge.MachineInterface.machine_id:type_name -> common.MachineId - 1006, // 439: forge.MachineInterface.segment_id:type_name -> common.NetworkSegmentId - 1005, // 440: forge.MachineInterface.domain_id:type_name -> common.DomainId - 993, // 441: forge.MachineInterface.created:type_name -> google.protobuf.Timestamp - 993, // 442: forge.MachineInterface.last_dhcp:type_name -> google.protobuf.Timestamp - 1000, // 443: forge.MachineInterface.power_shelf_id:type_name -> common.PowerShelfId - 1003, // 444: forge.MachineInterface.switch_id:type_name -> common.SwitchId - 26, // 445: forge.MachineInterface.association_type:type_name -> forge.InterfaceAssociationType - 27, // 446: forge.MachineInterface.interface_type:type_name -> forge.InterfaceType - 360, // 447: forge.InfinibandStatusObservation.ib_interfaces:type_name -> forge.MachineIbInterface - 993, // 448: forge.InfinibandStatusObservation.observed_at:type_name -> google.protobuf.Timestamp - 1016, // 449: forge.MachineIbInterface.associated_pkeys:type_name -> common.StringList - 1016, // 450: forge.MachineIbInterface.associated_partition_ids:type_name -> common.StringList - 28, // 451: forge.DhcpDiscovery.address_family:type_name -> forge.AddressFamily - 29, // 452: forge.DhcpDiscovery.message_kind:type_name -> forge.MessageKind - 30, // 453: forge.ExpireDhcpLeaseResponse.status:type_name -> forge.ExpireDhcpLeaseStatus - 992, // 454: forge.DhcpRecord.machine_id:type_name -> common.MachineId - 1013, // 455: forge.DhcpRecord.machine_interface_id:type_name -> common.MachineInterfaceId - 1006, // 456: forge.DhcpRecord.segment_id:type_name -> common.NetworkSegmentId - 1005, // 457: forge.DhcpRecord.subdomain_id:type_name -> common.DomainId - 993, // 458: forge.DhcpRecord.last_invalidation_time:type_name -> google.protobuf.Timestamp - 246, // 459: forge.NetworkSegmentList.network_segments:type_name -> forge.NetworkSegment - 31, // 460: forge.SSHKeyValidationResponse.role:type_name -> forge.UserRoles - 1003, // 461: forge.GetSwitchNvosCredentialsRequest.switch_id:type_name -> common.SwitchId - 371, // 462: forge.GetBmcCredentialsResponse.credentials:type_name -> forge.BmcCredentials - 839, // 463: forge.BmcCredentials.username_password:type_name -> forge.UsernamePassword - 840, // 464: forge.BmcCredentials.session_token:type_name -> forge.SessionToken - 379, // 465: forge.SshRequest.endpoint_request:type_name -> forge.BmcEndpointRequest - 381, // 466: forge.CopyBfbToDpuRshimRequest.ssh_request:type_name -> forge.SshRequest - 992, // 467: forge.UpdateMachineHardwareInfoRequest.machine_id:type_name -> common.MachineId - 384, // 468: forge.UpdateMachineHardwareInfoRequest.info:type_name -> forge.MachineHardwareInfo - 32, // 469: forge.UpdateMachineHardwareInfoRequest.update_type:type_name -> forge.MachineHardwareInfoUpdateType - 1017, // 470: forge.MachineHardwareInfo.gpus:type_name -> machine_discovery.Gpu - 992, // 471: forge.ManagedHostNetworkConfigRequest.dpu_machine_id:type_name -> common.MachineId - 397, // 472: forge.ManagedHostNetworkConfigResponse.managed_host_config:type_name -> forge.ManagedHostNetworkConfig - 398, // 473: forge.ManagedHostNetworkConfigResponse.admin_interface:type_name -> forge.FlatInterfaceConfig - 398, // 474: forge.ManagedHostNetworkConfigResponse.tenant_interfaces:type_name -> forge.FlatInterfaceConfig - 1008, // 475: forge.ManagedHostNetworkConfigResponse.instance_id:type_name -> common.InstanceId - 6, // 476: forge.ManagedHostNetworkConfigResponse.network_virtualization_type:type_name -> forge.VpcVirtualizationType - 34, // 477: forge.ManagedHostNetworkConfigResponse.vpc_isolation_behavior:type_name -> forge.VpcIsolationBehaviorType - 295, // 478: forge.ManagedHostNetworkConfigResponse.instance:type_name -> forge.Instance - 1018, // 479: forge.ManagedHostNetworkConfigResponse.common_internal_route_target:type_name -> common.RouteTarget - 1018, // 480: forge.ManagedHostNetworkConfigResponse.additional_route_target_imports:type_name -> common.RouteTarget - 687, // 481: forge.ManagedHostNetworkConfigResponse.network_security_policy_overrides:type_name -> forge.ResolvedNetworkSecurityGroupRule - 389, // 482: forge.ManagedHostNetworkConfigResponse.dpu_extension_services:type_name -> forge.ManagedHostDpuExtensionServiceConfig - 387, // 483: forge.ManagedHostNetworkConfigResponse.traffic_intercept_config:type_name -> forge.TrafficInterceptConfig - 875, // 484: forge.ManagedHostNetworkConfigResponse.routing_profile:type_name -> forge.RoutingProfile - 764, // 485: forge.ManagedHostNetworkConfigResponse.astra_config:type_name -> forge.AstraConfig - 388, // 486: forge.TrafficInterceptConfig.bridging:type_name -> forge.TrafficInterceptBridging - 961, // 487: forge.TrafficInterceptBridging.host_representor_intercept_bridging:type_name -> forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry - 73, // 488: forge.ManagedHostDpuExtensionServiceConfig.service_type:type_name -> forge.DpuExtensionServiceType - 841, // 489: forge.ManagedHostDpuExtensionServiceConfig.credential:type_name -> forge.DpuExtensionServiceCredential - 860, // 490: forge.ManagedHostDpuExtensionServiceConfig.observability:type_name -> forge.DpuExtensionServiceObservability - 33, // 491: forge.ManagedHostQuarantineState.mode:type_name -> forge.ManagedHostQuarantineMode - 992, // 492: forge.GetManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId - 390, // 493: forge.GetManagedHostQuarantineStateResponse.quarantine_state:type_name -> forge.ManagedHostQuarantineState - 992, // 494: forge.SetManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId - 390, // 495: forge.SetManagedHostQuarantineStateRequest.quarantine_state:type_name -> forge.ManagedHostQuarantineState - 390, // 496: forge.SetManagedHostQuarantineStateResponse.prior_quarantine_state:type_name -> forge.ManagedHostQuarantineState - 992, // 497: forge.ClearManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId - 390, // 498: forge.ClearManagedHostQuarantineStateResponse.prior_quarantine_state:type_name -> forge.ManagedHostQuarantineState - 390, // 499: forge.ManagedHostNetworkConfig.quarantine_state:type_name -> forge.ManagedHostQuarantineState - 40, // 500: forge.FlatInterfaceConfig.function_type:type_name -> forge.InterfaceFunctionType - 400, // 501: forge.FlatInterfaceConfig.ipv6_interface_config:type_name -> forge.FlatInterfaceIpv6Config - 875, // 502: forge.FlatInterfaceConfig.vpc_routing_profile:type_name -> forge.RoutingProfile - 399, // 503: forge.FlatInterfaceConfig.interface_routing_profile:type_name -> forge.FlatInterfaceRoutingProfile - 401, // 504: forge.FlatInterfaceConfig.network_security_group:type_name -> forge.FlatInterfaceNetworkSecurityGroupConfig - 1002, // 505: forge.FlatInterfaceConfig.internal_uuid:type_name -> common.UUID - 874, // 506: forge.FlatInterfaceRoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry - 58, // 507: forge.FlatInterfaceNetworkSecurityGroupConfig.source:type_name -> forge.NetworkSecurityGroupSource - 687, // 508: forge.FlatInterfaceNetworkSecurityGroupConfig.rules:type_name -> forge.ResolvedNetworkSecurityGroupRule - 450, // 509: forge.ManagedHostNetworkStatusResponse.all:type_name -> forge.DpuNetworkStatus - 993, // 510: forge.DpuAgentUpgradeCheckRequest.binary_mtime:type_name -> google.protobuf.Timestamp - 35, // 511: forge.DpuAgentUpgradePolicyRequest.new_policy:type_name -> forge.AgentUpgradePolicy - 35, // 512: forge.DpuAgentUpgradePolicyResponse.active_policy:type_name -> forge.AgentUpgradePolicy - 379, // 513: forge.LockdownRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 992, // 514: forge.LockdownRequest.machine_id:type_name -> common.MachineId - 36, // 515: forge.LockdownRequest.action:type_name -> forge.LockdownAction - 379, // 516: forge.LockdownStatusRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 992, // 517: forge.LockdownStatusRequest.machine_id:type_name -> common.MachineId - 379, // 518: forge.MachineSetupStatusRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 379, // 519: forge.MachineSetupRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 379, // 520: forge.SetDpuFirstBootOrderRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 379, // 521: forge.AdminRebootRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 379, // 522: forge.AdminBmcResetRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 379, // 523: forge.EnableInfiniteBootRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 379, // 524: forge.IsInfiniteBootEnabledRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 992, // 525: forge.BMCMetaDataGetRequest.machine_id:type_name -> common.MachineId - 31, // 526: forge.BMCMetaDataGetRequest.role:type_name -> forge.UserRoles - 37, // 527: forge.BMCMetaDataGetRequest.request_type:type_name -> forge.BMCRequestType - 379, // 528: forge.BMCMetaDataGetRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 992, // 529: forge.MachineCredentialsUpdateRequest.machine_id:type_name -> common.MachineId - 962, // 530: forge.MachineCredentialsUpdateRequest.credentials:type_name -> forge.MachineCredentialsUpdateRequest.Credentials - 992, // 531: forge.ForgeAgentControlRequest.machine_id:type_name -> common.MachineId - 85, // 532: forge.ForgeAgentControlResponse.legacy_action:type_name -> forge.ForgeAgentControlResponse.LegacyAction - 963, // 533: forge.ForgeAgentControlResponse.data:type_name -> forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo - 964, // 534: forge.ForgeAgentControlResponse.noop:type_name -> forge.ForgeAgentControlResponse.Noop - 965, // 535: forge.ForgeAgentControlResponse.reset:type_name -> forge.ForgeAgentControlResponse.Reset - 966, // 536: forge.ForgeAgentControlResponse.discovery:type_name -> forge.ForgeAgentControlResponse.Discovery - 967, // 537: forge.ForgeAgentControlResponse.rebuild:type_name -> forge.ForgeAgentControlResponse.Rebuild - 968, // 538: forge.ForgeAgentControlResponse.retry:type_name -> forge.ForgeAgentControlResponse.Retry - 969, // 539: forge.ForgeAgentControlResponse.measure:type_name -> forge.ForgeAgentControlResponse.Measure - 970, // 540: forge.ForgeAgentControlResponse.log_error:type_name -> forge.ForgeAgentControlResponse.LogError - 971, // 541: forge.ForgeAgentControlResponse.machine_validation:type_name -> forge.ForgeAgentControlResponse.MachineValidation - 973, // 542: forge.ForgeAgentControlResponse.mlx_action:type_name -> forge.ForgeAgentControlResponse.MlxAction - 980, // 543: forge.ForgeAgentControlResponse.firmware_upgrade:type_name -> forge.ForgeAgentControlResponse.FirmwareUpgrade - 1013, // 544: forge.MachineDiscoveryInfo.machine_interface_id:type_name -> common.MachineInterfaceId - 1014, // 545: forge.MachineDiscoveryInfo.info:type_name -> machine_discovery.DiscoveryInfo - 38, // 546: forge.MachineDiscoveryInfo.discovery_reporter:type_name -> forge.MachineDiscoveryReporter - 992, // 547: forge.MachineDiscoveryCompletedRequest.machine_id:type_name -> common.MachineId - 992, // 548: forge.MachineCleanupInfo.machine_id:type_name -> common.MachineId - 982, // 549: forge.MachineCleanupInfo.nvme:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 982, // 550: forge.MachineCleanupInfo.ram:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 982, // 551: forge.MachineCleanupInfo.mem_overwrite:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 982, // 552: forge.MachineCleanupInfo.ib:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 982, // 553: forge.MachineCleanupInfo.hdd:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 86, // 554: forge.MachineCleanupInfo.result:type_name -> forge.MachineCleanupInfo.CleanupResult - 436, // 555: forge.MachineCertificateResult.machine_certificate:type_name -> forge.MachineCertificate - 992, // 556: forge.MachineDiscoveryResult.machine_id:type_name -> common.MachineId - 436, // 557: forge.MachineDiscoveryResult.machine_certificate:type_name -> forge.MachineCertificate - 129, // 558: forge.MachineDiscoveryResult.attest_key_challenge:type_name -> forge.AttestKeyBindChallenge - 1013, // 559: forge.MachineDiscoveryResult.machine_interface_id:type_name -> common.MachineInterfaceId - 992, // 560: forge.ForgeScoutErrorReport.machine_id:type_name -> common.MachineId - 1013, // 561: forge.ForgeScoutErrorReport.machine_interface_id:type_name -> common.MachineInterfaceId - 25, // 562: forge.PxeInstructionRequest.arch:type_name -> forge.MachineArchitecture - 1013, // 563: forge.PxeInstructionRequest.interface_id:type_name -> common.MachineInterfaceId - 358, // 564: forge.CloudInitDiscoveryInstructions.machine_interface:type_name -> forge.MachineInterface - 881, // 565: forge.CloudInitDiscoveryInstructions.domain:type_name -> forge.PxeDomain - 39, // 566: forge.CloudInitDiscoveryInstructions.bootstrap_ca_source:type_name -> forge.BootstrapCaSource - 446, // 567: forge.CloudInitInstructions.discovery_instructions:type_name -> forge.CloudInitDiscoveryInstructions - 447, // 568: forge.CloudInitInstructions.metadata:type_name -> forge.CloudInitMetaData - 992, // 569: forge.DpuNetworkStatus.dpu_machine_id:type_name -> common.MachineId - 993, // 570: forge.DpuNetworkStatus.observed_at:type_name -> google.protobuf.Timestamp - 471, // 571: forge.DpuNetworkStatus.interfaces:type_name -> forge.InstanceInterfaceStatusObservation - 1008, // 572: forge.DpuNetworkStatus.instance_id:type_name -> common.InstanceId - 999, // 573: forge.DpuNetworkStatus.dpu_health:type_name -> health.HealthReport - 472, // 574: forge.DpuNetworkStatus.fabric_interfaces:type_name -> forge.FabricInterfaceData - 451, // 575: forge.DpuNetworkStatus.last_dhcp_requests:type_name -> forge.LastDhcpRequest - 452, // 576: forge.DpuNetworkStatus.dpu_extension_services:type_name -> forge.DpuExtensionServiceStatusObservation - 766, // 577: forge.DpuNetworkStatus.astra_config_status:type_name -> forge.AstraConfigStatus - 1013, // 578: forge.LastDhcpRequest.host_interface_id:type_name -> common.MachineInterfaceId - 73, // 579: forge.DpuExtensionServiceStatusObservation.service_type:type_name -> forge.DpuExtensionServiceType - 74, // 580: forge.DpuExtensionServiceStatusObservation.state:type_name -> forge.DpuExtensionServiceDeploymentStatus - 453, // 581: forge.DpuExtensionServiceStatusObservation.components:type_name -> forge.DpuExtensionServiceComponent - 999, // 582: forge.OptionalHealthReport.report:type_name -> health.HealthReport - 999, // 583: forge.HealthReportEntry.report:type_name -> health.HealthReport - 41, // 584: forge.HealthReportEntry.mode:type_name -> forge.HealthReportApplyMode - 992, // 585: forge.InsertMachineHealthReportRequest.machine_id:type_name -> common.MachineId - 455, // 586: forge.InsertMachineHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 1001, // 587: forge.InsertRackHealthReportRequest.rack_id:type_name -> common.RackId - 455, // 588: forge.InsertRackHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 1001, // 589: forge.RemoveRackHealthReportRequest.rack_id:type_name -> common.RackId - 1001, // 590: forge.ListRackHealthReportsRequest.rack_id:type_name -> common.RackId - 1003, // 591: forge.InsertSwitchHealthReportRequest.switch_id:type_name -> common.SwitchId - 455, // 592: forge.InsertSwitchHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 1003, // 593: forge.RemoveSwitchHealthReportRequest.switch_id:type_name -> common.SwitchId - 1003, // 594: forge.ListSwitchHealthReportsRequest.switch_id:type_name -> common.SwitchId - 1000, // 595: forge.InsertPowerShelfHealthReportRequest.power_shelf_id:type_name -> common.PowerShelfId - 455, // 596: forge.InsertPowerShelfHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 1000, // 597: forge.RemovePowerShelfHealthReportRequest.power_shelf_id:type_name -> common.PowerShelfId - 1000, // 598: forge.ListPowerShelfHealthReportsRequest.power_shelf_id:type_name -> common.PowerShelfId - 455, // 599: forge.ListHealthReportResponse.health_report_entries:type_name -> forge.HealthReportEntry - 992, // 600: forge.RemoveMachineHealthReportRequest.machine_id:type_name -> common.MachineId - 1012, // 601: forge.ListNVLinkDomainHealthReportsRequest.domain_id:type_name -> common.NVLinkDomainId - 1012, // 602: forge.InsertNVLinkDomainHealthReportRequest.domain_id:type_name -> common.NVLinkDomainId - 455, // 603: forge.InsertNVLinkDomainHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 1012, // 604: forge.RemoveNVLinkDomainHealthReportRequest.domain_id:type_name -> common.NVLinkDomainId - 40, // 605: forge.InstanceInterfaceStatusObservation.function_type:type_name -> forge.InterfaceFunctionType - 681, // 606: forge.InstanceInterfaceStatusObservation.network_security_group:type_name -> forge.NetworkSecurityGroupStatus - 1002, // 607: forge.InstanceInterfaceStatusObservation.internal_uuid:type_name -> common.UUID - 473, // 608: forge.FabricInterfaceData.link_data:type_name -> forge.LinkData - 262, // 609: forge.Tenant.metadata:type_name -> forge.Metadata - 262, // 610: forge.CreateTenantRequest.metadata:type_name -> forge.Metadata - 474, // 611: forge.CreateTenantResponse.tenant:type_name -> forge.Tenant - 262, // 612: forge.UpdateTenantRequest.metadata:type_name -> forge.Metadata - 474, // 613: forge.UpdateTenantResponse.tenant:type_name -> forge.Tenant - 474, // 614: forge.FindTenantResponse.tenant:type_name -> forge.Tenant - 482, // 615: forge.TenantKeysetContent.public_keys:type_name -> forge.TenantPublicKey - 481, // 616: forge.TenantKeyset.keyset_identifier:type_name -> forge.TenantKeysetIdentifier - 483, // 617: forge.TenantKeyset.keyset_content:type_name -> forge.TenantKeysetContent - 481, // 618: forge.CreateTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier - 483, // 619: forge.CreateTenantKeysetRequest.keyset_content:type_name -> forge.TenantKeysetContent - 484, // 620: forge.CreateTenantKeysetResponse.keyset:type_name -> forge.TenantKeyset - 484, // 621: forge.TenantKeySetList.keyset:type_name -> forge.TenantKeyset - 481, // 622: forge.UpdateTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier - 483, // 623: forge.UpdateTenantKeysetRequest.keyset_content:type_name -> forge.TenantKeysetContent - 481, // 624: forge.DeleteTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier - 481, // 625: forge.TenantKeysetIdList.keyset_ids:type_name -> forge.TenantKeysetIdentifier - 481, // 626: forge.TenantKeysetsByIdsRequest.keyset_ids:type_name -> forge.TenantKeysetIdentifier - 499, // 627: forge.ResourcePools.pools:type_name -> forge.ResourcePool - 43, // 628: forge.MaintenanceRequest.operation:type_name -> forge.MaintenanceOperation - 992, // 629: forge.MaintenanceRequest.host_id:type_name -> common.MachineId - 44, // 630: forge.SetDynamicConfigRequest.setting:type_name -> forge.ConfigSetting - 527, // 631: forge.FindIpAddressResponse.matches:type_name -> forge.IpAddressMatch - 1002, // 632: forge.IdentifyUuidRequest.uuid:type_name -> common.UUID - 1002, // 633: forge.IdentifyUuidResponse.uuid:type_name -> common.UUID - 45, // 634: forge.IdentifyUuidResponse.object_type:type_name -> forge.UuidType - 46, // 635: forge.IdentifyMacResponse.object_type:type_name -> forge.MacOwner - 992, // 636: forge.IdentifySerialResponse.machine_id:type_name -> common.MachineId - 992, // 637: forge.DpuReprovisioningRequest.dpu_id:type_name -> common.MachineId - 87, // 638: forge.DpuReprovisioningRequest.mode:type_name -> forge.DpuReprovisioningRequest.Mode - 47, // 639: forge.DpuReprovisioningRequest.initiator:type_name -> forge.UpdateInitiator - 992, // 640: forge.DpuReprovisioningRequest.machine_id:type_name -> common.MachineId - 983, // 641: forge.DpuReprovisioningListResponse.dpus:type_name -> forge.DpuReprovisioningListResponse.DpuReprovisioningListItem - 992, // 642: forge.HostReprovisioningRequest.machine_id:type_name -> common.MachineId - 88, // 643: forge.HostReprovisioningRequest.mode:type_name -> forge.HostReprovisioningRequest.Mode - 47, // 644: forge.HostReprovisioningRequest.initiator:type_name -> forge.UpdateInitiator - 984, // 645: forge.HostReprovisioningListResponse.hosts:type_name -> forge.HostReprovisioningListResponse.HostReprovisioningListItem - 521, // 646: forge.DpuInfoStatusObservation.os_operational_state:type_name -> forge.DpuOsOperationalState - 522, // 647: forge.DpuInfoStatusObservation.representors:type_name -> forge.DpuRepresentorStatus - 993, // 648: forge.DpuInfoStatusObservation.last_heartbeat:type_name -> google.protobuf.Timestamp - 523, // 649: forge.DpuInfo.observed_status:type_name -> forge.DpuInfoStatusObservation - 524, // 650: forge.GetDpuInfoListResponse.dpu_list:type_name -> forge.DpuInfo - 48, // 651: forge.IpAddressMatch.ip_type:type_name -> forge.IpType - 1013, // 652: forge.MachineBootOverride.machine_interface_id:type_name -> common.MachineInterfaceId - 992, // 653: forge.ConnectedDevice.id:type_name -> common.MachineId - 529, // 654: forge.ConnectedDeviceList.connected_devices:type_name -> forge.ConnectedDevice - 535, // 655: forge.MachineIdBmcIpPairs.pairs:type_name -> forge.MachineIdBmcIp - 992, // 656: forge.MachineIdBmcIp.machine_id:type_name -> common.MachineId - 529, // 657: forge.NetworkDevice.devices:type_name -> forge.ConnectedDevice - 536, // 658: forge.NetworkTopologyData.network_devices:type_name -> forge.NetworkDevice - 49, // 659: forge.RouteServers.source_type:type_name -> forge.RouteServerSourceType - 542, // 660: forge.RouteServerEntries.route_servers:type_name -> forge.RouteServer - 49, // 661: forge.RouteServer.source_type:type_name -> forge.RouteServerSourceType - 992, // 662: forge.SetHostUefiPasswordRequest.host_id:type_name -> common.MachineId - 992, // 663: forge.ClearHostUefiPasswordRequest.host_id:type_name -> common.MachineId - 1002, // 664: forge.OsImageAttributes.id:type_name -> common.UUID - 547, // 665: forge.OsImage.attributes:type_name -> forge.OsImageAttributes - 50, // 666: forge.OsImage.status:type_name -> forge.OsImageStatus - 548, // 667: forge.ListOsImageResponse.images:type_name -> forge.OsImage - 1002, // 668: forge.DeleteOsImageRequest.id:type_name -> common.UUID - 1009, // 669: forge.GetIpxeTemplateRequest.id:type_name -> common.IpxeTemplateId - 271, // 670: forge.IpxeTemplateList.templates:type_name -> forge.IpxeTemplate - 12, // 671: forge.ExpectedHostNic.network_segment_type:type_name -> forge.NetworkSegmentType - 262, // 672: forge.ExpectedMachine.metadata:type_name -> forge.Metadata - 1002, // 673: forge.ExpectedMachine.id:type_name -> common.UUID - 556, // 674: forge.ExpectedMachine.host_nics:type_name -> forge.ExpectedHostNic - 1001, // 675: forge.ExpectedMachine.rack_id:type_name -> common.RackId - 51, // 676: forge.ExpectedMachine.dpu_mode:type_name -> forge.DpuMode - 557, // 677: forge.ExpectedMachine.host_lifecycle_profile:type_name -> forge.HostLifecycleProfile - 52, // 678: forge.ExpectedMachine.bmc_ip_allocation:type_name -> forge.BmcIpAllocationType - 1002, // 679: forge.ExpectedMachineRequest.id:type_name -> common.UUID - 558, // 680: forge.ExpectedMachineList.expected_machines:type_name -> forge.ExpectedMachine - 562, // 681: forge.LinkedExpectedMachineList.expected_machines:type_name -> forge.LinkedExpectedMachine - 992, // 682: forge.LinkedExpectedMachine.machine_id:type_name -> common.MachineId - 1002, // 683: forge.LinkedExpectedMachine.expected_machine_id:type_name -> common.UUID - 564, // 684: forge.UnexpectedMachineList.unexpected_machines:type_name -> forge.UnexpectedMachine - 992, // 685: forge.UnexpectedMachine.machine_id:type_name -> common.MachineId - 560, // 686: forge.BatchExpectedMachineOperationRequest.expected_machines:type_name -> forge.ExpectedMachineList - 1002, // 687: forge.ExpectedMachineOperationResult.id:type_name -> common.UUID - 558, // 688: forge.ExpectedMachineOperationResult.expected_machine:type_name -> forge.ExpectedMachine - 566, // 689: forge.BatchExpectedMachineOperationResponse.results:type_name -> forge.ExpectedMachineOperationResult - 992, // 690: forge.MachineRebootCompletedRequest.machine_id:type_name -> common.MachineId - 992, // 691: forge.ScoutFirmwareUpgradeStatusRequest.machine_id:type_name -> common.MachineId - 992, // 692: forge.MachineValidationCompletedRequest.machine_id:type_name -> common.MachineId - 1019, // 693: forge.MachineValidationCompletedRequest.validation_id:type_name -> common.MachineValidationId - 993, // 694: forge.MachineValidationResult.start_time:type_name -> google.protobuf.Timestamp - 993, // 695: forge.MachineValidationResult.end_time:type_name -> google.protobuf.Timestamp - 1019, // 696: forge.MachineValidationResult.validation_id:type_name -> common.MachineValidationId - 573, // 697: forge.MachineValidationResultPostRequest.result:type_name -> forge.MachineValidationResult - 573, // 698: forge.MachineValidationResultList.results:type_name -> forge.MachineValidationResult - 992, // 699: forge.MachineValidationGetRequest.machine_id:type_name -> common.MachineId - 1019, // 700: forge.MachineValidationGetRequest.validation_id:type_name -> common.MachineValidationId - 53, // 701: forge.MachineValidationStatus.started:type_name -> forge.MachineValidationStarted - 54, // 702: forge.MachineValidationStatus.in_progress:type_name -> forge.MachineValidationInProgress - 55, // 703: forge.MachineValidationStatus.completed:type_name -> forge.MachineValidationCompleted - 1019, // 704: forge.MachineValidationRun.validation_id:type_name -> common.MachineValidationId - 992, // 705: forge.MachineValidationRun.machine_id:type_name -> common.MachineId - 993, // 706: forge.MachineValidationRun.start_time:type_name -> google.protobuf.Timestamp - 993, // 707: forge.MachineValidationRun.end_time:type_name -> google.protobuf.Timestamp - 577, // 708: forge.MachineValidationRun.status:type_name -> forge.MachineValidationStatus - 1015, // 709: forge.MachineValidationRun.duration_to_complete:type_name -> google.protobuf.Duration - 993, // 710: forge.MachineValidationRun.last_heartbeat_at:type_name -> google.protobuf.Timestamp - 992, // 711: forge.MachineSetAutoUpdateRequest.machine_id:type_name -> common.MachineId - 89, // 712: forge.MachineSetAutoUpdateRequest.action:type_name -> forge.MachineSetAutoUpdateRequest.SetAutoupdateAction - 993, // 713: forge.MachineValidationExternalConfig.timestamp:type_name -> google.protobuf.Timestamp - 582, // 714: forge.GetMachineValidationExternalConfigResponse.config:type_name -> forge.MachineValidationExternalConfig - 582, // 715: forge.GetMachineValidationExternalConfigsResponse.configs:type_name -> forge.MachineValidationExternalConfig - 992, // 716: forge.MachineValidationOnDemandRequest.machine_id:type_name -> common.MachineId - 90, // 717: forge.MachineValidationOnDemandRequest.action:type_name -> forge.MachineValidationOnDemandRequest.Action - 1019, // 718: forge.MachineValidationOnDemandResponse.validation_id:type_name -> common.MachineValidationId - 590, // 719: forge.MaintenanceActivityConfig.firmware_upgrade:type_name -> forge.FirmwareUpgradeActivity - 592, // 720: forge.MaintenanceActivityConfig.configure_nmx_cluster:type_name -> forge.ConfigureNmxClusterActivity - 593, // 721: forge.MaintenanceActivityConfig.power_sequence:type_name -> forge.PowerSequenceActivity - 591, // 722: forge.MaintenanceActivityConfig.nvos_update:type_name -> forge.NvosUpdateActivity - 594, // 723: forge.RackMaintenanceScope.activities:type_name -> forge.MaintenanceActivityConfig - 1001, // 724: forge.RackMaintenanceOnDemandRequest.rack_id:type_name -> common.RackId - 595, // 725: forge.RackMaintenanceOnDemandRequest.scope:type_name -> forge.RackMaintenanceScope - 379, // 726: forge.AdminPowerControlRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 91, // 727: forge.AdminPowerControlRequest.action:type_name -> forge.AdminPowerControlRequest.SystemPowerControl - 992, // 728: forge.GetRedfishJobStateRequest.machine_id:type_name -> common.MachineId - 92, // 729: forge.GetRedfishJobStateResponse.job_state:type_name -> forge.GetRedfishJobStateResponse.RedfishJobState - 578, // 730: forge.MachineValidationRunList.runs:type_name -> forge.MachineValidationRun - 992, // 731: forge.MachineValidationRunListGetRequest.machine_id:type_name -> common.MachineId - 1019, // 732: forge.MachineValidationRunItemSearchFilter.validation_id:type_name -> common.MachineValidationId - 1002, // 733: forge.MachineValidationRunItemIdList.run_item_ids:type_name -> common.UUID - 1002, // 734: forge.MachineValidationRunItemsByIdsRequest.run_item_ids:type_name -> common.UUID - 608, // 735: forge.MachineValidationRunItemList.run_items:type_name -> forge.MachineValidationRunItem - 1002, // 736: forge.MachineValidationRunItem.run_item_id:type_name -> common.UUID - 1019, // 737: forge.MachineValidationRunItem.validation_id:type_name -> common.MachineValidationId - 1015, // 738: forge.MachineValidationRunItem.timeout:type_name -> google.protobuf.Duration - 993, // 739: forge.MachineValidationRunItem.started_at:type_name -> google.protobuf.Timestamp - 993, // 740: forge.MachineValidationRunItem.ended_at:type_name -> google.protobuf.Timestamp - 993, // 741: forge.MachineValidationRunItem.last_heartbeat_at:type_name -> google.protobuf.Timestamp - 1002, // 742: forge.MachineValidationRunItem.current_attempt_id:type_name -> common.UUID - 1002, // 743: forge.MachineValidationAttemptGetRequest.attempt_id:type_name -> common.UUID - 1002, // 744: forge.MachineValidationAttempt.attempt_id:type_name -> common.UUID - 1002, // 745: forge.MachineValidationAttempt.run_item_id:type_name -> common.UUID - 993, // 746: forge.MachineValidationAttempt.started_at:type_name -> google.protobuf.Timestamp - 993, // 747: forge.MachineValidationAttempt.ended_at:type_name -> google.protobuf.Timestamp - 993, // 748: forge.MachineValidationAttempt.last_heartbeat_at:type_name -> google.protobuf.Timestamp - 1019, // 749: forge.MachineValidationHeartbeatRequest.validation_id:type_name -> common.MachineValidationId - 1002, // 750: forge.MachineValidationHeartbeatRequest.run_item_id:type_name -> common.UUID - 1002, // 751: forge.MachineValidationHeartbeatRequest.attempt_id:type_name -> common.UUID - 985, // 752: forge.MachineValidationTestUpdateRequest.payload:type_name -> forge.MachineValidationTestUpdateRequest.Payload - 622, // 753: forge.MachineValidationTestsGetResponse.tests:type_name -> forge.MachineValidationTest - 1019, // 754: forge.MachineValidationRunRequest.validation_id:type_name -> common.MachineValidationId - 1015, // 755: forge.MachineValidationRunRequest.duration_to_complete:type_name -> google.protobuf.Duration - 622, // 756: forge.MachineValidationRunRequest.selected_tests:type_name -> forge.MachineValidationTest - 56, // 757: forge.MachineCapabilityAttributesGpu.device_type:type_name -> forge.MachineCapabilityDeviceType - 56, // 758: forge.MachineCapabilityAttributesNetwork.device_type:type_name -> forge.MachineCapabilityDeviceType - 629, // 759: forge.MachineCapabilitiesSet.cpu:type_name -> forge.MachineCapabilityAttributesCpu - 630, // 760: forge.MachineCapabilitiesSet.gpu:type_name -> forge.MachineCapabilityAttributesGpu - 631, // 761: forge.MachineCapabilitiesSet.memory:type_name -> forge.MachineCapabilityAttributesMemory - 632, // 762: forge.MachineCapabilitiesSet.storage:type_name -> forge.MachineCapabilityAttributesStorage - 633, // 763: forge.MachineCapabilitiesSet.network:type_name -> forge.MachineCapabilityAttributesNetwork - 634, // 764: forge.MachineCapabilitiesSet.infiniband:type_name -> forge.MachineCapabilityAttributesInfiniband - 635, // 765: forge.MachineCapabilitiesSet.dpu:type_name -> forge.MachineCapabilityAttributesDpu - 639, // 766: forge.InstanceTypeAttributes.desired_capabilities:type_name -> forge.InstanceTypeMachineCapabilityFilterAttributes - 637, // 767: forge.InstanceType.attributes:type_name -> forge.InstanceTypeAttributes - 262, // 768: forge.InstanceType.metadata:type_name -> forge.Metadata - 737, // 769: forge.InstanceType.allocation_stats:type_name -> forge.InstanceTypeAllocationStats - 57, // 770: forge.InstanceTypeMachineCapabilityFilterAttributes.capability_type:type_name -> forge.MachineCapabilityType - 1020, // 771: forge.InstanceTypeMachineCapabilityFilterAttributes.inactive_devices:type_name -> common.Uint32List - 56, // 772: forge.InstanceTypeMachineCapabilityFilterAttributes.device_type:type_name -> forge.MachineCapabilityDeviceType - 262, // 773: forge.CreateInstanceTypeRequest.metadata:type_name -> forge.Metadata - 637, // 774: forge.CreateInstanceTypeRequest.instance_type_attributes:type_name -> forge.InstanceTypeAttributes - 638, // 775: forge.CreateInstanceTypeResponse.instance_type:type_name -> forge.InstanceType - 638, // 776: forge.FindInstanceTypesByIdsResponse.instance_types:type_name -> forge.InstanceType - 638, // 777: forge.UpdateInstanceTypeResponse.instance_type:type_name -> forge.InstanceType - 262, // 778: forge.UpdateInstanceTypeRequest.metadata:type_name -> forge.Metadata - 637, // 779: forge.UpdateInstanceTypeRequest.instance_type_attributes:type_name -> forge.InstanceTypeAttributes - 986, // 780: forge.RedfishBrowseResponse.headers:type_name -> forge.RedfishBrowseResponse.HeadersEntry - 658, // 781: forge.RedfishListActionsResponse.actions:type_name -> forge.RedfishAction - 993, // 782: forge.RedfishAction.approver_dates:type_name -> google.protobuf.Timestamp - 993, // 783: forge.RedfishAction.applied_at:type_name -> google.protobuf.Timestamp - 659, // 784: forge.RedfishAction.results:type_name -> forge.OptionalRedfishActionResult - 660, // 785: forge.OptionalRedfishActionResult.result:type_name -> forge.RedfishActionResult - 987, // 786: forge.RedfishActionResult.headers:type_name -> forge.RedfishActionResult.HeadersEntry - 993, // 787: forge.RedfishActionResult.completed_at:type_name -> google.protobuf.Timestamp - 988, // 788: forge.UfmBrowseResponse.headers:type_name -> forge.UfmBrowseResponse.HeadersEntry - 686, // 789: forge.NetworkSecurityGroupAttributes.rules:type_name -> forge.NetworkSecurityGroupRuleAttributes - 262, // 790: forge.NetworkSecurityGroup.metadata:type_name -> forge.Metadata - 669, // 791: forge.NetworkSecurityGroup.attributes:type_name -> forge.NetworkSecurityGroupAttributes - 262, // 792: forge.CreateNetworkSecurityGroupRequest.metadata:type_name -> forge.Metadata - 669, // 793: forge.CreateNetworkSecurityGroupRequest.network_security_group_attributes:type_name -> forge.NetworkSecurityGroupAttributes - 670, // 794: forge.CreateNetworkSecurityGroupResponse.network_security_group:type_name -> forge.NetworkSecurityGroup - 670, // 795: forge.FindNetworkSecurityGroupsByIdsResponse.network_security_groups:type_name -> forge.NetworkSecurityGroup - 670, // 796: forge.UpdateNetworkSecurityGroupResponse.network_security_group:type_name -> forge.NetworkSecurityGroup - 262, // 797: forge.UpdateNetworkSecurityGroupRequest.metadata:type_name -> forge.Metadata - 669, // 798: forge.UpdateNetworkSecurityGroupRequest.network_security_group_attributes:type_name -> forge.NetworkSecurityGroupAttributes - 58, // 799: forge.NetworkSecurityGroupStatus.source:type_name -> forge.NetworkSecurityGroupSource - 59, // 800: forge.NetworkSecurityGroupPropagationObjectStatus.status:type_name -> forge.NetworkSecurityGroupPropagationStatus - 682, // 801: forge.GetNetworkSecurityGroupPropagationStatusResponse.vpcs:type_name -> forge.NetworkSecurityGroupPropagationObjectStatus - 682, // 802: forge.GetNetworkSecurityGroupPropagationStatusResponse.instances:type_name -> forge.NetworkSecurityGroupPropagationObjectStatus - 684, // 803: forge.GetNetworkSecurityGroupPropagationStatusRequest.network_security_group_ids:type_name -> forge.NetworkSecurityGroupIdList - 60, // 804: forge.NetworkSecurityGroupRuleAttributes.direction:type_name -> forge.NetworkSecurityGroupRuleDirection - 61, // 805: forge.NetworkSecurityGroupRuleAttributes.protocol:type_name -> forge.NetworkSecurityGroupRuleProtocol - 62, // 806: forge.NetworkSecurityGroupRuleAttributes.action:type_name -> forge.NetworkSecurityGroupRuleAction - 686, // 807: forge.ResolvedNetworkSecurityGroupRule.rule:type_name -> forge.NetworkSecurityGroupRuleAttributes - 689, // 808: forge.GetNetworkSecurityGroupAttachmentsResponse.attachments:type_name -> forge.NetworkSecurityGroupAttachments - 693, // 809: forge.GetDesiredFirmwareVersionsResponse.entries:type_name -> forge.DesiredFirmwareVersionEntry - 989, // 810: forge.DesiredFirmwareVersionEntry.component_versions:type_name -> forge.DesiredFirmwareVersionEntry.ComponentVersionsEntry - 694, // 811: forge.SkuComponents.chassis:type_name -> forge.SkuComponentChassis - 695, // 812: forge.SkuComponents.cpus:type_name -> forge.SkuComponentCpu - 696, // 813: forge.SkuComponents.gpus:type_name -> forge.SkuComponentGpu - 697, // 814: forge.SkuComponents.ethernet_devices:type_name -> forge.SkuComponentEthernetDevices - 698, // 815: forge.SkuComponents.infiniband_devices:type_name -> forge.SkuComponentInfinibandDevices - 699, // 816: forge.SkuComponents.storage:type_name -> forge.SkuComponentStorage - 701, // 817: forge.SkuComponents.memory:type_name -> forge.SkuComponentMemory - 702, // 818: forge.SkuComponents.tpm:type_name -> forge.SkuComponentTpm - 993, // 819: forge.Sku.created:type_name -> google.protobuf.Timestamp - 703, // 820: forge.Sku.components:type_name -> forge.SkuComponents - 992, // 821: forge.Sku.associated_machine_ids:type_name -> common.MachineId - 992, // 822: forge.SkuMachinePair.machine_id:type_name -> common.MachineId - 992, // 823: forge.RemoveSkuRequest.machine_id:type_name -> common.MachineId - 704, // 824: forge.SkuList.skus:type_name -> forge.Sku - 993, // 825: forge.SkuStatus.verify_request_time:type_name -> google.protobuf.Timestamp - 993, // 826: forge.SkuStatus.last_match_attempt:type_name -> google.protobuf.Timestamp - 993, // 827: forge.SkuStatus.last_generate_attempt:type_name -> google.protobuf.Timestamp - 1021, // 828: forge.DpaInterface.id:type_name -> common.DpaInterfaceId - 992, // 829: forge.DpaInterface.machine_id:type_name -> common.MachineId - 993, // 830: forge.DpaInterface.created:type_name -> google.protobuf.Timestamp - 993, // 831: forge.DpaInterface.updated:type_name -> google.protobuf.Timestamp - 993, // 832: forge.DpaInterface.deleted:type_name -> google.protobuf.Timestamp - 226, // 833: forge.DpaInterface.history:type_name -> forge.StateHistoryRecord - 993, // 834: forge.DpaInterface.last_hb_time:type_name -> google.protobuf.Timestamp - 63, // 835: forge.DpaInterface.interface_type:type_name -> forge.DpaInterfaceType - 992, // 836: forge.DpaInterfaceCreationRequest.machine_id:type_name -> common.MachineId - 63, // 837: forge.DpaInterfaceCreationRequest.interface_type:type_name -> forge.DpaInterfaceType - 1021, // 838: forge.DpaInterfaceIdList.ids:type_name -> common.DpaInterfaceId - 1021, // 839: forge.DpaInterfacesByIdsRequest.ids:type_name -> common.DpaInterfaceId - 712, // 840: forge.DpaInterfaceList.interfaces:type_name -> forge.DpaInterface - 1021, // 841: forge.DpaNetworkObservationSetRequest.id:type_name -> common.DpaInterfaceId - 1021, // 842: forge.DpaInterfaceDeletionRequest.id:type_name -> common.DpaInterfaceId - 992, // 843: forge.PowerOptionRequest.machine_id:type_name -> common.MachineId - 992, // 844: forge.PowerOptionUpdateRequest.machine_id:type_name -> common.MachineId - 64, // 845: forge.PowerOptionUpdateRequest.power_state:type_name -> forge.PowerState - 64, // 846: forge.PowerOptions.desired_state:type_name -> forge.PowerState - 993, // 847: forge.PowerOptions.desired_state_updated_at:type_name -> google.protobuf.Timestamp - 64, // 848: forge.PowerOptions.actual_state:type_name -> forge.PowerState - 993, // 849: forge.PowerOptions.actual_state_updated_at:type_name -> google.protobuf.Timestamp - 992, // 850: forge.PowerOptions.host_id:type_name -> common.MachineId - 993, // 851: forge.PowerOptions.next_power_state_fetch_at:type_name -> google.protobuf.Timestamp - 993, // 852: forge.PowerOptions.tried_triggering_on_at:type_name -> google.protobuf.Timestamp - 993, // 853: forge.PowerOptions.wait_until_time_before_performing_next_power_action:type_name -> google.protobuf.Timestamp - 723, // 854: forge.PowerOptionResponse.response:type_name -> forge.PowerOptions - 1022, // 855: forge.ComputeAllocation.id:type_name -> common.ComputeAllocationId - 725, // 856: forge.ComputeAllocation.attributes:type_name -> forge.ComputeAllocationAttributes - 262, // 857: forge.ComputeAllocation.metadata:type_name -> forge.Metadata - 1022, // 858: forge.CreateComputeAllocationRequest.id:type_name -> common.ComputeAllocationId - 262, // 859: forge.CreateComputeAllocationRequest.metadata:type_name -> forge.Metadata - 725, // 860: forge.CreateComputeAllocationRequest.attributes:type_name -> forge.ComputeAllocationAttributes - 726, // 861: forge.CreateComputeAllocationResponse.allocation:type_name -> forge.ComputeAllocation - 1022, // 862: forge.FindComputeAllocationIdsResponse.ids:type_name -> common.ComputeAllocationId - 1022, // 863: forge.FindComputeAllocationsByIdsRequest.ids:type_name -> common.ComputeAllocationId - 726, // 864: forge.FindComputeAllocationsByIdsResponse.allocations:type_name -> forge.ComputeAllocation - 726, // 865: forge.UpdateComputeAllocationResponse.allocation:type_name -> forge.ComputeAllocation - 1022, // 866: forge.UpdateComputeAllocationRequest.id:type_name -> common.ComputeAllocationId - 262, // 867: forge.UpdateComputeAllocationRequest.metadata:type_name -> forge.Metadata - 725, // 868: forge.UpdateComputeAllocationRequest.attributes:type_name -> forge.ComputeAllocationAttributes - 1022, // 869: forge.DeleteComputeAllocationRequest.id:type_name -> common.ComputeAllocationId - 744, // 870: forge.GetRackResponse.rack:type_name -> forge.Rack - 744, // 871: forge.RackList.racks:type_name -> forge.Rack - 261, // 872: forge.RackSearchFilter.label:type_name -> forge.Label - 1001, // 873: forge.RackIdList.rack_ids:type_name -> common.RackId - 1001, // 874: forge.RacksByIdsRequest.rack_ids:type_name -> common.RackId - 1001, // 875: forge.Rack.id:type_name -> common.RackId - 993, // 876: forge.Rack.created:type_name -> google.protobuf.Timestamp - 993, // 877: forge.Rack.updated:type_name -> google.protobuf.Timestamp - 993, // 878: forge.Rack.deleted:type_name -> google.protobuf.Timestamp - 262, // 879: forge.Rack.metadata:type_name -> forge.Metadata - 745, // 880: forge.Rack.config:type_name -> forge.RackConfig - 746, // 881: forge.Rack.status:type_name -> forge.RackStatus - 999, // 882: forge.RackStatus.health:type_name -> health.HealthReport - 352, // 883: forge.RackStatus.health_sources:type_name -> forge.HealthSourceOrigin - 93, // 884: forge.RackStatus.lifecycle:type_name -> forge.LifecycleStatus - 1001, // 885: forge.RackStateHistoriesRequest.rack_ids:type_name -> common.RackId - 1001, // 886: forge.AdminForceDeleteRackRequest.rack_id:type_name -> common.RackId - 751, // 887: forge.RackCapabilitiesSet.compute:type_name -> forge.RackCapabilityCompute - 752, // 888: forge.RackCapabilitiesSet.switch:type_name -> forge.RackCapabilitySwitch - 753, // 889: forge.RackCapabilitiesSet.power_shelf:type_name -> forge.RackCapabilityPowerShelf - 1023, // 890: forge.RackProfile.rack_hardware_type:type_name -> common.RackHardwareType - 65, // 891: forge.RackProfile.rack_hardware_topology:type_name -> forge.RackHardwareTopology - 67, // 892: forge.RackProfile.rack_hardware_class:type_name -> forge.RackHardwareClass - 754, // 893: forge.RackProfile.capabilities:type_name -> forge.RackCapabilitiesSet - 66, // 894: forge.RackProfile.product_family:type_name -> forge.RackProductFamily - 1001, // 895: forge.GetRackProfileRequest.rack_id:type_name -> common.RackId - 1001, // 896: forge.GetRackProfileResponse.rack_id:type_name -> common.RackId - 1004, // 897: forge.GetRackProfileResponse.rack_profile_id:type_name -> common.RackProfileId - 755, // 898: forge.GetRackProfileResponse.profile:type_name -> forge.RackProfile - 68, // 899: forge.RackManagerForgeRequest.cmd:type_name -> forge.RackManagerForgeCmd - 1012, // 900: forge.MachineNVLinkInfo.domain_uuid:type_name -> common.NVLinkDomainId - 769, // 901: forge.MachineNVLinkInfo.gpus:type_name -> forge.NVLinkGpu - 992, // 902: forge.UpdateMachineNvLinkInfoRequest.machine_id:type_name -> common.MachineId - 760, // 903: forge.UpdateMachineNvLinkInfoRequest.nvlink_info:type_name -> forge.MachineNVLinkInfo - 763, // 904: forge.MachineSpxStatusObservation.attachment_status:type_name -> forge.MachineSpxAttachmentStatusObservation - 993, // 905: forge.MachineSpxStatusObservation.observed_at:type_name -> google.protobuf.Timestamp - 1011, // 906: forge.MachineSpxAttachmentStatusObservation.partition_id:type_name -> common.SpxPartitionId - 16, // 907: forge.MachineSpxAttachmentStatusObservation.attachment_type:type_name -> forge.SpxAttachmentType - 993, // 908: forge.MachineSpxAttachmentStatusObservation.observed_at:type_name -> google.protobuf.Timestamp - 765, // 909: forge.AstraConfig.astra_attachments:type_name -> forge.AstraAttachment - 16, // 910: forge.AstraAttachment.attachment_type:type_name -> forge.SpxAttachmentType - 767, // 911: forge.AstraConfigStatus.astra_attachments_status:type_name -> forge.AstraAttachmentStatus - 16, // 912: forge.AstraAttachmentStatus.attachment_type:type_name -> forge.SpxAttachmentType - 768, // 913: forge.AstraAttachmentStatus.status:type_name -> forge.AstraStatus - 69, // 914: forge.AstraStatus.phase:type_name -> forge.AstraPhase - 771, // 915: forge.MachineNVLinkStatusObservation.gpu_status:type_name -> forge.MachineNVLinkGpuStatusObservation - 1024, // 916: forge.MachineNVLinkGpuStatusObservation.partition_id:type_name -> common.NVLinkPartitionId - 995, // 917: forge.MachineNVLinkGpuStatusObservation.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 1012, // 918: forge.MachineNVLinkGpuStatusObservation.domain_id:type_name -> common.NVLinkDomainId - 70, // 919: forge.NmxcBrowseRequest.operation:type_name -> forge.NmxcBrowseOperation - 990, // 920: forge.NmxcBrowseResponse.headers:type_name -> forge.NmxcBrowseResponse.HeadersEntry - 1024, // 921: forge.NVLinkPartition.id:type_name -> common.NVLinkPartitionId - 1012, // 922: forge.NVLinkPartition.domain_uuid:type_name -> common.NVLinkDomainId - 995, // 923: forge.NVLinkPartition.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 774, // 924: forge.NVLinkPartitionList.partitions:type_name -> forge.NVLinkPartition - 1002, // 925: forge.NVLinkPartitionQuery.id:type_name -> common.UUID - 776, // 926: forge.NVLinkPartitionQuery.search_config:type_name -> forge.NVLinkPartitionSearchConfig - 1024, // 927: forge.NVLinkPartitionsByIdsRequest.partition_ids:type_name -> common.NVLinkPartitionId - 1024, // 928: forge.NVLinkPartitionIdList.partition_ids:type_name -> common.NVLinkPartitionId - 262, // 929: forge.NVLinkLogicalPartitionConfig.metadata:type_name -> forge.Metadata - 8, // 930: forge.NVLinkLogicalPartitionStatus.state:type_name -> forge.TenantState - 995, // 931: forge.NVLinkLogicalPartition.id:type_name -> common.NVLinkLogicalPartitionId - 782, // 932: forge.NVLinkLogicalPartition.config:type_name -> forge.NVLinkLogicalPartitionConfig - 783, // 933: forge.NVLinkLogicalPartition.status:type_name -> forge.NVLinkLogicalPartitionStatus - 993, // 934: forge.NVLinkLogicalPartition.created:type_name -> google.protobuf.Timestamp - 784, // 935: forge.NVLinkLogicalPartitionList.partitions:type_name -> forge.NVLinkLogicalPartition - 782, // 936: forge.NVLinkLogicalPartitionCreationRequest.config:type_name -> forge.NVLinkLogicalPartitionConfig - 995, // 937: forge.NVLinkLogicalPartitionCreationRequest.id:type_name -> common.NVLinkLogicalPartitionId - 995, // 938: forge.NVLinkLogicalPartitionDeletionRequest.id:type_name -> common.NVLinkLogicalPartitionId - 995, // 939: forge.NVLinkLogicalPartitionsByIdsRequest.partition_ids:type_name -> common.NVLinkLogicalPartitionId - 995, // 940: forge.NVLinkLogicalPartitionIdList.partition_ids:type_name -> common.NVLinkLogicalPartitionId - 995, // 941: forge.NVLinkLogicalPartitionUpdateRequest.id:type_name -> common.NVLinkLogicalPartitionId - 782, // 942: forge.NVLinkLogicalPartitionUpdateRequest.config:type_name -> forge.NVLinkLogicalPartitionConfig - 379, // 943: forge.CreateBmcUserRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 379, // 944: forge.DeleteBmcUserRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 379, // 945: forge.SetBmcRootPasswordRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 379, // 946: forge.ProbeBmcVendorRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 992, // 947: forge.SetFirmwareUpdateTimeWindowRequest.machine_ids:type_name -> common.MachineId - 993, // 948: forge.SetFirmwareUpdateTimeWindowRequest.start_timestamp:type_name -> google.protobuf.Timestamp - 993, // 949: forge.SetFirmwareUpdateTimeWindowRequest.end_timestamp:type_name -> google.protobuf.Timestamp - 806, // 950: forge.UpsertHostFirmwareConfigRequest.components:type_name -> forge.UpsertHostFirmwareComponentConfig - 71, // 951: forge.UpsertHostFirmwareConfigRequest.ordering:type_name -> forge.HostFirmwareComponentType - 71, // 952: forge.UpsertHostFirmwareComponentConfig.type:type_name -> forge.HostFirmwareComponentType - 808, // 953: forge.UpsertHostFirmwareComponentConfig.firmware:type_name -> forge.HostFirmwareVersionConfig - 71, // 954: forge.HostFirmwareComponentConfigResponse.type:type_name -> forge.HostFirmwareComponentType - 808, // 955: forge.HostFirmwareComponentConfigResponse.firmware:type_name -> forge.HostFirmwareVersionConfig - 809, // 956: forge.HostFirmwareVersionConfig.artifacts:type_name -> forge.HostFirmwareArtifact - 807, // 957: forge.HostFirmwareConfigResponse.components:type_name -> forge.HostFirmwareComponentConfigResponse - 71, // 958: forge.HostFirmwareConfigResponse.ordering:type_name -> forge.HostFirmwareComponentType - 993, // 959: forge.HostFirmwareConfigResponse.created_at:type_name -> google.protobuf.Timestamp - 993, // 960: forge.HostFirmwareConfigResponse.updated_at:type_name -> google.protobuf.Timestamp - 813, // 961: forge.ListHostFirmwareResponse.available:type_name -> forge.AvailableHostFirmware - 72, // 962: forge.TrimTableRequest.target:type_name -> forge.TrimTableTarget - 816, // 963: forge.NvlinkNmxcEndpointList.entries:type_name -> forge.NvlinkNmxcEndpoint - 262, // 964: forge.CreateRemediationRequest.metadata:type_name -> forge.Metadata - 1025, // 965: forge.CreateRemediationResponse.remediation_id:type_name -> common.RemediationId - 1025, // 966: forge.RemediationIdList.remediation_ids:type_name -> common.RemediationId - 823, // 967: forge.RemediationList.remediations:type_name -> forge.Remediation - 1025, // 968: forge.Remediation.id:type_name -> common.RemediationId - 262, // 969: forge.Remediation.metadata:type_name -> forge.Metadata - 993, // 970: forge.Remediation.creation_time:type_name -> google.protobuf.Timestamp - 1025, // 971: forge.ApproveRemediationRequest.remediation_id:type_name -> common.RemediationId - 1025, // 972: forge.RevokeRemediationRequest.remediation_id:type_name -> common.RemediationId - 1025, // 973: forge.EnableRemediationRequest.remediation_id:type_name -> common.RemediationId - 1025, // 974: forge.DisableRemediationRequest.remediation_id:type_name -> common.RemediationId - 1025, // 975: forge.FindAppliedRemediationIdsRequest.remediation_id:type_name -> common.RemediationId - 992, // 976: forge.FindAppliedRemediationIdsRequest.dpu_machine_id:type_name -> common.MachineId - 1025, // 977: forge.AppliedRemediationIdList.remediation_ids:type_name -> common.RemediationId - 992, // 978: forge.AppliedRemediationIdList.dpu_machine_ids:type_name -> common.MachineId - 1025, // 979: forge.FindAppliedRemediationsRequest.remediation_id:type_name -> common.RemediationId - 992, // 980: forge.FindAppliedRemediationsRequest.dpu_machine_id:type_name -> common.MachineId - 1025, // 981: forge.AppliedRemediation.remediation_id:type_name -> common.RemediationId - 992, // 982: forge.AppliedRemediation.dpu_machine_id:type_name -> common.MachineId - 993, // 983: forge.AppliedRemediation.applied_time:type_name -> google.protobuf.Timestamp - 262, // 984: forge.AppliedRemediation.metadata:type_name -> forge.Metadata - 831, // 985: forge.AppliedRemediationList.applied_remediations:type_name -> forge.AppliedRemediation - 992, // 986: forge.GetNextRemediationForMachineRequest.dpu_machine_id:type_name -> common.MachineId - 1025, // 987: forge.GetNextRemediationForMachineResponse.remediation_id:type_name -> common.RemediationId - 1025, // 988: forge.RemediationAppliedRequest.remediation_id:type_name -> common.RemediationId - 992, // 989: forge.RemediationAppliedRequest.dpu_machine_id:type_name -> common.MachineId - 836, // 990: forge.RemediationAppliedRequest.status:type_name -> forge.RemediationApplicationStatus - 262, // 991: forge.RemediationApplicationStatus.metadata:type_name -> forge.Metadata - 992, // 992: forge.SetPrimaryDpuRequest.host_machine_id:type_name -> common.MachineId - 992, // 993: forge.SetPrimaryDpuRequest.dpu_machine_id:type_name -> common.MachineId - 992, // 994: forge.SetPrimaryInterfaceRequest.host_machine_id:type_name -> common.MachineId - 1013, // 995: forge.SetPrimaryInterfaceRequest.interface_id:type_name -> common.MachineInterfaceId - 839, // 996: forge.DpuExtensionServiceCredential.username_password:type_name -> forge.UsernamePassword - 860, // 997: forge.DpuExtensionServiceVersionInfo.observability:type_name -> forge.DpuExtensionServiceObservability - 73, // 998: forge.DpuExtensionService.service_type:type_name -> forge.DpuExtensionServiceType - 842, // 999: forge.DpuExtensionService.latest_version_info:type_name -> forge.DpuExtensionServiceVersionInfo - 73, // 1000: forge.CreateDpuExtensionServiceRequest.service_type:type_name -> forge.DpuExtensionServiceType - 841, // 1001: forge.CreateDpuExtensionServiceRequest.credential:type_name -> forge.DpuExtensionServiceCredential - 860, // 1002: forge.CreateDpuExtensionServiceRequest.observability:type_name -> forge.DpuExtensionServiceObservability - 841, // 1003: forge.UpdateDpuExtensionServiceRequest.credential:type_name -> forge.DpuExtensionServiceCredential - 860, // 1004: forge.UpdateDpuExtensionServiceRequest.observability:type_name -> forge.DpuExtensionServiceObservability - 73, // 1005: forge.DpuExtensionServiceSearchFilter.service_type:type_name -> forge.DpuExtensionServiceType - 843, // 1006: forge.DpuExtensionServiceList.services:type_name -> forge.DpuExtensionService - 842, // 1007: forge.DpuExtensionServiceVersionInfoList.version_infos:type_name -> forge.DpuExtensionServiceVersionInfo - 856, // 1008: forge.FindInstancesByDpuExtensionServiceResponse.instances:type_name -> forge.InstanceDpuExtensionServiceInfo - 857, // 1009: forge.DpuExtensionServiceObservabilityConfig.prometheus:type_name -> forge.DpuExtensionServiceObservabilityConfigPrometheus - 858, // 1010: forge.DpuExtensionServiceObservabilityConfig.logging:type_name -> forge.DpuExtensionServiceObservabilityConfigLogging - 859, // 1011: forge.DpuExtensionServiceObservability.configs:type_name -> forge.DpuExtensionServiceObservabilityConfig - 1002, // 1012: forge.ScoutStreamApiBoundMessage.flow_uuid:type_name -> common.UUID - 863, // 1013: forge.ScoutStreamApiBoundMessage.init:type_name -> forge.ScoutStreamInitRequest - 1026, // 1014: forge.ScoutStreamApiBoundMessage.mlx_device_lockdown_response:type_name -> mlx_device.MlxDeviceLockdownResponse - 1027, // 1015: forge.ScoutStreamApiBoundMessage.mlx_device_profile_sync_response:type_name -> mlx_device.MlxDeviceProfileSyncResponse - 1028, // 1016: forge.ScoutStreamApiBoundMessage.mlx_device_profile_compare_response:type_name -> mlx_device.MlxDeviceProfileCompareResponse - 1029, // 1017: forge.ScoutStreamApiBoundMessage.mlx_device_info_device_response:type_name -> mlx_device.MlxDeviceInfoDeviceResponse - 1030, // 1018: forge.ScoutStreamApiBoundMessage.mlx_device_info_report_response:type_name -> mlx_device.MlxDeviceInfoReportResponse - 1031, // 1019: forge.ScoutStreamApiBoundMessage.mlx_device_registry_list_response:type_name -> mlx_device.MlxDeviceRegistryListResponse - 1032, // 1020: forge.ScoutStreamApiBoundMessage.mlx_device_registry_show_response:type_name -> mlx_device.MlxDeviceRegistryShowResponse - 1033, // 1021: forge.ScoutStreamApiBoundMessage.mlx_device_config_query_response:type_name -> mlx_device.MlxDeviceConfigQueryResponse - 1034, // 1022: forge.ScoutStreamApiBoundMessage.mlx_device_config_set_response:type_name -> mlx_device.MlxDeviceConfigSetResponse - 1035, // 1023: forge.ScoutStreamApiBoundMessage.mlx_device_config_sync_response:type_name -> mlx_device.MlxDeviceConfigSyncResponse - 1036, // 1024: forge.ScoutStreamApiBoundMessage.mlx_device_config_compare_response:type_name -> mlx_device.MlxDeviceConfigCompareResponse - 871, // 1025: forge.ScoutStreamApiBoundMessage.scout_stream_agent_ping_response:type_name -> forge.ScoutStreamAgentPingResponse - 1002, // 1026: forge.ScoutStreamScoutBoundMessage.flow_uuid:type_name -> common.UUID - 1037, // 1027: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_lock_request:type_name -> mlx_device.MlxDeviceLockdownLockRequest - 1038, // 1028: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_unlock_request:type_name -> mlx_device.MlxDeviceLockdownUnlockRequest - 1039, // 1029: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_status_request:type_name -> mlx_device.MlxDeviceLockdownStatusRequest - 1040, // 1030: forge.ScoutStreamScoutBoundMessage.mlx_device_profile_sync_request:type_name -> mlx_device.MlxDeviceProfileSyncRequest - 1041, // 1031: forge.ScoutStreamScoutBoundMessage.mlx_device_profile_compare_request:type_name -> mlx_device.MlxDeviceProfileCompareRequest - 1042, // 1032: forge.ScoutStreamScoutBoundMessage.mlx_device_info_device_request:type_name -> mlx_device.MlxDeviceInfoDeviceRequest - 1043, // 1033: forge.ScoutStreamScoutBoundMessage.mlx_device_info_report_request:type_name -> mlx_device.MlxDeviceInfoReportRequest - 1044, // 1034: forge.ScoutStreamScoutBoundMessage.mlx_device_registry_list_request:type_name -> mlx_device.MlxDeviceRegistryListRequest - 1045, // 1035: forge.ScoutStreamScoutBoundMessage.mlx_device_registry_show_request:type_name -> mlx_device.MlxDeviceRegistryShowRequest - 1046, // 1036: forge.ScoutStreamScoutBoundMessage.mlx_device_config_query_request:type_name -> mlx_device.MlxDeviceConfigQueryRequest - 1047, // 1037: forge.ScoutStreamScoutBoundMessage.mlx_device_config_set_request:type_name -> mlx_device.MlxDeviceConfigSetRequest - 1048, // 1038: forge.ScoutStreamScoutBoundMessage.mlx_device_config_sync_request:type_name -> mlx_device.MlxDeviceConfigSyncRequest - 1049, // 1039: forge.ScoutStreamScoutBoundMessage.mlx_device_config_compare_request:type_name -> mlx_device.MlxDeviceConfigCompareRequest - 870, // 1040: forge.ScoutStreamScoutBoundMessage.scout_stream_agent_ping_request:type_name -> forge.ScoutStreamAgentPingRequest - 992, // 1041: forge.ScoutStreamInitRequest.machine_id:type_name -> common.MachineId - 872, // 1042: forge.ScoutStreamShowConnectionsResponse.scout_stream_connections:type_name -> forge.ScoutStreamConnectionInfo - 992, // 1043: forge.ScoutStreamDisconnectRequest.machine_id:type_name -> common.MachineId - 992, // 1044: forge.ScoutStreamDisconnectResponse.machine_id:type_name -> common.MachineId - 992, // 1045: forge.ScoutStreamAdminPingRequest.machine_id:type_name -> common.MachineId - 873, // 1046: forge.ScoutStreamAgentPingResponse.error:type_name -> forge.ScoutStreamError - 992, // 1047: forge.ScoutStreamConnectionInfo.machine_id:type_name -> common.MachineId - 75, // 1048: forge.ScoutStreamError.status:type_name -> forge.ScoutStreamErrorStatus - 1018, // 1049: forge.RoutingProfile.route_target_imports:type_name -> common.RouteTarget - 1018, // 1050: forge.RoutingProfile.route_targets_on_exports:type_name -> common.RouteTarget - 874, // 1051: forge.RoutingProfile.accepted_leaks_from_underlay:type_name -> forge.PrefixFilterPolicyEntry - 874, // 1052: forge.RoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry - 1005, // 1053: forge.DomainLegacy.id:type_name -> common.DomainId - 993, // 1054: forge.DomainLegacy.created:type_name -> google.protobuf.Timestamp - 993, // 1055: forge.DomainLegacy.updated:type_name -> google.protobuf.Timestamp - 993, // 1056: forge.DomainLegacy.deleted:type_name -> google.protobuf.Timestamp - 876, // 1057: forge.DomainListLegacy.domains:type_name -> forge.DomainLegacy - 1005, // 1058: forge.DomainDeletionLegacy.id:type_name -> common.DomainId - 1005, // 1059: forge.DomainSearchQueryLegacy.id:type_name -> common.DomainId - 1050, // 1060: forge.PxeDomain.new_domain:type_name -> dns.Domain - 876, // 1061: forge.PxeDomain.legacy_domain:type_name -> forge.DomainLegacy - 992, // 1062: forge.MachinePositionQuery.machine_ids:type_name -> common.MachineId - 884, // 1063: forge.MachinePositionInfoList.machine_position_info:type_name -> forge.MachinePositionInfo - 992, // 1064: forge.MachinePositionInfo.machine_id:type_name -> common.MachineId - 1003, // 1065: forge.MachinePositionInfo.switch_id:type_name -> common.SwitchId - 1000, // 1066: forge.MachinePositionInfo.power_shelf_id:type_name -> common.PowerShelfId - 992, // 1067: forge.ModifyDPFStateRequest.machine_id:type_name -> common.MachineId - 991, // 1068: forge.DPFStateResponse.dpf_states:type_name -> forge.DPFStateResponse.DPFState - 992, // 1069: forge.GetDPFStateRequest.machine_ids:type_name -> common.MachineId - 992, // 1070: forge.GetDPFHostSnapshotRequest.host_machine_id:type_name -> common.MachineId - 891, // 1071: forge.DPFServiceVersionsResponse.services:type_name -> forge.DPFServiceVersion - 76, // 1072: forge.ComponentResult.status:type_name -> forge.ComponentManagerStatusCode - 1003, // 1073: forge.SwitchIdList.ids:type_name -> common.SwitchId - 1000, // 1074: forge.PowerShelfIdList.ids:type_name -> common.PowerShelfId - 1051, // 1075: forge.GetComponentInventoryRequest.machine_ids:type_name -> common.MachineIdList - 894, // 1076: forge.GetComponentInventoryRequest.switch_ids:type_name -> forge.SwitchIdList - 895, // 1077: forge.GetComponentInventoryRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList - 893, // 1078: forge.ComponentInventoryEntry.result:type_name -> forge.ComponentResult - 1052, // 1079: forge.ComponentInventoryEntry.report:type_name -> site_explorer.EndpointExplorationReport - 897, // 1080: forge.GetComponentInventoryResponse.entries:type_name -> forge.ComponentInventoryEntry - 1051, // 1081: forge.ComponentPowerControlRequest.machine_ids:type_name -> common.MachineIdList - 894, // 1082: forge.ComponentPowerControlRequest.switch_ids:type_name -> forge.SwitchIdList - 895, // 1083: forge.ComponentPowerControlRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList - 1053, // 1084: forge.ComponentPowerControlRequest.action:type_name -> common.SystemPowerControl - 893, // 1085: forge.ComponentPowerControlResponse.results:type_name -> forge.ComponentResult - 894, // 1086: forge.ComponentConfigureSwitchCertificateRequest.switch_ids:type_name -> forge.SwitchIdList - 893, // 1087: forge.ComponentConfigureSwitchCertificateResponse.results:type_name -> forge.ComponentResult - 893, // 1088: forge.FirmwareUpdateStatus.result:type_name -> forge.ComponentResult - 77, // 1089: forge.FirmwareUpdateStatus.state:type_name -> forge.FirmwareUpdateState - 993, // 1090: forge.FirmwareUpdateStatus.updated_at:type_name -> google.protobuf.Timestamp - 1051, // 1091: forge.UpdateComputeTrayFirmwareTarget.machine_ids:type_name -> common.MachineIdList - 80, // 1092: forge.UpdateComputeTrayFirmwareTarget.components:type_name -> forge.ComputeTrayComponent - 894, // 1093: forge.UpdateSwitchFirmwareTarget.switch_ids:type_name -> forge.SwitchIdList - 78, // 1094: forge.UpdateSwitchFirmwareTarget.components:type_name -> forge.NvSwitchComponent - 895, // 1095: forge.UpdatePowerShelfFirmwareTarget.power_shelf_ids:type_name -> forge.PowerShelfIdList - 79, // 1096: forge.UpdatePowerShelfFirmwareTarget.components:type_name -> forge.PowerShelfComponent - 742, // 1097: forge.UpdateFirmwareObjectTarget.rack_ids:type_name -> forge.RackIdList - 904, // 1098: forge.UpdateComponentFirmwareRequest.compute_trays:type_name -> forge.UpdateComputeTrayFirmwareTarget - 905, // 1099: forge.UpdateComponentFirmwareRequest.switches:type_name -> forge.UpdateSwitchFirmwareTarget - 906, // 1100: forge.UpdateComponentFirmwareRequest.power_shelves:type_name -> forge.UpdatePowerShelfFirmwareTarget - 907, // 1101: forge.UpdateComponentFirmwareRequest.racks:type_name -> forge.UpdateFirmwareObjectTarget - 893, // 1102: forge.UpdateComponentFirmwareResponse.results:type_name -> forge.ComponentResult - 1051, // 1103: forge.GetComponentFirmwareStatusRequest.machine_ids:type_name -> common.MachineIdList - 894, // 1104: forge.GetComponentFirmwareStatusRequest.switch_ids:type_name -> forge.SwitchIdList - 895, // 1105: forge.GetComponentFirmwareStatusRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList - 742, // 1106: forge.GetComponentFirmwareStatusRequest.rack_ids:type_name -> forge.RackIdList - 903, // 1107: forge.GetComponentFirmwareStatusResponse.statuses:type_name -> forge.FirmwareUpdateStatus - 1051, // 1108: forge.ListComponentFirmwareVersionsRequest.machine_ids:type_name -> common.MachineIdList - 894, // 1109: forge.ListComponentFirmwareVersionsRequest.switch_ids:type_name -> forge.SwitchIdList - 895, // 1110: forge.ListComponentFirmwareVersionsRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList - 742, // 1111: forge.ListComponentFirmwareVersionsRequest.rack_ids:type_name -> forge.RackIdList - 80, // 1112: forge.ComputeTrayFirmwareVersions.component:type_name -> forge.ComputeTrayComponent - 893, // 1113: forge.DeviceFirmwareVersions.result:type_name -> forge.ComponentResult - 913, // 1114: forge.DeviceFirmwareVersions.compute_fw_versions:type_name -> forge.ComputeTrayFirmwareVersions - 914, // 1115: forge.ListComponentFirmwareVersionsResponse.devices:type_name -> forge.DeviceFirmwareVersions - 262, // 1116: forge.SpxPartitionCreationRequest.metadata:type_name -> forge.Metadata - 1011, // 1117: forge.SpxPartitionCreationRequest.id:type_name -> common.SpxPartitionId - 262, // 1118: forge.SpxPartition.metadata:type_name -> forge.Metadata - 1011, // 1119: forge.SpxPartition.id:type_name -> common.SpxPartitionId - 1011, // 1120: forge.SpxPartitionIdList.spx_partition_ids:type_name -> common.SpxPartitionId - 1011, // 1121: forge.SpxPartitionDeletionRequest.id:type_name -> common.SpxPartitionId - 261, // 1122: forge.SpxPartitionSearchFilter.label:type_name -> forge.Label - 917, // 1123: forge.SpxPartitionList.spx_partitions:type_name -> forge.SpxPartition - 1011, // 1124: forge.SpxPartitionsByIdsRequest.spx_partition_ids:type_name -> common.SpxPartitionId - 1003, // 1125: forge.AdminForceDeleteSwitchRequest.switch_id:type_name -> common.SwitchId - 1000, // 1126: forge.AdminForceDeletePowerShelfRequest.power_shelf_id:type_name -> common.PowerShelfId - 1010, // 1127: forge.OperatingSystem.id:type_name -> common.OperatingSystemId - 81, // 1128: forge.OperatingSystem.type:type_name -> forge.OperatingSystemType - 8, // 1129: forge.OperatingSystem.status:type_name -> forge.TenantState - 1009, // 1130: forge.OperatingSystem.ipxe_template_id:type_name -> common.IpxeTemplateId - 269, // 1131: forge.OperatingSystem.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameter - 270, // 1132: forge.OperatingSystem.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifact - 1010, // 1133: forge.CreateOperatingSystemRequest.id:type_name -> common.OperatingSystemId - 1009, // 1134: forge.CreateOperatingSystemRequest.ipxe_template_id:type_name -> common.IpxeTemplateId - 269, // 1135: forge.CreateOperatingSystemRequest.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameter - 270, // 1136: forge.CreateOperatingSystemRequest.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifact - 269, // 1137: forge.IpxeTemplateParameters.items:type_name -> forge.IpxeTemplateParameter - 270, // 1138: forge.IpxeTemplateArtifacts.items:type_name -> forge.IpxeTemplateArtifact - 1010, // 1139: forge.UpdateOperatingSystemRequest.id:type_name -> common.OperatingSystemId - 1009, // 1140: forge.UpdateOperatingSystemRequest.ipxe_template_id:type_name -> common.IpxeTemplateId - 930, // 1141: forge.UpdateOperatingSystemRequest.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameters - 931, // 1142: forge.UpdateOperatingSystemRequest.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifacts - 1010, // 1143: forge.DeleteOperatingSystemRequest.id:type_name -> common.OperatingSystemId - 1010, // 1144: forge.OperatingSystemIdList.ids:type_name -> common.OperatingSystemId - 1010, // 1145: forge.OperatingSystemsByIdsRequest.ids:type_name -> common.OperatingSystemId - 928, // 1146: forge.OperatingSystemList.operating_systems:type_name -> forge.OperatingSystem - 1010, // 1147: forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest.id:type_name -> common.OperatingSystemId - 270, // 1148: forge.IpxeTemplateArtifactList.artifacts:type_name -> forge.IpxeTemplateArtifact - 1010, // 1149: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest.id:type_name -> common.OperatingSystemId - 941, // 1150: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest.updates:type_name -> forge.IpxeTemplateArtifactUpdateRequest - 992, // 1151: forge.GetMachineBootInterfacesRequest.machine_id:type_name -> common.MachineId - 1013, // 1152: forge.MachineInterfaceBootInterface.interface_id:type_name -> common.MachineInterfaceId - 993, // 1153: forge.RetainedBootInterface.recorded_at:type_name -> google.protobuf.Timestamp - 992, // 1154: forge.GetMachineBootInterfacesResponse.machine_id:type_name -> common.MachineId - 948, // 1155: forge.GetMachineBootInterfacesResponse.machine_interfaces:type_name -> forge.MachineInterfaceBootInterface - 949, // 1156: forge.GetMachineBootInterfacesResponse.predicted_interfaces:type_name -> forge.PredictedBootInterface - 950, // 1157: forge.GetMachineBootInterfacesResponse.explored_endpoints:type_name -> forge.ExploredBootInterface - 951, // 1158: forge.GetMachineBootInterfacesResponse.retained_interfaces:type_name -> forge.RetainedBootInterface - 947, // 1159: forge.GetMachineBootInterfacesResponse.default_boot_interface:type_name -> forge.MachineBootInterface - 947, // 1160: forge.GetMachineBootInterfacesResponse.predicted_boot_interface:type_name -> forge.MachineBootInterface - 956, // 1161: forge.DNSMessage.DNSResponse.rrs:type_name -> forge.DNSMessage.DNSResponse.DNSRR - 227, // 1162: forge.StateHistories.HistoriesEntry.value:type_name -> forge.StateHistoryRecords - 318, // 1163: forge.MachineStateHistories.HistoriesEntry.value:type_name -> forge.MachineStateHistoryRecords - 321, // 1164: forge.HealthHistories.HistoriesEntry.value:type_name -> forge.HealthHistoryRecords - 943, // 1165: forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry.value:type_name -> forge.HostRepresentorInterceptBridging - 84, // 1166: forge.MachineCredentialsUpdateRequest.Credentials.credential_purpose:type_name -> forge.MachineCredentialsUpdateRequest.CredentialPurpose - 981, // 1167: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.pair:type_name -> forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.KeyValuePair - 1019, // 1168: forge.ForgeAgentControlResponse.MachineValidation.validation_id:type_name -> common.MachineValidationId - 972, // 1169: forge.ForgeAgentControlResponse.MachineValidation.filter:type_name -> forge.ForgeAgentControlResponse.MachineValidationFilter - 1016, // 1170: forge.ForgeAgentControlResponse.MachineValidationFilter.contexts:type_name -> common.StringList - 974, // 1171: forge.ForgeAgentControlResponse.MlxAction.device_actions:type_name -> forge.ForgeAgentControlResponse.MlxDeviceAction - 975, // 1172: forge.ForgeAgentControlResponse.MlxDeviceAction.noop:type_name -> forge.ForgeAgentControlResponse.MlxDeviceNoop - 976, // 1173: forge.ForgeAgentControlResponse.MlxDeviceAction.lock:type_name -> forge.ForgeAgentControlResponse.MlxDeviceLock - 977, // 1174: forge.ForgeAgentControlResponse.MlxDeviceAction.unlock:type_name -> forge.ForgeAgentControlResponse.MlxDeviceUnlock - 978, // 1175: forge.ForgeAgentControlResponse.MlxDeviceAction.apply_profile:type_name -> forge.ForgeAgentControlResponse.MlxDeviceApplyProfile - 979, // 1176: forge.ForgeAgentControlResponse.MlxDeviceAction.apply_firmware:type_name -> forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware - 1054, // 1177: forge.ForgeAgentControlResponse.MlxDeviceApplyProfile.serialized_profile:type_name -> mlx_device.SerializableMlxConfigProfile - 1055, // 1178: forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware.profile:type_name -> mlx_device.FirmwareFlasherProfile - 1056, // 1179: forge.ForgeAgentControlResponse.FirmwareUpgrade.task:type_name -> scout_firmware_upgrade.ScoutFirmwareUpgradeTask - 86, // 1180: forge.MachineCleanupInfo.CleanupStepResult.result:type_name -> forge.MachineCleanupInfo.CleanupResult - 992, // 1181: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.id:type_name -> common.MachineId - 993, // 1182: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.requested_at:type_name -> google.protobuf.Timestamp - 993, // 1183: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.initiated_at:type_name -> google.protobuf.Timestamp - 992, // 1184: forge.HostReprovisioningListResponse.HostReprovisioningListItem.id:type_name -> common.MachineId - 993, // 1185: forge.HostReprovisioningListResponse.HostReprovisioningListItem.requested_at:type_name -> google.protobuf.Timestamp - 993, // 1186: forge.HostReprovisioningListResponse.HostReprovisioningListItem.initiated_at:type_name -> google.protobuf.Timestamp - 992, // 1187: forge.DPFStateResponse.DPFState.machine_id:type_name -> common.MachineId - 141, // 1188: forge.Forge.Version:input_type -> forge.VersionRequest - 1057, // 1189: forge.Forge.CreateDomain:input_type -> dns.CreateDomainRequest - 1058, // 1190: forge.Forge.UpdateDomain:input_type -> dns.UpdateDomainRequest - 1059, // 1191: forge.Forge.DeleteDomain:input_type -> dns.DomainDeletionRequest - 1060, // 1192: forge.Forge.FindDomain:input_type -> dns.DomainSearchQuery - 876, // 1193: forge.Forge.CreateDomainLegacy:input_type -> forge.DomainLegacy - 876, // 1194: forge.Forge.UpdateDomainLegacy:input_type -> forge.DomainLegacy - 878, // 1195: forge.Forge.DeleteDomainLegacy:input_type -> forge.DomainDeletionLegacy - 880, // 1196: forge.Forge.FindDomainLegacy:input_type -> forge.DomainSearchQueryLegacy - 160, // 1197: forge.Forge.CreateVpc:input_type -> forge.VpcCreationRequest - 161, // 1198: forge.Forge.UpdateVpc:input_type -> forge.VpcUpdateRequest - 163, // 1199: forge.Forge.UpdateVpcVirtualization:input_type -> forge.VpcUpdateVirtualizationRequest - 165, // 1200: forge.Forge.DeleteVpc:input_type -> forge.VpcDeletionRequest - 153, // 1201: forge.Forge.FindVpcIds:input_type -> forge.VpcSearchFilter - 155, // 1202: forge.Forge.FindVpcsByIds:input_type -> forge.VpcsByIdsRequest - 916, // 1203: forge.Forge.CreateSpxPartition:input_type -> forge.SpxPartitionCreationRequest - 919, // 1204: forge.Forge.DeleteSpxPartition:input_type -> forge.SpxPartitionDeletionRequest - 921, // 1205: forge.Forge.FindSpxPartitionIds:input_type -> forge.SpxPartitionSearchFilter - 923, // 1206: forge.Forge.FindSpxPartitionsByIds:input_type -> forge.SpxPartitionsByIdsRequest - 171, // 1207: forge.Forge.CreateVpcPrefix:input_type -> forge.VpcPrefixCreationRequest - 172, // 1208: forge.Forge.SearchVpcPrefixes:input_type -> forge.VpcPrefixSearchQuery - 173, // 1209: forge.Forge.GetVpcPrefixes:input_type -> forge.VpcPrefixGetRequest - 176, // 1210: forge.Forge.UpdateVpcPrefix:input_type -> forge.VpcPrefixUpdateRequest - 177, // 1211: forge.Forge.DeleteVpcPrefix:input_type -> forge.VpcPrefixDeletionRequest - 183, // 1212: forge.Forge.CreateVpcPeering:input_type -> forge.VpcPeeringCreationRequest - 184, // 1213: forge.Forge.FindVpcPeeringIds:input_type -> forge.VpcPeeringSearchFilter - 185, // 1214: forge.Forge.FindVpcPeeringsByIds:input_type -> forge.VpcPeeringsByIdsRequest - 186, // 1215: forge.Forge.DeleteVpcPeering:input_type -> forge.VpcPeeringDeletionRequest - 253, // 1216: forge.Forge.FindNetworkSegmentIds:input_type -> forge.NetworkSegmentSearchFilter - 255, // 1217: forge.Forge.FindNetworkSegmentsByIds:input_type -> forge.NetworkSegmentsByIdsRequest - 247, // 1218: forge.Forge.CreateNetworkSegment:input_type -> forge.NetworkSegmentCreationRequest - 249, // 1219: forge.Forge.AttachNetworkSegmentToVpc:input_type -> forge.AttachNetworkSegmentToVpcRequest - 248, // 1220: forge.Forge.DeleteNetworkSegment:input_type -> forge.NetworkSegmentDeletionRequest - 152, // 1221: forge.Forge.NetworkSegmentsForVpc:input_type -> forge.VpcSearchQuery - 196, // 1222: forge.Forge.FindIBPartitionIds:input_type -> forge.IBPartitionSearchFilter - 197, // 1223: forge.Forge.FindIBPartitionsByIds:input_type -> forge.IBPartitionsByIdsRequest - 192, // 1224: forge.Forge.CreateIBPartition:input_type -> forge.IBPartitionCreationRequest - 193, // 1225: forge.Forge.UpdateIBPartition:input_type -> forge.IBPartitionUpdateRequest - 194, // 1226: forge.Forge.DeleteIBPartition:input_type -> forge.IBPartitionDeletionRequest - 156, // 1227: forge.Forge.IBPartitionsForTenant:input_type -> forge.TenantSearchQuery - 208, // 1228: forge.Forge.FindPowerShelves:input_type -> forge.PowerShelfQuery - 209, // 1229: forge.Forge.FindPowerShelfIds:input_type -> forge.PowerShelfSearchFilter - 210, // 1230: forge.Forge.FindPowerShelvesByIds:input_type -> forge.PowerShelvesByIdsRequest - 204, // 1231: forge.Forge.DeletePowerShelf:input_type -> forge.PowerShelfDeletionRequest - 926, // 1232: forge.Forge.AdminForceDeletePowerShelf:input_type -> forge.AdminForceDeletePowerShelfRequest - 206, // 1233: forge.Forge.SetPowerShelfMaintenance:input_type -> forge.PowerShelfMaintenanceRequest - 230, // 1234: forge.Forge.FindSwitches:input_type -> forge.SwitchQuery - 231, // 1235: forge.Forge.FindSwitchIds:input_type -> forge.SwitchSearchFilter - 232, // 1236: forge.Forge.FindSwitchesByIds:input_type -> forge.SwitchesByIdsRequest - 224, // 1237: forge.Forge.DeleteSwitch:input_type -> forge.SwitchDeletionRequest - 924, // 1238: forge.Forge.AdminForceDeleteSwitch:input_type -> forge.AdminForceDeleteSwitchRequest - 241, // 1239: forge.Forge.FindIBFabricIds:input_type -> forge.IBFabricSearchFilter - 266, // 1240: forge.Forge.AllocateInstance:input_type -> forge.InstanceAllocationRequest - 267, // 1241: forge.Forge.AllocateInstances:input_type -> forge.BatchInstanceAllocationRequest - 312, // 1242: forge.Forge.ReleaseInstance:input_type -> forge.InstanceReleaseRequest - 284, // 1243: forge.Forge.UpdateInstanceOperatingSystem:input_type -> forge.InstanceOperatingSystemUpdateRequest - 285, // 1244: forge.Forge.UpdateInstanceConfig:input_type -> forge.InstanceConfigUpdateRequest - 263, // 1245: forge.Forge.FindInstanceIds:input_type -> forge.InstanceSearchFilter - 265, // 1246: forge.Forge.FindInstancesByIds:input_type -> forge.InstancesByIdsRequest - 992, // 1247: forge.Forge.FindInstanceByMachineID:input_type -> common.MachineId - 385, // 1248: forge.Forge.GetManagedHostNetworkConfig:input_type -> forge.ManagedHostNetworkConfigRequest - 450, // 1249: forge.Forge.RecordDpuNetworkStatus:input_type -> forge.DpuNetworkStatus - 992, // 1250: forge.Forge.ListMachineHealthReports:input_type -> common.MachineId - 456, // 1251: forge.Forge.InsertMachineHealthReport:input_type -> forge.InsertMachineHealthReportRequest - 467, // 1252: forge.Forge.RemoveMachineHealthReport:input_type -> forge.RemoveMachineHealthReportRequest - 459, // 1253: forge.Forge.ListRackHealthReports:input_type -> forge.ListRackHealthReportsRequest - 457, // 1254: forge.Forge.InsertRackHealthReport:input_type -> forge.InsertRackHealthReportRequest - 458, // 1255: forge.Forge.RemoveRackHealthReport:input_type -> forge.RemoveRackHealthReportRequest - 462, // 1256: forge.Forge.ListSwitchHealthReports:input_type -> forge.ListSwitchHealthReportsRequest - 460, // 1257: forge.Forge.InsertSwitchHealthReport:input_type -> forge.InsertSwitchHealthReportRequest - 461, // 1258: forge.Forge.RemoveSwitchHealthReport:input_type -> forge.RemoveSwitchHealthReportRequest - 465, // 1259: forge.Forge.ListPowerShelfHealthReports:input_type -> forge.ListPowerShelfHealthReportsRequest - 463, // 1260: forge.Forge.InsertPowerShelfHealthReport:input_type -> forge.InsertPowerShelfHealthReportRequest - 464, // 1261: forge.Forge.RemovePowerShelfHealthReport:input_type -> forge.RemovePowerShelfHealthReportRequest - 468, // 1262: forge.Forge.ListNVLinkDomainHealthReports:input_type -> forge.ListNVLinkDomainHealthReportsRequest - 469, // 1263: forge.Forge.InsertNVLinkDomainHealthReport:input_type -> forge.InsertNVLinkDomainHealthReportRequest - 470, // 1264: forge.Forge.RemoveNVLinkDomainHealthReport:input_type -> forge.RemoveNVLinkDomainHealthReportRequest - 992, // 1265: forge.Forge.ListHealthReportOverrides:input_type -> common.MachineId - 456, // 1266: forge.Forge.InsertHealthReportOverride:input_type -> forge.InsertMachineHealthReportRequest - 467, // 1267: forge.Forge.RemoveHealthReportOverride:input_type -> forge.RemoveMachineHealthReportRequest - 404, // 1268: forge.Forge.DpuAgentUpgradeCheck:input_type -> forge.DpuAgentUpgradeCheckRequest - 406, // 1269: forge.Forge.DpuAgentUpgradePolicyAction:input_type -> forge.DpuAgentUpgradePolicyRequest - 1061, // 1270: forge.Forge.LookupRecord:input_type -> dns.DnsResourceRecordLookupRequest - 1062, // 1271: forge.Forge.GetAllDomains:input_type -> dns.GetAllDomainsRequest - 1063, // 1272: forge.Forge.GetAllDomainMetadata:input_type -> dns.DomainMetadataRequest - 258, // 1273: forge.Forge.InvokeInstancePower:input_type -> forge.InstancePowerRequest - 431, // 1274: forge.Forge.ForgeAgentControl:input_type -> forge.ForgeAgentControlRequest - 433, // 1275: forge.Forge.DiscoverMachine:input_type -> forge.MachineDiscoveryInfo - 437, // 1276: forge.Forge.RenewMachineCertificate:input_type -> forge.MachineCertificateRenewRequest - 434, // 1277: forge.Forge.DiscoveryCompleted:input_type -> forge.MachineDiscoveryCompletedRequest - 435, // 1278: forge.Forge.CleanupMachineCompleted:input_type -> forge.MachineCleanupInfo - 442, // 1279: forge.Forge.ReportForgeScoutError:input_type -> forge.ForgeScoutErrorReport - 361, // 1280: forge.Forge.DiscoverDhcp:input_type -> forge.DhcpDiscovery - 362, // 1281: forge.Forge.ExpireDhcpLease:input_type -> forge.ExpireDhcpLeaseRequest - 331, // 1282: forge.Forge.AssignStaticAddress:input_type -> forge.AssignStaticAddressRequest - 333, // 1283: forge.Forge.RemoveStaticAddress:input_type -> forge.RemoveStaticAddressRequest - 335, // 1284: forge.Forge.FindInterfaceAddresses:input_type -> forge.FindInterfaceAddressesRequest - 330, // 1285: forge.Forge.FindInterfaces:input_type -> forge.InterfaceSearchQuery - 329, // 1286: forge.Forge.DeleteInterface:input_type -> forge.InterfaceDeleteQuery - 506, // 1287: forge.Forge.FindIpAddress:input_type -> forge.FindIpAddressRequest - 315, // 1288: forge.Forge.FindMachineIds:input_type -> forge.MachineSearchConfig - 314, // 1289: forge.Forge.FindMachinesByIds:input_type -> forge.MachinesByIdsRequest - 316, // 1290: forge.Forge.FindMachineStateHistories:input_type -> forge.MachineStateHistoriesRequest - 319, // 1291: forge.Forge.FindMachineHealthHistories:input_type -> forge.MachineHealthHistoriesRequest - 207, // 1292: forge.Forge.FindPowerShelfStateHistories:input_type -> forge.PowerShelfStateHistoriesRequest - 747, // 1293: forge.Forge.FindRackStateHistories:input_type -> forge.RackStateHistoriesRequest - 228, // 1294: forge.Forge.FindSwitchStateHistories:input_type -> forge.SwitchStateHistoriesRequest - 251, // 1295: forge.Forge.FindNetworkSegmentStateHistories:input_type -> forge.NetworkSegmentStateHistoriesRequest - 179, // 1296: forge.Forge.FindVpcPrefixStateHistories:input_type -> forge.VpcPrefixStateHistoriesRequest - 324, // 1297: forge.Forge.FindTenantOrganizationIds:input_type -> forge.TenantSearchFilter - 323, // 1298: forge.Forge.FindTenantsByOrganizationIds:input_type -> forge.TenantByOrganizationIdsRequest - 1051, // 1299: forge.Forge.FindConnectedDevicesByDpuMachineIds:input_type -> common.MachineIdList - 531, // 1300: forge.Forge.FindMachineIdsByBmcIps:input_type -> forge.BmcIpList - 532, // 1301: forge.Forge.FindMacAddressByBmcIp:input_type -> forge.BmcIp - 510, // 1302: forge.Forge.FindBmcIps:input_type -> forge.FindBmcIpsRequest - 508, // 1303: forge.Forge.IdentifyUuid:input_type -> forge.IdentifyUuidRequest - 511, // 1304: forge.Forge.IdentifyMac:input_type -> forge.IdentifyMacRequest - 513, // 1305: forge.Forge.IdentifySerial:input_type -> forge.IdentifySerialRequest - 427, // 1306: forge.Forge.GetBMCMetaData:input_type -> forge.BMCMetaDataGetRequest - 429, // 1307: forge.Forge.UpdateMachineCredentials:input_type -> forge.MachineCredentialsUpdateRequest - 444, // 1308: forge.Forge.GetPxeInstructions:input_type -> forge.PxeInstructionRequest - 448, // 1309: forge.Forge.GetCloudInitInstructions:input_type -> forge.CloudInitInstructionsRequest - 144, // 1310: forge.Forge.Echo:input_type -> forge.EchoRequest - 475, // 1311: forge.Forge.CreateTenant:input_type -> forge.CreateTenantRequest - 479, // 1312: forge.Forge.FindTenant:input_type -> forge.FindTenantRequest - 477, // 1313: forge.Forge.UpdateTenant:input_type -> forge.UpdateTenantRequest - 485, // 1314: forge.Forge.CreateTenantKeyset:input_type -> forge.CreateTenantKeysetRequest - 492, // 1315: forge.Forge.FindTenantKeysetIds:input_type -> forge.TenantKeysetSearchFilter - 494, // 1316: forge.Forge.FindTenantKeysetsByIds:input_type -> forge.TenantKeysetsByIdsRequest - 488, // 1317: forge.Forge.UpdateTenantKeyset:input_type -> forge.UpdateTenantKeysetRequest - 490, // 1318: forge.Forge.DeleteTenantKeyset:input_type -> forge.DeleteTenantKeysetRequest - 495, // 1319: forge.Forge.ValidateTenantPublicKey:input_type -> forge.ValidateTenantPublicKeyRequest - 368, // 1320: forge.Forge.GetBmcCredentials:input_type -> forge.GetBmcCredentialsRequest - 369, // 1321: forge.Forge.GetSwitchNvosCredentials:input_type -> forge.GetSwitchNvosCredentialsRequest - 402, // 1322: forge.Forge.GetAllManagedHostNetworkStatus:input_type -> forge.ManagedHostNetworkStatusRequest - 372, // 1323: forge.Forge.GetSiteExplorationReport:input_type -> forge.GetSiteExplorationRequest - 1064, // 1324: forge.Forge.GetSiteExplorerLastRun:input_type -> google.protobuf.Empty - 373, // 1325: forge.Forge.ClearSiteExplorationError:input_type -> forge.ClearSiteExplorationErrorRequest - 379, // 1326: forge.Forge.IsBmcInManagedHost:input_type -> forge.BmcEndpointRequest - 379, // 1327: forge.Forge.BmcCredentialStatus:input_type -> forge.BmcEndpointRequest - 379, // 1328: forge.Forge.Explore:input_type -> forge.BmcEndpointRequest - 374, // 1329: forge.Forge.ReExploreEndpoint:input_type -> forge.ReExploreEndpointRequest - 375, // 1330: forge.Forge.RefreshEndpointReport:input_type -> forge.RefreshEndpointReportRequest - 376, // 1331: forge.Forge.DeleteExploredEndpoint:input_type -> forge.DeleteExploredEndpointRequest - 377, // 1332: forge.Forge.PauseExploredEndpointRemediation:input_type -> forge.PauseExploredEndpointRemediationRequest - 1065, // 1333: forge.Forge.FindExploredEndpointIds:input_type -> site_explorer.ExploredEndpointSearchFilter - 1066, // 1334: forge.Forge.FindExploredEndpointsByIds:input_type -> site_explorer.ExploredEndpointsByIdsRequest - 1067, // 1335: forge.Forge.FindExploredManagedHostIds:input_type -> site_explorer.ExploredManagedHostSearchFilter - 1068, // 1336: forge.Forge.FindExploredManagedHostsByIds:input_type -> site_explorer.ExploredManagedHostsByIdsRequest - 1069, // 1337: forge.Forge.FindExploredMlxDeviceHostIds:input_type -> site_explorer.ExploredMlxDeviceHostSearchFilter - 1070, // 1338: forge.Forge.FindExploredMlxDevicesByIds:input_type -> site_explorer.ExploredMlxDevicesByIdsRequest - 383, // 1339: forge.Forge.UpdateMachineHardwareInfo:input_type -> forge.UpdateMachineHardwareInfoRequest - 408, // 1340: forge.Forge.AdminForceDeleteMachine:input_type -> forge.AdminForceDeleteMachineRequest - 497, // 1341: forge.Forge.AdminListResourcePools:input_type -> forge.ListResourcePoolsRequest - 500, // 1342: forge.Forge.AdminGrowResourcePool:input_type -> forge.GrowResourcePoolRequest - 345, // 1343: forge.Forge.UpdateMachineMetadata:input_type -> forge.MachineMetadataUpdateRequest - 346, // 1344: forge.Forge.UpdateRackMetadata:input_type -> forge.RackMetadataUpdateRequest - 347, // 1345: forge.Forge.UpdateSwitchMetadata:input_type -> forge.SwitchMetadataUpdateRequest - 348, // 1346: forge.Forge.UpdatePowerShelfMetadata:input_type -> forge.PowerShelfMetadataUpdateRequest - 761, // 1347: forge.Forge.UpdateMachineNvLinkInfo:input_type -> forge.UpdateMachineNvLinkInfoRequest - 504, // 1348: forge.Forge.SetMaintenance:input_type -> forge.MaintenanceRequest - 505, // 1349: forge.Forge.SetDynamicConfig:input_type -> forge.SetDynamicConfigRequest - 515, // 1350: forge.Forge.TriggerDpuReprovisioning:input_type -> forge.DpuReprovisioningRequest - 516, // 1351: forge.Forge.ListDpuWaitingForReprovisioning:input_type -> forge.DpuReprovisioningListRequest - 518, // 1352: forge.Forge.TriggerHostReprovisioning:input_type -> forge.HostReprovisioningRequest - 519, // 1353: forge.Forge.ListHostsWaitingForReprovisioning:input_type -> forge.HostReprovisioningListRequest - 992, // 1354: forge.Forge.MarkManualFirmwareUpgradeComplete:input_type -> common.MachineId - 570, // 1355: forge.Forge.ReportScoutFirmwareUpgradeStatus:input_type -> forge.ScoutFirmwareUpgradeStatusRequest - 525, // 1356: forge.Forge.GetDpuInfoList:input_type -> forge.GetDpuInfoListRequest - 1013, // 1357: forge.Forge.GetMachineBootOverride:input_type -> common.MachineInterfaceId - 528, // 1358: forge.Forge.SetMachineBootOverride:input_type -> forge.MachineBootOverride - 1013, // 1359: forge.Forge.ClearMachineBootOverride:input_type -> common.MachineInterfaceId - 946, // 1360: forge.Forge.GetMachineBootInterfaces:input_type -> forge.GetMachineBootInterfacesRequest - 537, // 1361: forge.Forge.GetNetworkTopology:input_type -> forge.NetworkTopologyRequest - 538, // 1362: forge.Forge.FindNetworkDevicesByDeviceIds:input_type -> forge.NetworkDeviceIdList - 132, // 1363: forge.Forge.CreateCredential:input_type -> forge.CredentialCreationRequest - 133, // 1364: forge.Forge.DeleteCredential:input_type -> forge.CredentialDeletionRequest - 136, // 1365: forge.Forge.RotateCredential:input_type -> forge.RotateCredentialRequest - 138, // 1366: forge.Forge.GetCredentialRotationStatus:input_type -> forge.CredentialRotationStatusRequest - 1064, // 1367: forge.Forge.GetRouteServers:input_type -> google.protobuf.Empty - 540, // 1368: forge.Forge.AddRouteServers:input_type -> forge.RouteServers - 540, // 1369: forge.Forge.RemoveRouteServers:input_type -> forge.RouteServers - 540, // 1370: forge.Forge.ReplaceRouteServers:input_type -> forge.RouteServers - 349, // 1371: forge.Forge.UpdateAgentReportedInventory:input_type -> forge.DpuAgentInventoryReport - 307, // 1372: forge.Forge.UpdateInstancePhoneHomeLastContact:input_type -> forge.InstancePhoneHomeLastContactRequest - 543, // 1373: forge.Forge.SetHostUefiPassword:input_type -> forge.SetHostUefiPasswordRequest - 545, // 1374: forge.Forge.ClearHostUefiPassword:input_type -> forge.ClearHostUefiPasswordRequest - 558, // 1375: forge.Forge.AddExpectedMachine:input_type -> forge.ExpectedMachine - 559, // 1376: forge.Forge.DeleteExpectedMachine:input_type -> forge.ExpectedMachineRequest - 558, // 1377: forge.Forge.UpdateExpectedMachine:input_type -> forge.ExpectedMachine - 559, // 1378: forge.Forge.GetExpectedMachine:input_type -> forge.ExpectedMachineRequest - 1064, // 1379: forge.Forge.GetAllExpectedMachines:input_type -> google.protobuf.Empty - 560, // 1380: forge.Forge.ReplaceAllExpectedMachines:input_type -> forge.ExpectedMachineList - 1064, // 1381: forge.Forge.DeleteAllExpectedMachines:input_type -> google.protobuf.Empty - 1064, // 1382: forge.Forge.GetAllExpectedMachinesLinked:input_type -> google.protobuf.Empty - 1064, // 1383: forge.Forge.GetAllUnexpectedMachines:input_type -> google.protobuf.Empty - 565, // 1384: forge.Forge.CreateExpectedMachines:input_type -> forge.BatchExpectedMachineOperationRequest - 565, // 1385: forge.Forge.UpdateExpectedMachines:input_type -> forge.BatchExpectedMachineOperationRequest - 211, // 1386: forge.Forge.AddExpectedPowerShelf:input_type -> forge.ExpectedPowerShelf - 212, // 1387: forge.Forge.DeleteExpectedPowerShelf:input_type -> forge.ExpectedPowerShelfRequest - 211, // 1388: forge.Forge.UpdateExpectedPowerShelf:input_type -> forge.ExpectedPowerShelf - 212, // 1389: forge.Forge.GetExpectedPowerShelf:input_type -> forge.ExpectedPowerShelfRequest - 1064, // 1390: forge.Forge.GetAllExpectedPowerShelves:input_type -> google.protobuf.Empty - 213, // 1391: forge.Forge.ReplaceAllExpectedPowerShelves:input_type -> forge.ExpectedPowerShelfList - 1064, // 1392: forge.Forge.DeleteAllExpectedPowerShelves:input_type -> google.protobuf.Empty - 1064, // 1393: forge.Forge.GetAllExpectedPowerShelvesLinked:input_type -> google.protobuf.Empty - 233, // 1394: forge.Forge.AddExpectedSwitch:input_type -> forge.ExpectedSwitch - 234, // 1395: forge.Forge.DeleteExpectedSwitch:input_type -> forge.ExpectedSwitchRequest - 233, // 1396: forge.Forge.UpdateExpectedSwitch:input_type -> forge.ExpectedSwitch - 234, // 1397: forge.Forge.GetExpectedSwitch:input_type -> forge.ExpectedSwitchRequest - 1064, // 1398: forge.Forge.GetAllExpectedSwitches:input_type -> google.protobuf.Empty - 235, // 1399: forge.Forge.ReplaceAllExpectedSwitches:input_type -> forge.ExpectedSwitchList - 1064, // 1400: forge.Forge.DeleteAllExpectedSwitches:input_type -> google.protobuf.Empty - 1064, // 1401: forge.Forge.GetAllExpectedSwitchesLinked:input_type -> google.protobuf.Empty - 238, // 1402: forge.Forge.AddExpectedRack:input_type -> forge.ExpectedRack - 239, // 1403: forge.Forge.DeleteExpectedRack:input_type -> forge.ExpectedRackRequest - 238, // 1404: forge.Forge.UpdateExpectedRack:input_type -> forge.ExpectedRack - 239, // 1405: forge.Forge.GetExpectedRack:input_type -> forge.ExpectedRackRequest - 1064, // 1406: forge.Forge.GetAllExpectedRacks:input_type -> google.protobuf.Empty - 240, // 1407: forge.Forge.ReplaceAllExpectedRacks:input_type -> forge.ExpectedRackList - 1064, // 1408: forge.Forge.DeleteAllExpectedRacks:input_type -> google.protobuf.Empty - 130, // 1409: forge.Forge.AttestQuote:input_type -> forge.AttestQuoteRequest - 640, // 1410: forge.Forge.CreateInstanceType:input_type -> forge.CreateInstanceTypeRequest - 642, // 1411: forge.Forge.FindInstanceTypeIds:input_type -> forge.FindInstanceTypeIdsRequest - 644, // 1412: forge.Forge.FindInstanceTypesByIds:input_type -> forge.FindInstanceTypesByIdsRequest - 649, // 1413: forge.Forge.UpdateInstanceType:input_type -> forge.UpdateInstanceTypeRequest - 646, // 1414: forge.Forge.DeleteInstanceType:input_type -> forge.DeleteInstanceTypeRequest - 650, // 1415: forge.Forge.AssociateMachinesWithInstanceType:input_type -> forge.AssociateMachinesWithInstanceTypeRequest - 652, // 1416: forge.Forge.RemoveMachineInstanceTypeAssociation:input_type -> forge.RemoveMachineInstanceTypeAssociationRequest - 1071, // 1417: forge.Forge.CreateMeasurementBundle:input_type -> measured_boot.CreateMeasurementBundleRequest - 1072, // 1418: forge.Forge.DeleteMeasurementBundle:input_type -> measured_boot.DeleteMeasurementBundleRequest - 1073, // 1419: forge.Forge.RenameMeasurementBundle:input_type -> measured_boot.RenameMeasurementBundleRequest - 1074, // 1420: forge.Forge.UpdateMeasurementBundle:input_type -> measured_boot.UpdateMeasurementBundleRequest - 1075, // 1421: forge.Forge.ShowMeasurementBundle:input_type -> measured_boot.ShowMeasurementBundleRequest - 1076, // 1422: forge.Forge.ShowMeasurementBundles:input_type -> measured_boot.ShowMeasurementBundlesRequest - 1077, // 1423: forge.Forge.ListMeasurementBundles:input_type -> measured_boot.ListMeasurementBundlesRequest - 1078, // 1424: forge.Forge.ListMeasurementBundleMachines:input_type -> measured_boot.ListMeasurementBundleMachinesRequest - 1079, // 1425: forge.Forge.FindClosestBundleMatch:input_type -> measured_boot.FindClosestBundleMatchRequest - 1080, // 1426: forge.Forge.DeleteMeasurementJournal:input_type -> measured_boot.DeleteMeasurementJournalRequest - 1081, // 1427: forge.Forge.ShowMeasurementJournal:input_type -> measured_boot.ShowMeasurementJournalRequest - 1082, // 1428: forge.Forge.ShowMeasurementJournals:input_type -> measured_boot.ShowMeasurementJournalsRequest - 1083, // 1429: forge.Forge.ListMeasurementJournal:input_type -> measured_boot.ListMeasurementJournalRequest - 1084, // 1430: forge.Forge.AttestCandidateMachine:input_type -> measured_boot.AttestCandidateMachineRequest - 1085, // 1431: forge.Forge.ShowCandidateMachine:input_type -> measured_boot.ShowCandidateMachineRequest - 1086, // 1432: forge.Forge.ShowCandidateMachines:input_type -> measured_boot.ShowCandidateMachinesRequest - 1087, // 1433: forge.Forge.ListCandidateMachines:input_type -> measured_boot.ListCandidateMachinesRequest - 1088, // 1434: forge.Forge.CreateMeasurementSystemProfile:input_type -> measured_boot.CreateMeasurementSystemProfileRequest - 1089, // 1435: forge.Forge.DeleteMeasurementSystemProfile:input_type -> measured_boot.DeleteMeasurementSystemProfileRequest - 1090, // 1436: forge.Forge.RenameMeasurementSystemProfile:input_type -> measured_boot.RenameMeasurementSystemProfileRequest - 1091, // 1437: forge.Forge.ShowMeasurementSystemProfile:input_type -> measured_boot.ShowMeasurementSystemProfileRequest - 1092, // 1438: forge.Forge.ShowMeasurementSystemProfiles:input_type -> measured_boot.ShowMeasurementSystemProfilesRequest - 1093, // 1439: forge.Forge.ListMeasurementSystemProfiles:input_type -> measured_boot.ListMeasurementSystemProfilesRequest - 1094, // 1440: forge.Forge.ListMeasurementSystemProfileBundles:input_type -> measured_boot.ListMeasurementSystemProfileBundlesRequest - 1095, // 1441: forge.Forge.ListMeasurementSystemProfileMachines:input_type -> measured_boot.ListMeasurementSystemProfileMachinesRequest - 1096, // 1442: forge.Forge.CreateMeasurementReport:input_type -> measured_boot.CreateMeasurementReportRequest - 1097, // 1443: forge.Forge.DeleteMeasurementReport:input_type -> measured_boot.DeleteMeasurementReportRequest - 1098, // 1444: forge.Forge.PromoteMeasurementReport:input_type -> measured_boot.PromoteMeasurementReportRequest - 1099, // 1445: forge.Forge.RevokeMeasurementReport:input_type -> measured_boot.RevokeMeasurementReportRequest - 1100, // 1446: forge.Forge.ShowMeasurementReportForId:input_type -> measured_boot.ShowMeasurementReportForIdRequest - 1101, // 1447: forge.Forge.ShowMeasurementReportsForMachine:input_type -> measured_boot.ShowMeasurementReportsForMachineRequest - 1102, // 1448: forge.Forge.ShowMeasurementReports:input_type -> measured_boot.ShowMeasurementReportsRequest - 1103, // 1449: forge.Forge.ListMeasurementReport:input_type -> measured_boot.ListMeasurementReportRequest - 1104, // 1450: forge.Forge.MatchMeasurementReport:input_type -> measured_boot.MatchMeasurementReportRequest - 1105, // 1451: forge.Forge.ImportSiteMeasurements:input_type -> measured_boot.ImportSiteMeasurementsRequest - 1106, // 1452: forge.Forge.ExportSiteMeasurements:input_type -> measured_boot.ExportSiteMeasurementsRequest - 1107, // 1453: forge.Forge.AddMeasurementTrustedMachine:input_type -> measured_boot.AddMeasurementTrustedMachineRequest - 1108, // 1454: forge.Forge.RemoveMeasurementTrustedMachine:input_type -> measured_boot.RemoveMeasurementTrustedMachineRequest - 1109, // 1455: forge.Forge.AddMeasurementTrustedProfile:input_type -> measured_boot.AddMeasurementTrustedProfileRequest - 1110, // 1456: forge.Forge.RemoveMeasurementTrustedProfile:input_type -> measured_boot.RemoveMeasurementTrustedProfileRequest - 1111, // 1457: forge.Forge.ListMeasurementTrustedMachines:input_type -> measured_boot.ListMeasurementTrustedMachinesRequest - 1112, // 1458: forge.Forge.ListMeasurementTrustedProfiles:input_type -> measured_boot.ListMeasurementTrustedProfilesRequest - 1113, // 1459: forge.Forge.ListAttestationSummary:input_type -> measured_boot.ListAttestationSummaryRequest - 671, // 1460: forge.Forge.CreateNetworkSecurityGroup:input_type -> forge.CreateNetworkSecurityGroupRequest - 673, // 1461: forge.Forge.FindNetworkSecurityGroupIds:input_type -> forge.FindNetworkSecurityGroupIdsRequest - 675, // 1462: forge.Forge.FindNetworkSecurityGroupsByIds:input_type -> forge.FindNetworkSecurityGroupsByIdsRequest - 678, // 1463: forge.Forge.UpdateNetworkSecurityGroup:input_type -> forge.UpdateNetworkSecurityGroupRequest - 679, // 1464: forge.Forge.DeleteNetworkSecurityGroup:input_type -> forge.DeleteNetworkSecurityGroupRequest - 685, // 1465: forge.Forge.GetNetworkSecurityGroupPropagationStatus:input_type -> forge.GetNetworkSecurityGroupPropagationStatusRequest - 688, // 1466: forge.Forge.GetNetworkSecurityGroupAttachments:input_type -> forge.GetNetworkSecurityGroupAttachmentsRequest - 547, // 1467: forge.Forge.CreateOsImage:input_type -> forge.OsImageAttributes - 551, // 1468: forge.Forge.DeleteOsImage:input_type -> forge.DeleteOsImageRequest - 549, // 1469: forge.Forge.ListOsImage:input_type -> forge.ListOsImageRequest - 1002, // 1470: forge.Forge.GetOsImage:input_type -> common.UUID - 547, // 1471: forge.Forge.UpdateOsImage:input_type -> forge.OsImageAttributes - 553, // 1472: forge.Forge.GetIpxeTemplate:input_type -> forge.GetIpxeTemplateRequest - 554, // 1473: forge.Forge.ListIpxeTemplates:input_type -> forge.ListIpxeTemplatesRequest - 569, // 1474: forge.Forge.RebootCompleted:input_type -> forge.MachineRebootCompletedRequest - 574, // 1475: forge.Forge.PersistValidationResult:input_type -> forge.MachineValidationResultPostRequest - 576, // 1476: forge.Forge.GetMachineValidationResults:input_type -> forge.MachineValidationGetRequest - 571, // 1477: forge.Forge.MachineValidationCompleted:input_type -> forge.MachineValidationCompletedRequest - 579, // 1478: forge.Forge.MachineSetAutoUpdate:input_type -> forge.MachineSetAutoUpdateRequest - 581, // 1479: forge.Forge.GetMachineValidationExternalConfig:input_type -> forge.GetMachineValidationExternalConfigRequest - 584, // 1480: forge.Forge.GetMachineValidationExternalConfigs:input_type -> forge.GetMachineValidationExternalConfigsRequest - 586, // 1481: forge.Forge.AddUpdateMachineValidationExternalConfig:input_type -> forge.AddUpdateMachineValidationExternalConfigRequest - 603, // 1482: forge.Forge.GetMachineValidationRuns:input_type -> forge.MachineValidationRunListGetRequest - 604, // 1483: forge.Forge.FindMachineValidationRunItemIds:input_type -> forge.MachineValidationRunItemSearchFilter - 606, // 1484: forge.Forge.FindMachineValidationRunItemsByIds:input_type -> forge.MachineValidationRunItemsByIdsRequest - 609, // 1485: forge.Forge.GetMachineValidationAttempt:input_type -> forge.MachineValidationAttemptGetRequest - 611, // 1486: forge.Forge.HeartbeatMachineValidationRun:input_type -> forge.MachineValidationHeartbeatRequest - 587, // 1487: forge.Forge.RemoveMachineValidationExternalConfig:input_type -> forge.RemoveMachineValidationExternalConfigRequest - 615, // 1488: forge.Forge.GetMachineValidationTests:input_type -> forge.MachineValidationTestsGetRequest - 617, // 1489: forge.Forge.AddMachineValidationTest:input_type -> forge.MachineValidationTestAddRequest - 616, // 1490: forge.Forge.UpdateMachineValidationTest:input_type -> forge.MachineValidationTestUpdateRequest - 620, // 1491: forge.Forge.MachineValidationTestVerfied:input_type -> forge.MachineValidationTestVerfiedRequest - 624, // 1492: forge.Forge.MachineValidationTestNextVersion:input_type -> forge.MachineValidationTestNextVersionRequest - 625, // 1493: forge.Forge.MachineValidationTestEnableDisableTest:input_type -> forge.MachineValidationTestEnableDisableTestRequest - 627, // 1494: forge.Forge.UpdateMachineValidationRun:input_type -> forge.MachineValidationRunRequest - 421, // 1495: forge.Forge.AdminBmcReset:input_type -> forge.AdminBmcResetRequest - 598, // 1496: forge.Forge.AdminPowerControl:input_type -> forge.AdminPowerControlRequest - 379, // 1497: forge.Forge.DisableSecureBoot:input_type -> forge.BmcEndpointRequest - 411, // 1498: forge.Forge.Lockdown:input_type -> forge.LockdownRequest - 413, // 1499: forge.Forge.LockdownStatus:input_type -> forge.LockdownStatusRequest - 415, // 1500: forge.Forge.MachineSetup:input_type -> forge.MachineSetupRequest - 417, // 1501: forge.Forge.SetDpuFirstBootOrder:input_type -> forge.SetDpuFirstBootOrderRequest - 794, // 1502: forge.Forge.CreateBmcUser:input_type -> forge.CreateBmcUserRequest - 796, // 1503: forge.Forge.DeleteBmcUser:input_type -> forge.DeleteBmcUserRequest - 798, // 1504: forge.Forge.SetBmcRootPassword:input_type -> forge.SetBmcRootPasswordRequest - 800, // 1505: forge.Forge.ProbeBmcVendor:input_type -> forge.ProbeBmcVendorRequest - 423, // 1506: forge.Forge.EnableInfiniteBoot:input_type -> forge.EnableInfiniteBootRequest - 425, // 1507: forge.Forge.IsInfiniteBootEnabled:input_type -> forge.IsInfiniteBootEnabledRequest - 588, // 1508: forge.Forge.OnDemandMachineValidation:input_type -> forge.MachineValidationOnDemandRequest - 596, // 1509: forge.Forge.OnDemandRackMaintenance:input_type -> forge.RackMaintenanceOnDemandRequest - 126, // 1510: forge.Forge.TpmAddCaCert:input_type -> forge.TpmCaCert - 1064, // 1511: forge.Forge.TpmShowCaCerts:input_type -> google.protobuf.Empty - 1064, // 1512: forge.Forge.TpmShowUnmatchedEkCerts:input_type -> google.protobuf.Empty - 123, // 1513: forge.Forge.TpmDeleteCaCert:input_type -> forge.TpmCaCertId - 654, // 1514: forge.Forge.RedfishBrowse:input_type -> forge.RedfishBrowseRequest - 656, // 1515: forge.Forge.RedfishListActions:input_type -> forge.RedfishListActionsRequest - 661, // 1516: forge.Forge.RedfishCreateAction:input_type -> forge.RedfishCreateActionRequest - 663, // 1517: forge.Forge.RedfishApproveAction:input_type -> forge.RedfishActionID - 663, // 1518: forge.Forge.RedfishApplyAction:input_type -> forge.RedfishActionID - 663, // 1519: forge.Forge.RedfishCancelAction:input_type -> forge.RedfishActionID - 667, // 1520: forge.Forge.UfmBrowse:input_type -> forge.UfmBrowseRequest - 691, // 1521: forge.Forge.GetDesiredFirmwareVersions:input_type -> forge.GetDesiredFirmwareVersionsRequest - 804, // 1522: forge.Forge.UpsertHostFirmwareConfig:input_type -> forge.UpsertHostFirmwareConfigRequest - 805, // 1523: forge.Forge.DeleteHostFirmwareConfig:input_type -> forge.DeleteHostFirmwareConfigRequest - 707, // 1524: forge.Forge.CreateSku:input_type -> forge.SkuList - 992, // 1525: forge.Forge.GenerateSkuFromMachine:input_type -> common.MachineId - 992, // 1526: forge.Forge.VerifySkuForMachine:input_type -> common.MachineId - 705, // 1527: forge.Forge.AssignSkuToMachine:input_type -> forge.SkuMachinePair - 706, // 1528: forge.Forge.RemoveSkuAssociation:input_type -> forge.RemoveSkuRequest - 708, // 1529: forge.Forge.DeleteSku:input_type -> forge.SkuIdList - 1064, // 1530: forge.Forge.GetAllSkuIds:input_type -> google.protobuf.Empty - 710, // 1531: forge.Forge.FindSkusByIds:input_type -> forge.SkusByIdsRequest - 720, // 1532: forge.Forge.UpdateSkuMetadata:input_type -> forge.SkuUpdateMetadataRequest - 704, // 1533: forge.Forge.ReplaceSku:input_type -> forge.Sku - 391, // 1534: forge.Forge.GetManagedHostQuarantineState:input_type -> forge.GetManagedHostQuarantineStateRequest - 393, // 1535: forge.Forge.SetManagedHostQuarantineState:input_type -> forge.SetManagedHostQuarantineStateRequest - 395, // 1536: forge.Forge.ClearManagedHostQuarantineState:input_type -> forge.ClearManagedHostQuarantineStateRequest - 992, // 1537: forge.Forge.ResetHostReprovisioning:input_type -> common.MachineId - 382, // 1538: forge.Forge.CopyBfbToDpuRshim:input_type -> forge.CopyBfbToDpuRshimRequest - 1064, // 1539: forge.Forge.GetAllDpaInterfaceIds:input_type -> google.protobuf.Empty - 715, // 1540: forge.Forge.FindDpaInterfacesByIds:input_type -> forge.DpaInterfacesByIdsRequest - 713, // 1541: forge.Forge.CreateDpaInterface:input_type -> forge.DpaInterfaceCreationRequest - 713, // 1542: forge.Forge.EnsureDpaInterface:input_type -> forge.DpaInterfaceCreationRequest - 718, // 1543: forge.Forge.DeleteDpaInterface:input_type -> forge.DpaInterfaceDeletionRequest - 721, // 1544: forge.Forge.GetPowerOptions:input_type -> forge.PowerOptionRequest - 722, // 1545: forge.Forge.UpdatePowerOption:input_type -> forge.PowerOptionUpdateRequest - 379, // 1546: forge.Forge.AllowIngestionAndPowerOn:input_type -> forge.BmcEndpointRequest - 379, // 1547: forge.Forge.DetermineMachineIngestionState:input_type -> forge.BmcEndpointRequest - 741, // 1548: forge.Forge.FindRackIds:input_type -> forge.RackSearchFilter - 743, // 1549: forge.Forge.FindRacksByIds:input_type -> forge.RacksByIdsRequest - 738, // 1550: forge.Forge.GetRack:input_type -> forge.GetRackRequest - 748, // 1551: forge.Forge.DeleteRack:input_type -> forge.DeleteRackRequest - 749, // 1552: forge.Forge.AdminForceDeleteRack:input_type -> forge.AdminForceDeleteRackRequest - 756, // 1553: forge.Forge.GetRackProfile:input_type -> forge.GetRackProfileRequest - 727, // 1554: forge.Forge.CreateComputeAllocation:input_type -> forge.CreateComputeAllocationRequest - 729, // 1555: forge.Forge.FindComputeAllocationIds:input_type -> forge.FindComputeAllocationIdsRequest - 731, // 1556: forge.Forge.FindComputeAllocationsByIds:input_type -> forge.FindComputeAllocationsByIdsRequest - 734, // 1557: forge.Forge.UpdateComputeAllocation:input_type -> forge.UpdateComputeAllocationRequest - 735, // 1558: forge.Forge.DeleteComputeAllocation:input_type -> forge.DeleteComputeAllocationRequest - 802, // 1559: forge.Forge.SetFirmwareUpdateTimeWindow:input_type -> forge.SetFirmwareUpdateTimeWindowRequest - 811, // 1560: forge.Forge.ListHostFirmware:input_type -> forge.ListHostFirmwareRequest - 1114, // 1561: forge.Forge.PublishMlxDeviceReport:input_type -> mlx_device.PublishMlxDeviceReportRequest - 1115, // 1562: forge.Forge.PublishMlxObservationReport:input_type -> mlx_device.PublishMlxObservationReportRequest - 814, // 1563: forge.Forge.TrimTable:input_type -> forge.TrimTableRequest - 1064, // 1564: forge.Forge.ListNvlinkNmxcEndpoints:input_type -> google.protobuf.Empty - 816, // 1565: forge.Forge.CreateNvlinkNmxcEndpoint:input_type -> forge.NvlinkNmxcEndpoint - 816, // 1566: forge.Forge.UpdateNvlinkNmxcEndpoint:input_type -> forge.NvlinkNmxcEndpoint - 818, // 1567: forge.Forge.DeleteNvlinkNmxcEndpoint:input_type -> forge.DeleteNvlinkNmxcEndpointRequest - 819, // 1568: forge.Forge.CreateRemediation:input_type -> forge.CreateRemediationRequest - 824, // 1569: forge.Forge.ApproveRemediation:input_type -> forge.ApproveRemediationRequest - 825, // 1570: forge.Forge.RevokeRemediation:input_type -> forge.RevokeRemediationRequest - 826, // 1571: forge.Forge.EnableRemediation:input_type -> forge.EnableRemediationRequest - 827, // 1572: forge.Forge.DisableRemediation:input_type -> forge.DisableRemediationRequest - 1064, // 1573: forge.Forge.FindRemediationIds:input_type -> google.protobuf.Empty - 821, // 1574: forge.Forge.FindRemediationsByIds:input_type -> forge.RemediationIdList - 828, // 1575: forge.Forge.FindAppliedRemediationIds:input_type -> forge.FindAppliedRemediationIdsRequest - 830, // 1576: forge.Forge.FindAppliedRemediations:input_type -> forge.FindAppliedRemediationsRequest - 833, // 1577: forge.Forge.GetNextRemediationForMachine:input_type -> forge.GetNextRemediationForMachineRequest - 835, // 1578: forge.Forge.RemediationApplied:input_type -> forge.RemediationAppliedRequest - 837, // 1579: forge.Forge.SetPrimaryDpu:input_type -> forge.SetPrimaryDpuRequest - 838, // 1580: forge.Forge.SetPrimaryInterface:input_type -> forge.SetPrimaryInterfaceRequest - 844, // 1581: forge.Forge.CreateDpuExtensionService:input_type -> forge.CreateDpuExtensionServiceRequest - 845, // 1582: forge.Forge.UpdateDpuExtensionService:input_type -> forge.UpdateDpuExtensionServiceRequest - 846, // 1583: forge.Forge.DeleteDpuExtensionService:input_type -> forge.DeleteDpuExtensionServiceRequest - 848, // 1584: forge.Forge.FindDpuExtensionServiceIds:input_type -> forge.DpuExtensionServiceSearchFilter - 850, // 1585: forge.Forge.FindDpuExtensionServicesByIds:input_type -> forge.DpuExtensionServicesByIdsRequest - 852, // 1586: forge.Forge.GetDpuExtensionServiceVersionsInfo:input_type -> forge.GetDpuExtensionServiceVersionsInfoRequest - 854, // 1587: forge.Forge.FindInstancesByDpuExtensionService:input_type -> forge.FindInstancesByDpuExtensionServiceRequest - 98, // 1588: forge.Forge.TriggerMachineAttestation:input_type -> forge.SpdmMachineAttestationTriggerRequest - 992, // 1589: forge.Forge.CancelMachineAttestation:input_type -> common.MachineId - 99, // 1590: forge.Forge.ListAttestationMachines:input_type -> forge.SpdmListAttestationMachinesRequest - 992, // 1591: forge.Forge.GetAttestationMachine:input_type -> common.MachineId - 101, // 1592: forge.Forge.SignMachineIdentity:input_type -> forge.MachineIdentityRequest - 103, // 1593: forge.Forge.GetTenantIdentityConfiguration:input_type -> forge.GetTenantIdentityConfigRequest - 106, // 1594: forge.Forge.SetTenantIdentityConfiguration:input_type -> forge.SetTenantIdentityConfigRequest - 103, // 1595: forge.Forge.DeleteTenantIdentityConfiguration:input_type -> forge.GetTenantIdentityConfigRequest - 111, // 1596: forge.Forge.GetTokenDelegation:input_type -> forge.GetTokenDelegationRequest - 113, // 1597: forge.Forge.SetTokenDelegation:input_type -> forge.TokenDelegationRequest - 111, // 1598: forge.Forge.DeleteTokenDelegation:input_type -> forge.GetTokenDelegationRequest - 114, // 1599: forge.Forge.ReencryptTenantIdentitySecrets:input_type -> forge.ReencryptTenantIdentitySecretsRequest - 119, // 1600: forge.Forge.GetJWKS:input_type -> forge.JwksRequest - 120, // 1601: forge.Forge.GetOpenIDConfiguration:input_type -> forge.OpenIdConfigRequest - 861, // 1602: forge.Forge.ScoutStream:input_type -> forge.ScoutStreamApiBoundMessage - 864, // 1603: forge.Forge.ScoutStreamShowConnections:input_type -> forge.ScoutStreamShowConnectionsRequest - 866, // 1604: forge.Forge.ScoutStreamDisconnect:input_type -> forge.ScoutStreamDisconnectRequest - 868, // 1605: forge.Forge.ScoutStreamPing:input_type -> forge.ScoutStreamAdminPingRequest - 1116, // 1606: forge.Forge.MlxAdminProfileSync:input_type -> mlx_device.MlxAdminProfileSyncRequest - 1117, // 1607: forge.Forge.MlxAdminProfileShow:input_type -> mlx_device.MlxAdminProfileShowRequest - 1118, // 1608: forge.Forge.MlxAdminProfileCompare:input_type -> mlx_device.MlxAdminProfileCompareRequest - 1119, // 1609: forge.Forge.MlxAdminProfileList:input_type -> mlx_device.MlxAdminProfileListRequest - 1120, // 1610: forge.Forge.MlxAdminLockdownLock:input_type -> mlx_device.MlxAdminLockdownLockRequest - 1121, // 1611: forge.Forge.MlxAdminLockdownUnlock:input_type -> mlx_device.MlxAdminLockdownUnlockRequest - 1122, // 1612: forge.Forge.MlxAdminLockdownStatus:input_type -> mlx_device.MlxAdminLockdownStatusRequest - 1123, // 1613: forge.Forge.MlxAdminShowDevice:input_type -> mlx_device.MlxAdminDeviceInfoRequest - 1124, // 1614: forge.Forge.MlxAdminShowMachine:input_type -> mlx_device.MlxAdminDeviceReportRequest - 1125, // 1615: forge.Forge.MlxAdminRegistryList:input_type -> mlx_device.MlxAdminRegistryListRequest - 1126, // 1616: forge.Forge.MlxAdminRegistryShow:input_type -> mlx_device.MlxAdminRegistryShowRequest - 1127, // 1617: forge.Forge.MlxAdminConfigQuery:input_type -> mlx_device.MlxAdminConfigQueryRequest - 1128, // 1618: forge.Forge.MlxAdminConfigSet:input_type -> mlx_device.MlxAdminConfigSetRequest - 1129, // 1619: forge.Forge.MlxAdminConfigSync:input_type -> mlx_device.MlxAdminConfigSyncRequest - 1130, // 1620: forge.Forge.MlxAdminConfigCompare:input_type -> mlx_device.MlxAdminConfigCompareRequest - 778, // 1621: forge.Forge.FindNVLinkPartitionIds:input_type -> forge.NVLinkPartitionSearchFilter - 779, // 1622: forge.Forge.FindNVLinkPartitionsByIds:input_type -> forge.NVLinkPartitionsByIdsRequest - 156, // 1623: forge.Forge.NVLinkPartitionsForTenant:input_type -> forge.TenantSearchQuery - 789, // 1624: forge.Forge.FindNVLinkLogicalPartitionIds:input_type -> forge.NVLinkLogicalPartitionSearchFilter - 790, // 1625: forge.Forge.FindNVLinkLogicalPartitionsByIds:input_type -> forge.NVLinkLogicalPartitionsByIdsRequest - 786, // 1626: forge.Forge.CreateNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionCreationRequest - 792, // 1627: forge.Forge.UpdateNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionUpdateRequest - 787, // 1628: forge.Forge.DeleteNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionDeletionRequest - 156, // 1629: forge.Forge.NVLinkLogicalPartitionsForTenant:input_type -> forge.TenantSearchQuery - 882, // 1630: forge.Forge.GetMachinePositionInfo:input_type -> forge.MachinePositionQuery - 772, // 1631: forge.Forge.NmxcBrowse:input_type -> forge.NmxcBrowseRequest - 885, // 1632: forge.Forge.ModifyDPFState:input_type -> forge.ModifyDPFStateRequest - 887, // 1633: forge.Forge.GetDPFState:input_type -> forge.GetDPFStateRequest - 888, // 1634: forge.Forge.GetDPFHostSnapshot:input_type -> forge.GetDPFHostSnapshotRequest - 890, // 1635: forge.Forge.GetDPFServiceVersions:input_type -> forge.GetDPFServiceVersionsRequest - 899, // 1636: forge.Forge.ComponentPowerControl:input_type -> forge.ComponentPowerControlRequest - 901, // 1637: forge.Forge.ComponentConfigureSwitchCertificate:input_type -> forge.ComponentConfigureSwitchCertificateRequest - 896, // 1638: forge.Forge.GetComponentInventory:input_type -> forge.GetComponentInventoryRequest - 908, // 1639: forge.Forge.UpdateComponentFirmware:input_type -> forge.UpdateComponentFirmwareRequest - 910, // 1640: forge.Forge.GetComponentFirmwareStatus:input_type -> forge.GetComponentFirmwareStatusRequest - 912, // 1641: forge.Forge.ListComponentFirmwareVersions:input_type -> forge.ListComponentFirmwareVersionsRequest - 929, // 1642: forge.Forge.CreateOperatingSystem:input_type -> forge.CreateOperatingSystemRequest - 1010, // 1643: forge.Forge.GetOperatingSystem:input_type -> common.OperatingSystemId - 932, // 1644: forge.Forge.UpdateOperatingSystem:input_type -> forge.UpdateOperatingSystemRequest - 933, // 1645: forge.Forge.DeleteOperatingSystem:input_type -> forge.DeleteOperatingSystemRequest - 935, // 1646: forge.Forge.FindOperatingSystemIds:input_type -> forge.OperatingSystemSearchFilter - 937, // 1647: forge.Forge.FindOperatingSystemsByIds:input_type -> forge.OperatingSystemsByIdsRequest - 939, // 1648: forge.Forge.GetOperatingSystemCachableIpxeTemplateArtifacts:input_type -> forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest - 942, // 1649: forge.Forge.UpdateOperatingSystemCachableIpxeTemplateArtifacts:input_type -> forge.UpdateOperatingSystemIpxeTemplateArtifactRequest - 944, // 1650: forge.Forge.ReWrapSecrets:input_type -> forge.ReWrapSecretsRequest - 142, // 1651: forge.Forge.Version:output_type -> forge.BuildInfo - 1050, // 1652: forge.Forge.CreateDomain:output_type -> dns.Domain - 1050, // 1653: forge.Forge.UpdateDomain:output_type -> dns.Domain - 1131, // 1654: forge.Forge.DeleteDomain:output_type -> dns.DomainDeletionResult - 1132, // 1655: forge.Forge.FindDomain:output_type -> dns.DomainList - 876, // 1656: forge.Forge.CreateDomainLegacy:output_type -> forge.DomainLegacy - 876, // 1657: forge.Forge.UpdateDomainLegacy:output_type -> forge.DomainLegacy - 879, // 1658: forge.Forge.DeleteDomainLegacy:output_type -> forge.DomainDeletionResultLegacy - 877, // 1659: forge.Forge.FindDomainLegacy:output_type -> forge.DomainListLegacy - 159, // 1660: forge.Forge.CreateVpc:output_type -> forge.Vpc - 162, // 1661: forge.Forge.UpdateVpc:output_type -> forge.VpcUpdateResult - 164, // 1662: forge.Forge.UpdateVpcVirtualization:output_type -> forge.VpcUpdateVirtualizationResult - 166, // 1663: forge.Forge.DeleteVpc:output_type -> forge.VpcDeletionResult - 154, // 1664: forge.Forge.FindVpcIds:output_type -> forge.VpcIdList - 167, // 1665: forge.Forge.FindVpcsByIds:output_type -> forge.VpcList - 917, // 1666: forge.Forge.CreateSpxPartition:output_type -> forge.SpxPartition - 920, // 1667: forge.Forge.DeleteSpxPartition:output_type -> forge.SpxPartitionDeletionResult - 918, // 1668: forge.Forge.FindSpxPartitionIds:output_type -> forge.SpxPartitionIdList - 922, // 1669: forge.Forge.FindSpxPartitionsByIds:output_type -> forge.SpxPartitionList - 168, // 1670: forge.Forge.CreateVpcPrefix:output_type -> forge.VpcPrefix - 174, // 1671: forge.Forge.SearchVpcPrefixes:output_type -> forge.VpcPrefixIdList - 175, // 1672: forge.Forge.GetVpcPrefixes:output_type -> forge.VpcPrefixList - 168, // 1673: forge.Forge.UpdateVpcPrefix:output_type -> forge.VpcPrefix - 178, // 1674: forge.Forge.DeleteVpcPrefix:output_type -> forge.VpcPrefixDeletionResult - 180, // 1675: forge.Forge.CreateVpcPeering:output_type -> forge.VpcPeering - 181, // 1676: forge.Forge.FindVpcPeeringIds:output_type -> forge.VpcPeeringIdList - 182, // 1677: forge.Forge.FindVpcPeeringsByIds:output_type -> forge.VpcPeeringList - 187, // 1678: forge.Forge.DeleteVpcPeering:output_type -> forge.VpcPeeringDeletionResult - 254, // 1679: forge.Forge.FindNetworkSegmentIds:output_type -> forge.NetworkSegmentIdList - 365, // 1680: forge.Forge.FindNetworkSegmentsByIds:output_type -> forge.NetworkSegmentList - 246, // 1681: forge.Forge.CreateNetworkSegment:output_type -> forge.NetworkSegment - 246, // 1682: forge.Forge.AttachNetworkSegmentToVpc:output_type -> forge.NetworkSegment - 250, // 1683: forge.Forge.DeleteNetworkSegment:output_type -> forge.NetworkSegmentDeletionResult - 365, // 1684: forge.Forge.NetworkSegmentsForVpc:output_type -> forge.NetworkSegmentList - 198, // 1685: forge.Forge.FindIBPartitionIds:output_type -> forge.IBPartitionIdList - 191, // 1686: forge.Forge.FindIBPartitionsByIds:output_type -> forge.IBPartitionList - 190, // 1687: forge.Forge.CreateIBPartition:output_type -> forge.IBPartition - 190, // 1688: forge.Forge.UpdateIBPartition:output_type -> forge.IBPartition - 195, // 1689: forge.Forge.DeleteIBPartition:output_type -> forge.IBPartitionDeletionResult - 191, // 1690: forge.Forge.IBPartitionsForTenant:output_type -> forge.IBPartitionList - 202, // 1691: forge.Forge.FindPowerShelves:output_type -> forge.PowerShelfList - 895, // 1692: forge.Forge.FindPowerShelfIds:output_type -> forge.PowerShelfIdList - 202, // 1693: forge.Forge.FindPowerShelvesByIds:output_type -> forge.PowerShelfList - 205, // 1694: forge.Forge.DeletePowerShelf:output_type -> forge.PowerShelfDeletionResult - 927, // 1695: forge.Forge.AdminForceDeletePowerShelf:output_type -> forge.AdminForceDeletePowerShelfResponse - 1064, // 1696: forge.Forge.SetPowerShelfMaintenance:output_type -> google.protobuf.Empty - 222, // 1697: forge.Forge.FindSwitches:output_type -> forge.SwitchList - 894, // 1698: forge.Forge.FindSwitchIds:output_type -> forge.SwitchIdList - 222, // 1699: forge.Forge.FindSwitchesByIds:output_type -> forge.SwitchList - 225, // 1700: forge.Forge.DeleteSwitch:output_type -> forge.SwitchDeletionResult - 925, // 1701: forge.Forge.AdminForceDeleteSwitch:output_type -> forge.AdminForceDeleteSwitchResponse - 242, // 1702: forge.Forge.FindIBFabricIds:output_type -> forge.IBFabricIdList - 295, // 1703: forge.Forge.AllocateInstance:output_type -> forge.Instance - 268, // 1704: forge.Forge.AllocateInstances:output_type -> forge.BatchInstanceAllocationResponse - 313, // 1705: forge.Forge.ReleaseInstance:output_type -> forge.InstanceReleaseResult - 295, // 1706: forge.Forge.UpdateInstanceOperatingSystem:output_type -> forge.Instance - 295, // 1707: forge.Forge.UpdateInstanceConfig:output_type -> forge.Instance - 264, // 1708: forge.Forge.FindInstanceIds:output_type -> forge.InstanceIdList - 260, // 1709: forge.Forge.FindInstancesByIds:output_type -> forge.InstanceList - 260, // 1710: forge.Forge.FindInstanceByMachineID:output_type -> forge.InstanceList - 386, // 1711: forge.Forge.GetManagedHostNetworkConfig:output_type -> forge.ManagedHostNetworkConfigResponse - 1064, // 1712: forge.Forge.RecordDpuNetworkStatus:output_type -> google.protobuf.Empty - 466, // 1713: forge.Forge.ListMachineHealthReports:output_type -> forge.ListHealthReportResponse - 1064, // 1714: forge.Forge.InsertMachineHealthReport:output_type -> google.protobuf.Empty - 1064, // 1715: forge.Forge.RemoveMachineHealthReport:output_type -> google.protobuf.Empty - 466, // 1716: forge.Forge.ListRackHealthReports:output_type -> forge.ListHealthReportResponse - 1064, // 1717: forge.Forge.InsertRackHealthReport:output_type -> google.protobuf.Empty - 1064, // 1718: forge.Forge.RemoveRackHealthReport:output_type -> google.protobuf.Empty - 466, // 1719: forge.Forge.ListSwitchHealthReports:output_type -> forge.ListHealthReportResponse - 1064, // 1720: forge.Forge.InsertSwitchHealthReport:output_type -> google.protobuf.Empty - 1064, // 1721: forge.Forge.RemoveSwitchHealthReport:output_type -> google.protobuf.Empty - 466, // 1722: forge.Forge.ListPowerShelfHealthReports:output_type -> forge.ListHealthReportResponse - 1064, // 1723: forge.Forge.InsertPowerShelfHealthReport:output_type -> google.protobuf.Empty - 1064, // 1724: forge.Forge.RemovePowerShelfHealthReport:output_type -> google.protobuf.Empty - 466, // 1725: forge.Forge.ListNVLinkDomainHealthReports:output_type -> forge.ListHealthReportResponse - 1064, // 1726: forge.Forge.InsertNVLinkDomainHealthReport:output_type -> google.protobuf.Empty - 1064, // 1727: forge.Forge.RemoveNVLinkDomainHealthReport:output_type -> google.protobuf.Empty - 466, // 1728: forge.Forge.ListHealthReportOverrides:output_type -> forge.ListHealthReportResponse - 1064, // 1729: forge.Forge.InsertHealthReportOverride:output_type -> google.protobuf.Empty - 1064, // 1730: forge.Forge.RemoveHealthReportOverride:output_type -> google.protobuf.Empty - 405, // 1731: forge.Forge.DpuAgentUpgradeCheck:output_type -> forge.DpuAgentUpgradeCheckResponse - 407, // 1732: forge.Forge.DpuAgentUpgradePolicyAction:output_type -> forge.DpuAgentUpgradePolicyResponse - 1133, // 1733: forge.Forge.LookupRecord:output_type -> dns.DnsResourceRecordLookupResponse - 1134, // 1734: forge.Forge.GetAllDomains:output_type -> dns.GetAllDomainsResponse - 1135, // 1735: forge.Forge.GetAllDomainMetadata:output_type -> dns.DomainMetadataResponse - 259, // 1736: forge.Forge.InvokeInstancePower:output_type -> forge.InstancePowerResult - 432, // 1737: forge.Forge.ForgeAgentControl:output_type -> forge.ForgeAgentControlResponse - 439, // 1738: forge.Forge.DiscoverMachine:output_type -> forge.MachineDiscoveryResult - 438, // 1739: forge.Forge.RenewMachineCertificate:output_type -> forge.MachineCertificateResult - 440, // 1740: forge.Forge.DiscoveryCompleted:output_type -> forge.MachineDiscoveryCompletedResponse - 441, // 1741: forge.Forge.CleanupMachineCompleted:output_type -> forge.MachineCleanupResult - 443, // 1742: forge.Forge.ReportForgeScoutError:output_type -> forge.ForgeScoutErrorReportResult - 364, // 1743: forge.Forge.DiscoverDhcp:output_type -> forge.DhcpRecord - 363, // 1744: forge.Forge.ExpireDhcpLease:output_type -> forge.ExpireDhcpLeaseResponse - 332, // 1745: forge.Forge.AssignStaticAddress:output_type -> forge.AssignStaticAddressResponse - 334, // 1746: forge.Forge.RemoveStaticAddress:output_type -> forge.RemoveStaticAddressResponse - 337, // 1747: forge.Forge.FindInterfaceAddresses:output_type -> forge.FindInterfaceAddressesResponse - 327, // 1748: forge.Forge.FindInterfaces:output_type -> forge.InterfaceList - 1064, // 1749: forge.Forge.DeleteInterface:output_type -> google.protobuf.Empty - 507, // 1750: forge.Forge.FindIpAddress:output_type -> forge.FindIpAddressResponse - 1051, // 1751: forge.Forge.FindMachineIds:output_type -> common.MachineIdList - 328, // 1752: forge.Forge.FindMachinesByIds:output_type -> forge.MachineList - 317, // 1753: forge.Forge.FindMachineStateHistories:output_type -> forge.MachineStateHistories - 320, // 1754: forge.Forge.FindMachineHealthHistories:output_type -> forge.HealthHistories - 229, // 1755: forge.Forge.FindPowerShelfStateHistories:output_type -> forge.StateHistories - 229, // 1756: forge.Forge.FindRackStateHistories:output_type -> forge.StateHistories - 229, // 1757: forge.Forge.FindSwitchStateHistories:output_type -> forge.StateHistories - 229, // 1758: forge.Forge.FindNetworkSegmentStateHistories:output_type -> forge.StateHistories - 229, // 1759: forge.Forge.FindVpcPrefixStateHistories:output_type -> forge.StateHistories - 326, // 1760: forge.Forge.FindTenantOrganizationIds:output_type -> forge.TenantOrganizationIdList - 325, // 1761: forge.Forge.FindTenantsByOrganizationIds:output_type -> forge.TenantList - 530, // 1762: forge.Forge.FindConnectedDevicesByDpuMachineIds:output_type -> forge.ConnectedDeviceList - 534, // 1763: forge.Forge.FindMachineIdsByBmcIps:output_type -> forge.MachineIdBmcIpPairs - 533, // 1764: forge.Forge.FindMacAddressByBmcIp:output_type -> forge.MacAddressBmcIp - 531, // 1765: forge.Forge.FindBmcIps:output_type -> forge.BmcIpList - 509, // 1766: forge.Forge.IdentifyUuid:output_type -> forge.IdentifyUuidResponse - 512, // 1767: forge.Forge.IdentifyMac:output_type -> forge.IdentifyMacResponse - 514, // 1768: forge.Forge.IdentifySerial:output_type -> forge.IdentifySerialResponse - 428, // 1769: forge.Forge.GetBMCMetaData:output_type -> forge.BMCMetaDataGetResponse - 430, // 1770: forge.Forge.UpdateMachineCredentials:output_type -> forge.MachineCredentialsUpdateResponse - 445, // 1771: forge.Forge.GetPxeInstructions:output_type -> forge.PxeInstructions - 449, // 1772: forge.Forge.GetCloudInitInstructions:output_type -> forge.CloudInitInstructions - 145, // 1773: forge.Forge.Echo:output_type -> forge.EchoResponse - 476, // 1774: forge.Forge.CreateTenant:output_type -> forge.CreateTenantResponse - 480, // 1775: forge.Forge.FindTenant:output_type -> forge.FindTenantResponse - 478, // 1776: forge.Forge.UpdateTenant:output_type -> forge.UpdateTenantResponse - 486, // 1777: forge.Forge.CreateTenantKeyset:output_type -> forge.CreateTenantKeysetResponse - 493, // 1778: forge.Forge.FindTenantKeysetIds:output_type -> forge.TenantKeysetIdList - 487, // 1779: forge.Forge.FindTenantKeysetsByIds:output_type -> forge.TenantKeySetList - 489, // 1780: forge.Forge.UpdateTenantKeyset:output_type -> forge.UpdateTenantKeysetResponse - 491, // 1781: forge.Forge.DeleteTenantKeyset:output_type -> forge.DeleteTenantKeysetResponse - 496, // 1782: forge.Forge.ValidateTenantPublicKey:output_type -> forge.ValidateTenantPublicKeyResponse - 370, // 1783: forge.Forge.GetBmcCredentials:output_type -> forge.GetBmcCredentialsResponse - 370, // 1784: forge.Forge.GetSwitchNvosCredentials:output_type -> forge.GetBmcCredentialsResponse - 403, // 1785: forge.Forge.GetAllManagedHostNetworkStatus:output_type -> forge.ManagedHostNetworkStatusResponse - 1136, // 1786: forge.Forge.GetSiteExplorationReport:output_type -> site_explorer.SiteExplorationReport - 1137, // 1787: forge.Forge.GetSiteExplorerLastRun:output_type -> site_explorer.SiteExplorerLastRunResponse - 1064, // 1788: forge.Forge.ClearSiteExplorationError:output_type -> google.protobuf.Empty - 613, // 1789: forge.Forge.IsBmcInManagedHost:output_type -> forge.IsBmcInManagedHostResponse - 614, // 1790: forge.Forge.BmcCredentialStatus:output_type -> forge.BmcCredentialStatusResponse - 1052, // 1791: forge.Forge.Explore:output_type -> site_explorer.EndpointExplorationReport - 1064, // 1792: forge.Forge.ReExploreEndpoint:output_type -> google.protobuf.Empty - 1138, // 1793: forge.Forge.RefreshEndpointReport:output_type -> site_explorer.ExploredEndpoint - 378, // 1794: forge.Forge.DeleteExploredEndpoint:output_type -> forge.DeleteExploredEndpointResponse - 1064, // 1795: forge.Forge.PauseExploredEndpointRemediation:output_type -> google.protobuf.Empty - 1139, // 1796: forge.Forge.FindExploredEndpointIds:output_type -> site_explorer.ExploredEndpointIdList - 1140, // 1797: forge.Forge.FindExploredEndpointsByIds:output_type -> site_explorer.ExploredEndpointList - 1141, // 1798: forge.Forge.FindExploredManagedHostIds:output_type -> site_explorer.ExploredManagedHostIdList - 1142, // 1799: forge.Forge.FindExploredManagedHostsByIds:output_type -> site_explorer.ExploredManagedHostList - 1143, // 1800: forge.Forge.FindExploredMlxDeviceHostIds:output_type -> site_explorer.ExploredMlxDeviceHostIdList - 1144, // 1801: forge.Forge.FindExploredMlxDevicesByIds:output_type -> site_explorer.ExploredMlxDeviceList - 1064, // 1802: forge.Forge.UpdateMachineHardwareInfo:output_type -> google.protobuf.Empty - 409, // 1803: forge.Forge.AdminForceDeleteMachine:output_type -> forge.AdminForceDeleteMachineResponse - 498, // 1804: forge.Forge.AdminListResourcePools:output_type -> forge.ResourcePools - 501, // 1805: forge.Forge.AdminGrowResourcePool:output_type -> forge.GrowResourcePoolResponse - 1064, // 1806: forge.Forge.UpdateMachineMetadata:output_type -> google.protobuf.Empty - 1064, // 1807: forge.Forge.UpdateRackMetadata:output_type -> google.protobuf.Empty - 1064, // 1808: forge.Forge.UpdateSwitchMetadata:output_type -> google.protobuf.Empty - 1064, // 1809: forge.Forge.UpdatePowerShelfMetadata:output_type -> google.protobuf.Empty - 1064, // 1810: forge.Forge.UpdateMachineNvLinkInfo:output_type -> google.protobuf.Empty - 1064, // 1811: forge.Forge.SetMaintenance:output_type -> google.protobuf.Empty - 1064, // 1812: forge.Forge.SetDynamicConfig:output_type -> google.protobuf.Empty - 1064, // 1813: forge.Forge.TriggerDpuReprovisioning:output_type -> google.protobuf.Empty - 517, // 1814: forge.Forge.ListDpuWaitingForReprovisioning:output_type -> forge.DpuReprovisioningListResponse - 1064, // 1815: forge.Forge.TriggerHostReprovisioning:output_type -> google.protobuf.Empty - 520, // 1816: forge.Forge.ListHostsWaitingForReprovisioning:output_type -> forge.HostReprovisioningListResponse - 1064, // 1817: forge.Forge.MarkManualFirmwareUpgradeComplete:output_type -> google.protobuf.Empty - 1064, // 1818: forge.Forge.ReportScoutFirmwareUpgradeStatus:output_type -> google.protobuf.Empty - 526, // 1819: forge.Forge.GetDpuInfoList:output_type -> forge.GetDpuInfoListResponse - 528, // 1820: forge.Forge.GetMachineBootOverride:output_type -> forge.MachineBootOverride - 1064, // 1821: forge.Forge.SetMachineBootOverride:output_type -> google.protobuf.Empty - 1064, // 1822: forge.Forge.ClearMachineBootOverride:output_type -> google.protobuf.Empty - 952, // 1823: forge.Forge.GetMachineBootInterfaces:output_type -> forge.GetMachineBootInterfacesResponse - 539, // 1824: forge.Forge.GetNetworkTopology:output_type -> forge.NetworkTopologyData - 539, // 1825: forge.Forge.FindNetworkDevicesByDeviceIds:output_type -> forge.NetworkTopologyData - 134, // 1826: forge.Forge.CreateCredential:output_type -> forge.CredentialCreationResult - 135, // 1827: forge.Forge.DeleteCredential:output_type -> forge.CredentialDeletionResult - 137, // 1828: forge.Forge.RotateCredential:output_type -> forge.RotateCredentialResult - 140, // 1829: forge.Forge.GetCredentialRotationStatus:output_type -> forge.CredentialRotationStatusResult - 541, // 1830: forge.Forge.GetRouteServers:output_type -> forge.RouteServerEntries - 1064, // 1831: forge.Forge.AddRouteServers:output_type -> google.protobuf.Empty - 1064, // 1832: forge.Forge.RemoveRouteServers:output_type -> google.protobuf.Empty - 1064, // 1833: forge.Forge.ReplaceRouteServers:output_type -> google.protobuf.Empty - 1064, // 1834: forge.Forge.UpdateAgentReportedInventory:output_type -> google.protobuf.Empty - 308, // 1835: forge.Forge.UpdateInstancePhoneHomeLastContact:output_type -> forge.InstancePhoneHomeLastContactResponse - 544, // 1836: forge.Forge.SetHostUefiPassword:output_type -> forge.SetHostUefiPasswordResponse - 546, // 1837: forge.Forge.ClearHostUefiPassword:output_type -> forge.ClearHostUefiPasswordResponse - 1064, // 1838: forge.Forge.AddExpectedMachine:output_type -> google.protobuf.Empty - 1064, // 1839: forge.Forge.DeleteExpectedMachine:output_type -> google.protobuf.Empty - 1064, // 1840: forge.Forge.UpdateExpectedMachine:output_type -> google.protobuf.Empty - 558, // 1841: forge.Forge.GetExpectedMachine:output_type -> forge.ExpectedMachine - 560, // 1842: forge.Forge.GetAllExpectedMachines:output_type -> forge.ExpectedMachineList - 1064, // 1843: forge.Forge.ReplaceAllExpectedMachines:output_type -> google.protobuf.Empty - 1064, // 1844: forge.Forge.DeleteAllExpectedMachines:output_type -> google.protobuf.Empty - 561, // 1845: forge.Forge.GetAllExpectedMachinesLinked:output_type -> forge.LinkedExpectedMachineList - 563, // 1846: forge.Forge.GetAllUnexpectedMachines:output_type -> forge.UnexpectedMachineList - 567, // 1847: forge.Forge.CreateExpectedMachines:output_type -> forge.BatchExpectedMachineOperationResponse - 567, // 1848: forge.Forge.UpdateExpectedMachines:output_type -> forge.BatchExpectedMachineOperationResponse - 1064, // 1849: forge.Forge.AddExpectedPowerShelf:output_type -> google.protobuf.Empty - 1064, // 1850: forge.Forge.DeleteExpectedPowerShelf:output_type -> google.protobuf.Empty - 1064, // 1851: forge.Forge.UpdateExpectedPowerShelf:output_type -> google.protobuf.Empty - 211, // 1852: forge.Forge.GetExpectedPowerShelf:output_type -> forge.ExpectedPowerShelf - 213, // 1853: forge.Forge.GetAllExpectedPowerShelves:output_type -> forge.ExpectedPowerShelfList - 1064, // 1854: forge.Forge.ReplaceAllExpectedPowerShelves:output_type -> google.protobuf.Empty - 1064, // 1855: forge.Forge.DeleteAllExpectedPowerShelves:output_type -> google.protobuf.Empty - 214, // 1856: forge.Forge.GetAllExpectedPowerShelvesLinked:output_type -> forge.LinkedExpectedPowerShelfList - 1064, // 1857: forge.Forge.AddExpectedSwitch:output_type -> google.protobuf.Empty - 1064, // 1858: forge.Forge.DeleteExpectedSwitch:output_type -> google.protobuf.Empty - 1064, // 1859: forge.Forge.UpdateExpectedSwitch:output_type -> google.protobuf.Empty - 233, // 1860: forge.Forge.GetExpectedSwitch:output_type -> forge.ExpectedSwitch - 235, // 1861: forge.Forge.GetAllExpectedSwitches:output_type -> forge.ExpectedSwitchList - 1064, // 1862: forge.Forge.ReplaceAllExpectedSwitches:output_type -> google.protobuf.Empty - 1064, // 1863: forge.Forge.DeleteAllExpectedSwitches:output_type -> google.protobuf.Empty - 236, // 1864: forge.Forge.GetAllExpectedSwitchesLinked:output_type -> forge.LinkedExpectedSwitchList - 1064, // 1865: forge.Forge.AddExpectedRack:output_type -> google.protobuf.Empty - 1064, // 1866: forge.Forge.DeleteExpectedRack:output_type -> google.protobuf.Empty - 1064, // 1867: forge.Forge.UpdateExpectedRack:output_type -> google.protobuf.Empty - 238, // 1868: forge.Forge.GetExpectedRack:output_type -> forge.ExpectedRack - 240, // 1869: forge.Forge.GetAllExpectedRacks:output_type -> forge.ExpectedRackList - 1064, // 1870: forge.Forge.ReplaceAllExpectedRacks:output_type -> google.protobuf.Empty - 1064, // 1871: forge.Forge.DeleteAllExpectedRacks:output_type -> google.protobuf.Empty - 131, // 1872: forge.Forge.AttestQuote:output_type -> forge.AttestQuoteResponse - 641, // 1873: forge.Forge.CreateInstanceType:output_type -> forge.CreateInstanceTypeResponse - 643, // 1874: forge.Forge.FindInstanceTypeIds:output_type -> forge.FindInstanceTypeIdsResponse - 645, // 1875: forge.Forge.FindInstanceTypesByIds:output_type -> forge.FindInstanceTypesByIdsResponse - 648, // 1876: forge.Forge.UpdateInstanceType:output_type -> forge.UpdateInstanceTypeResponse - 647, // 1877: forge.Forge.DeleteInstanceType:output_type -> forge.DeleteInstanceTypeResponse - 651, // 1878: forge.Forge.AssociateMachinesWithInstanceType:output_type -> forge.AssociateMachinesWithInstanceTypeResponse - 653, // 1879: forge.Forge.RemoveMachineInstanceTypeAssociation:output_type -> forge.RemoveMachineInstanceTypeAssociationResponse - 1145, // 1880: forge.Forge.CreateMeasurementBundle:output_type -> measured_boot.CreateMeasurementBundleResponse - 1146, // 1881: forge.Forge.DeleteMeasurementBundle:output_type -> measured_boot.DeleteMeasurementBundleResponse - 1147, // 1882: forge.Forge.RenameMeasurementBundle:output_type -> measured_boot.RenameMeasurementBundleResponse - 1148, // 1883: forge.Forge.UpdateMeasurementBundle:output_type -> measured_boot.UpdateMeasurementBundleResponse - 1149, // 1884: forge.Forge.ShowMeasurementBundle:output_type -> measured_boot.ShowMeasurementBundleResponse - 1150, // 1885: forge.Forge.ShowMeasurementBundles:output_type -> measured_boot.ShowMeasurementBundlesResponse - 1151, // 1886: forge.Forge.ListMeasurementBundles:output_type -> measured_boot.ListMeasurementBundlesResponse - 1152, // 1887: forge.Forge.ListMeasurementBundleMachines:output_type -> measured_boot.ListMeasurementBundleMachinesResponse - 1149, // 1888: forge.Forge.FindClosestBundleMatch:output_type -> measured_boot.ShowMeasurementBundleResponse - 1153, // 1889: forge.Forge.DeleteMeasurementJournal:output_type -> measured_boot.DeleteMeasurementJournalResponse - 1154, // 1890: forge.Forge.ShowMeasurementJournal:output_type -> measured_boot.ShowMeasurementJournalResponse - 1155, // 1891: forge.Forge.ShowMeasurementJournals:output_type -> measured_boot.ShowMeasurementJournalsResponse - 1156, // 1892: forge.Forge.ListMeasurementJournal:output_type -> measured_boot.ListMeasurementJournalResponse - 1157, // 1893: forge.Forge.AttestCandidateMachine:output_type -> measured_boot.AttestCandidateMachineResponse - 1158, // 1894: forge.Forge.ShowCandidateMachine:output_type -> measured_boot.ShowCandidateMachineResponse - 1159, // 1895: forge.Forge.ShowCandidateMachines:output_type -> measured_boot.ShowCandidateMachinesResponse - 1160, // 1896: forge.Forge.ListCandidateMachines:output_type -> measured_boot.ListCandidateMachinesResponse - 1161, // 1897: forge.Forge.CreateMeasurementSystemProfile:output_type -> measured_boot.CreateMeasurementSystemProfileResponse - 1162, // 1898: forge.Forge.DeleteMeasurementSystemProfile:output_type -> measured_boot.DeleteMeasurementSystemProfileResponse - 1163, // 1899: forge.Forge.RenameMeasurementSystemProfile:output_type -> measured_boot.RenameMeasurementSystemProfileResponse - 1164, // 1900: forge.Forge.ShowMeasurementSystemProfile:output_type -> measured_boot.ShowMeasurementSystemProfileResponse - 1165, // 1901: forge.Forge.ShowMeasurementSystemProfiles:output_type -> measured_boot.ShowMeasurementSystemProfilesResponse - 1166, // 1902: forge.Forge.ListMeasurementSystemProfiles:output_type -> measured_boot.ListMeasurementSystemProfilesResponse - 1167, // 1903: forge.Forge.ListMeasurementSystemProfileBundles:output_type -> measured_boot.ListMeasurementSystemProfileBundlesResponse - 1168, // 1904: forge.Forge.ListMeasurementSystemProfileMachines:output_type -> measured_boot.ListMeasurementSystemProfileMachinesResponse - 1169, // 1905: forge.Forge.CreateMeasurementReport:output_type -> measured_boot.CreateMeasurementReportResponse - 1170, // 1906: forge.Forge.DeleteMeasurementReport:output_type -> measured_boot.DeleteMeasurementReportResponse - 1171, // 1907: forge.Forge.PromoteMeasurementReport:output_type -> measured_boot.PromoteMeasurementReportResponse - 1172, // 1908: forge.Forge.RevokeMeasurementReport:output_type -> measured_boot.RevokeMeasurementReportResponse - 1173, // 1909: forge.Forge.ShowMeasurementReportForId:output_type -> measured_boot.ShowMeasurementReportForIdResponse - 1174, // 1910: forge.Forge.ShowMeasurementReportsForMachine:output_type -> measured_boot.ShowMeasurementReportsForMachineResponse - 1175, // 1911: forge.Forge.ShowMeasurementReports:output_type -> measured_boot.ShowMeasurementReportsResponse - 1176, // 1912: forge.Forge.ListMeasurementReport:output_type -> measured_boot.ListMeasurementReportResponse - 1177, // 1913: forge.Forge.MatchMeasurementReport:output_type -> measured_boot.MatchMeasurementReportResponse - 1178, // 1914: forge.Forge.ImportSiteMeasurements:output_type -> measured_boot.ImportSiteMeasurementsResponse - 1179, // 1915: forge.Forge.ExportSiteMeasurements:output_type -> measured_boot.ExportSiteMeasurementsResponse - 1180, // 1916: forge.Forge.AddMeasurementTrustedMachine:output_type -> measured_boot.AddMeasurementTrustedMachineResponse - 1181, // 1917: forge.Forge.RemoveMeasurementTrustedMachine:output_type -> measured_boot.RemoveMeasurementTrustedMachineResponse - 1182, // 1918: forge.Forge.AddMeasurementTrustedProfile:output_type -> measured_boot.AddMeasurementTrustedProfileResponse - 1183, // 1919: forge.Forge.RemoveMeasurementTrustedProfile:output_type -> measured_boot.RemoveMeasurementTrustedProfileResponse - 1184, // 1920: forge.Forge.ListMeasurementTrustedMachines:output_type -> measured_boot.ListMeasurementTrustedMachinesResponse - 1185, // 1921: forge.Forge.ListMeasurementTrustedProfiles:output_type -> measured_boot.ListMeasurementTrustedProfilesResponse - 1186, // 1922: forge.Forge.ListAttestationSummary:output_type -> measured_boot.ListAttestationSummaryResponse - 672, // 1923: forge.Forge.CreateNetworkSecurityGroup:output_type -> forge.CreateNetworkSecurityGroupResponse - 674, // 1924: forge.Forge.FindNetworkSecurityGroupIds:output_type -> forge.FindNetworkSecurityGroupIdsResponse - 676, // 1925: forge.Forge.FindNetworkSecurityGroupsByIds:output_type -> forge.FindNetworkSecurityGroupsByIdsResponse - 677, // 1926: forge.Forge.UpdateNetworkSecurityGroup:output_type -> forge.UpdateNetworkSecurityGroupResponse - 680, // 1927: forge.Forge.DeleteNetworkSecurityGroup:output_type -> forge.DeleteNetworkSecurityGroupResponse - 683, // 1928: forge.Forge.GetNetworkSecurityGroupPropagationStatus:output_type -> forge.GetNetworkSecurityGroupPropagationStatusResponse - 690, // 1929: forge.Forge.GetNetworkSecurityGroupAttachments:output_type -> forge.GetNetworkSecurityGroupAttachmentsResponse - 548, // 1930: forge.Forge.CreateOsImage:output_type -> forge.OsImage - 552, // 1931: forge.Forge.DeleteOsImage:output_type -> forge.DeleteOsImageResponse - 550, // 1932: forge.Forge.ListOsImage:output_type -> forge.ListOsImageResponse - 548, // 1933: forge.Forge.GetOsImage:output_type -> forge.OsImage - 548, // 1934: forge.Forge.UpdateOsImage:output_type -> forge.OsImage - 271, // 1935: forge.Forge.GetIpxeTemplate:output_type -> forge.IpxeTemplate - 555, // 1936: forge.Forge.ListIpxeTemplates:output_type -> forge.IpxeTemplateList - 568, // 1937: forge.Forge.RebootCompleted:output_type -> forge.MachineRebootCompletedResponse - 1064, // 1938: forge.Forge.PersistValidationResult:output_type -> google.protobuf.Empty - 575, // 1939: forge.Forge.GetMachineValidationResults:output_type -> forge.MachineValidationResultList - 572, // 1940: forge.Forge.MachineValidationCompleted:output_type -> forge.MachineValidationCompletedResponse - 580, // 1941: forge.Forge.MachineSetAutoUpdate:output_type -> forge.MachineSetAutoUpdateResponse - 583, // 1942: forge.Forge.GetMachineValidationExternalConfig:output_type -> forge.GetMachineValidationExternalConfigResponse - 585, // 1943: forge.Forge.GetMachineValidationExternalConfigs:output_type -> forge.GetMachineValidationExternalConfigsResponse - 1064, // 1944: forge.Forge.AddUpdateMachineValidationExternalConfig:output_type -> google.protobuf.Empty - 602, // 1945: forge.Forge.GetMachineValidationRuns:output_type -> forge.MachineValidationRunList - 605, // 1946: forge.Forge.FindMachineValidationRunItemIds:output_type -> forge.MachineValidationRunItemIdList - 607, // 1947: forge.Forge.FindMachineValidationRunItemsByIds:output_type -> forge.MachineValidationRunItemList - 610, // 1948: forge.Forge.GetMachineValidationAttempt:output_type -> forge.MachineValidationAttempt - 612, // 1949: forge.Forge.HeartbeatMachineValidationRun:output_type -> forge.MachineValidationHeartbeatResponse - 1064, // 1950: forge.Forge.RemoveMachineValidationExternalConfig:output_type -> google.protobuf.Empty - 619, // 1951: forge.Forge.GetMachineValidationTests:output_type -> forge.MachineValidationTestsGetResponse - 618, // 1952: forge.Forge.AddMachineValidationTest:output_type -> forge.MachineValidationTestAddUpdateResponse - 618, // 1953: forge.Forge.UpdateMachineValidationTest:output_type -> forge.MachineValidationTestAddUpdateResponse - 621, // 1954: forge.Forge.MachineValidationTestVerfied:output_type -> forge.MachineValidationTestVerfiedResponse - 623, // 1955: forge.Forge.MachineValidationTestNextVersion:output_type -> forge.MachineValidationTestNextVersionResponse - 626, // 1956: forge.Forge.MachineValidationTestEnableDisableTest:output_type -> forge.MachineValidationTestEnableDisableTestResponse - 628, // 1957: forge.Forge.UpdateMachineValidationRun:output_type -> forge.MachineValidationRunResponse - 422, // 1958: forge.Forge.AdminBmcReset:output_type -> forge.AdminBmcResetResponse - 599, // 1959: forge.Forge.AdminPowerControl:output_type -> forge.AdminPowerControlResponse - 410, // 1960: forge.Forge.DisableSecureBoot:output_type -> forge.DisableSecureBootResponse - 412, // 1961: forge.Forge.Lockdown:output_type -> forge.LockdownResponse - 1187, // 1962: forge.Forge.LockdownStatus:output_type -> site_explorer.LockdownStatus - 416, // 1963: forge.Forge.MachineSetup:output_type -> forge.MachineSetupResponse - 418, // 1964: forge.Forge.SetDpuFirstBootOrder:output_type -> forge.SetDpuFirstBootOrderResponse - 795, // 1965: forge.Forge.CreateBmcUser:output_type -> forge.CreateBmcUserResponse - 797, // 1966: forge.Forge.DeleteBmcUser:output_type -> forge.DeleteBmcUserResponse - 799, // 1967: forge.Forge.SetBmcRootPassword:output_type -> forge.SetBmcRootPasswordResponse - 801, // 1968: forge.Forge.ProbeBmcVendor:output_type -> forge.ProbeBmcVendorResponse - 424, // 1969: forge.Forge.EnableInfiniteBoot:output_type -> forge.EnableInfiniteBootResponse - 426, // 1970: forge.Forge.IsInfiniteBootEnabled:output_type -> forge.IsInfiniteBootEnabledResponse - 589, // 1971: forge.Forge.OnDemandMachineValidation:output_type -> forge.MachineValidationOnDemandResponse - 597, // 1972: forge.Forge.OnDemandRackMaintenance:output_type -> forge.RackMaintenanceOnDemandResponse - 122, // 1973: forge.Forge.TpmAddCaCert:output_type -> forge.TpmCaAddedCaStatus - 128, // 1974: forge.Forge.TpmShowCaCerts:output_type -> forge.TpmCaCertDetailCollection - 125, // 1975: forge.Forge.TpmShowUnmatchedEkCerts:output_type -> forge.TpmEkCertStatusCollection - 1064, // 1976: forge.Forge.TpmDeleteCaCert:output_type -> google.protobuf.Empty - 655, // 1977: forge.Forge.RedfishBrowse:output_type -> forge.RedfishBrowseResponse - 657, // 1978: forge.Forge.RedfishListActions:output_type -> forge.RedfishListActionsResponse - 662, // 1979: forge.Forge.RedfishCreateAction:output_type -> forge.RedfishCreateActionResponse - 664, // 1980: forge.Forge.RedfishApproveAction:output_type -> forge.RedfishApproveActionResponse - 665, // 1981: forge.Forge.RedfishApplyAction:output_type -> forge.RedfishApplyActionResponse - 666, // 1982: forge.Forge.RedfishCancelAction:output_type -> forge.RedfishCancelActionResponse - 668, // 1983: forge.Forge.UfmBrowse:output_type -> forge.UfmBrowseResponse - 692, // 1984: forge.Forge.GetDesiredFirmwareVersions:output_type -> forge.GetDesiredFirmwareVersionsResponse - 810, // 1985: forge.Forge.UpsertHostFirmwareConfig:output_type -> forge.HostFirmwareConfigResponse - 1064, // 1986: forge.Forge.DeleteHostFirmwareConfig:output_type -> google.protobuf.Empty - 708, // 1987: forge.Forge.CreateSku:output_type -> forge.SkuIdList - 704, // 1988: forge.Forge.GenerateSkuFromMachine:output_type -> forge.Sku - 1064, // 1989: forge.Forge.VerifySkuForMachine:output_type -> google.protobuf.Empty - 1064, // 1990: forge.Forge.AssignSkuToMachine:output_type -> google.protobuf.Empty - 1064, // 1991: forge.Forge.RemoveSkuAssociation:output_type -> google.protobuf.Empty - 1064, // 1992: forge.Forge.DeleteSku:output_type -> google.protobuf.Empty - 708, // 1993: forge.Forge.GetAllSkuIds:output_type -> forge.SkuIdList - 707, // 1994: forge.Forge.FindSkusByIds:output_type -> forge.SkuList - 1064, // 1995: forge.Forge.UpdateSkuMetadata:output_type -> google.protobuf.Empty - 704, // 1996: forge.Forge.ReplaceSku:output_type -> forge.Sku - 392, // 1997: forge.Forge.GetManagedHostQuarantineState:output_type -> forge.GetManagedHostQuarantineStateResponse - 394, // 1998: forge.Forge.SetManagedHostQuarantineState:output_type -> forge.SetManagedHostQuarantineStateResponse - 396, // 1999: forge.Forge.ClearManagedHostQuarantineState:output_type -> forge.ClearManagedHostQuarantineStateResponse - 1064, // 2000: forge.Forge.ResetHostReprovisioning:output_type -> google.protobuf.Empty - 1064, // 2001: forge.Forge.CopyBfbToDpuRshim:output_type -> google.protobuf.Empty - 714, // 2002: forge.Forge.GetAllDpaInterfaceIds:output_type -> forge.DpaInterfaceIdList - 716, // 2003: forge.Forge.FindDpaInterfacesByIds:output_type -> forge.DpaInterfaceList - 712, // 2004: forge.Forge.CreateDpaInterface:output_type -> forge.DpaInterface - 712, // 2005: forge.Forge.EnsureDpaInterface:output_type -> forge.DpaInterface - 719, // 2006: forge.Forge.DeleteDpaInterface:output_type -> forge.DpaInterfaceDeletionResult - 724, // 2007: forge.Forge.GetPowerOptions:output_type -> forge.PowerOptionResponse - 724, // 2008: forge.Forge.UpdatePowerOption:output_type -> forge.PowerOptionResponse - 1064, // 2009: forge.Forge.AllowIngestionAndPowerOn:output_type -> google.protobuf.Empty - 121, // 2010: forge.Forge.DetermineMachineIngestionState:output_type -> forge.MachineIngestionStateResponse - 742, // 2011: forge.Forge.FindRackIds:output_type -> forge.RackIdList - 740, // 2012: forge.Forge.FindRacksByIds:output_type -> forge.RackList - 739, // 2013: forge.Forge.GetRack:output_type -> forge.GetRackResponse - 1064, // 2014: forge.Forge.DeleteRack:output_type -> google.protobuf.Empty - 750, // 2015: forge.Forge.AdminForceDeleteRack:output_type -> forge.AdminForceDeleteRackResponse - 757, // 2016: forge.Forge.GetRackProfile:output_type -> forge.GetRackProfileResponse - 728, // 2017: forge.Forge.CreateComputeAllocation:output_type -> forge.CreateComputeAllocationResponse - 730, // 2018: forge.Forge.FindComputeAllocationIds:output_type -> forge.FindComputeAllocationIdsResponse - 732, // 2019: forge.Forge.FindComputeAllocationsByIds:output_type -> forge.FindComputeAllocationsByIdsResponse - 733, // 2020: forge.Forge.UpdateComputeAllocation:output_type -> forge.UpdateComputeAllocationResponse - 736, // 2021: forge.Forge.DeleteComputeAllocation:output_type -> forge.DeleteComputeAllocationResponse - 803, // 2022: forge.Forge.SetFirmwareUpdateTimeWindow:output_type -> forge.SetFirmwareUpdateTimeWindowResponse - 812, // 2023: forge.Forge.ListHostFirmware:output_type -> forge.ListHostFirmwareResponse - 1188, // 2024: forge.Forge.PublishMlxDeviceReport:output_type -> mlx_device.PublishMlxDeviceReportResponse - 1189, // 2025: forge.Forge.PublishMlxObservationReport:output_type -> mlx_device.PublishMlxObservationReportResponse - 815, // 2026: forge.Forge.TrimTable:output_type -> forge.TrimTableResponse - 817, // 2027: forge.Forge.ListNvlinkNmxcEndpoints:output_type -> forge.NvlinkNmxcEndpointList - 816, // 2028: forge.Forge.CreateNvlinkNmxcEndpoint:output_type -> forge.NvlinkNmxcEndpoint - 816, // 2029: forge.Forge.UpdateNvlinkNmxcEndpoint:output_type -> forge.NvlinkNmxcEndpoint - 1064, // 2030: forge.Forge.DeleteNvlinkNmxcEndpoint:output_type -> google.protobuf.Empty - 820, // 2031: forge.Forge.CreateRemediation:output_type -> forge.CreateRemediationResponse - 1064, // 2032: forge.Forge.ApproveRemediation:output_type -> google.protobuf.Empty - 1064, // 2033: forge.Forge.RevokeRemediation:output_type -> google.protobuf.Empty - 1064, // 2034: forge.Forge.EnableRemediation:output_type -> google.protobuf.Empty - 1064, // 2035: forge.Forge.DisableRemediation:output_type -> google.protobuf.Empty - 821, // 2036: forge.Forge.FindRemediationIds:output_type -> forge.RemediationIdList - 822, // 2037: forge.Forge.FindRemediationsByIds:output_type -> forge.RemediationList - 829, // 2038: forge.Forge.FindAppliedRemediationIds:output_type -> forge.AppliedRemediationIdList - 832, // 2039: forge.Forge.FindAppliedRemediations:output_type -> forge.AppliedRemediationList - 834, // 2040: forge.Forge.GetNextRemediationForMachine:output_type -> forge.GetNextRemediationForMachineResponse - 1064, // 2041: forge.Forge.RemediationApplied:output_type -> google.protobuf.Empty - 1064, // 2042: forge.Forge.SetPrimaryDpu:output_type -> google.protobuf.Empty - 1064, // 2043: forge.Forge.SetPrimaryInterface:output_type -> google.protobuf.Empty - 843, // 2044: forge.Forge.CreateDpuExtensionService:output_type -> forge.DpuExtensionService - 843, // 2045: forge.Forge.UpdateDpuExtensionService:output_type -> forge.DpuExtensionService - 847, // 2046: forge.Forge.DeleteDpuExtensionService:output_type -> forge.DeleteDpuExtensionServiceResponse - 849, // 2047: forge.Forge.FindDpuExtensionServiceIds:output_type -> forge.DpuExtensionServiceIdList - 851, // 2048: forge.Forge.FindDpuExtensionServicesByIds:output_type -> forge.DpuExtensionServiceList - 853, // 2049: forge.Forge.GetDpuExtensionServiceVersionsInfo:output_type -> forge.DpuExtensionServiceVersionInfoList - 855, // 2050: forge.Forge.FindInstancesByDpuExtensionService:output_type -> forge.FindInstancesByDpuExtensionServiceResponse - 95, // 2051: forge.Forge.TriggerMachineAttestation:output_type -> forge.SpdmMachineAttestationTriggerResponse - 1064, // 2052: forge.Forge.CancelMachineAttestation:output_type -> google.protobuf.Empty - 100, // 2053: forge.Forge.ListAttestationMachines:output_type -> forge.SpdmListAttestationMachinesResponse - 97, // 2054: forge.Forge.GetAttestationMachine:output_type -> forge.SpdmGetAttestationMachineResponse - 102, // 2055: forge.Forge.SignMachineIdentity:output_type -> forge.MachineIdentityResponse - 107, // 2056: forge.Forge.GetTenantIdentityConfiguration:output_type -> forge.TenantIdentityConfigResponse - 107, // 2057: forge.Forge.SetTenantIdentityConfiguration:output_type -> forge.TenantIdentityConfigResponse - 1064, // 2058: forge.Forge.DeleteTenantIdentityConfiguration:output_type -> google.protobuf.Empty - 110, // 2059: forge.Forge.GetTokenDelegation:output_type -> forge.TokenDelegationResponse - 110, // 2060: forge.Forge.SetTokenDelegation:output_type -> forge.TokenDelegationResponse - 1064, // 2061: forge.Forge.DeleteTokenDelegation:output_type -> google.protobuf.Empty - 116, // 2062: forge.Forge.ReencryptTenantIdentitySecrets:output_type -> forge.ReencryptTenantIdentitySecretsResponse - 117, // 2063: forge.Forge.GetJWKS:output_type -> forge.Jwks - 118, // 2064: forge.Forge.GetOpenIDConfiguration:output_type -> forge.OpenIdConfiguration - 862, // 2065: forge.Forge.ScoutStream:output_type -> forge.ScoutStreamScoutBoundMessage - 865, // 2066: forge.Forge.ScoutStreamShowConnections:output_type -> forge.ScoutStreamShowConnectionsResponse - 867, // 2067: forge.Forge.ScoutStreamDisconnect:output_type -> forge.ScoutStreamDisconnectResponse - 869, // 2068: forge.Forge.ScoutStreamPing:output_type -> forge.ScoutStreamAdminPingResponse - 1190, // 2069: forge.Forge.MlxAdminProfileSync:output_type -> mlx_device.MlxAdminProfileSyncResponse - 1191, // 2070: forge.Forge.MlxAdminProfileShow:output_type -> mlx_device.MlxAdminProfileShowResponse - 1192, // 2071: forge.Forge.MlxAdminProfileCompare:output_type -> mlx_device.MlxAdminProfileCompareResponse - 1193, // 2072: forge.Forge.MlxAdminProfileList:output_type -> mlx_device.MlxAdminProfileListResponse - 1194, // 2073: forge.Forge.MlxAdminLockdownLock:output_type -> mlx_device.MlxAdminLockdownLockResponse - 1195, // 2074: forge.Forge.MlxAdminLockdownUnlock:output_type -> mlx_device.MlxAdminLockdownUnlockResponse - 1196, // 2075: forge.Forge.MlxAdminLockdownStatus:output_type -> mlx_device.MlxAdminLockdownStatusResponse - 1197, // 2076: forge.Forge.MlxAdminShowDevice:output_type -> mlx_device.MlxAdminDeviceInfoResponse - 1198, // 2077: forge.Forge.MlxAdminShowMachine:output_type -> mlx_device.MlxAdminDeviceReportResponse - 1199, // 2078: forge.Forge.MlxAdminRegistryList:output_type -> mlx_device.MlxAdminRegistryListResponse - 1200, // 2079: forge.Forge.MlxAdminRegistryShow:output_type -> mlx_device.MlxAdminRegistryShowResponse - 1201, // 2080: forge.Forge.MlxAdminConfigQuery:output_type -> mlx_device.MlxAdminConfigQueryResponse - 1202, // 2081: forge.Forge.MlxAdminConfigSet:output_type -> mlx_device.MlxAdminConfigSetResponse - 1203, // 2082: forge.Forge.MlxAdminConfigSync:output_type -> mlx_device.MlxAdminConfigSyncResponse - 1204, // 2083: forge.Forge.MlxAdminConfigCompare:output_type -> mlx_device.MlxAdminConfigCompareResponse - 780, // 2084: forge.Forge.FindNVLinkPartitionIds:output_type -> forge.NVLinkPartitionIdList - 775, // 2085: forge.Forge.FindNVLinkPartitionsByIds:output_type -> forge.NVLinkPartitionList - 775, // 2086: forge.Forge.NVLinkPartitionsForTenant:output_type -> forge.NVLinkPartitionList - 791, // 2087: forge.Forge.FindNVLinkLogicalPartitionIds:output_type -> forge.NVLinkLogicalPartitionIdList - 785, // 2088: forge.Forge.FindNVLinkLogicalPartitionsByIds:output_type -> forge.NVLinkLogicalPartitionList - 784, // 2089: forge.Forge.CreateNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartition - 793, // 2090: forge.Forge.UpdateNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartitionUpdateResult - 788, // 2091: forge.Forge.DeleteNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartitionDeletionResult - 785, // 2092: forge.Forge.NVLinkLogicalPartitionsForTenant:output_type -> forge.NVLinkLogicalPartitionList - 883, // 2093: forge.Forge.GetMachinePositionInfo:output_type -> forge.MachinePositionInfoList - 773, // 2094: forge.Forge.NmxcBrowse:output_type -> forge.NmxcBrowseResponse - 1064, // 2095: forge.Forge.ModifyDPFState:output_type -> google.protobuf.Empty - 886, // 2096: forge.Forge.GetDPFState:output_type -> forge.DPFStateResponse - 889, // 2097: forge.Forge.GetDPFHostSnapshot:output_type -> forge.DPFHostSnapshotResponse - 892, // 2098: forge.Forge.GetDPFServiceVersions:output_type -> forge.DPFServiceVersionsResponse - 900, // 2099: forge.Forge.ComponentPowerControl:output_type -> forge.ComponentPowerControlResponse - 902, // 2100: forge.Forge.ComponentConfigureSwitchCertificate:output_type -> forge.ComponentConfigureSwitchCertificateResponse - 898, // 2101: forge.Forge.GetComponentInventory:output_type -> forge.GetComponentInventoryResponse - 909, // 2102: forge.Forge.UpdateComponentFirmware:output_type -> forge.UpdateComponentFirmwareResponse - 911, // 2103: forge.Forge.GetComponentFirmwareStatus:output_type -> forge.GetComponentFirmwareStatusResponse - 915, // 2104: forge.Forge.ListComponentFirmwareVersions:output_type -> forge.ListComponentFirmwareVersionsResponse - 928, // 2105: forge.Forge.CreateOperatingSystem:output_type -> forge.OperatingSystem - 928, // 2106: forge.Forge.GetOperatingSystem:output_type -> forge.OperatingSystem - 928, // 2107: forge.Forge.UpdateOperatingSystem:output_type -> forge.OperatingSystem - 934, // 2108: forge.Forge.DeleteOperatingSystem:output_type -> forge.DeleteOperatingSystemResponse - 936, // 2109: forge.Forge.FindOperatingSystemIds:output_type -> forge.OperatingSystemIdList - 938, // 2110: forge.Forge.FindOperatingSystemsByIds:output_type -> forge.OperatingSystemList - 940, // 2111: forge.Forge.GetOperatingSystemCachableIpxeTemplateArtifacts:output_type -> forge.IpxeTemplateArtifactList - 940, // 2112: forge.Forge.UpdateOperatingSystemCachableIpxeTemplateArtifacts:output_type -> forge.IpxeTemplateArtifactList - 945, // 2113: forge.Forge.ReWrapSecrets:output_type -> forge.ReWrapSecretsResponse - 1651, // [1651:2114] is the sub-list for method output_type - 1188, // [1188:1651] is the sub-list for method input_type - 1188, // [1188:1188] is the sub-list for extension type_name - 1188, // [1188:1188] is the sub-list for extension extendee - 0, // [0:1188] is the sub-list for field type_name + 1015, // 365: forge.BmcInfo.machine_interface_id:type_name -> common.MachineInterfaceId + 1015, // 366: forge.BmcEndpoint.machine_interface_id:type_name -> common.MachineInterfaceId + 995, // 367: forge.MachineConfig.maintenance_start_time:type_name -> google.protobuf.Timestamp + 345, // 368: forge.MachineConfig.dpf:type_name -> forge.DpfMachineState + 360, // 369: forge.MachineStatus.interfaces:type_name -> forge.MachineInterface + 1016, // 370: forge.MachineStatus.discovery_info:type_name -> machine_discovery.DiscoveryInfo + 995, // 371: forge.MachineStatus.last_reboot_time:type_name -> google.protobuf.Timestamp + 995, // 372: forge.MachineStatus.last_observation_time:type_name -> google.protobuf.Timestamp + 994, // 373: forge.MachineStatus.associated_host_machine_id:type_name -> common.MachineId + 994, // 374: forge.MachineStatus.associated_dpu_machine_ids:type_name -> common.MachineId + 995, // 375: forge.MachineStatus.last_reboot_requested_time:type_name -> google.protobuf.Timestamp + 1001, // 376: forge.MachineStatus.health:type_name -> health.HealthReport + 354, // 377: forge.MachineStatus.health_sources:type_name -> forge.HealthSourceOrigin + 361, // 378: forge.MachineStatus.infiniband:type_name -> forge.InfinibandStatusObservation + 638, // 379: forge.MachineStatus.capabilities:type_name -> forge.MachineCapabilitiesSet + 711, // 380: forge.MachineStatus.hw_sku:type_name -> forge.SkuStatus + 392, // 381: forge.MachineStatus.quarantine:type_name -> forge.ManagedHostQuarantineState + 762, // 382: forge.MachineStatus.nvlink_info:type_name -> forge.MachineNVLinkInfo + 772, // 383: forge.MachineStatus.nvlink:type_name -> forge.MachineNVLinkStatusObservation + 764, // 384: forge.MachineStatus.spx:type_name -> forge.MachineSpxStatusObservation + 346, // 385: forge.MachineStatus.instance_network_restrictions:type_name -> forge.InstanceNetworkRestrictions + 93, // 386: forge.MachineStatus.lifecycle:type_name -> forge.LifecycleStatus + 340, // 387: forge.MachineStatus.bmc_status:type_name -> forge.BmcStatus + 994, // 388: forge.Machine.id:type_name -> common.MachineId + 355, // 389: forge.Machine.state_reason:type_name -> forge.ControllerStateReason + 357, // 390: forge.Machine.state_sla:type_name -> forge.StateSla + 359, // 391: forge.Machine.events:type_name -> forge.MachineEvent + 360, // 392: forge.Machine.interfaces:type_name -> forge.MachineInterface + 1016, // 393: forge.Machine.discovery_info:type_name -> machine_discovery.DiscoveryInfo + 21, // 394: forge.Machine.machine_type:type_name -> forge.MachineType + 338, // 395: forge.Machine.bmc_info:type_name -> forge.BmcInfo + 995, // 396: forge.Machine.last_reboot_time:type_name -> google.protobuf.Timestamp + 995, // 397: forge.Machine.last_observation_time:type_name -> google.protobuf.Timestamp + 995, // 398: forge.Machine.maintenance_start_time:type_name -> google.protobuf.Timestamp + 994, // 399: forge.Machine.associated_host_machine_id:type_name -> common.MachineId + 352, // 400: forge.Machine.inventory:type_name -> forge.MachineComponentInventory + 995, // 401: forge.Machine.last_reboot_requested_time:type_name -> google.protobuf.Timestamp + 994, // 402: forge.Machine.associated_dpu_machine_ids:type_name -> common.MachineId + 1001, // 403: forge.Machine.health:type_name -> health.HealthReport + 354, // 404: forge.Machine.health_sources:type_name -> forge.HealthSourceOrigin + 361, // 405: forge.Machine.ib_status:type_name -> forge.InfinibandStatusObservation + 262, // 406: forge.Machine.metadata:type_name -> forge.Metadata + 346, // 407: forge.Machine.instance_network_restrictions:type_name -> forge.InstanceNetworkRestrictions + 638, // 408: forge.Machine.capabilities:type_name -> forge.MachineCapabilitiesSet + 711, // 409: forge.Machine.hw_sku_status:type_name -> forge.SkuStatus + 392, // 410: forge.Machine.quarantine_state:type_name -> forge.ManagedHostQuarantineState + 762, // 411: forge.Machine.nvlink_info:type_name -> forge.MachineNVLinkInfo + 772, // 412: forge.Machine.nvlink_status_observation:type_name -> forge.MachineNVLinkStatusObservation + 1003, // 413: forge.Machine.rack_id:type_name -> common.RackId + 220, // 414: forge.Machine.placement_in_rack:type_name -> forge.PlacementInRack + 764, // 415: forge.Machine.spx_status_observation:type_name -> forge.MachineSpxStatusObservation + 345, // 416: forge.Machine.dpf:type_name -> forge.DpfMachineState + 342, // 417: forge.Machine.config:type_name -> forge.MachineConfig + 343, // 418: forge.Machine.status:type_name -> forge.MachineStatus + 339, // 419: forge.Machine.bmc:type_name -> forge.BmcEndpoint + 22, // 420: forge.InstanceNetworkRestrictions.network_segment_membership_type:type_name -> forge.InstanceNetworkSegmentMembershipType + 1008, // 421: forge.InstanceNetworkRestrictions.network_segment_ids:type_name -> common.NetworkSegmentId + 994, // 422: forge.MachineMetadataUpdateRequest.machine_id:type_name -> common.MachineId + 262, // 423: forge.MachineMetadataUpdateRequest.metadata:type_name -> forge.Metadata + 1003, // 424: forge.RackMetadataUpdateRequest.rack_id:type_name -> common.RackId + 262, // 425: forge.RackMetadataUpdateRequest.metadata:type_name -> forge.Metadata + 1005, // 426: forge.SwitchMetadataUpdateRequest.switch_id:type_name -> common.SwitchId + 262, // 427: forge.SwitchMetadataUpdateRequest.metadata:type_name -> forge.Metadata + 1002, // 428: forge.PowerShelfMetadataUpdateRequest.power_shelf_id:type_name -> common.PowerShelfId + 262, // 429: forge.PowerShelfMetadataUpdateRequest.metadata:type_name -> forge.Metadata + 994, // 430: forge.DpuAgentInventoryReport.machine_id:type_name -> common.MachineId + 352, // 431: forge.DpuAgentInventoryReport.inventory:type_name -> forge.MachineComponentInventory + 353, // 432: forge.MachineComponentInventory.components:type_name -> forge.MachineInventorySoftwareComponent + 41, // 433: forge.HealthSourceOrigin.mode:type_name -> forge.HealthReportApplyMode + 23, // 434: forge.ControllerStateReason.outcome:type_name -> forge.ControllerStateOutcome + 356, // 435: forge.ControllerStateReason.source_ref:type_name -> forge.ControllerStateSourceReference + 1017, // 436: forge.StateSla.sla:type_name -> google.protobuf.Duration + 8, // 437: forge.InstanceTenantStatus.state:type_name -> forge.TenantState + 995, // 438: forge.MachineEvent.time:type_name -> google.protobuf.Timestamp + 1015, // 439: forge.MachineInterface.id:type_name -> common.MachineInterfaceId + 994, // 440: forge.MachineInterface.attached_dpu_machine_id:type_name -> common.MachineId + 994, // 441: forge.MachineInterface.machine_id:type_name -> common.MachineId + 1008, // 442: forge.MachineInterface.segment_id:type_name -> common.NetworkSegmentId + 1007, // 443: forge.MachineInterface.domain_id:type_name -> common.DomainId + 995, // 444: forge.MachineInterface.created:type_name -> google.protobuf.Timestamp + 995, // 445: forge.MachineInterface.last_dhcp:type_name -> google.protobuf.Timestamp + 1002, // 446: forge.MachineInterface.power_shelf_id:type_name -> common.PowerShelfId + 1005, // 447: forge.MachineInterface.switch_id:type_name -> common.SwitchId + 26, // 448: forge.MachineInterface.association_type:type_name -> forge.InterfaceAssociationType + 27, // 449: forge.MachineInterface.interface_type:type_name -> forge.InterfaceType + 362, // 450: forge.InfinibandStatusObservation.ib_interfaces:type_name -> forge.MachineIbInterface + 995, // 451: forge.InfinibandStatusObservation.observed_at:type_name -> google.protobuf.Timestamp + 1018, // 452: forge.MachineIbInterface.associated_pkeys:type_name -> common.StringList + 1018, // 453: forge.MachineIbInterface.associated_partition_ids:type_name -> common.StringList + 28, // 454: forge.DhcpDiscovery.address_family:type_name -> forge.AddressFamily + 29, // 455: forge.DhcpDiscovery.message_kind:type_name -> forge.MessageKind + 30, // 456: forge.ExpireDhcpLeaseResponse.status:type_name -> forge.ExpireDhcpLeaseStatus + 994, // 457: forge.DhcpRecord.machine_id:type_name -> common.MachineId + 1015, // 458: forge.DhcpRecord.machine_interface_id:type_name -> common.MachineInterfaceId + 1008, // 459: forge.DhcpRecord.segment_id:type_name -> common.NetworkSegmentId + 1007, // 460: forge.DhcpRecord.subdomain_id:type_name -> common.DomainId + 995, // 461: forge.DhcpRecord.last_invalidation_time:type_name -> google.protobuf.Timestamp + 246, // 462: forge.NetworkSegmentList.network_segments:type_name -> forge.NetworkSegment + 31, // 463: forge.SSHKeyValidationResponse.role:type_name -> forge.UserRoles + 1005, // 464: forge.GetSwitchNvosCredentialsRequest.switch_id:type_name -> common.SwitchId + 373, // 465: forge.GetBmcCredentialsResponse.credentials:type_name -> forge.BmcCredentials + 841, // 466: forge.BmcCredentials.username_password:type_name -> forge.UsernamePassword + 842, // 467: forge.BmcCredentials.session_token:type_name -> forge.SessionToken + 381, // 468: forge.SshRequest.endpoint_request:type_name -> forge.BmcEndpointRequest + 383, // 469: forge.CopyBfbToDpuRshimRequest.ssh_request:type_name -> forge.SshRequest + 994, // 470: forge.UpdateMachineHardwareInfoRequest.machine_id:type_name -> common.MachineId + 386, // 471: forge.UpdateMachineHardwareInfoRequest.info:type_name -> forge.MachineHardwareInfo + 32, // 472: forge.UpdateMachineHardwareInfoRequest.update_type:type_name -> forge.MachineHardwareInfoUpdateType + 1019, // 473: forge.MachineHardwareInfo.gpus:type_name -> machine_discovery.Gpu + 994, // 474: forge.ManagedHostNetworkConfigRequest.dpu_machine_id:type_name -> common.MachineId + 399, // 475: forge.ManagedHostNetworkConfigResponse.managed_host_config:type_name -> forge.ManagedHostNetworkConfig + 400, // 476: forge.ManagedHostNetworkConfigResponse.admin_interface:type_name -> forge.FlatInterfaceConfig + 400, // 477: forge.ManagedHostNetworkConfigResponse.tenant_interfaces:type_name -> forge.FlatInterfaceConfig + 1010, // 478: forge.ManagedHostNetworkConfigResponse.instance_id:type_name -> common.InstanceId + 6, // 479: forge.ManagedHostNetworkConfigResponse.network_virtualization_type:type_name -> forge.VpcVirtualizationType + 34, // 480: forge.ManagedHostNetworkConfigResponse.vpc_isolation_behavior:type_name -> forge.VpcIsolationBehaviorType + 295, // 481: forge.ManagedHostNetworkConfigResponse.instance:type_name -> forge.Instance + 1020, // 482: forge.ManagedHostNetworkConfigResponse.common_internal_route_target:type_name -> common.RouteTarget + 1020, // 483: forge.ManagedHostNetworkConfigResponse.additional_route_target_imports:type_name -> common.RouteTarget + 689, // 484: forge.ManagedHostNetworkConfigResponse.network_security_policy_overrides:type_name -> forge.ResolvedNetworkSecurityGroupRule + 391, // 485: forge.ManagedHostNetworkConfigResponse.dpu_extension_services:type_name -> forge.ManagedHostDpuExtensionServiceConfig + 389, // 486: forge.ManagedHostNetworkConfigResponse.traffic_intercept_config:type_name -> forge.TrafficInterceptConfig + 877, // 487: forge.ManagedHostNetworkConfigResponse.routing_profile:type_name -> forge.RoutingProfile + 766, // 488: forge.ManagedHostNetworkConfigResponse.astra_config:type_name -> forge.AstraConfig + 390, // 489: forge.TrafficInterceptConfig.bridging:type_name -> forge.TrafficInterceptBridging + 963, // 490: forge.TrafficInterceptBridging.host_representor_intercept_bridging:type_name -> forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry + 73, // 491: forge.ManagedHostDpuExtensionServiceConfig.service_type:type_name -> forge.DpuExtensionServiceType + 843, // 492: forge.ManagedHostDpuExtensionServiceConfig.credential:type_name -> forge.DpuExtensionServiceCredential + 862, // 493: forge.ManagedHostDpuExtensionServiceConfig.observability:type_name -> forge.DpuExtensionServiceObservability + 33, // 494: forge.ManagedHostQuarantineState.mode:type_name -> forge.ManagedHostQuarantineMode + 994, // 495: forge.GetManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId + 392, // 496: forge.GetManagedHostQuarantineStateResponse.quarantine_state:type_name -> forge.ManagedHostQuarantineState + 994, // 497: forge.SetManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId + 392, // 498: forge.SetManagedHostQuarantineStateRequest.quarantine_state:type_name -> forge.ManagedHostQuarantineState + 392, // 499: forge.SetManagedHostQuarantineStateResponse.prior_quarantine_state:type_name -> forge.ManagedHostQuarantineState + 994, // 500: forge.ClearManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId + 392, // 501: forge.ClearManagedHostQuarantineStateResponse.prior_quarantine_state:type_name -> forge.ManagedHostQuarantineState + 392, // 502: forge.ManagedHostNetworkConfig.quarantine_state:type_name -> forge.ManagedHostQuarantineState + 40, // 503: forge.FlatInterfaceConfig.function_type:type_name -> forge.InterfaceFunctionType + 402, // 504: forge.FlatInterfaceConfig.ipv6_interface_config:type_name -> forge.FlatInterfaceIpv6Config + 877, // 505: forge.FlatInterfaceConfig.vpc_routing_profile:type_name -> forge.RoutingProfile + 401, // 506: forge.FlatInterfaceConfig.interface_routing_profile:type_name -> forge.FlatInterfaceRoutingProfile + 403, // 507: forge.FlatInterfaceConfig.network_security_group:type_name -> forge.FlatInterfaceNetworkSecurityGroupConfig + 1004, // 508: forge.FlatInterfaceConfig.internal_uuid:type_name -> common.UUID + 876, // 509: forge.FlatInterfaceRoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry + 58, // 510: forge.FlatInterfaceNetworkSecurityGroupConfig.source:type_name -> forge.NetworkSecurityGroupSource + 689, // 511: forge.FlatInterfaceNetworkSecurityGroupConfig.rules:type_name -> forge.ResolvedNetworkSecurityGroupRule + 452, // 512: forge.ManagedHostNetworkStatusResponse.all:type_name -> forge.DpuNetworkStatus + 995, // 513: forge.DpuAgentUpgradeCheckRequest.binary_mtime:type_name -> google.protobuf.Timestamp + 35, // 514: forge.DpuAgentUpgradePolicyRequest.new_policy:type_name -> forge.AgentUpgradePolicy + 35, // 515: forge.DpuAgentUpgradePolicyResponse.active_policy:type_name -> forge.AgentUpgradePolicy + 381, // 516: forge.LockdownRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 994, // 517: forge.LockdownRequest.machine_id:type_name -> common.MachineId + 36, // 518: forge.LockdownRequest.action:type_name -> forge.LockdownAction + 381, // 519: forge.LockdownStatusRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 994, // 520: forge.LockdownStatusRequest.machine_id:type_name -> common.MachineId + 381, // 521: forge.MachineSetupStatusRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 381, // 522: forge.MachineSetupRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 381, // 523: forge.SetDpuFirstBootOrderRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 381, // 524: forge.AdminRebootRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 381, // 525: forge.AdminBmcResetRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 381, // 526: forge.EnableInfiniteBootRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 381, // 527: forge.IsInfiniteBootEnabledRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 994, // 528: forge.BMCMetaDataGetRequest.machine_id:type_name -> common.MachineId + 31, // 529: forge.BMCMetaDataGetRequest.role:type_name -> forge.UserRoles + 37, // 530: forge.BMCMetaDataGetRequest.request_type:type_name -> forge.BMCRequestType + 381, // 531: forge.BMCMetaDataGetRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 994, // 532: forge.MachineCredentialsUpdateRequest.machine_id:type_name -> common.MachineId + 964, // 533: forge.MachineCredentialsUpdateRequest.credentials:type_name -> forge.MachineCredentialsUpdateRequest.Credentials + 994, // 534: forge.ForgeAgentControlRequest.machine_id:type_name -> common.MachineId + 85, // 535: forge.ForgeAgentControlResponse.legacy_action:type_name -> forge.ForgeAgentControlResponse.LegacyAction + 965, // 536: forge.ForgeAgentControlResponse.data:type_name -> forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo + 966, // 537: forge.ForgeAgentControlResponse.noop:type_name -> forge.ForgeAgentControlResponse.Noop + 967, // 538: forge.ForgeAgentControlResponse.reset:type_name -> forge.ForgeAgentControlResponse.Reset + 968, // 539: forge.ForgeAgentControlResponse.discovery:type_name -> forge.ForgeAgentControlResponse.Discovery + 969, // 540: forge.ForgeAgentControlResponse.rebuild:type_name -> forge.ForgeAgentControlResponse.Rebuild + 970, // 541: forge.ForgeAgentControlResponse.retry:type_name -> forge.ForgeAgentControlResponse.Retry + 971, // 542: forge.ForgeAgentControlResponse.measure:type_name -> forge.ForgeAgentControlResponse.Measure + 972, // 543: forge.ForgeAgentControlResponse.log_error:type_name -> forge.ForgeAgentControlResponse.LogError + 973, // 544: forge.ForgeAgentControlResponse.machine_validation:type_name -> forge.ForgeAgentControlResponse.MachineValidation + 975, // 545: forge.ForgeAgentControlResponse.mlx_action:type_name -> forge.ForgeAgentControlResponse.MlxAction + 982, // 546: forge.ForgeAgentControlResponse.firmware_upgrade:type_name -> forge.ForgeAgentControlResponse.FirmwareUpgrade + 1015, // 547: forge.MachineDiscoveryInfo.machine_interface_id:type_name -> common.MachineInterfaceId + 1016, // 548: forge.MachineDiscoveryInfo.info:type_name -> machine_discovery.DiscoveryInfo + 38, // 549: forge.MachineDiscoveryInfo.discovery_reporter:type_name -> forge.MachineDiscoveryReporter + 994, // 550: forge.MachineDiscoveryCompletedRequest.machine_id:type_name -> common.MachineId + 994, // 551: forge.MachineCleanupInfo.machine_id:type_name -> common.MachineId + 984, // 552: forge.MachineCleanupInfo.nvme:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 984, // 553: forge.MachineCleanupInfo.ram:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 984, // 554: forge.MachineCleanupInfo.mem_overwrite:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 984, // 555: forge.MachineCleanupInfo.ib:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 984, // 556: forge.MachineCleanupInfo.hdd:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 86, // 557: forge.MachineCleanupInfo.result:type_name -> forge.MachineCleanupInfo.CleanupResult + 438, // 558: forge.MachineCertificateResult.machine_certificate:type_name -> forge.MachineCertificate + 994, // 559: forge.MachineDiscoveryResult.machine_id:type_name -> common.MachineId + 438, // 560: forge.MachineDiscoveryResult.machine_certificate:type_name -> forge.MachineCertificate + 129, // 561: forge.MachineDiscoveryResult.attest_key_challenge:type_name -> forge.AttestKeyBindChallenge + 1015, // 562: forge.MachineDiscoveryResult.machine_interface_id:type_name -> common.MachineInterfaceId + 994, // 563: forge.ForgeScoutErrorReport.machine_id:type_name -> common.MachineId + 1015, // 564: forge.ForgeScoutErrorReport.machine_interface_id:type_name -> common.MachineInterfaceId + 25, // 565: forge.PxeInstructionRequest.arch:type_name -> forge.MachineArchitecture + 1015, // 566: forge.PxeInstructionRequest.interface_id:type_name -> common.MachineInterfaceId + 360, // 567: forge.CloudInitDiscoveryInstructions.machine_interface:type_name -> forge.MachineInterface + 883, // 568: forge.CloudInitDiscoveryInstructions.domain:type_name -> forge.PxeDomain + 39, // 569: forge.CloudInitDiscoveryInstructions.bootstrap_ca_source:type_name -> forge.BootstrapCaSource + 448, // 570: forge.CloudInitInstructions.discovery_instructions:type_name -> forge.CloudInitDiscoveryInstructions + 449, // 571: forge.CloudInitInstructions.metadata:type_name -> forge.CloudInitMetaData + 994, // 572: forge.DpuNetworkStatus.dpu_machine_id:type_name -> common.MachineId + 995, // 573: forge.DpuNetworkStatus.observed_at:type_name -> google.protobuf.Timestamp + 473, // 574: forge.DpuNetworkStatus.interfaces:type_name -> forge.InstanceInterfaceStatusObservation + 1010, // 575: forge.DpuNetworkStatus.instance_id:type_name -> common.InstanceId + 1001, // 576: forge.DpuNetworkStatus.dpu_health:type_name -> health.HealthReport + 474, // 577: forge.DpuNetworkStatus.fabric_interfaces:type_name -> forge.FabricInterfaceData + 453, // 578: forge.DpuNetworkStatus.last_dhcp_requests:type_name -> forge.LastDhcpRequest + 454, // 579: forge.DpuNetworkStatus.dpu_extension_services:type_name -> forge.DpuExtensionServiceStatusObservation + 768, // 580: forge.DpuNetworkStatus.astra_config_status:type_name -> forge.AstraConfigStatus + 1015, // 581: forge.LastDhcpRequest.host_interface_id:type_name -> common.MachineInterfaceId + 73, // 582: forge.DpuExtensionServiceStatusObservation.service_type:type_name -> forge.DpuExtensionServiceType + 74, // 583: forge.DpuExtensionServiceStatusObservation.state:type_name -> forge.DpuExtensionServiceDeploymentStatus + 455, // 584: forge.DpuExtensionServiceStatusObservation.components:type_name -> forge.DpuExtensionServiceComponent + 1001, // 585: forge.OptionalHealthReport.report:type_name -> health.HealthReport + 1001, // 586: forge.HealthReportEntry.report:type_name -> health.HealthReport + 41, // 587: forge.HealthReportEntry.mode:type_name -> forge.HealthReportApplyMode + 994, // 588: forge.InsertMachineHealthReportRequest.machine_id:type_name -> common.MachineId + 457, // 589: forge.InsertMachineHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 1003, // 590: forge.InsertRackHealthReportRequest.rack_id:type_name -> common.RackId + 457, // 591: forge.InsertRackHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 1003, // 592: forge.RemoveRackHealthReportRequest.rack_id:type_name -> common.RackId + 1003, // 593: forge.ListRackHealthReportsRequest.rack_id:type_name -> common.RackId + 1005, // 594: forge.InsertSwitchHealthReportRequest.switch_id:type_name -> common.SwitchId + 457, // 595: forge.InsertSwitchHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 1005, // 596: forge.RemoveSwitchHealthReportRequest.switch_id:type_name -> common.SwitchId + 1005, // 597: forge.ListSwitchHealthReportsRequest.switch_id:type_name -> common.SwitchId + 1002, // 598: forge.InsertPowerShelfHealthReportRequest.power_shelf_id:type_name -> common.PowerShelfId + 457, // 599: forge.InsertPowerShelfHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 1002, // 600: forge.RemovePowerShelfHealthReportRequest.power_shelf_id:type_name -> common.PowerShelfId + 1002, // 601: forge.ListPowerShelfHealthReportsRequest.power_shelf_id:type_name -> common.PowerShelfId + 457, // 602: forge.ListHealthReportResponse.health_report_entries:type_name -> forge.HealthReportEntry + 994, // 603: forge.RemoveMachineHealthReportRequest.machine_id:type_name -> common.MachineId + 1014, // 604: forge.ListNVLinkDomainHealthReportsRequest.domain_id:type_name -> common.NVLinkDomainId + 1014, // 605: forge.InsertNVLinkDomainHealthReportRequest.domain_id:type_name -> common.NVLinkDomainId + 457, // 606: forge.InsertNVLinkDomainHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 1014, // 607: forge.RemoveNVLinkDomainHealthReportRequest.domain_id:type_name -> common.NVLinkDomainId + 40, // 608: forge.InstanceInterfaceStatusObservation.function_type:type_name -> forge.InterfaceFunctionType + 683, // 609: forge.InstanceInterfaceStatusObservation.network_security_group:type_name -> forge.NetworkSecurityGroupStatus + 1004, // 610: forge.InstanceInterfaceStatusObservation.internal_uuid:type_name -> common.UUID + 475, // 611: forge.FabricInterfaceData.link_data:type_name -> forge.LinkData + 262, // 612: forge.Tenant.metadata:type_name -> forge.Metadata + 262, // 613: forge.CreateTenantRequest.metadata:type_name -> forge.Metadata + 476, // 614: forge.CreateTenantResponse.tenant:type_name -> forge.Tenant + 262, // 615: forge.UpdateTenantRequest.metadata:type_name -> forge.Metadata + 476, // 616: forge.UpdateTenantResponse.tenant:type_name -> forge.Tenant + 476, // 617: forge.FindTenantResponse.tenant:type_name -> forge.Tenant + 484, // 618: forge.TenantKeysetContent.public_keys:type_name -> forge.TenantPublicKey + 483, // 619: forge.TenantKeyset.keyset_identifier:type_name -> forge.TenantKeysetIdentifier + 485, // 620: forge.TenantKeyset.keyset_content:type_name -> forge.TenantKeysetContent + 483, // 621: forge.CreateTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier + 485, // 622: forge.CreateTenantKeysetRequest.keyset_content:type_name -> forge.TenantKeysetContent + 486, // 623: forge.CreateTenantKeysetResponse.keyset:type_name -> forge.TenantKeyset + 486, // 624: forge.TenantKeySetList.keyset:type_name -> forge.TenantKeyset + 483, // 625: forge.UpdateTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier + 485, // 626: forge.UpdateTenantKeysetRequest.keyset_content:type_name -> forge.TenantKeysetContent + 483, // 627: forge.DeleteTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier + 483, // 628: forge.TenantKeysetIdList.keyset_ids:type_name -> forge.TenantKeysetIdentifier + 483, // 629: forge.TenantKeysetsByIdsRequest.keyset_ids:type_name -> forge.TenantKeysetIdentifier + 501, // 630: forge.ResourcePools.pools:type_name -> forge.ResourcePool + 43, // 631: forge.MaintenanceRequest.operation:type_name -> forge.MaintenanceOperation + 994, // 632: forge.MaintenanceRequest.host_id:type_name -> common.MachineId + 44, // 633: forge.SetDynamicConfigRequest.setting:type_name -> forge.ConfigSetting + 529, // 634: forge.FindIpAddressResponse.matches:type_name -> forge.IpAddressMatch + 1004, // 635: forge.IdentifyUuidRequest.uuid:type_name -> common.UUID + 1004, // 636: forge.IdentifyUuidResponse.uuid:type_name -> common.UUID + 45, // 637: forge.IdentifyUuidResponse.object_type:type_name -> forge.UuidType + 46, // 638: forge.IdentifyMacResponse.object_type:type_name -> forge.MacOwner + 994, // 639: forge.IdentifySerialResponse.machine_id:type_name -> common.MachineId + 994, // 640: forge.DpuReprovisioningRequest.dpu_id:type_name -> common.MachineId + 87, // 641: forge.DpuReprovisioningRequest.mode:type_name -> forge.DpuReprovisioningRequest.Mode + 47, // 642: forge.DpuReprovisioningRequest.initiator:type_name -> forge.UpdateInitiator + 994, // 643: forge.DpuReprovisioningRequest.machine_id:type_name -> common.MachineId + 985, // 644: forge.DpuReprovisioningListResponse.dpus:type_name -> forge.DpuReprovisioningListResponse.DpuReprovisioningListItem + 994, // 645: forge.HostReprovisioningRequest.machine_id:type_name -> common.MachineId + 88, // 646: forge.HostReprovisioningRequest.mode:type_name -> forge.HostReprovisioningRequest.Mode + 47, // 647: forge.HostReprovisioningRequest.initiator:type_name -> forge.UpdateInitiator + 986, // 648: forge.HostReprovisioningListResponse.hosts:type_name -> forge.HostReprovisioningListResponse.HostReprovisioningListItem + 523, // 649: forge.DpuInfoStatusObservation.os_operational_state:type_name -> forge.DpuOsOperationalState + 524, // 650: forge.DpuInfoStatusObservation.representors:type_name -> forge.DpuRepresentorStatus + 995, // 651: forge.DpuInfoStatusObservation.last_heartbeat:type_name -> google.protobuf.Timestamp + 525, // 652: forge.DpuInfo.observed_status:type_name -> forge.DpuInfoStatusObservation + 526, // 653: forge.GetDpuInfoListResponse.dpu_list:type_name -> forge.DpuInfo + 48, // 654: forge.IpAddressMatch.ip_type:type_name -> forge.IpType + 1015, // 655: forge.MachineBootOverride.machine_interface_id:type_name -> common.MachineInterfaceId + 994, // 656: forge.ConnectedDevice.id:type_name -> common.MachineId + 531, // 657: forge.ConnectedDeviceList.connected_devices:type_name -> forge.ConnectedDevice + 537, // 658: forge.MachineIdBmcIpPairs.pairs:type_name -> forge.MachineIdBmcIp + 994, // 659: forge.MachineIdBmcIp.machine_id:type_name -> common.MachineId + 531, // 660: forge.NetworkDevice.devices:type_name -> forge.ConnectedDevice + 538, // 661: forge.NetworkTopologyData.network_devices:type_name -> forge.NetworkDevice + 49, // 662: forge.RouteServers.source_type:type_name -> forge.RouteServerSourceType + 544, // 663: forge.RouteServerEntries.route_servers:type_name -> forge.RouteServer + 49, // 664: forge.RouteServer.source_type:type_name -> forge.RouteServerSourceType + 994, // 665: forge.SetHostUefiPasswordRequest.host_id:type_name -> common.MachineId + 994, // 666: forge.ClearHostUefiPasswordRequest.host_id:type_name -> common.MachineId + 1004, // 667: forge.OsImageAttributes.id:type_name -> common.UUID + 549, // 668: forge.OsImage.attributes:type_name -> forge.OsImageAttributes + 50, // 669: forge.OsImage.status:type_name -> forge.OsImageStatus + 550, // 670: forge.ListOsImageResponse.images:type_name -> forge.OsImage + 1004, // 671: forge.DeleteOsImageRequest.id:type_name -> common.UUID + 1011, // 672: forge.GetIpxeTemplateRequest.id:type_name -> common.IpxeTemplateId + 271, // 673: forge.IpxeTemplateList.templates:type_name -> forge.IpxeTemplate + 12, // 674: forge.ExpectedHostNic.network_segment_type:type_name -> forge.NetworkSegmentType + 262, // 675: forge.ExpectedMachine.metadata:type_name -> forge.Metadata + 1004, // 676: forge.ExpectedMachine.id:type_name -> common.UUID + 558, // 677: forge.ExpectedMachine.host_nics:type_name -> forge.ExpectedHostNic + 1003, // 678: forge.ExpectedMachine.rack_id:type_name -> common.RackId + 51, // 679: forge.ExpectedMachine.dpu_mode:type_name -> forge.DpuMode + 559, // 680: forge.ExpectedMachine.host_lifecycle_profile:type_name -> forge.HostLifecycleProfile + 52, // 681: forge.ExpectedMachine.bmc_ip_allocation:type_name -> forge.BmcIpAllocationType + 1004, // 682: forge.ExpectedMachineRequest.id:type_name -> common.UUID + 560, // 683: forge.ExpectedMachineList.expected_machines:type_name -> forge.ExpectedMachine + 564, // 684: forge.LinkedExpectedMachineList.expected_machines:type_name -> forge.LinkedExpectedMachine + 994, // 685: forge.LinkedExpectedMachine.machine_id:type_name -> common.MachineId + 1004, // 686: forge.LinkedExpectedMachine.expected_machine_id:type_name -> common.UUID + 566, // 687: forge.UnexpectedMachineList.unexpected_machines:type_name -> forge.UnexpectedMachine + 994, // 688: forge.UnexpectedMachine.machine_id:type_name -> common.MachineId + 562, // 689: forge.BatchExpectedMachineOperationRequest.expected_machines:type_name -> forge.ExpectedMachineList + 1004, // 690: forge.ExpectedMachineOperationResult.id:type_name -> common.UUID + 560, // 691: forge.ExpectedMachineOperationResult.expected_machine:type_name -> forge.ExpectedMachine + 568, // 692: forge.BatchExpectedMachineOperationResponse.results:type_name -> forge.ExpectedMachineOperationResult + 994, // 693: forge.MachineRebootCompletedRequest.machine_id:type_name -> common.MachineId + 994, // 694: forge.ScoutFirmwareUpgradeStatusRequest.machine_id:type_name -> common.MachineId + 994, // 695: forge.MachineValidationCompletedRequest.machine_id:type_name -> common.MachineId + 1021, // 696: forge.MachineValidationCompletedRequest.validation_id:type_name -> common.MachineValidationId + 995, // 697: forge.MachineValidationResult.start_time:type_name -> google.protobuf.Timestamp + 995, // 698: forge.MachineValidationResult.end_time:type_name -> google.protobuf.Timestamp + 1021, // 699: forge.MachineValidationResult.validation_id:type_name -> common.MachineValidationId + 575, // 700: forge.MachineValidationResultPostRequest.result:type_name -> forge.MachineValidationResult + 575, // 701: forge.MachineValidationResultList.results:type_name -> forge.MachineValidationResult + 994, // 702: forge.MachineValidationGetRequest.machine_id:type_name -> common.MachineId + 1021, // 703: forge.MachineValidationGetRequest.validation_id:type_name -> common.MachineValidationId + 53, // 704: forge.MachineValidationStatus.started:type_name -> forge.MachineValidationStarted + 54, // 705: forge.MachineValidationStatus.in_progress:type_name -> forge.MachineValidationInProgress + 55, // 706: forge.MachineValidationStatus.completed:type_name -> forge.MachineValidationCompleted + 1021, // 707: forge.MachineValidationRun.validation_id:type_name -> common.MachineValidationId + 994, // 708: forge.MachineValidationRun.machine_id:type_name -> common.MachineId + 995, // 709: forge.MachineValidationRun.start_time:type_name -> google.protobuf.Timestamp + 995, // 710: forge.MachineValidationRun.end_time:type_name -> google.protobuf.Timestamp + 579, // 711: forge.MachineValidationRun.status:type_name -> forge.MachineValidationStatus + 1017, // 712: forge.MachineValidationRun.duration_to_complete:type_name -> google.protobuf.Duration + 995, // 713: forge.MachineValidationRun.last_heartbeat_at:type_name -> google.protobuf.Timestamp + 994, // 714: forge.MachineSetAutoUpdateRequest.machine_id:type_name -> common.MachineId + 89, // 715: forge.MachineSetAutoUpdateRequest.action:type_name -> forge.MachineSetAutoUpdateRequest.SetAutoupdateAction + 995, // 716: forge.MachineValidationExternalConfig.timestamp:type_name -> google.protobuf.Timestamp + 584, // 717: forge.GetMachineValidationExternalConfigResponse.config:type_name -> forge.MachineValidationExternalConfig + 584, // 718: forge.GetMachineValidationExternalConfigsResponse.configs:type_name -> forge.MachineValidationExternalConfig + 994, // 719: forge.MachineValidationOnDemandRequest.machine_id:type_name -> common.MachineId + 90, // 720: forge.MachineValidationOnDemandRequest.action:type_name -> forge.MachineValidationOnDemandRequest.Action + 1021, // 721: forge.MachineValidationOnDemandResponse.validation_id:type_name -> common.MachineValidationId + 592, // 722: forge.MaintenanceActivityConfig.firmware_upgrade:type_name -> forge.FirmwareUpgradeActivity + 594, // 723: forge.MaintenanceActivityConfig.configure_nmx_cluster:type_name -> forge.ConfigureNmxClusterActivity + 595, // 724: forge.MaintenanceActivityConfig.power_sequence:type_name -> forge.PowerSequenceActivity + 593, // 725: forge.MaintenanceActivityConfig.nvos_update:type_name -> forge.NvosUpdateActivity + 596, // 726: forge.RackMaintenanceScope.activities:type_name -> forge.MaintenanceActivityConfig + 1003, // 727: forge.RackMaintenanceOnDemandRequest.rack_id:type_name -> common.RackId + 597, // 728: forge.RackMaintenanceOnDemandRequest.scope:type_name -> forge.RackMaintenanceScope + 381, // 729: forge.AdminPowerControlRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 91, // 730: forge.AdminPowerControlRequest.action:type_name -> forge.AdminPowerControlRequest.SystemPowerControl + 994, // 731: forge.GetRedfishJobStateRequest.machine_id:type_name -> common.MachineId + 92, // 732: forge.GetRedfishJobStateResponse.job_state:type_name -> forge.GetRedfishJobStateResponse.RedfishJobState + 580, // 733: forge.MachineValidationRunList.runs:type_name -> forge.MachineValidationRun + 994, // 734: forge.MachineValidationRunListGetRequest.machine_id:type_name -> common.MachineId + 1021, // 735: forge.MachineValidationRunItemSearchFilter.validation_id:type_name -> common.MachineValidationId + 1004, // 736: forge.MachineValidationRunItemIdList.run_item_ids:type_name -> common.UUID + 1004, // 737: forge.MachineValidationRunItemsByIdsRequest.run_item_ids:type_name -> common.UUID + 610, // 738: forge.MachineValidationRunItemList.run_items:type_name -> forge.MachineValidationRunItem + 1004, // 739: forge.MachineValidationRunItem.run_item_id:type_name -> common.UUID + 1021, // 740: forge.MachineValidationRunItem.validation_id:type_name -> common.MachineValidationId + 1017, // 741: forge.MachineValidationRunItem.timeout:type_name -> google.protobuf.Duration + 995, // 742: forge.MachineValidationRunItem.started_at:type_name -> google.protobuf.Timestamp + 995, // 743: forge.MachineValidationRunItem.ended_at:type_name -> google.protobuf.Timestamp + 995, // 744: forge.MachineValidationRunItem.last_heartbeat_at:type_name -> google.protobuf.Timestamp + 1004, // 745: forge.MachineValidationRunItem.current_attempt_id:type_name -> common.UUID + 1004, // 746: forge.MachineValidationAttemptGetRequest.attempt_id:type_name -> common.UUID + 1004, // 747: forge.MachineValidationAttempt.attempt_id:type_name -> common.UUID + 1004, // 748: forge.MachineValidationAttempt.run_item_id:type_name -> common.UUID + 995, // 749: forge.MachineValidationAttempt.started_at:type_name -> google.protobuf.Timestamp + 995, // 750: forge.MachineValidationAttempt.ended_at:type_name -> google.protobuf.Timestamp + 995, // 751: forge.MachineValidationAttempt.last_heartbeat_at:type_name -> google.protobuf.Timestamp + 1021, // 752: forge.MachineValidationHeartbeatRequest.validation_id:type_name -> common.MachineValidationId + 1004, // 753: forge.MachineValidationHeartbeatRequest.run_item_id:type_name -> common.UUID + 1004, // 754: forge.MachineValidationHeartbeatRequest.attempt_id:type_name -> common.UUID + 987, // 755: forge.MachineValidationTestUpdateRequest.payload:type_name -> forge.MachineValidationTestUpdateRequest.Payload + 624, // 756: forge.MachineValidationTestsGetResponse.tests:type_name -> forge.MachineValidationTest + 1021, // 757: forge.MachineValidationRunRequest.validation_id:type_name -> common.MachineValidationId + 1017, // 758: forge.MachineValidationRunRequest.duration_to_complete:type_name -> google.protobuf.Duration + 624, // 759: forge.MachineValidationRunRequest.selected_tests:type_name -> forge.MachineValidationTest + 56, // 760: forge.MachineCapabilityAttributesGpu.device_type:type_name -> forge.MachineCapabilityDeviceType + 56, // 761: forge.MachineCapabilityAttributesNetwork.device_type:type_name -> forge.MachineCapabilityDeviceType + 631, // 762: forge.MachineCapabilitiesSet.cpu:type_name -> forge.MachineCapabilityAttributesCpu + 632, // 763: forge.MachineCapabilitiesSet.gpu:type_name -> forge.MachineCapabilityAttributesGpu + 633, // 764: forge.MachineCapabilitiesSet.memory:type_name -> forge.MachineCapabilityAttributesMemory + 634, // 765: forge.MachineCapabilitiesSet.storage:type_name -> forge.MachineCapabilityAttributesStorage + 635, // 766: forge.MachineCapabilitiesSet.network:type_name -> forge.MachineCapabilityAttributesNetwork + 636, // 767: forge.MachineCapabilitiesSet.infiniband:type_name -> forge.MachineCapabilityAttributesInfiniband + 637, // 768: forge.MachineCapabilitiesSet.dpu:type_name -> forge.MachineCapabilityAttributesDpu + 641, // 769: forge.InstanceTypeAttributes.desired_capabilities:type_name -> forge.InstanceTypeMachineCapabilityFilterAttributes + 639, // 770: forge.InstanceType.attributes:type_name -> forge.InstanceTypeAttributes + 262, // 771: forge.InstanceType.metadata:type_name -> forge.Metadata + 739, // 772: forge.InstanceType.allocation_stats:type_name -> forge.InstanceTypeAllocationStats + 57, // 773: forge.InstanceTypeMachineCapabilityFilterAttributes.capability_type:type_name -> forge.MachineCapabilityType + 1022, // 774: forge.InstanceTypeMachineCapabilityFilterAttributes.inactive_devices:type_name -> common.Uint32List + 56, // 775: forge.InstanceTypeMachineCapabilityFilterAttributes.device_type:type_name -> forge.MachineCapabilityDeviceType + 262, // 776: forge.CreateInstanceTypeRequest.metadata:type_name -> forge.Metadata + 639, // 777: forge.CreateInstanceTypeRequest.instance_type_attributes:type_name -> forge.InstanceTypeAttributes + 640, // 778: forge.CreateInstanceTypeResponse.instance_type:type_name -> forge.InstanceType + 640, // 779: forge.FindInstanceTypesByIdsResponse.instance_types:type_name -> forge.InstanceType + 640, // 780: forge.UpdateInstanceTypeResponse.instance_type:type_name -> forge.InstanceType + 262, // 781: forge.UpdateInstanceTypeRequest.metadata:type_name -> forge.Metadata + 639, // 782: forge.UpdateInstanceTypeRequest.instance_type_attributes:type_name -> forge.InstanceTypeAttributes + 988, // 783: forge.RedfishBrowseResponse.headers:type_name -> forge.RedfishBrowseResponse.HeadersEntry + 660, // 784: forge.RedfishListActionsResponse.actions:type_name -> forge.RedfishAction + 995, // 785: forge.RedfishAction.approver_dates:type_name -> google.protobuf.Timestamp + 995, // 786: forge.RedfishAction.applied_at:type_name -> google.protobuf.Timestamp + 661, // 787: forge.RedfishAction.results:type_name -> forge.OptionalRedfishActionResult + 662, // 788: forge.OptionalRedfishActionResult.result:type_name -> forge.RedfishActionResult + 989, // 789: forge.RedfishActionResult.headers:type_name -> forge.RedfishActionResult.HeadersEntry + 995, // 790: forge.RedfishActionResult.completed_at:type_name -> google.protobuf.Timestamp + 990, // 791: forge.UfmBrowseResponse.headers:type_name -> forge.UfmBrowseResponse.HeadersEntry + 688, // 792: forge.NetworkSecurityGroupAttributes.rules:type_name -> forge.NetworkSecurityGroupRuleAttributes + 262, // 793: forge.NetworkSecurityGroup.metadata:type_name -> forge.Metadata + 671, // 794: forge.NetworkSecurityGroup.attributes:type_name -> forge.NetworkSecurityGroupAttributes + 262, // 795: forge.CreateNetworkSecurityGroupRequest.metadata:type_name -> forge.Metadata + 671, // 796: forge.CreateNetworkSecurityGroupRequest.network_security_group_attributes:type_name -> forge.NetworkSecurityGroupAttributes + 672, // 797: forge.CreateNetworkSecurityGroupResponse.network_security_group:type_name -> forge.NetworkSecurityGroup + 672, // 798: forge.FindNetworkSecurityGroupsByIdsResponse.network_security_groups:type_name -> forge.NetworkSecurityGroup + 672, // 799: forge.UpdateNetworkSecurityGroupResponse.network_security_group:type_name -> forge.NetworkSecurityGroup + 262, // 800: forge.UpdateNetworkSecurityGroupRequest.metadata:type_name -> forge.Metadata + 671, // 801: forge.UpdateNetworkSecurityGroupRequest.network_security_group_attributes:type_name -> forge.NetworkSecurityGroupAttributes + 58, // 802: forge.NetworkSecurityGroupStatus.source:type_name -> forge.NetworkSecurityGroupSource + 59, // 803: forge.NetworkSecurityGroupPropagationObjectStatus.status:type_name -> forge.NetworkSecurityGroupPropagationStatus + 684, // 804: forge.GetNetworkSecurityGroupPropagationStatusResponse.vpcs:type_name -> forge.NetworkSecurityGroupPropagationObjectStatus + 684, // 805: forge.GetNetworkSecurityGroupPropagationStatusResponse.instances:type_name -> forge.NetworkSecurityGroupPropagationObjectStatus + 686, // 806: forge.GetNetworkSecurityGroupPropagationStatusRequest.network_security_group_ids:type_name -> forge.NetworkSecurityGroupIdList + 60, // 807: forge.NetworkSecurityGroupRuleAttributes.direction:type_name -> forge.NetworkSecurityGroupRuleDirection + 61, // 808: forge.NetworkSecurityGroupRuleAttributes.protocol:type_name -> forge.NetworkSecurityGroupRuleProtocol + 62, // 809: forge.NetworkSecurityGroupRuleAttributes.action:type_name -> forge.NetworkSecurityGroupRuleAction + 688, // 810: forge.ResolvedNetworkSecurityGroupRule.rule:type_name -> forge.NetworkSecurityGroupRuleAttributes + 691, // 811: forge.GetNetworkSecurityGroupAttachmentsResponse.attachments:type_name -> forge.NetworkSecurityGroupAttachments + 695, // 812: forge.GetDesiredFirmwareVersionsResponse.entries:type_name -> forge.DesiredFirmwareVersionEntry + 991, // 813: forge.DesiredFirmwareVersionEntry.component_versions:type_name -> forge.DesiredFirmwareVersionEntry.ComponentVersionsEntry + 696, // 814: forge.SkuComponents.chassis:type_name -> forge.SkuComponentChassis + 697, // 815: forge.SkuComponents.cpus:type_name -> forge.SkuComponentCpu + 698, // 816: forge.SkuComponents.gpus:type_name -> forge.SkuComponentGpu + 699, // 817: forge.SkuComponents.ethernet_devices:type_name -> forge.SkuComponentEthernetDevices + 700, // 818: forge.SkuComponents.infiniband_devices:type_name -> forge.SkuComponentInfinibandDevices + 701, // 819: forge.SkuComponents.storage:type_name -> forge.SkuComponentStorage + 703, // 820: forge.SkuComponents.memory:type_name -> forge.SkuComponentMemory + 704, // 821: forge.SkuComponents.tpm:type_name -> forge.SkuComponentTpm + 995, // 822: forge.Sku.created:type_name -> google.protobuf.Timestamp + 705, // 823: forge.Sku.components:type_name -> forge.SkuComponents + 994, // 824: forge.Sku.associated_machine_ids:type_name -> common.MachineId + 994, // 825: forge.SkuMachinePair.machine_id:type_name -> common.MachineId + 994, // 826: forge.RemoveSkuRequest.machine_id:type_name -> common.MachineId + 706, // 827: forge.SkuList.skus:type_name -> forge.Sku + 995, // 828: forge.SkuStatus.verify_request_time:type_name -> google.protobuf.Timestamp + 995, // 829: forge.SkuStatus.last_match_attempt:type_name -> google.protobuf.Timestamp + 995, // 830: forge.SkuStatus.last_generate_attempt:type_name -> google.protobuf.Timestamp + 1023, // 831: forge.DpaInterface.id:type_name -> common.DpaInterfaceId + 994, // 832: forge.DpaInterface.machine_id:type_name -> common.MachineId + 995, // 833: forge.DpaInterface.created:type_name -> google.protobuf.Timestamp + 995, // 834: forge.DpaInterface.updated:type_name -> google.protobuf.Timestamp + 995, // 835: forge.DpaInterface.deleted:type_name -> google.protobuf.Timestamp + 226, // 836: forge.DpaInterface.history:type_name -> forge.StateHistoryRecord + 995, // 837: forge.DpaInterface.last_hb_time:type_name -> google.protobuf.Timestamp + 63, // 838: forge.DpaInterface.interface_type:type_name -> forge.DpaInterfaceType + 994, // 839: forge.DpaInterfaceCreationRequest.machine_id:type_name -> common.MachineId + 63, // 840: forge.DpaInterfaceCreationRequest.interface_type:type_name -> forge.DpaInterfaceType + 1023, // 841: forge.DpaInterfaceIdList.ids:type_name -> common.DpaInterfaceId + 1023, // 842: forge.DpaInterfacesByIdsRequest.ids:type_name -> common.DpaInterfaceId + 714, // 843: forge.DpaInterfaceList.interfaces:type_name -> forge.DpaInterface + 1023, // 844: forge.DpaNetworkObservationSetRequest.id:type_name -> common.DpaInterfaceId + 1023, // 845: forge.DpaInterfaceDeletionRequest.id:type_name -> common.DpaInterfaceId + 994, // 846: forge.PowerOptionRequest.machine_id:type_name -> common.MachineId + 994, // 847: forge.PowerOptionUpdateRequest.machine_id:type_name -> common.MachineId + 64, // 848: forge.PowerOptionUpdateRequest.power_state:type_name -> forge.PowerState + 64, // 849: forge.PowerOptions.desired_state:type_name -> forge.PowerState + 995, // 850: forge.PowerOptions.desired_state_updated_at:type_name -> google.protobuf.Timestamp + 64, // 851: forge.PowerOptions.actual_state:type_name -> forge.PowerState + 995, // 852: forge.PowerOptions.actual_state_updated_at:type_name -> google.protobuf.Timestamp + 994, // 853: forge.PowerOptions.host_id:type_name -> common.MachineId + 995, // 854: forge.PowerOptions.next_power_state_fetch_at:type_name -> google.protobuf.Timestamp + 995, // 855: forge.PowerOptions.tried_triggering_on_at:type_name -> google.protobuf.Timestamp + 995, // 856: forge.PowerOptions.wait_until_time_before_performing_next_power_action:type_name -> google.protobuf.Timestamp + 725, // 857: forge.PowerOptionResponse.response:type_name -> forge.PowerOptions + 1024, // 858: forge.ComputeAllocation.id:type_name -> common.ComputeAllocationId + 727, // 859: forge.ComputeAllocation.attributes:type_name -> forge.ComputeAllocationAttributes + 262, // 860: forge.ComputeAllocation.metadata:type_name -> forge.Metadata + 1024, // 861: forge.CreateComputeAllocationRequest.id:type_name -> common.ComputeAllocationId + 262, // 862: forge.CreateComputeAllocationRequest.metadata:type_name -> forge.Metadata + 727, // 863: forge.CreateComputeAllocationRequest.attributes:type_name -> forge.ComputeAllocationAttributes + 728, // 864: forge.CreateComputeAllocationResponse.allocation:type_name -> forge.ComputeAllocation + 1024, // 865: forge.FindComputeAllocationIdsResponse.ids:type_name -> common.ComputeAllocationId + 1024, // 866: forge.FindComputeAllocationsByIdsRequest.ids:type_name -> common.ComputeAllocationId + 728, // 867: forge.FindComputeAllocationsByIdsResponse.allocations:type_name -> forge.ComputeAllocation + 728, // 868: forge.UpdateComputeAllocationResponse.allocation:type_name -> forge.ComputeAllocation + 1024, // 869: forge.UpdateComputeAllocationRequest.id:type_name -> common.ComputeAllocationId + 262, // 870: forge.UpdateComputeAllocationRequest.metadata:type_name -> forge.Metadata + 727, // 871: forge.UpdateComputeAllocationRequest.attributes:type_name -> forge.ComputeAllocationAttributes + 1024, // 872: forge.DeleteComputeAllocationRequest.id:type_name -> common.ComputeAllocationId + 746, // 873: forge.GetRackResponse.rack:type_name -> forge.Rack + 746, // 874: forge.RackList.racks:type_name -> forge.Rack + 261, // 875: forge.RackSearchFilter.label:type_name -> forge.Label + 1003, // 876: forge.RackIdList.rack_ids:type_name -> common.RackId + 1003, // 877: forge.RacksByIdsRequest.rack_ids:type_name -> common.RackId + 1003, // 878: forge.Rack.id:type_name -> common.RackId + 995, // 879: forge.Rack.created:type_name -> google.protobuf.Timestamp + 995, // 880: forge.Rack.updated:type_name -> google.protobuf.Timestamp + 995, // 881: forge.Rack.deleted:type_name -> google.protobuf.Timestamp + 262, // 882: forge.Rack.metadata:type_name -> forge.Metadata + 747, // 883: forge.Rack.config:type_name -> forge.RackConfig + 748, // 884: forge.Rack.status:type_name -> forge.RackStatus + 1001, // 885: forge.RackStatus.health:type_name -> health.HealthReport + 354, // 886: forge.RackStatus.health_sources:type_name -> forge.HealthSourceOrigin + 93, // 887: forge.RackStatus.lifecycle:type_name -> forge.LifecycleStatus + 1003, // 888: forge.RackStateHistoriesRequest.rack_ids:type_name -> common.RackId + 1003, // 889: forge.AdminForceDeleteRackRequest.rack_id:type_name -> common.RackId + 753, // 890: forge.RackCapabilitiesSet.compute:type_name -> forge.RackCapabilityCompute + 754, // 891: forge.RackCapabilitiesSet.switch:type_name -> forge.RackCapabilitySwitch + 755, // 892: forge.RackCapabilitiesSet.power_shelf:type_name -> forge.RackCapabilityPowerShelf + 1025, // 893: forge.RackProfile.rack_hardware_type:type_name -> common.RackHardwareType + 65, // 894: forge.RackProfile.rack_hardware_topology:type_name -> forge.RackHardwareTopology + 67, // 895: forge.RackProfile.rack_hardware_class:type_name -> forge.RackHardwareClass + 756, // 896: forge.RackProfile.capabilities:type_name -> forge.RackCapabilitiesSet + 66, // 897: forge.RackProfile.product_family:type_name -> forge.RackProductFamily + 1003, // 898: forge.GetRackProfileRequest.rack_id:type_name -> common.RackId + 1003, // 899: forge.GetRackProfileResponse.rack_id:type_name -> common.RackId + 1006, // 900: forge.GetRackProfileResponse.rack_profile_id:type_name -> common.RackProfileId + 757, // 901: forge.GetRackProfileResponse.profile:type_name -> forge.RackProfile + 68, // 902: forge.RackManagerForgeRequest.cmd:type_name -> forge.RackManagerForgeCmd + 1014, // 903: forge.MachineNVLinkInfo.domain_uuid:type_name -> common.NVLinkDomainId + 771, // 904: forge.MachineNVLinkInfo.gpus:type_name -> forge.NVLinkGpu + 994, // 905: forge.UpdateMachineNvLinkInfoRequest.machine_id:type_name -> common.MachineId + 762, // 906: forge.UpdateMachineNvLinkInfoRequest.nvlink_info:type_name -> forge.MachineNVLinkInfo + 765, // 907: forge.MachineSpxStatusObservation.attachment_status:type_name -> forge.MachineSpxAttachmentStatusObservation + 995, // 908: forge.MachineSpxStatusObservation.observed_at:type_name -> google.protobuf.Timestamp + 1013, // 909: forge.MachineSpxAttachmentStatusObservation.partition_id:type_name -> common.SpxPartitionId + 16, // 910: forge.MachineSpxAttachmentStatusObservation.attachment_type:type_name -> forge.SpxAttachmentType + 995, // 911: forge.MachineSpxAttachmentStatusObservation.observed_at:type_name -> google.protobuf.Timestamp + 767, // 912: forge.AstraConfig.astra_attachments:type_name -> forge.AstraAttachment + 16, // 913: forge.AstraAttachment.attachment_type:type_name -> forge.SpxAttachmentType + 769, // 914: forge.AstraConfigStatus.astra_attachments_status:type_name -> forge.AstraAttachmentStatus + 16, // 915: forge.AstraAttachmentStatus.attachment_type:type_name -> forge.SpxAttachmentType + 770, // 916: forge.AstraAttachmentStatus.status:type_name -> forge.AstraStatus + 69, // 917: forge.AstraStatus.phase:type_name -> forge.AstraPhase + 773, // 918: forge.MachineNVLinkStatusObservation.gpu_status:type_name -> forge.MachineNVLinkGpuStatusObservation + 1026, // 919: forge.MachineNVLinkGpuStatusObservation.partition_id:type_name -> common.NVLinkPartitionId + 997, // 920: forge.MachineNVLinkGpuStatusObservation.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 1014, // 921: forge.MachineNVLinkGpuStatusObservation.domain_id:type_name -> common.NVLinkDomainId + 70, // 922: forge.NmxcBrowseRequest.operation:type_name -> forge.NmxcBrowseOperation + 992, // 923: forge.NmxcBrowseResponse.headers:type_name -> forge.NmxcBrowseResponse.HeadersEntry + 1026, // 924: forge.NVLinkPartition.id:type_name -> common.NVLinkPartitionId + 1014, // 925: forge.NVLinkPartition.domain_uuid:type_name -> common.NVLinkDomainId + 997, // 926: forge.NVLinkPartition.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 776, // 927: forge.NVLinkPartitionList.partitions:type_name -> forge.NVLinkPartition + 1004, // 928: forge.NVLinkPartitionQuery.id:type_name -> common.UUID + 778, // 929: forge.NVLinkPartitionQuery.search_config:type_name -> forge.NVLinkPartitionSearchConfig + 1026, // 930: forge.NVLinkPartitionsByIdsRequest.partition_ids:type_name -> common.NVLinkPartitionId + 1026, // 931: forge.NVLinkPartitionIdList.partition_ids:type_name -> common.NVLinkPartitionId + 262, // 932: forge.NVLinkLogicalPartitionConfig.metadata:type_name -> forge.Metadata + 8, // 933: forge.NVLinkLogicalPartitionStatus.state:type_name -> forge.TenantState + 997, // 934: forge.NVLinkLogicalPartition.id:type_name -> common.NVLinkLogicalPartitionId + 784, // 935: forge.NVLinkLogicalPartition.config:type_name -> forge.NVLinkLogicalPartitionConfig + 785, // 936: forge.NVLinkLogicalPartition.status:type_name -> forge.NVLinkLogicalPartitionStatus + 995, // 937: forge.NVLinkLogicalPartition.created:type_name -> google.protobuf.Timestamp + 786, // 938: forge.NVLinkLogicalPartitionList.partitions:type_name -> forge.NVLinkLogicalPartition + 784, // 939: forge.NVLinkLogicalPartitionCreationRequest.config:type_name -> forge.NVLinkLogicalPartitionConfig + 997, // 940: forge.NVLinkLogicalPartitionCreationRequest.id:type_name -> common.NVLinkLogicalPartitionId + 997, // 941: forge.NVLinkLogicalPartitionDeletionRequest.id:type_name -> common.NVLinkLogicalPartitionId + 997, // 942: forge.NVLinkLogicalPartitionsByIdsRequest.partition_ids:type_name -> common.NVLinkLogicalPartitionId + 997, // 943: forge.NVLinkLogicalPartitionIdList.partition_ids:type_name -> common.NVLinkLogicalPartitionId + 997, // 944: forge.NVLinkLogicalPartitionUpdateRequest.id:type_name -> common.NVLinkLogicalPartitionId + 784, // 945: forge.NVLinkLogicalPartitionUpdateRequest.config:type_name -> forge.NVLinkLogicalPartitionConfig + 381, // 946: forge.CreateBmcUserRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 381, // 947: forge.DeleteBmcUserRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 381, // 948: forge.SetBmcRootPasswordRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 381, // 949: forge.ProbeBmcVendorRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 994, // 950: forge.SetFirmwareUpdateTimeWindowRequest.machine_ids:type_name -> common.MachineId + 995, // 951: forge.SetFirmwareUpdateTimeWindowRequest.start_timestamp:type_name -> google.protobuf.Timestamp + 995, // 952: forge.SetFirmwareUpdateTimeWindowRequest.end_timestamp:type_name -> google.protobuf.Timestamp + 808, // 953: forge.UpsertHostFirmwareConfigRequest.components:type_name -> forge.UpsertHostFirmwareComponentConfig + 71, // 954: forge.UpsertHostFirmwareConfigRequest.ordering:type_name -> forge.HostFirmwareComponentType + 71, // 955: forge.UpsertHostFirmwareComponentConfig.type:type_name -> forge.HostFirmwareComponentType + 810, // 956: forge.UpsertHostFirmwareComponentConfig.firmware:type_name -> forge.HostFirmwareVersionConfig + 71, // 957: forge.HostFirmwareComponentConfigResponse.type:type_name -> forge.HostFirmwareComponentType + 810, // 958: forge.HostFirmwareComponentConfigResponse.firmware:type_name -> forge.HostFirmwareVersionConfig + 811, // 959: forge.HostFirmwareVersionConfig.artifacts:type_name -> forge.HostFirmwareArtifact + 809, // 960: forge.HostFirmwareConfigResponse.components:type_name -> forge.HostFirmwareComponentConfigResponse + 71, // 961: forge.HostFirmwareConfigResponse.ordering:type_name -> forge.HostFirmwareComponentType + 995, // 962: forge.HostFirmwareConfigResponse.created_at:type_name -> google.protobuf.Timestamp + 995, // 963: forge.HostFirmwareConfigResponse.updated_at:type_name -> google.protobuf.Timestamp + 815, // 964: forge.ListHostFirmwareResponse.available:type_name -> forge.AvailableHostFirmware + 72, // 965: forge.TrimTableRequest.target:type_name -> forge.TrimTableTarget + 818, // 966: forge.NvlinkNmxcEndpointList.entries:type_name -> forge.NvlinkNmxcEndpoint + 262, // 967: forge.CreateRemediationRequest.metadata:type_name -> forge.Metadata + 1027, // 968: forge.CreateRemediationResponse.remediation_id:type_name -> common.RemediationId + 1027, // 969: forge.RemediationIdList.remediation_ids:type_name -> common.RemediationId + 825, // 970: forge.RemediationList.remediations:type_name -> forge.Remediation + 1027, // 971: forge.Remediation.id:type_name -> common.RemediationId + 262, // 972: forge.Remediation.metadata:type_name -> forge.Metadata + 995, // 973: forge.Remediation.creation_time:type_name -> google.protobuf.Timestamp + 1027, // 974: forge.ApproveRemediationRequest.remediation_id:type_name -> common.RemediationId + 1027, // 975: forge.RevokeRemediationRequest.remediation_id:type_name -> common.RemediationId + 1027, // 976: forge.EnableRemediationRequest.remediation_id:type_name -> common.RemediationId + 1027, // 977: forge.DisableRemediationRequest.remediation_id:type_name -> common.RemediationId + 1027, // 978: forge.FindAppliedRemediationIdsRequest.remediation_id:type_name -> common.RemediationId + 994, // 979: forge.FindAppliedRemediationIdsRequest.dpu_machine_id:type_name -> common.MachineId + 1027, // 980: forge.AppliedRemediationIdList.remediation_ids:type_name -> common.RemediationId + 994, // 981: forge.AppliedRemediationIdList.dpu_machine_ids:type_name -> common.MachineId + 1027, // 982: forge.FindAppliedRemediationsRequest.remediation_id:type_name -> common.RemediationId + 994, // 983: forge.FindAppliedRemediationsRequest.dpu_machine_id:type_name -> common.MachineId + 1027, // 984: forge.AppliedRemediation.remediation_id:type_name -> common.RemediationId + 994, // 985: forge.AppliedRemediation.dpu_machine_id:type_name -> common.MachineId + 995, // 986: forge.AppliedRemediation.applied_time:type_name -> google.protobuf.Timestamp + 262, // 987: forge.AppliedRemediation.metadata:type_name -> forge.Metadata + 833, // 988: forge.AppliedRemediationList.applied_remediations:type_name -> forge.AppliedRemediation + 994, // 989: forge.GetNextRemediationForMachineRequest.dpu_machine_id:type_name -> common.MachineId + 1027, // 990: forge.GetNextRemediationForMachineResponse.remediation_id:type_name -> common.RemediationId + 1027, // 991: forge.RemediationAppliedRequest.remediation_id:type_name -> common.RemediationId + 994, // 992: forge.RemediationAppliedRequest.dpu_machine_id:type_name -> common.MachineId + 838, // 993: forge.RemediationAppliedRequest.status:type_name -> forge.RemediationApplicationStatus + 262, // 994: forge.RemediationApplicationStatus.metadata:type_name -> forge.Metadata + 994, // 995: forge.SetPrimaryDpuRequest.host_machine_id:type_name -> common.MachineId + 994, // 996: forge.SetPrimaryDpuRequest.dpu_machine_id:type_name -> common.MachineId + 994, // 997: forge.SetPrimaryInterfaceRequest.host_machine_id:type_name -> common.MachineId + 1015, // 998: forge.SetPrimaryInterfaceRequest.interface_id:type_name -> common.MachineInterfaceId + 841, // 999: forge.DpuExtensionServiceCredential.username_password:type_name -> forge.UsernamePassword + 862, // 1000: forge.DpuExtensionServiceVersionInfo.observability:type_name -> forge.DpuExtensionServiceObservability + 73, // 1001: forge.DpuExtensionService.service_type:type_name -> forge.DpuExtensionServiceType + 844, // 1002: forge.DpuExtensionService.latest_version_info:type_name -> forge.DpuExtensionServiceVersionInfo + 73, // 1003: forge.CreateDpuExtensionServiceRequest.service_type:type_name -> forge.DpuExtensionServiceType + 843, // 1004: forge.CreateDpuExtensionServiceRequest.credential:type_name -> forge.DpuExtensionServiceCredential + 862, // 1005: forge.CreateDpuExtensionServiceRequest.observability:type_name -> forge.DpuExtensionServiceObservability + 843, // 1006: forge.UpdateDpuExtensionServiceRequest.credential:type_name -> forge.DpuExtensionServiceCredential + 862, // 1007: forge.UpdateDpuExtensionServiceRequest.observability:type_name -> forge.DpuExtensionServiceObservability + 73, // 1008: forge.DpuExtensionServiceSearchFilter.service_type:type_name -> forge.DpuExtensionServiceType + 845, // 1009: forge.DpuExtensionServiceList.services:type_name -> forge.DpuExtensionService + 844, // 1010: forge.DpuExtensionServiceVersionInfoList.version_infos:type_name -> forge.DpuExtensionServiceVersionInfo + 858, // 1011: forge.FindInstancesByDpuExtensionServiceResponse.instances:type_name -> forge.InstanceDpuExtensionServiceInfo + 859, // 1012: forge.DpuExtensionServiceObservabilityConfig.prometheus:type_name -> forge.DpuExtensionServiceObservabilityConfigPrometheus + 860, // 1013: forge.DpuExtensionServiceObservabilityConfig.logging:type_name -> forge.DpuExtensionServiceObservabilityConfigLogging + 861, // 1014: forge.DpuExtensionServiceObservability.configs:type_name -> forge.DpuExtensionServiceObservabilityConfig + 1004, // 1015: forge.ScoutStreamApiBoundMessage.flow_uuid:type_name -> common.UUID + 865, // 1016: forge.ScoutStreamApiBoundMessage.init:type_name -> forge.ScoutStreamInitRequest + 1028, // 1017: forge.ScoutStreamApiBoundMessage.mlx_device_lockdown_response:type_name -> mlx_device.MlxDeviceLockdownResponse + 1029, // 1018: forge.ScoutStreamApiBoundMessage.mlx_device_profile_sync_response:type_name -> mlx_device.MlxDeviceProfileSyncResponse + 1030, // 1019: forge.ScoutStreamApiBoundMessage.mlx_device_profile_compare_response:type_name -> mlx_device.MlxDeviceProfileCompareResponse + 1031, // 1020: forge.ScoutStreamApiBoundMessage.mlx_device_info_device_response:type_name -> mlx_device.MlxDeviceInfoDeviceResponse + 1032, // 1021: forge.ScoutStreamApiBoundMessage.mlx_device_info_report_response:type_name -> mlx_device.MlxDeviceInfoReportResponse + 1033, // 1022: forge.ScoutStreamApiBoundMessage.mlx_device_registry_list_response:type_name -> mlx_device.MlxDeviceRegistryListResponse + 1034, // 1023: forge.ScoutStreamApiBoundMessage.mlx_device_registry_show_response:type_name -> mlx_device.MlxDeviceRegistryShowResponse + 1035, // 1024: forge.ScoutStreamApiBoundMessage.mlx_device_config_query_response:type_name -> mlx_device.MlxDeviceConfigQueryResponse + 1036, // 1025: forge.ScoutStreamApiBoundMessage.mlx_device_config_set_response:type_name -> mlx_device.MlxDeviceConfigSetResponse + 1037, // 1026: forge.ScoutStreamApiBoundMessage.mlx_device_config_sync_response:type_name -> mlx_device.MlxDeviceConfigSyncResponse + 1038, // 1027: forge.ScoutStreamApiBoundMessage.mlx_device_config_compare_response:type_name -> mlx_device.MlxDeviceConfigCompareResponse + 873, // 1028: forge.ScoutStreamApiBoundMessage.scout_stream_agent_ping_response:type_name -> forge.ScoutStreamAgentPingResponse + 1004, // 1029: forge.ScoutStreamScoutBoundMessage.flow_uuid:type_name -> common.UUID + 1039, // 1030: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_lock_request:type_name -> mlx_device.MlxDeviceLockdownLockRequest + 1040, // 1031: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_unlock_request:type_name -> mlx_device.MlxDeviceLockdownUnlockRequest + 1041, // 1032: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_status_request:type_name -> mlx_device.MlxDeviceLockdownStatusRequest + 1042, // 1033: forge.ScoutStreamScoutBoundMessage.mlx_device_profile_sync_request:type_name -> mlx_device.MlxDeviceProfileSyncRequest + 1043, // 1034: forge.ScoutStreamScoutBoundMessage.mlx_device_profile_compare_request:type_name -> mlx_device.MlxDeviceProfileCompareRequest + 1044, // 1035: forge.ScoutStreamScoutBoundMessage.mlx_device_info_device_request:type_name -> mlx_device.MlxDeviceInfoDeviceRequest + 1045, // 1036: forge.ScoutStreamScoutBoundMessage.mlx_device_info_report_request:type_name -> mlx_device.MlxDeviceInfoReportRequest + 1046, // 1037: forge.ScoutStreamScoutBoundMessage.mlx_device_registry_list_request:type_name -> mlx_device.MlxDeviceRegistryListRequest + 1047, // 1038: forge.ScoutStreamScoutBoundMessage.mlx_device_registry_show_request:type_name -> mlx_device.MlxDeviceRegistryShowRequest + 1048, // 1039: forge.ScoutStreamScoutBoundMessage.mlx_device_config_query_request:type_name -> mlx_device.MlxDeviceConfigQueryRequest + 1049, // 1040: forge.ScoutStreamScoutBoundMessage.mlx_device_config_set_request:type_name -> mlx_device.MlxDeviceConfigSetRequest + 1050, // 1041: forge.ScoutStreamScoutBoundMessage.mlx_device_config_sync_request:type_name -> mlx_device.MlxDeviceConfigSyncRequest + 1051, // 1042: forge.ScoutStreamScoutBoundMessage.mlx_device_config_compare_request:type_name -> mlx_device.MlxDeviceConfigCompareRequest + 872, // 1043: forge.ScoutStreamScoutBoundMessage.scout_stream_agent_ping_request:type_name -> forge.ScoutStreamAgentPingRequest + 994, // 1044: forge.ScoutStreamInitRequest.machine_id:type_name -> common.MachineId + 874, // 1045: forge.ScoutStreamShowConnectionsResponse.scout_stream_connections:type_name -> forge.ScoutStreamConnectionInfo + 994, // 1046: forge.ScoutStreamDisconnectRequest.machine_id:type_name -> common.MachineId + 994, // 1047: forge.ScoutStreamDisconnectResponse.machine_id:type_name -> common.MachineId + 994, // 1048: forge.ScoutStreamAdminPingRequest.machine_id:type_name -> common.MachineId + 875, // 1049: forge.ScoutStreamAgentPingResponse.error:type_name -> forge.ScoutStreamError + 994, // 1050: forge.ScoutStreamConnectionInfo.machine_id:type_name -> common.MachineId + 75, // 1051: forge.ScoutStreamError.status:type_name -> forge.ScoutStreamErrorStatus + 1020, // 1052: forge.RoutingProfile.route_target_imports:type_name -> common.RouteTarget + 1020, // 1053: forge.RoutingProfile.route_targets_on_exports:type_name -> common.RouteTarget + 876, // 1054: forge.RoutingProfile.accepted_leaks_from_underlay:type_name -> forge.PrefixFilterPolicyEntry + 876, // 1055: forge.RoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry + 1007, // 1056: forge.DomainLegacy.id:type_name -> common.DomainId + 995, // 1057: forge.DomainLegacy.created:type_name -> google.protobuf.Timestamp + 995, // 1058: forge.DomainLegacy.updated:type_name -> google.protobuf.Timestamp + 995, // 1059: forge.DomainLegacy.deleted:type_name -> google.protobuf.Timestamp + 878, // 1060: forge.DomainListLegacy.domains:type_name -> forge.DomainLegacy + 1007, // 1061: forge.DomainDeletionLegacy.id:type_name -> common.DomainId + 1007, // 1062: forge.DomainSearchQueryLegacy.id:type_name -> common.DomainId + 1052, // 1063: forge.PxeDomain.new_domain:type_name -> dns.Domain + 878, // 1064: forge.PxeDomain.legacy_domain:type_name -> forge.DomainLegacy + 994, // 1065: forge.MachinePositionQuery.machine_ids:type_name -> common.MachineId + 886, // 1066: forge.MachinePositionInfoList.machine_position_info:type_name -> forge.MachinePositionInfo + 994, // 1067: forge.MachinePositionInfo.machine_id:type_name -> common.MachineId + 1005, // 1068: forge.MachinePositionInfo.switch_id:type_name -> common.SwitchId + 1002, // 1069: forge.MachinePositionInfo.power_shelf_id:type_name -> common.PowerShelfId + 994, // 1070: forge.ModifyDPFStateRequest.machine_id:type_name -> common.MachineId + 993, // 1071: forge.DPFStateResponse.dpf_states:type_name -> forge.DPFStateResponse.DPFState + 994, // 1072: forge.GetDPFStateRequest.machine_ids:type_name -> common.MachineId + 994, // 1073: forge.GetDPFHostSnapshotRequest.host_machine_id:type_name -> common.MachineId + 893, // 1074: forge.DPFServiceVersionsResponse.services:type_name -> forge.DPFServiceVersion + 76, // 1075: forge.ComponentResult.status:type_name -> forge.ComponentManagerStatusCode + 1005, // 1076: forge.SwitchIdList.ids:type_name -> common.SwitchId + 1002, // 1077: forge.PowerShelfIdList.ids:type_name -> common.PowerShelfId + 1053, // 1078: forge.GetComponentInventoryRequest.machine_ids:type_name -> common.MachineIdList + 896, // 1079: forge.GetComponentInventoryRequest.switch_ids:type_name -> forge.SwitchIdList + 897, // 1080: forge.GetComponentInventoryRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList + 895, // 1081: forge.ComponentInventoryEntry.result:type_name -> forge.ComponentResult + 1054, // 1082: forge.ComponentInventoryEntry.report:type_name -> site_explorer.EndpointExplorationReport + 899, // 1083: forge.GetComponentInventoryResponse.entries:type_name -> forge.ComponentInventoryEntry + 1053, // 1084: forge.ComponentPowerControlRequest.machine_ids:type_name -> common.MachineIdList + 896, // 1085: forge.ComponentPowerControlRequest.switch_ids:type_name -> forge.SwitchIdList + 897, // 1086: forge.ComponentPowerControlRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList + 1055, // 1087: forge.ComponentPowerControlRequest.action:type_name -> common.SystemPowerControl + 895, // 1088: forge.ComponentPowerControlResponse.results:type_name -> forge.ComponentResult + 896, // 1089: forge.ComponentConfigureSwitchCertificateRequest.switch_ids:type_name -> forge.SwitchIdList + 895, // 1090: forge.ComponentConfigureSwitchCertificateResponse.results:type_name -> forge.ComponentResult + 895, // 1091: forge.FirmwareUpdateStatus.result:type_name -> forge.ComponentResult + 77, // 1092: forge.FirmwareUpdateStatus.state:type_name -> forge.FirmwareUpdateState + 995, // 1093: forge.FirmwareUpdateStatus.updated_at:type_name -> google.protobuf.Timestamp + 1053, // 1094: forge.UpdateComputeTrayFirmwareTarget.machine_ids:type_name -> common.MachineIdList + 80, // 1095: forge.UpdateComputeTrayFirmwareTarget.components:type_name -> forge.ComputeTrayComponent + 896, // 1096: forge.UpdateSwitchFirmwareTarget.switch_ids:type_name -> forge.SwitchIdList + 78, // 1097: forge.UpdateSwitchFirmwareTarget.components:type_name -> forge.NvSwitchComponent + 897, // 1098: forge.UpdatePowerShelfFirmwareTarget.power_shelf_ids:type_name -> forge.PowerShelfIdList + 79, // 1099: forge.UpdatePowerShelfFirmwareTarget.components:type_name -> forge.PowerShelfComponent + 744, // 1100: forge.UpdateFirmwareObjectTarget.rack_ids:type_name -> forge.RackIdList + 906, // 1101: forge.UpdateComponentFirmwareRequest.compute_trays:type_name -> forge.UpdateComputeTrayFirmwareTarget + 907, // 1102: forge.UpdateComponentFirmwareRequest.switches:type_name -> forge.UpdateSwitchFirmwareTarget + 908, // 1103: forge.UpdateComponentFirmwareRequest.power_shelves:type_name -> forge.UpdatePowerShelfFirmwareTarget + 909, // 1104: forge.UpdateComponentFirmwareRequest.racks:type_name -> forge.UpdateFirmwareObjectTarget + 895, // 1105: forge.UpdateComponentFirmwareResponse.results:type_name -> forge.ComponentResult + 1053, // 1106: forge.GetComponentFirmwareStatusRequest.machine_ids:type_name -> common.MachineIdList + 896, // 1107: forge.GetComponentFirmwareStatusRequest.switch_ids:type_name -> forge.SwitchIdList + 897, // 1108: forge.GetComponentFirmwareStatusRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList + 744, // 1109: forge.GetComponentFirmwareStatusRequest.rack_ids:type_name -> forge.RackIdList + 905, // 1110: forge.GetComponentFirmwareStatusResponse.statuses:type_name -> forge.FirmwareUpdateStatus + 1053, // 1111: forge.ListComponentFirmwareVersionsRequest.machine_ids:type_name -> common.MachineIdList + 896, // 1112: forge.ListComponentFirmwareVersionsRequest.switch_ids:type_name -> forge.SwitchIdList + 897, // 1113: forge.ListComponentFirmwareVersionsRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList + 744, // 1114: forge.ListComponentFirmwareVersionsRequest.rack_ids:type_name -> forge.RackIdList + 80, // 1115: forge.ComputeTrayFirmwareVersions.component:type_name -> forge.ComputeTrayComponent + 895, // 1116: forge.DeviceFirmwareVersions.result:type_name -> forge.ComponentResult + 915, // 1117: forge.DeviceFirmwareVersions.compute_fw_versions:type_name -> forge.ComputeTrayFirmwareVersions + 916, // 1118: forge.ListComponentFirmwareVersionsResponse.devices:type_name -> forge.DeviceFirmwareVersions + 262, // 1119: forge.SpxPartitionCreationRequest.metadata:type_name -> forge.Metadata + 1013, // 1120: forge.SpxPartitionCreationRequest.id:type_name -> common.SpxPartitionId + 262, // 1121: forge.SpxPartition.metadata:type_name -> forge.Metadata + 1013, // 1122: forge.SpxPartition.id:type_name -> common.SpxPartitionId + 1013, // 1123: forge.SpxPartitionIdList.spx_partition_ids:type_name -> common.SpxPartitionId + 1013, // 1124: forge.SpxPartitionDeletionRequest.id:type_name -> common.SpxPartitionId + 261, // 1125: forge.SpxPartitionSearchFilter.label:type_name -> forge.Label + 919, // 1126: forge.SpxPartitionList.spx_partitions:type_name -> forge.SpxPartition + 1013, // 1127: forge.SpxPartitionsByIdsRequest.spx_partition_ids:type_name -> common.SpxPartitionId + 1005, // 1128: forge.AdminForceDeleteSwitchRequest.switch_id:type_name -> common.SwitchId + 1002, // 1129: forge.AdminForceDeletePowerShelfRequest.power_shelf_id:type_name -> common.PowerShelfId + 1012, // 1130: forge.OperatingSystem.id:type_name -> common.OperatingSystemId + 81, // 1131: forge.OperatingSystem.type:type_name -> forge.OperatingSystemType + 8, // 1132: forge.OperatingSystem.status:type_name -> forge.TenantState + 1011, // 1133: forge.OperatingSystem.ipxe_template_id:type_name -> common.IpxeTemplateId + 269, // 1134: forge.OperatingSystem.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameter + 270, // 1135: forge.OperatingSystem.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifact + 1012, // 1136: forge.CreateOperatingSystemRequest.id:type_name -> common.OperatingSystemId + 1011, // 1137: forge.CreateOperatingSystemRequest.ipxe_template_id:type_name -> common.IpxeTemplateId + 269, // 1138: forge.CreateOperatingSystemRequest.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameter + 270, // 1139: forge.CreateOperatingSystemRequest.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifact + 269, // 1140: forge.IpxeTemplateParameters.items:type_name -> forge.IpxeTemplateParameter + 270, // 1141: forge.IpxeTemplateArtifacts.items:type_name -> forge.IpxeTemplateArtifact + 1012, // 1142: forge.UpdateOperatingSystemRequest.id:type_name -> common.OperatingSystemId + 1011, // 1143: forge.UpdateOperatingSystemRequest.ipxe_template_id:type_name -> common.IpxeTemplateId + 932, // 1144: forge.UpdateOperatingSystemRequest.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameters + 933, // 1145: forge.UpdateOperatingSystemRequest.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifacts + 1012, // 1146: forge.DeleteOperatingSystemRequest.id:type_name -> common.OperatingSystemId + 1012, // 1147: forge.OperatingSystemIdList.ids:type_name -> common.OperatingSystemId + 1012, // 1148: forge.OperatingSystemsByIdsRequest.ids:type_name -> common.OperatingSystemId + 930, // 1149: forge.OperatingSystemList.operating_systems:type_name -> forge.OperatingSystem + 1012, // 1150: forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest.id:type_name -> common.OperatingSystemId + 270, // 1151: forge.IpxeTemplateArtifactList.artifacts:type_name -> forge.IpxeTemplateArtifact + 1012, // 1152: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest.id:type_name -> common.OperatingSystemId + 943, // 1153: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest.updates:type_name -> forge.IpxeTemplateArtifactUpdateRequest + 994, // 1154: forge.GetMachineBootInterfacesRequest.machine_id:type_name -> common.MachineId + 1015, // 1155: forge.MachineInterfaceBootInterface.interface_id:type_name -> common.MachineInterfaceId + 995, // 1156: forge.RetainedBootInterface.recorded_at:type_name -> google.protobuf.Timestamp + 994, // 1157: forge.GetMachineBootInterfacesResponse.machine_id:type_name -> common.MachineId + 950, // 1158: forge.GetMachineBootInterfacesResponse.machine_interfaces:type_name -> forge.MachineInterfaceBootInterface + 951, // 1159: forge.GetMachineBootInterfacesResponse.predicted_interfaces:type_name -> forge.PredictedBootInterface + 952, // 1160: forge.GetMachineBootInterfacesResponse.explored_endpoints:type_name -> forge.ExploredBootInterface + 953, // 1161: forge.GetMachineBootInterfacesResponse.retained_interfaces:type_name -> forge.RetainedBootInterface + 949, // 1162: forge.GetMachineBootInterfacesResponse.default_boot_interface:type_name -> forge.MachineBootInterface + 949, // 1163: forge.GetMachineBootInterfacesResponse.predicted_boot_interface:type_name -> forge.MachineBootInterface + 958, // 1164: forge.DNSMessage.DNSResponse.rrs:type_name -> forge.DNSMessage.DNSResponse.DNSRR + 227, // 1165: forge.StateHistories.HistoriesEntry.value:type_name -> forge.StateHistoryRecords + 318, // 1166: forge.MachineStateHistories.HistoriesEntry.value:type_name -> forge.MachineStateHistoryRecords + 321, // 1167: forge.HealthHistories.HistoriesEntry.value:type_name -> forge.HealthHistoryRecords + 945, // 1168: forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry.value:type_name -> forge.HostRepresentorInterceptBridging + 84, // 1169: forge.MachineCredentialsUpdateRequest.Credentials.credential_purpose:type_name -> forge.MachineCredentialsUpdateRequest.CredentialPurpose + 983, // 1170: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.pair:type_name -> forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.KeyValuePair + 1021, // 1171: forge.ForgeAgentControlResponse.MachineValidation.validation_id:type_name -> common.MachineValidationId + 974, // 1172: forge.ForgeAgentControlResponse.MachineValidation.filter:type_name -> forge.ForgeAgentControlResponse.MachineValidationFilter + 1018, // 1173: forge.ForgeAgentControlResponse.MachineValidationFilter.contexts:type_name -> common.StringList + 976, // 1174: forge.ForgeAgentControlResponse.MlxAction.device_actions:type_name -> forge.ForgeAgentControlResponse.MlxDeviceAction + 977, // 1175: forge.ForgeAgentControlResponse.MlxDeviceAction.noop:type_name -> forge.ForgeAgentControlResponse.MlxDeviceNoop + 978, // 1176: forge.ForgeAgentControlResponse.MlxDeviceAction.lock:type_name -> forge.ForgeAgentControlResponse.MlxDeviceLock + 979, // 1177: forge.ForgeAgentControlResponse.MlxDeviceAction.unlock:type_name -> forge.ForgeAgentControlResponse.MlxDeviceUnlock + 980, // 1178: forge.ForgeAgentControlResponse.MlxDeviceAction.apply_profile:type_name -> forge.ForgeAgentControlResponse.MlxDeviceApplyProfile + 981, // 1179: forge.ForgeAgentControlResponse.MlxDeviceAction.apply_firmware:type_name -> forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware + 1056, // 1180: forge.ForgeAgentControlResponse.MlxDeviceApplyProfile.serialized_profile:type_name -> mlx_device.SerializableMlxConfigProfile + 1057, // 1181: forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware.profile:type_name -> mlx_device.FirmwareFlasherProfile + 1058, // 1182: forge.ForgeAgentControlResponse.FirmwareUpgrade.task:type_name -> scout_firmware_upgrade.ScoutFirmwareUpgradeTask + 86, // 1183: forge.MachineCleanupInfo.CleanupStepResult.result:type_name -> forge.MachineCleanupInfo.CleanupResult + 994, // 1184: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.id:type_name -> common.MachineId + 995, // 1185: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.requested_at:type_name -> google.protobuf.Timestamp + 995, // 1186: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.initiated_at:type_name -> google.protobuf.Timestamp + 994, // 1187: forge.HostReprovisioningListResponse.HostReprovisioningListItem.id:type_name -> common.MachineId + 995, // 1188: forge.HostReprovisioningListResponse.HostReprovisioningListItem.requested_at:type_name -> google.protobuf.Timestamp + 995, // 1189: forge.HostReprovisioningListResponse.HostReprovisioningListItem.initiated_at:type_name -> google.protobuf.Timestamp + 994, // 1190: forge.DPFStateResponse.DPFState.machine_id:type_name -> common.MachineId + 141, // 1191: forge.Forge.Version:input_type -> forge.VersionRequest + 1059, // 1192: forge.Forge.CreateDomain:input_type -> dns.CreateDomainRequest + 1060, // 1193: forge.Forge.UpdateDomain:input_type -> dns.UpdateDomainRequest + 1061, // 1194: forge.Forge.DeleteDomain:input_type -> dns.DomainDeletionRequest + 1062, // 1195: forge.Forge.FindDomain:input_type -> dns.DomainSearchQuery + 878, // 1196: forge.Forge.CreateDomainLegacy:input_type -> forge.DomainLegacy + 878, // 1197: forge.Forge.UpdateDomainLegacy:input_type -> forge.DomainLegacy + 880, // 1198: forge.Forge.DeleteDomainLegacy:input_type -> forge.DomainDeletionLegacy + 882, // 1199: forge.Forge.FindDomainLegacy:input_type -> forge.DomainSearchQueryLegacy + 160, // 1200: forge.Forge.CreateVpc:input_type -> forge.VpcCreationRequest + 161, // 1201: forge.Forge.UpdateVpc:input_type -> forge.VpcUpdateRequest + 163, // 1202: forge.Forge.UpdateVpcVirtualization:input_type -> forge.VpcUpdateVirtualizationRequest + 165, // 1203: forge.Forge.DeleteVpc:input_type -> forge.VpcDeletionRequest + 153, // 1204: forge.Forge.FindVpcIds:input_type -> forge.VpcSearchFilter + 155, // 1205: forge.Forge.FindVpcsByIds:input_type -> forge.VpcsByIdsRequest + 918, // 1206: forge.Forge.CreateSpxPartition:input_type -> forge.SpxPartitionCreationRequest + 921, // 1207: forge.Forge.DeleteSpxPartition:input_type -> forge.SpxPartitionDeletionRequest + 923, // 1208: forge.Forge.FindSpxPartitionIds:input_type -> forge.SpxPartitionSearchFilter + 925, // 1209: forge.Forge.FindSpxPartitionsByIds:input_type -> forge.SpxPartitionsByIdsRequest + 171, // 1210: forge.Forge.CreateVpcPrefix:input_type -> forge.VpcPrefixCreationRequest + 172, // 1211: forge.Forge.SearchVpcPrefixes:input_type -> forge.VpcPrefixSearchQuery + 173, // 1212: forge.Forge.GetVpcPrefixes:input_type -> forge.VpcPrefixGetRequest + 176, // 1213: forge.Forge.UpdateVpcPrefix:input_type -> forge.VpcPrefixUpdateRequest + 177, // 1214: forge.Forge.DeleteVpcPrefix:input_type -> forge.VpcPrefixDeletionRequest + 183, // 1215: forge.Forge.CreateVpcPeering:input_type -> forge.VpcPeeringCreationRequest + 184, // 1216: forge.Forge.FindVpcPeeringIds:input_type -> forge.VpcPeeringSearchFilter + 185, // 1217: forge.Forge.FindVpcPeeringsByIds:input_type -> forge.VpcPeeringsByIdsRequest + 186, // 1218: forge.Forge.DeleteVpcPeering:input_type -> forge.VpcPeeringDeletionRequest + 253, // 1219: forge.Forge.FindNetworkSegmentIds:input_type -> forge.NetworkSegmentSearchFilter + 255, // 1220: forge.Forge.FindNetworkSegmentsByIds:input_type -> forge.NetworkSegmentsByIdsRequest + 247, // 1221: forge.Forge.CreateNetworkSegment:input_type -> forge.NetworkSegmentCreationRequest + 249, // 1222: forge.Forge.AttachNetworkSegmentToVpc:input_type -> forge.AttachNetworkSegmentToVpcRequest + 248, // 1223: forge.Forge.DeleteNetworkSegment:input_type -> forge.NetworkSegmentDeletionRequest + 152, // 1224: forge.Forge.NetworkSegmentsForVpc:input_type -> forge.VpcSearchQuery + 196, // 1225: forge.Forge.FindIBPartitionIds:input_type -> forge.IBPartitionSearchFilter + 197, // 1226: forge.Forge.FindIBPartitionsByIds:input_type -> forge.IBPartitionsByIdsRequest + 192, // 1227: forge.Forge.CreateIBPartition:input_type -> forge.IBPartitionCreationRequest + 193, // 1228: forge.Forge.UpdateIBPartition:input_type -> forge.IBPartitionUpdateRequest + 194, // 1229: forge.Forge.DeleteIBPartition:input_type -> forge.IBPartitionDeletionRequest + 156, // 1230: forge.Forge.IBPartitionsForTenant:input_type -> forge.TenantSearchQuery + 208, // 1231: forge.Forge.FindPowerShelves:input_type -> forge.PowerShelfQuery + 209, // 1232: forge.Forge.FindPowerShelfIds:input_type -> forge.PowerShelfSearchFilter + 210, // 1233: forge.Forge.FindPowerShelvesByIds:input_type -> forge.PowerShelvesByIdsRequest + 204, // 1234: forge.Forge.DeletePowerShelf:input_type -> forge.PowerShelfDeletionRequest + 928, // 1235: forge.Forge.AdminForceDeletePowerShelf:input_type -> forge.AdminForceDeletePowerShelfRequest + 206, // 1236: forge.Forge.SetPowerShelfMaintenance:input_type -> forge.PowerShelfMaintenanceRequest + 230, // 1237: forge.Forge.FindSwitches:input_type -> forge.SwitchQuery + 231, // 1238: forge.Forge.FindSwitchIds:input_type -> forge.SwitchSearchFilter + 232, // 1239: forge.Forge.FindSwitchesByIds:input_type -> forge.SwitchesByIdsRequest + 224, // 1240: forge.Forge.DeleteSwitch:input_type -> forge.SwitchDeletionRequest + 926, // 1241: forge.Forge.AdminForceDeleteSwitch:input_type -> forge.AdminForceDeleteSwitchRequest + 241, // 1242: forge.Forge.FindIBFabricIds:input_type -> forge.IBFabricSearchFilter + 266, // 1243: forge.Forge.AllocateInstance:input_type -> forge.InstanceAllocationRequest + 267, // 1244: forge.Forge.AllocateInstances:input_type -> forge.BatchInstanceAllocationRequest + 312, // 1245: forge.Forge.ReleaseInstance:input_type -> forge.InstanceReleaseRequest + 284, // 1246: forge.Forge.UpdateInstanceOperatingSystem:input_type -> forge.InstanceOperatingSystemUpdateRequest + 285, // 1247: forge.Forge.UpdateInstanceConfig:input_type -> forge.InstanceConfigUpdateRequest + 263, // 1248: forge.Forge.FindInstanceIds:input_type -> forge.InstanceSearchFilter + 265, // 1249: forge.Forge.FindInstancesByIds:input_type -> forge.InstancesByIdsRequest + 994, // 1250: forge.Forge.FindInstanceByMachineID:input_type -> common.MachineId + 387, // 1251: forge.Forge.GetManagedHostNetworkConfig:input_type -> forge.ManagedHostNetworkConfigRequest + 452, // 1252: forge.Forge.RecordDpuNetworkStatus:input_type -> forge.DpuNetworkStatus + 994, // 1253: forge.Forge.ListMachineHealthReports:input_type -> common.MachineId + 458, // 1254: forge.Forge.InsertMachineHealthReport:input_type -> forge.InsertMachineHealthReportRequest + 469, // 1255: forge.Forge.RemoveMachineHealthReport:input_type -> forge.RemoveMachineHealthReportRequest + 461, // 1256: forge.Forge.ListRackHealthReports:input_type -> forge.ListRackHealthReportsRequest + 459, // 1257: forge.Forge.InsertRackHealthReport:input_type -> forge.InsertRackHealthReportRequest + 460, // 1258: forge.Forge.RemoveRackHealthReport:input_type -> forge.RemoveRackHealthReportRequest + 464, // 1259: forge.Forge.ListSwitchHealthReports:input_type -> forge.ListSwitchHealthReportsRequest + 462, // 1260: forge.Forge.InsertSwitchHealthReport:input_type -> forge.InsertSwitchHealthReportRequest + 463, // 1261: forge.Forge.RemoveSwitchHealthReport:input_type -> forge.RemoveSwitchHealthReportRequest + 467, // 1262: forge.Forge.ListPowerShelfHealthReports:input_type -> forge.ListPowerShelfHealthReportsRequest + 465, // 1263: forge.Forge.InsertPowerShelfHealthReport:input_type -> forge.InsertPowerShelfHealthReportRequest + 466, // 1264: forge.Forge.RemovePowerShelfHealthReport:input_type -> forge.RemovePowerShelfHealthReportRequest + 470, // 1265: forge.Forge.ListNVLinkDomainHealthReports:input_type -> forge.ListNVLinkDomainHealthReportsRequest + 471, // 1266: forge.Forge.InsertNVLinkDomainHealthReport:input_type -> forge.InsertNVLinkDomainHealthReportRequest + 472, // 1267: forge.Forge.RemoveNVLinkDomainHealthReport:input_type -> forge.RemoveNVLinkDomainHealthReportRequest + 994, // 1268: forge.Forge.ListHealthReportOverrides:input_type -> common.MachineId + 458, // 1269: forge.Forge.InsertHealthReportOverride:input_type -> forge.InsertMachineHealthReportRequest + 469, // 1270: forge.Forge.RemoveHealthReportOverride:input_type -> forge.RemoveMachineHealthReportRequest + 406, // 1271: forge.Forge.DpuAgentUpgradeCheck:input_type -> forge.DpuAgentUpgradeCheckRequest + 408, // 1272: forge.Forge.DpuAgentUpgradePolicyAction:input_type -> forge.DpuAgentUpgradePolicyRequest + 1063, // 1273: forge.Forge.LookupRecord:input_type -> dns.DnsResourceRecordLookupRequest + 1064, // 1274: forge.Forge.GetAllDomains:input_type -> dns.GetAllDomainsRequest + 1065, // 1275: forge.Forge.GetAllDomainMetadata:input_type -> dns.DomainMetadataRequest + 258, // 1276: forge.Forge.InvokeInstancePower:input_type -> forge.InstancePowerRequest + 433, // 1277: forge.Forge.ForgeAgentControl:input_type -> forge.ForgeAgentControlRequest + 435, // 1278: forge.Forge.DiscoverMachine:input_type -> forge.MachineDiscoveryInfo + 439, // 1279: forge.Forge.RenewMachineCertificate:input_type -> forge.MachineCertificateRenewRequest + 436, // 1280: forge.Forge.DiscoveryCompleted:input_type -> forge.MachineDiscoveryCompletedRequest + 437, // 1281: forge.Forge.CleanupMachineCompleted:input_type -> forge.MachineCleanupInfo + 444, // 1282: forge.Forge.ReportForgeScoutError:input_type -> forge.ForgeScoutErrorReport + 363, // 1283: forge.Forge.DiscoverDhcp:input_type -> forge.DhcpDiscovery + 364, // 1284: forge.Forge.ExpireDhcpLease:input_type -> forge.ExpireDhcpLeaseRequest + 331, // 1285: forge.Forge.AssignStaticAddress:input_type -> forge.AssignStaticAddressRequest + 333, // 1286: forge.Forge.RemoveStaticAddress:input_type -> forge.RemoveStaticAddressRequest + 335, // 1287: forge.Forge.FindInterfaceAddresses:input_type -> forge.FindInterfaceAddressesRequest + 330, // 1288: forge.Forge.FindInterfaces:input_type -> forge.InterfaceSearchQuery + 329, // 1289: forge.Forge.DeleteInterface:input_type -> forge.InterfaceDeleteQuery + 508, // 1290: forge.Forge.FindIpAddress:input_type -> forge.FindIpAddressRequest + 315, // 1291: forge.Forge.FindMachineIds:input_type -> forge.MachineSearchConfig + 314, // 1292: forge.Forge.FindMachinesByIds:input_type -> forge.MachinesByIdsRequest + 316, // 1293: forge.Forge.FindMachineStateHistories:input_type -> forge.MachineStateHistoriesRequest + 319, // 1294: forge.Forge.FindMachineHealthHistories:input_type -> forge.MachineHealthHistoriesRequest + 207, // 1295: forge.Forge.FindPowerShelfStateHistories:input_type -> forge.PowerShelfStateHistoriesRequest + 749, // 1296: forge.Forge.FindRackStateHistories:input_type -> forge.RackStateHistoriesRequest + 228, // 1297: forge.Forge.FindSwitchStateHistories:input_type -> forge.SwitchStateHistoriesRequest + 251, // 1298: forge.Forge.FindNetworkSegmentStateHistories:input_type -> forge.NetworkSegmentStateHistoriesRequest + 179, // 1299: forge.Forge.FindVpcPrefixStateHistories:input_type -> forge.VpcPrefixStateHistoriesRequest + 324, // 1300: forge.Forge.FindTenantOrganizationIds:input_type -> forge.TenantSearchFilter + 323, // 1301: forge.Forge.FindTenantsByOrganizationIds:input_type -> forge.TenantByOrganizationIdsRequest + 1053, // 1302: forge.Forge.FindConnectedDevicesByDpuMachineIds:input_type -> common.MachineIdList + 533, // 1303: forge.Forge.FindMachineIdsByBmcIps:input_type -> forge.BmcIpList + 534, // 1304: forge.Forge.FindMacAddressByBmcIp:input_type -> forge.BmcIp + 512, // 1305: forge.Forge.FindBmcIps:input_type -> forge.FindBmcIpsRequest + 510, // 1306: forge.Forge.IdentifyUuid:input_type -> forge.IdentifyUuidRequest + 513, // 1307: forge.Forge.IdentifyMac:input_type -> forge.IdentifyMacRequest + 515, // 1308: forge.Forge.IdentifySerial:input_type -> forge.IdentifySerialRequest + 429, // 1309: forge.Forge.GetBMCMetaData:input_type -> forge.BMCMetaDataGetRequest + 431, // 1310: forge.Forge.UpdateMachineCredentials:input_type -> forge.MachineCredentialsUpdateRequest + 446, // 1311: forge.Forge.GetPxeInstructions:input_type -> forge.PxeInstructionRequest + 450, // 1312: forge.Forge.GetCloudInitInstructions:input_type -> forge.CloudInitInstructionsRequest + 144, // 1313: forge.Forge.Echo:input_type -> forge.EchoRequest + 477, // 1314: forge.Forge.CreateTenant:input_type -> forge.CreateTenantRequest + 481, // 1315: forge.Forge.FindTenant:input_type -> forge.FindTenantRequest + 479, // 1316: forge.Forge.UpdateTenant:input_type -> forge.UpdateTenantRequest + 487, // 1317: forge.Forge.CreateTenantKeyset:input_type -> forge.CreateTenantKeysetRequest + 494, // 1318: forge.Forge.FindTenantKeysetIds:input_type -> forge.TenantKeysetSearchFilter + 496, // 1319: forge.Forge.FindTenantKeysetsByIds:input_type -> forge.TenantKeysetsByIdsRequest + 490, // 1320: forge.Forge.UpdateTenantKeyset:input_type -> forge.UpdateTenantKeysetRequest + 492, // 1321: forge.Forge.DeleteTenantKeyset:input_type -> forge.DeleteTenantKeysetRequest + 497, // 1322: forge.Forge.ValidateTenantPublicKey:input_type -> forge.ValidateTenantPublicKeyRequest + 370, // 1323: forge.Forge.GetBmcCredentials:input_type -> forge.GetBmcCredentialsRequest + 371, // 1324: forge.Forge.GetSwitchNvosCredentials:input_type -> forge.GetSwitchNvosCredentialsRequest + 404, // 1325: forge.Forge.GetAllManagedHostNetworkStatus:input_type -> forge.ManagedHostNetworkStatusRequest + 374, // 1326: forge.Forge.GetSiteExplorationReport:input_type -> forge.GetSiteExplorationRequest + 1066, // 1327: forge.Forge.GetSiteExplorerLastRun:input_type -> google.protobuf.Empty + 375, // 1328: forge.Forge.ClearSiteExplorationError:input_type -> forge.ClearSiteExplorationErrorRequest + 381, // 1329: forge.Forge.IsBmcInManagedHost:input_type -> forge.BmcEndpointRequest + 381, // 1330: forge.Forge.BmcCredentialStatus:input_type -> forge.BmcEndpointRequest + 381, // 1331: forge.Forge.Explore:input_type -> forge.BmcEndpointRequest + 376, // 1332: forge.Forge.ReExploreEndpoint:input_type -> forge.ReExploreEndpointRequest + 377, // 1333: forge.Forge.RefreshEndpointReport:input_type -> forge.RefreshEndpointReportRequest + 378, // 1334: forge.Forge.DeleteExploredEndpoint:input_type -> forge.DeleteExploredEndpointRequest + 379, // 1335: forge.Forge.PauseExploredEndpointRemediation:input_type -> forge.PauseExploredEndpointRemediationRequest + 1067, // 1336: forge.Forge.FindExploredEndpointIds:input_type -> site_explorer.ExploredEndpointSearchFilter + 1068, // 1337: forge.Forge.FindExploredEndpointsByIds:input_type -> site_explorer.ExploredEndpointsByIdsRequest + 1069, // 1338: forge.Forge.FindExploredManagedHostIds:input_type -> site_explorer.ExploredManagedHostSearchFilter + 1070, // 1339: forge.Forge.FindExploredManagedHostsByIds:input_type -> site_explorer.ExploredManagedHostsByIdsRequest + 1071, // 1340: forge.Forge.FindExploredMlxDeviceHostIds:input_type -> site_explorer.ExploredMlxDeviceHostSearchFilter + 1072, // 1341: forge.Forge.FindExploredMlxDevicesByIds:input_type -> site_explorer.ExploredMlxDevicesByIdsRequest + 385, // 1342: forge.Forge.UpdateMachineHardwareInfo:input_type -> forge.UpdateMachineHardwareInfoRequest + 410, // 1343: forge.Forge.AdminForceDeleteMachine:input_type -> forge.AdminForceDeleteMachineRequest + 499, // 1344: forge.Forge.AdminListResourcePools:input_type -> forge.ListResourcePoolsRequest + 502, // 1345: forge.Forge.AdminGrowResourcePool:input_type -> forge.GrowResourcePoolRequest + 347, // 1346: forge.Forge.UpdateMachineMetadata:input_type -> forge.MachineMetadataUpdateRequest + 348, // 1347: forge.Forge.UpdateRackMetadata:input_type -> forge.RackMetadataUpdateRequest + 349, // 1348: forge.Forge.UpdateSwitchMetadata:input_type -> forge.SwitchMetadataUpdateRequest + 350, // 1349: forge.Forge.UpdatePowerShelfMetadata:input_type -> forge.PowerShelfMetadataUpdateRequest + 763, // 1350: forge.Forge.UpdateMachineNvLinkInfo:input_type -> forge.UpdateMachineNvLinkInfoRequest + 506, // 1351: forge.Forge.SetMaintenance:input_type -> forge.MaintenanceRequest + 507, // 1352: forge.Forge.SetDynamicConfig:input_type -> forge.SetDynamicConfigRequest + 517, // 1353: forge.Forge.TriggerDpuReprovisioning:input_type -> forge.DpuReprovisioningRequest + 518, // 1354: forge.Forge.ListDpuWaitingForReprovisioning:input_type -> forge.DpuReprovisioningListRequest + 520, // 1355: forge.Forge.TriggerHostReprovisioning:input_type -> forge.HostReprovisioningRequest + 521, // 1356: forge.Forge.ListHostsWaitingForReprovisioning:input_type -> forge.HostReprovisioningListRequest + 994, // 1357: forge.Forge.MarkManualFirmwareUpgradeComplete:input_type -> common.MachineId + 572, // 1358: forge.Forge.ReportScoutFirmwareUpgradeStatus:input_type -> forge.ScoutFirmwareUpgradeStatusRequest + 527, // 1359: forge.Forge.GetDpuInfoList:input_type -> forge.GetDpuInfoListRequest + 1015, // 1360: forge.Forge.GetMachineBootOverride:input_type -> common.MachineInterfaceId + 530, // 1361: forge.Forge.SetMachineBootOverride:input_type -> forge.MachineBootOverride + 1015, // 1362: forge.Forge.ClearMachineBootOverride:input_type -> common.MachineInterfaceId + 948, // 1363: forge.Forge.GetMachineBootInterfaces:input_type -> forge.GetMachineBootInterfacesRequest + 539, // 1364: forge.Forge.GetNetworkTopology:input_type -> forge.NetworkTopologyRequest + 540, // 1365: forge.Forge.FindNetworkDevicesByDeviceIds:input_type -> forge.NetworkDeviceIdList + 132, // 1366: forge.Forge.CreateCredential:input_type -> forge.CredentialCreationRequest + 133, // 1367: forge.Forge.DeleteCredential:input_type -> forge.CredentialDeletionRequest + 136, // 1368: forge.Forge.RotateCredential:input_type -> forge.RotateCredentialRequest + 138, // 1369: forge.Forge.GetCredentialRotationStatus:input_type -> forge.CredentialRotationStatusRequest + 1066, // 1370: forge.Forge.GetRouteServers:input_type -> google.protobuf.Empty + 542, // 1371: forge.Forge.AddRouteServers:input_type -> forge.RouteServers + 542, // 1372: forge.Forge.RemoveRouteServers:input_type -> forge.RouteServers + 542, // 1373: forge.Forge.ReplaceRouteServers:input_type -> forge.RouteServers + 351, // 1374: forge.Forge.UpdateAgentReportedInventory:input_type -> forge.DpuAgentInventoryReport + 307, // 1375: forge.Forge.UpdateInstancePhoneHomeLastContact:input_type -> forge.InstancePhoneHomeLastContactRequest + 545, // 1376: forge.Forge.SetHostUefiPassword:input_type -> forge.SetHostUefiPasswordRequest + 547, // 1377: forge.Forge.ClearHostUefiPassword:input_type -> forge.ClearHostUefiPasswordRequest + 560, // 1378: forge.Forge.AddExpectedMachine:input_type -> forge.ExpectedMachine + 561, // 1379: forge.Forge.DeleteExpectedMachine:input_type -> forge.ExpectedMachineRequest + 560, // 1380: forge.Forge.UpdateExpectedMachine:input_type -> forge.ExpectedMachine + 561, // 1381: forge.Forge.GetExpectedMachine:input_type -> forge.ExpectedMachineRequest + 1066, // 1382: forge.Forge.GetAllExpectedMachines:input_type -> google.protobuf.Empty + 562, // 1383: forge.Forge.ReplaceAllExpectedMachines:input_type -> forge.ExpectedMachineList + 1066, // 1384: forge.Forge.DeleteAllExpectedMachines:input_type -> google.protobuf.Empty + 1066, // 1385: forge.Forge.GetAllExpectedMachinesLinked:input_type -> google.protobuf.Empty + 1066, // 1386: forge.Forge.GetAllUnexpectedMachines:input_type -> google.protobuf.Empty + 567, // 1387: forge.Forge.CreateExpectedMachines:input_type -> forge.BatchExpectedMachineOperationRequest + 567, // 1388: forge.Forge.UpdateExpectedMachines:input_type -> forge.BatchExpectedMachineOperationRequest + 211, // 1389: forge.Forge.AddExpectedPowerShelf:input_type -> forge.ExpectedPowerShelf + 212, // 1390: forge.Forge.DeleteExpectedPowerShelf:input_type -> forge.ExpectedPowerShelfRequest + 211, // 1391: forge.Forge.UpdateExpectedPowerShelf:input_type -> forge.ExpectedPowerShelf + 212, // 1392: forge.Forge.GetExpectedPowerShelf:input_type -> forge.ExpectedPowerShelfRequest + 1066, // 1393: forge.Forge.GetAllExpectedPowerShelves:input_type -> google.protobuf.Empty + 213, // 1394: forge.Forge.ReplaceAllExpectedPowerShelves:input_type -> forge.ExpectedPowerShelfList + 1066, // 1395: forge.Forge.DeleteAllExpectedPowerShelves:input_type -> google.protobuf.Empty + 1066, // 1396: forge.Forge.GetAllExpectedPowerShelvesLinked:input_type -> google.protobuf.Empty + 233, // 1397: forge.Forge.AddExpectedSwitch:input_type -> forge.ExpectedSwitch + 234, // 1398: forge.Forge.DeleteExpectedSwitch:input_type -> forge.ExpectedSwitchRequest + 233, // 1399: forge.Forge.UpdateExpectedSwitch:input_type -> forge.ExpectedSwitch + 234, // 1400: forge.Forge.GetExpectedSwitch:input_type -> forge.ExpectedSwitchRequest + 1066, // 1401: forge.Forge.GetAllExpectedSwitches:input_type -> google.protobuf.Empty + 235, // 1402: forge.Forge.ReplaceAllExpectedSwitches:input_type -> forge.ExpectedSwitchList + 1066, // 1403: forge.Forge.DeleteAllExpectedSwitches:input_type -> google.protobuf.Empty + 1066, // 1404: forge.Forge.GetAllExpectedSwitchesLinked:input_type -> google.protobuf.Empty + 238, // 1405: forge.Forge.AddExpectedRack:input_type -> forge.ExpectedRack + 239, // 1406: forge.Forge.DeleteExpectedRack:input_type -> forge.ExpectedRackRequest + 238, // 1407: forge.Forge.UpdateExpectedRack:input_type -> forge.ExpectedRack + 239, // 1408: forge.Forge.GetExpectedRack:input_type -> forge.ExpectedRackRequest + 1066, // 1409: forge.Forge.GetAllExpectedRacks:input_type -> google.protobuf.Empty + 240, // 1410: forge.Forge.ReplaceAllExpectedRacks:input_type -> forge.ExpectedRackList + 1066, // 1411: forge.Forge.DeleteAllExpectedRacks:input_type -> google.protobuf.Empty + 130, // 1412: forge.Forge.AttestQuote:input_type -> forge.AttestQuoteRequest + 642, // 1413: forge.Forge.CreateInstanceType:input_type -> forge.CreateInstanceTypeRequest + 644, // 1414: forge.Forge.FindInstanceTypeIds:input_type -> forge.FindInstanceTypeIdsRequest + 646, // 1415: forge.Forge.FindInstanceTypesByIds:input_type -> forge.FindInstanceTypesByIdsRequest + 651, // 1416: forge.Forge.UpdateInstanceType:input_type -> forge.UpdateInstanceTypeRequest + 648, // 1417: forge.Forge.DeleteInstanceType:input_type -> forge.DeleteInstanceTypeRequest + 652, // 1418: forge.Forge.AssociateMachinesWithInstanceType:input_type -> forge.AssociateMachinesWithInstanceTypeRequest + 654, // 1419: forge.Forge.RemoveMachineInstanceTypeAssociation:input_type -> forge.RemoveMachineInstanceTypeAssociationRequest + 1073, // 1420: forge.Forge.CreateMeasurementBundle:input_type -> measured_boot.CreateMeasurementBundleRequest + 1074, // 1421: forge.Forge.DeleteMeasurementBundle:input_type -> measured_boot.DeleteMeasurementBundleRequest + 1075, // 1422: forge.Forge.RenameMeasurementBundle:input_type -> measured_boot.RenameMeasurementBundleRequest + 1076, // 1423: forge.Forge.UpdateMeasurementBundle:input_type -> measured_boot.UpdateMeasurementBundleRequest + 1077, // 1424: forge.Forge.ShowMeasurementBundle:input_type -> measured_boot.ShowMeasurementBundleRequest + 1078, // 1425: forge.Forge.ShowMeasurementBundles:input_type -> measured_boot.ShowMeasurementBundlesRequest + 1079, // 1426: forge.Forge.ListMeasurementBundles:input_type -> measured_boot.ListMeasurementBundlesRequest + 1080, // 1427: forge.Forge.ListMeasurementBundleMachines:input_type -> measured_boot.ListMeasurementBundleMachinesRequest + 1081, // 1428: forge.Forge.FindClosestBundleMatch:input_type -> measured_boot.FindClosestBundleMatchRequest + 1082, // 1429: forge.Forge.DeleteMeasurementJournal:input_type -> measured_boot.DeleteMeasurementJournalRequest + 1083, // 1430: forge.Forge.ShowMeasurementJournal:input_type -> measured_boot.ShowMeasurementJournalRequest + 1084, // 1431: forge.Forge.ShowMeasurementJournals:input_type -> measured_boot.ShowMeasurementJournalsRequest + 1085, // 1432: forge.Forge.ListMeasurementJournal:input_type -> measured_boot.ListMeasurementJournalRequest + 1086, // 1433: forge.Forge.AttestCandidateMachine:input_type -> measured_boot.AttestCandidateMachineRequest + 1087, // 1434: forge.Forge.ShowCandidateMachine:input_type -> measured_boot.ShowCandidateMachineRequest + 1088, // 1435: forge.Forge.ShowCandidateMachines:input_type -> measured_boot.ShowCandidateMachinesRequest + 1089, // 1436: forge.Forge.ListCandidateMachines:input_type -> measured_boot.ListCandidateMachinesRequest + 1090, // 1437: forge.Forge.CreateMeasurementSystemProfile:input_type -> measured_boot.CreateMeasurementSystemProfileRequest + 1091, // 1438: forge.Forge.DeleteMeasurementSystemProfile:input_type -> measured_boot.DeleteMeasurementSystemProfileRequest + 1092, // 1439: forge.Forge.RenameMeasurementSystemProfile:input_type -> measured_boot.RenameMeasurementSystemProfileRequest + 1093, // 1440: forge.Forge.ShowMeasurementSystemProfile:input_type -> measured_boot.ShowMeasurementSystemProfileRequest + 1094, // 1441: forge.Forge.ShowMeasurementSystemProfiles:input_type -> measured_boot.ShowMeasurementSystemProfilesRequest + 1095, // 1442: forge.Forge.ListMeasurementSystemProfiles:input_type -> measured_boot.ListMeasurementSystemProfilesRequest + 1096, // 1443: forge.Forge.ListMeasurementSystemProfileBundles:input_type -> measured_boot.ListMeasurementSystemProfileBundlesRequest + 1097, // 1444: forge.Forge.ListMeasurementSystemProfileMachines:input_type -> measured_boot.ListMeasurementSystemProfileMachinesRequest + 1098, // 1445: forge.Forge.CreateMeasurementReport:input_type -> measured_boot.CreateMeasurementReportRequest + 1099, // 1446: forge.Forge.DeleteMeasurementReport:input_type -> measured_boot.DeleteMeasurementReportRequest + 1100, // 1447: forge.Forge.PromoteMeasurementReport:input_type -> measured_boot.PromoteMeasurementReportRequest + 1101, // 1448: forge.Forge.RevokeMeasurementReport:input_type -> measured_boot.RevokeMeasurementReportRequest + 1102, // 1449: forge.Forge.ShowMeasurementReportForId:input_type -> measured_boot.ShowMeasurementReportForIdRequest + 1103, // 1450: forge.Forge.ShowMeasurementReportsForMachine:input_type -> measured_boot.ShowMeasurementReportsForMachineRequest + 1104, // 1451: forge.Forge.ShowMeasurementReports:input_type -> measured_boot.ShowMeasurementReportsRequest + 1105, // 1452: forge.Forge.ListMeasurementReport:input_type -> measured_boot.ListMeasurementReportRequest + 1106, // 1453: forge.Forge.MatchMeasurementReport:input_type -> measured_boot.MatchMeasurementReportRequest + 1107, // 1454: forge.Forge.ImportSiteMeasurements:input_type -> measured_boot.ImportSiteMeasurementsRequest + 1108, // 1455: forge.Forge.ExportSiteMeasurements:input_type -> measured_boot.ExportSiteMeasurementsRequest + 1109, // 1456: forge.Forge.AddMeasurementTrustedMachine:input_type -> measured_boot.AddMeasurementTrustedMachineRequest + 1110, // 1457: forge.Forge.RemoveMeasurementTrustedMachine:input_type -> measured_boot.RemoveMeasurementTrustedMachineRequest + 1111, // 1458: forge.Forge.AddMeasurementTrustedProfile:input_type -> measured_boot.AddMeasurementTrustedProfileRequest + 1112, // 1459: forge.Forge.RemoveMeasurementTrustedProfile:input_type -> measured_boot.RemoveMeasurementTrustedProfileRequest + 1113, // 1460: forge.Forge.ListMeasurementTrustedMachines:input_type -> measured_boot.ListMeasurementTrustedMachinesRequest + 1114, // 1461: forge.Forge.ListMeasurementTrustedProfiles:input_type -> measured_boot.ListMeasurementTrustedProfilesRequest + 1115, // 1462: forge.Forge.ListAttestationSummary:input_type -> measured_boot.ListAttestationSummaryRequest + 673, // 1463: forge.Forge.CreateNetworkSecurityGroup:input_type -> forge.CreateNetworkSecurityGroupRequest + 675, // 1464: forge.Forge.FindNetworkSecurityGroupIds:input_type -> forge.FindNetworkSecurityGroupIdsRequest + 677, // 1465: forge.Forge.FindNetworkSecurityGroupsByIds:input_type -> forge.FindNetworkSecurityGroupsByIdsRequest + 680, // 1466: forge.Forge.UpdateNetworkSecurityGroup:input_type -> forge.UpdateNetworkSecurityGroupRequest + 681, // 1467: forge.Forge.DeleteNetworkSecurityGroup:input_type -> forge.DeleteNetworkSecurityGroupRequest + 687, // 1468: forge.Forge.GetNetworkSecurityGroupPropagationStatus:input_type -> forge.GetNetworkSecurityGroupPropagationStatusRequest + 690, // 1469: forge.Forge.GetNetworkSecurityGroupAttachments:input_type -> forge.GetNetworkSecurityGroupAttachmentsRequest + 549, // 1470: forge.Forge.CreateOsImage:input_type -> forge.OsImageAttributes + 553, // 1471: forge.Forge.DeleteOsImage:input_type -> forge.DeleteOsImageRequest + 551, // 1472: forge.Forge.ListOsImage:input_type -> forge.ListOsImageRequest + 1004, // 1473: forge.Forge.GetOsImage:input_type -> common.UUID + 549, // 1474: forge.Forge.UpdateOsImage:input_type -> forge.OsImageAttributes + 555, // 1475: forge.Forge.GetIpxeTemplate:input_type -> forge.GetIpxeTemplateRequest + 556, // 1476: forge.Forge.ListIpxeTemplates:input_type -> forge.ListIpxeTemplatesRequest + 571, // 1477: forge.Forge.RebootCompleted:input_type -> forge.MachineRebootCompletedRequest + 576, // 1478: forge.Forge.PersistValidationResult:input_type -> forge.MachineValidationResultPostRequest + 578, // 1479: forge.Forge.GetMachineValidationResults:input_type -> forge.MachineValidationGetRequest + 573, // 1480: forge.Forge.MachineValidationCompleted:input_type -> forge.MachineValidationCompletedRequest + 581, // 1481: forge.Forge.MachineSetAutoUpdate:input_type -> forge.MachineSetAutoUpdateRequest + 583, // 1482: forge.Forge.GetMachineValidationExternalConfig:input_type -> forge.GetMachineValidationExternalConfigRequest + 586, // 1483: forge.Forge.GetMachineValidationExternalConfigs:input_type -> forge.GetMachineValidationExternalConfigsRequest + 588, // 1484: forge.Forge.AddUpdateMachineValidationExternalConfig:input_type -> forge.AddUpdateMachineValidationExternalConfigRequest + 605, // 1485: forge.Forge.GetMachineValidationRuns:input_type -> forge.MachineValidationRunListGetRequest + 606, // 1486: forge.Forge.FindMachineValidationRunItemIds:input_type -> forge.MachineValidationRunItemSearchFilter + 608, // 1487: forge.Forge.FindMachineValidationRunItemsByIds:input_type -> forge.MachineValidationRunItemsByIdsRequest + 611, // 1488: forge.Forge.GetMachineValidationAttempt:input_type -> forge.MachineValidationAttemptGetRequest + 613, // 1489: forge.Forge.HeartbeatMachineValidationRun:input_type -> forge.MachineValidationHeartbeatRequest + 589, // 1490: forge.Forge.RemoveMachineValidationExternalConfig:input_type -> forge.RemoveMachineValidationExternalConfigRequest + 617, // 1491: forge.Forge.GetMachineValidationTests:input_type -> forge.MachineValidationTestsGetRequest + 619, // 1492: forge.Forge.AddMachineValidationTest:input_type -> forge.MachineValidationTestAddRequest + 618, // 1493: forge.Forge.UpdateMachineValidationTest:input_type -> forge.MachineValidationTestUpdateRequest + 622, // 1494: forge.Forge.MachineValidationTestVerfied:input_type -> forge.MachineValidationTestVerfiedRequest + 626, // 1495: forge.Forge.MachineValidationTestNextVersion:input_type -> forge.MachineValidationTestNextVersionRequest + 627, // 1496: forge.Forge.MachineValidationTestEnableDisableTest:input_type -> forge.MachineValidationTestEnableDisableTestRequest + 629, // 1497: forge.Forge.UpdateMachineValidationRun:input_type -> forge.MachineValidationRunRequest + 423, // 1498: forge.Forge.AdminBmcReset:input_type -> forge.AdminBmcResetRequest + 600, // 1499: forge.Forge.AdminPowerControl:input_type -> forge.AdminPowerControlRequest + 381, // 1500: forge.Forge.DisableSecureBoot:input_type -> forge.BmcEndpointRequest + 413, // 1501: forge.Forge.Lockdown:input_type -> forge.LockdownRequest + 415, // 1502: forge.Forge.LockdownStatus:input_type -> forge.LockdownStatusRequest + 417, // 1503: forge.Forge.MachineSetup:input_type -> forge.MachineSetupRequest + 419, // 1504: forge.Forge.SetDpuFirstBootOrder:input_type -> forge.SetDpuFirstBootOrderRequest + 796, // 1505: forge.Forge.CreateBmcUser:input_type -> forge.CreateBmcUserRequest + 798, // 1506: forge.Forge.DeleteBmcUser:input_type -> forge.DeleteBmcUserRequest + 800, // 1507: forge.Forge.SetBmcRootPassword:input_type -> forge.SetBmcRootPasswordRequest + 802, // 1508: forge.Forge.ProbeBmcVendor:input_type -> forge.ProbeBmcVendorRequest + 425, // 1509: forge.Forge.EnableInfiniteBoot:input_type -> forge.EnableInfiniteBootRequest + 427, // 1510: forge.Forge.IsInfiniteBootEnabled:input_type -> forge.IsInfiniteBootEnabledRequest + 590, // 1511: forge.Forge.OnDemandMachineValidation:input_type -> forge.MachineValidationOnDemandRequest + 598, // 1512: forge.Forge.OnDemandRackMaintenance:input_type -> forge.RackMaintenanceOnDemandRequest + 126, // 1513: forge.Forge.TpmAddCaCert:input_type -> forge.TpmCaCert + 1066, // 1514: forge.Forge.TpmShowCaCerts:input_type -> google.protobuf.Empty + 1066, // 1515: forge.Forge.TpmShowUnmatchedEkCerts:input_type -> google.protobuf.Empty + 123, // 1516: forge.Forge.TpmDeleteCaCert:input_type -> forge.TpmCaCertId + 656, // 1517: forge.Forge.RedfishBrowse:input_type -> forge.RedfishBrowseRequest + 658, // 1518: forge.Forge.RedfishListActions:input_type -> forge.RedfishListActionsRequest + 663, // 1519: forge.Forge.RedfishCreateAction:input_type -> forge.RedfishCreateActionRequest + 665, // 1520: forge.Forge.RedfishApproveAction:input_type -> forge.RedfishActionID + 665, // 1521: forge.Forge.RedfishApplyAction:input_type -> forge.RedfishActionID + 665, // 1522: forge.Forge.RedfishCancelAction:input_type -> forge.RedfishActionID + 669, // 1523: forge.Forge.UfmBrowse:input_type -> forge.UfmBrowseRequest + 693, // 1524: forge.Forge.GetDesiredFirmwareVersions:input_type -> forge.GetDesiredFirmwareVersionsRequest + 806, // 1525: forge.Forge.UpsertHostFirmwareConfig:input_type -> forge.UpsertHostFirmwareConfigRequest + 807, // 1526: forge.Forge.DeleteHostFirmwareConfig:input_type -> forge.DeleteHostFirmwareConfigRequest + 709, // 1527: forge.Forge.CreateSku:input_type -> forge.SkuList + 994, // 1528: forge.Forge.GenerateSkuFromMachine:input_type -> common.MachineId + 994, // 1529: forge.Forge.VerifySkuForMachine:input_type -> common.MachineId + 707, // 1530: forge.Forge.AssignSkuToMachine:input_type -> forge.SkuMachinePair + 708, // 1531: forge.Forge.RemoveSkuAssociation:input_type -> forge.RemoveSkuRequest + 710, // 1532: forge.Forge.DeleteSku:input_type -> forge.SkuIdList + 1066, // 1533: forge.Forge.GetAllSkuIds:input_type -> google.protobuf.Empty + 712, // 1534: forge.Forge.FindSkusByIds:input_type -> forge.SkusByIdsRequest + 722, // 1535: forge.Forge.UpdateSkuMetadata:input_type -> forge.SkuUpdateMetadataRequest + 706, // 1536: forge.Forge.ReplaceSku:input_type -> forge.Sku + 393, // 1537: forge.Forge.GetManagedHostQuarantineState:input_type -> forge.GetManagedHostQuarantineStateRequest + 395, // 1538: forge.Forge.SetManagedHostQuarantineState:input_type -> forge.SetManagedHostQuarantineStateRequest + 397, // 1539: forge.Forge.ClearManagedHostQuarantineState:input_type -> forge.ClearManagedHostQuarantineStateRequest + 994, // 1540: forge.Forge.ResetHostReprovisioning:input_type -> common.MachineId + 384, // 1541: forge.Forge.CopyBfbToDpuRshim:input_type -> forge.CopyBfbToDpuRshimRequest + 1066, // 1542: forge.Forge.GetAllDpaInterfaceIds:input_type -> google.protobuf.Empty + 717, // 1543: forge.Forge.FindDpaInterfacesByIds:input_type -> forge.DpaInterfacesByIdsRequest + 715, // 1544: forge.Forge.CreateDpaInterface:input_type -> forge.DpaInterfaceCreationRequest + 715, // 1545: forge.Forge.EnsureDpaInterface:input_type -> forge.DpaInterfaceCreationRequest + 720, // 1546: forge.Forge.DeleteDpaInterface:input_type -> forge.DpaInterfaceDeletionRequest + 723, // 1547: forge.Forge.GetPowerOptions:input_type -> forge.PowerOptionRequest + 724, // 1548: forge.Forge.UpdatePowerOption:input_type -> forge.PowerOptionUpdateRequest + 381, // 1549: forge.Forge.AllowIngestionAndPowerOn:input_type -> forge.BmcEndpointRequest + 381, // 1550: forge.Forge.DetermineMachineIngestionState:input_type -> forge.BmcEndpointRequest + 743, // 1551: forge.Forge.FindRackIds:input_type -> forge.RackSearchFilter + 745, // 1552: forge.Forge.FindRacksByIds:input_type -> forge.RacksByIdsRequest + 740, // 1553: forge.Forge.GetRack:input_type -> forge.GetRackRequest + 750, // 1554: forge.Forge.DeleteRack:input_type -> forge.DeleteRackRequest + 751, // 1555: forge.Forge.AdminForceDeleteRack:input_type -> forge.AdminForceDeleteRackRequest + 758, // 1556: forge.Forge.GetRackProfile:input_type -> forge.GetRackProfileRequest + 729, // 1557: forge.Forge.CreateComputeAllocation:input_type -> forge.CreateComputeAllocationRequest + 731, // 1558: forge.Forge.FindComputeAllocationIds:input_type -> forge.FindComputeAllocationIdsRequest + 733, // 1559: forge.Forge.FindComputeAllocationsByIds:input_type -> forge.FindComputeAllocationsByIdsRequest + 736, // 1560: forge.Forge.UpdateComputeAllocation:input_type -> forge.UpdateComputeAllocationRequest + 737, // 1561: forge.Forge.DeleteComputeAllocation:input_type -> forge.DeleteComputeAllocationRequest + 804, // 1562: forge.Forge.SetFirmwareUpdateTimeWindow:input_type -> forge.SetFirmwareUpdateTimeWindowRequest + 813, // 1563: forge.Forge.ListHostFirmware:input_type -> forge.ListHostFirmwareRequest + 1116, // 1564: forge.Forge.PublishMlxDeviceReport:input_type -> mlx_device.PublishMlxDeviceReportRequest + 1117, // 1565: forge.Forge.PublishMlxObservationReport:input_type -> mlx_device.PublishMlxObservationReportRequest + 816, // 1566: forge.Forge.TrimTable:input_type -> forge.TrimTableRequest + 1066, // 1567: forge.Forge.ListNvlinkNmxcEndpoints:input_type -> google.protobuf.Empty + 818, // 1568: forge.Forge.CreateNvlinkNmxcEndpoint:input_type -> forge.NvlinkNmxcEndpoint + 818, // 1569: forge.Forge.UpdateNvlinkNmxcEndpoint:input_type -> forge.NvlinkNmxcEndpoint + 820, // 1570: forge.Forge.DeleteNvlinkNmxcEndpoint:input_type -> forge.DeleteNvlinkNmxcEndpointRequest + 821, // 1571: forge.Forge.CreateRemediation:input_type -> forge.CreateRemediationRequest + 826, // 1572: forge.Forge.ApproveRemediation:input_type -> forge.ApproveRemediationRequest + 827, // 1573: forge.Forge.RevokeRemediation:input_type -> forge.RevokeRemediationRequest + 828, // 1574: forge.Forge.EnableRemediation:input_type -> forge.EnableRemediationRequest + 829, // 1575: forge.Forge.DisableRemediation:input_type -> forge.DisableRemediationRequest + 1066, // 1576: forge.Forge.FindRemediationIds:input_type -> google.protobuf.Empty + 823, // 1577: forge.Forge.FindRemediationsByIds:input_type -> forge.RemediationIdList + 830, // 1578: forge.Forge.FindAppliedRemediationIds:input_type -> forge.FindAppliedRemediationIdsRequest + 832, // 1579: forge.Forge.FindAppliedRemediations:input_type -> forge.FindAppliedRemediationsRequest + 835, // 1580: forge.Forge.GetNextRemediationForMachine:input_type -> forge.GetNextRemediationForMachineRequest + 837, // 1581: forge.Forge.RemediationApplied:input_type -> forge.RemediationAppliedRequest + 839, // 1582: forge.Forge.SetPrimaryDpu:input_type -> forge.SetPrimaryDpuRequest + 840, // 1583: forge.Forge.SetPrimaryInterface:input_type -> forge.SetPrimaryInterfaceRequest + 846, // 1584: forge.Forge.CreateDpuExtensionService:input_type -> forge.CreateDpuExtensionServiceRequest + 847, // 1585: forge.Forge.UpdateDpuExtensionService:input_type -> forge.UpdateDpuExtensionServiceRequest + 848, // 1586: forge.Forge.DeleteDpuExtensionService:input_type -> forge.DeleteDpuExtensionServiceRequest + 850, // 1587: forge.Forge.FindDpuExtensionServiceIds:input_type -> forge.DpuExtensionServiceSearchFilter + 852, // 1588: forge.Forge.FindDpuExtensionServicesByIds:input_type -> forge.DpuExtensionServicesByIdsRequest + 854, // 1589: forge.Forge.GetDpuExtensionServiceVersionsInfo:input_type -> forge.GetDpuExtensionServiceVersionsInfoRequest + 856, // 1590: forge.Forge.FindInstancesByDpuExtensionService:input_type -> forge.FindInstancesByDpuExtensionServiceRequest + 98, // 1591: forge.Forge.TriggerMachineAttestation:input_type -> forge.SpdmMachineAttestationTriggerRequest + 994, // 1592: forge.Forge.CancelMachineAttestation:input_type -> common.MachineId + 99, // 1593: forge.Forge.ListAttestationMachines:input_type -> forge.SpdmListAttestationMachinesRequest + 994, // 1594: forge.Forge.GetAttestationMachine:input_type -> common.MachineId + 101, // 1595: forge.Forge.SignMachineIdentity:input_type -> forge.MachineIdentityRequest + 103, // 1596: forge.Forge.GetTenantIdentityConfiguration:input_type -> forge.GetTenantIdentityConfigRequest + 106, // 1597: forge.Forge.SetTenantIdentityConfiguration:input_type -> forge.SetTenantIdentityConfigRequest + 103, // 1598: forge.Forge.DeleteTenantIdentityConfiguration:input_type -> forge.GetTenantIdentityConfigRequest + 111, // 1599: forge.Forge.GetTokenDelegation:input_type -> forge.GetTokenDelegationRequest + 113, // 1600: forge.Forge.SetTokenDelegation:input_type -> forge.TokenDelegationRequest + 111, // 1601: forge.Forge.DeleteTokenDelegation:input_type -> forge.GetTokenDelegationRequest + 114, // 1602: forge.Forge.ReencryptTenantIdentitySecrets:input_type -> forge.ReencryptTenantIdentitySecretsRequest + 119, // 1603: forge.Forge.GetJWKS:input_type -> forge.JwksRequest + 120, // 1604: forge.Forge.GetOpenIDConfiguration:input_type -> forge.OpenIdConfigRequest + 863, // 1605: forge.Forge.ScoutStream:input_type -> forge.ScoutStreamApiBoundMessage + 866, // 1606: forge.Forge.ScoutStreamShowConnections:input_type -> forge.ScoutStreamShowConnectionsRequest + 868, // 1607: forge.Forge.ScoutStreamDisconnect:input_type -> forge.ScoutStreamDisconnectRequest + 870, // 1608: forge.Forge.ScoutStreamPing:input_type -> forge.ScoutStreamAdminPingRequest + 1118, // 1609: forge.Forge.MlxAdminProfileSync:input_type -> mlx_device.MlxAdminProfileSyncRequest + 1119, // 1610: forge.Forge.MlxAdminProfileShow:input_type -> mlx_device.MlxAdminProfileShowRequest + 1120, // 1611: forge.Forge.MlxAdminProfileCompare:input_type -> mlx_device.MlxAdminProfileCompareRequest + 1121, // 1612: forge.Forge.MlxAdminProfileList:input_type -> mlx_device.MlxAdminProfileListRequest + 1122, // 1613: forge.Forge.MlxAdminLockdownLock:input_type -> mlx_device.MlxAdminLockdownLockRequest + 1123, // 1614: forge.Forge.MlxAdminLockdownUnlock:input_type -> mlx_device.MlxAdminLockdownUnlockRequest + 1124, // 1615: forge.Forge.MlxAdminLockdownStatus:input_type -> mlx_device.MlxAdminLockdownStatusRequest + 1125, // 1616: forge.Forge.MlxAdminShowDevice:input_type -> mlx_device.MlxAdminDeviceInfoRequest + 1126, // 1617: forge.Forge.MlxAdminShowMachine:input_type -> mlx_device.MlxAdminDeviceReportRequest + 1127, // 1618: forge.Forge.MlxAdminRegistryList:input_type -> mlx_device.MlxAdminRegistryListRequest + 1128, // 1619: forge.Forge.MlxAdminRegistryShow:input_type -> mlx_device.MlxAdminRegistryShowRequest + 1129, // 1620: forge.Forge.MlxAdminConfigQuery:input_type -> mlx_device.MlxAdminConfigQueryRequest + 1130, // 1621: forge.Forge.MlxAdminConfigSet:input_type -> mlx_device.MlxAdminConfigSetRequest + 1131, // 1622: forge.Forge.MlxAdminConfigSync:input_type -> mlx_device.MlxAdminConfigSyncRequest + 1132, // 1623: forge.Forge.MlxAdminConfigCompare:input_type -> mlx_device.MlxAdminConfigCompareRequest + 780, // 1624: forge.Forge.FindNVLinkPartitionIds:input_type -> forge.NVLinkPartitionSearchFilter + 781, // 1625: forge.Forge.FindNVLinkPartitionsByIds:input_type -> forge.NVLinkPartitionsByIdsRequest + 156, // 1626: forge.Forge.NVLinkPartitionsForTenant:input_type -> forge.TenantSearchQuery + 791, // 1627: forge.Forge.FindNVLinkLogicalPartitionIds:input_type -> forge.NVLinkLogicalPartitionSearchFilter + 792, // 1628: forge.Forge.FindNVLinkLogicalPartitionsByIds:input_type -> forge.NVLinkLogicalPartitionsByIdsRequest + 788, // 1629: forge.Forge.CreateNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionCreationRequest + 794, // 1630: forge.Forge.UpdateNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionUpdateRequest + 789, // 1631: forge.Forge.DeleteNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionDeletionRequest + 156, // 1632: forge.Forge.NVLinkLogicalPartitionsForTenant:input_type -> forge.TenantSearchQuery + 884, // 1633: forge.Forge.GetMachinePositionInfo:input_type -> forge.MachinePositionQuery + 774, // 1634: forge.Forge.NmxcBrowse:input_type -> forge.NmxcBrowseRequest + 887, // 1635: forge.Forge.ModifyDPFState:input_type -> forge.ModifyDPFStateRequest + 889, // 1636: forge.Forge.GetDPFState:input_type -> forge.GetDPFStateRequest + 890, // 1637: forge.Forge.GetDPFHostSnapshot:input_type -> forge.GetDPFHostSnapshotRequest + 892, // 1638: forge.Forge.GetDPFServiceVersions:input_type -> forge.GetDPFServiceVersionsRequest + 901, // 1639: forge.Forge.ComponentPowerControl:input_type -> forge.ComponentPowerControlRequest + 903, // 1640: forge.Forge.ComponentConfigureSwitchCertificate:input_type -> forge.ComponentConfigureSwitchCertificateRequest + 898, // 1641: forge.Forge.GetComponentInventory:input_type -> forge.GetComponentInventoryRequest + 910, // 1642: forge.Forge.UpdateComponentFirmware:input_type -> forge.UpdateComponentFirmwareRequest + 912, // 1643: forge.Forge.GetComponentFirmwareStatus:input_type -> forge.GetComponentFirmwareStatusRequest + 914, // 1644: forge.Forge.ListComponentFirmwareVersions:input_type -> forge.ListComponentFirmwareVersionsRequest + 931, // 1645: forge.Forge.CreateOperatingSystem:input_type -> forge.CreateOperatingSystemRequest + 1012, // 1646: forge.Forge.GetOperatingSystem:input_type -> common.OperatingSystemId + 934, // 1647: forge.Forge.UpdateOperatingSystem:input_type -> forge.UpdateOperatingSystemRequest + 935, // 1648: forge.Forge.DeleteOperatingSystem:input_type -> forge.DeleteOperatingSystemRequest + 937, // 1649: forge.Forge.FindOperatingSystemIds:input_type -> forge.OperatingSystemSearchFilter + 939, // 1650: forge.Forge.FindOperatingSystemsByIds:input_type -> forge.OperatingSystemsByIdsRequest + 941, // 1651: forge.Forge.GetOperatingSystemCachableIpxeTemplateArtifacts:input_type -> forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest + 944, // 1652: forge.Forge.UpdateOperatingSystemCachableIpxeTemplateArtifacts:input_type -> forge.UpdateOperatingSystemIpxeTemplateArtifactRequest + 946, // 1653: forge.Forge.ReWrapSecrets:input_type -> forge.ReWrapSecretsRequest + 142, // 1654: forge.Forge.Version:output_type -> forge.BuildInfo + 1052, // 1655: forge.Forge.CreateDomain:output_type -> dns.Domain + 1052, // 1656: forge.Forge.UpdateDomain:output_type -> dns.Domain + 1133, // 1657: forge.Forge.DeleteDomain:output_type -> dns.DomainDeletionResult + 1134, // 1658: forge.Forge.FindDomain:output_type -> dns.DomainList + 878, // 1659: forge.Forge.CreateDomainLegacy:output_type -> forge.DomainLegacy + 878, // 1660: forge.Forge.UpdateDomainLegacy:output_type -> forge.DomainLegacy + 881, // 1661: forge.Forge.DeleteDomainLegacy:output_type -> forge.DomainDeletionResultLegacy + 879, // 1662: forge.Forge.FindDomainLegacy:output_type -> forge.DomainListLegacy + 159, // 1663: forge.Forge.CreateVpc:output_type -> forge.Vpc + 162, // 1664: forge.Forge.UpdateVpc:output_type -> forge.VpcUpdateResult + 164, // 1665: forge.Forge.UpdateVpcVirtualization:output_type -> forge.VpcUpdateVirtualizationResult + 166, // 1666: forge.Forge.DeleteVpc:output_type -> forge.VpcDeletionResult + 154, // 1667: forge.Forge.FindVpcIds:output_type -> forge.VpcIdList + 167, // 1668: forge.Forge.FindVpcsByIds:output_type -> forge.VpcList + 919, // 1669: forge.Forge.CreateSpxPartition:output_type -> forge.SpxPartition + 922, // 1670: forge.Forge.DeleteSpxPartition:output_type -> forge.SpxPartitionDeletionResult + 920, // 1671: forge.Forge.FindSpxPartitionIds:output_type -> forge.SpxPartitionIdList + 924, // 1672: forge.Forge.FindSpxPartitionsByIds:output_type -> forge.SpxPartitionList + 168, // 1673: forge.Forge.CreateVpcPrefix:output_type -> forge.VpcPrefix + 174, // 1674: forge.Forge.SearchVpcPrefixes:output_type -> forge.VpcPrefixIdList + 175, // 1675: forge.Forge.GetVpcPrefixes:output_type -> forge.VpcPrefixList + 168, // 1676: forge.Forge.UpdateVpcPrefix:output_type -> forge.VpcPrefix + 178, // 1677: forge.Forge.DeleteVpcPrefix:output_type -> forge.VpcPrefixDeletionResult + 180, // 1678: forge.Forge.CreateVpcPeering:output_type -> forge.VpcPeering + 181, // 1679: forge.Forge.FindVpcPeeringIds:output_type -> forge.VpcPeeringIdList + 182, // 1680: forge.Forge.FindVpcPeeringsByIds:output_type -> forge.VpcPeeringList + 187, // 1681: forge.Forge.DeleteVpcPeering:output_type -> forge.VpcPeeringDeletionResult + 254, // 1682: forge.Forge.FindNetworkSegmentIds:output_type -> forge.NetworkSegmentIdList + 367, // 1683: forge.Forge.FindNetworkSegmentsByIds:output_type -> forge.NetworkSegmentList + 246, // 1684: forge.Forge.CreateNetworkSegment:output_type -> forge.NetworkSegment + 246, // 1685: forge.Forge.AttachNetworkSegmentToVpc:output_type -> forge.NetworkSegment + 250, // 1686: forge.Forge.DeleteNetworkSegment:output_type -> forge.NetworkSegmentDeletionResult + 367, // 1687: forge.Forge.NetworkSegmentsForVpc:output_type -> forge.NetworkSegmentList + 198, // 1688: forge.Forge.FindIBPartitionIds:output_type -> forge.IBPartitionIdList + 191, // 1689: forge.Forge.FindIBPartitionsByIds:output_type -> forge.IBPartitionList + 190, // 1690: forge.Forge.CreateIBPartition:output_type -> forge.IBPartition + 190, // 1691: forge.Forge.UpdateIBPartition:output_type -> forge.IBPartition + 195, // 1692: forge.Forge.DeleteIBPartition:output_type -> forge.IBPartitionDeletionResult + 191, // 1693: forge.Forge.IBPartitionsForTenant:output_type -> forge.IBPartitionList + 202, // 1694: forge.Forge.FindPowerShelves:output_type -> forge.PowerShelfList + 897, // 1695: forge.Forge.FindPowerShelfIds:output_type -> forge.PowerShelfIdList + 202, // 1696: forge.Forge.FindPowerShelvesByIds:output_type -> forge.PowerShelfList + 205, // 1697: forge.Forge.DeletePowerShelf:output_type -> forge.PowerShelfDeletionResult + 929, // 1698: forge.Forge.AdminForceDeletePowerShelf:output_type -> forge.AdminForceDeletePowerShelfResponse + 1066, // 1699: forge.Forge.SetPowerShelfMaintenance:output_type -> google.protobuf.Empty + 222, // 1700: forge.Forge.FindSwitches:output_type -> forge.SwitchList + 896, // 1701: forge.Forge.FindSwitchIds:output_type -> forge.SwitchIdList + 222, // 1702: forge.Forge.FindSwitchesByIds:output_type -> forge.SwitchList + 225, // 1703: forge.Forge.DeleteSwitch:output_type -> forge.SwitchDeletionResult + 927, // 1704: forge.Forge.AdminForceDeleteSwitch:output_type -> forge.AdminForceDeleteSwitchResponse + 242, // 1705: forge.Forge.FindIBFabricIds:output_type -> forge.IBFabricIdList + 295, // 1706: forge.Forge.AllocateInstance:output_type -> forge.Instance + 268, // 1707: forge.Forge.AllocateInstances:output_type -> forge.BatchInstanceAllocationResponse + 313, // 1708: forge.Forge.ReleaseInstance:output_type -> forge.InstanceReleaseResult + 295, // 1709: forge.Forge.UpdateInstanceOperatingSystem:output_type -> forge.Instance + 295, // 1710: forge.Forge.UpdateInstanceConfig:output_type -> forge.Instance + 264, // 1711: forge.Forge.FindInstanceIds:output_type -> forge.InstanceIdList + 260, // 1712: forge.Forge.FindInstancesByIds:output_type -> forge.InstanceList + 260, // 1713: forge.Forge.FindInstanceByMachineID:output_type -> forge.InstanceList + 388, // 1714: forge.Forge.GetManagedHostNetworkConfig:output_type -> forge.ManagedHostNetworkConfigResponse + 1066, // 1715: forge.Forge.RecordDpuNetworkStatus:output_type -> google.protobuf.Empty + 468, // 1716: forge.Forge.ListMachineHealthReports:output_type -> forge.ListHealthReportResponse + 1066, // 1717: forge.Forge.InsertMachineHealthReport:output_type -> google.protobuf.Empty + 1066, // 1718: forge.Forge.RemoveMachineHealthReport:output_type -> google.protobuf.Empty + 468, // 1719: forge.Forge.ListRackHealthReports:output_type -> forge.ListHealthReportResponse + 1066, // 1720: forge.Forge.InsertRackHealthReport:output_type -> google.protobuf.Empty + 1066, // 1721: forge.Forge.RemoveRackHealthReport:output_type -> google.protobuf.Empty + 468, // 1722: forge.Forge.ListSwitchHealthReports:output_type -> forge.ListHealthReportResponse + 1066, // 1723: forge.Forge.InsertSwitchHealthReport:output_type -> google.protobuf.Empty + 1066, // 1724: forge.Forge.RemoveSwitchHealthReport:output_type -> google.protobuf.Empty + 468, // 1725: forge.Forge.ListPowerShelfHealthReports:output_type -> forge.ListHealthReportResponse + 1066, // 1726: forge.Forge.InsertPowerShelfHealthReport:output_type -> google.protobuf.Empty + 1066, // 1727: forge.Forge.RemovePowerShelfHealthReport:output_type -> google.protobuf.Empty + 468, // 1728: forge.Forge.ListNVLinkDomainHealthReports:output_type -> forge.ListHealthReportResponse + 1066, // 1729: forge.Forge.InsertNVLinkDomainHealthReport:output_type -> google.protobuf.Empty + 1066, // 1730: forge.Forge.RemoveNVLinkDomainHealthReport:output_type -> google.protobuf.Empty + 468, // 1731: forge.Forge.ListHealthReportOverrides:output_type -> forge.ListHealthReportResponse + 1066, // 1732: forge.Forge.InsertHealthReportOverride:output_type -> google.protobuf.Empty + 1066, // 1733: forge.Forge.RemoveHealthReportOverride:output_type -> google.protobuf.Empty + 407, // 1734: forge.Forge.DpuAgentUpgradeCheck:output_type -> forge.DpuAgentUpgradeCheckResponse + 409, // 1735: forge.Forge.DpuAgentUpgradePolicyAction:output_type -> forge.DpuAgentUpgradePolicyResponse + 1135, // 1736: forge.Forge.LookupRecord:output_type -> dns.DnsResourceRecordLookupResponse + 1136, // 1737: forge.Forge.GetAllDomains:output_type -> dns.GetAllDomainsResponse + 1137, // 1738: forge.Forge.GetAllDomainMetadata:output_type -> dns.DomainMetadataResponse + 259, // 1739: forge.Forge.InvokeInstancePower:output_type -> forge.InstancePowerResult + 434, // 1740: forge.Forge.ForgeAgentControl:output_type -> forge.ForgeAgentControlResponse + 441, // 1741: forge.Forge.DiscoverMachine:output_type -> forge.MachineDiscoveryResult + 440, // 1742: forge.Forge.RenewMachineCertificate:output_type -> forge.MachineCertificateResult + 442, // 1743: forge.Forge.DiscoveryCompleted:output_type -> forge.MachineDiscoveryCompletedResponse + 443, // 1744: forge.Forge.CleanupMachineCompleted:output_type -> forge.MachineCleanupResult + 445, // 1745: forge.Forge.ReportForgeScoutError:output_type -> forge.ForgeScoutErrorReportResult + 366, // 1746: forge.Forge.DiscoverDhcp:output_type -> forge.DhcpRecord + 365, // 1747: forge.Forge.ExpireDhcpLease:output_type -> forge.ExpireDhcpLeaseResponse + 332, // 1748: forge.Forge.AssignStaticAddress:output_type -> forge.AssignStaticAddressResponse + 334, // 1749: forge.Forge.RemoveStaticAddress:output_type -> forge.RemoveStaticAddressResponse + 337, // 1750: forge.Forge.FindInterfaceAddresses:output_type -> forge.FindInterfaceAddressesResponse + 327, // 1751: forge.Forge.FindInterfaces:output_type -> forge.InterfaceList + 1066, // 1752: forge.Forge.DeleteInterface:output_type -> google.protobuf.Empty + 509, // 1753: forge.Forge.FindIpAddress:output_type -> forge.FindIpAddressResponse + 1053, // 1754: forge.Forge.FindMachineIds:output_type -> common.MachineIdList + 328, // 1755: forge.Forge.FindMachinesByIds:output_type -> forge.MachineList + 317, // 1756: forge.Forge.FindMachineStateHistories:output_type -> forge.MachineStateHistories + 320, // 1757: forge.Forge.FindMachineHealthHistories:output_type -> forge.HealthHistories + 229, // 1758: forge.Forge.FindPowerShelfStateHistories:output_type -> forge.StateHistories + 229, // 1759: forge.Forge.FindRackStateHistories:output_type -> forge.StateHistories + 229, // 1760: forge.Forge.FindSwitchStateHistories:output_type -> forge.StateHistories + 229, // 1761: forge.Forge.FindNetworkSegmentStateHistories:output_type -> forge.StateHistories + 229, // 1762: forge.Forge.FindVpcPrefixStateHistories:output_type -> forge.StateHistories + 326, // 1763: forge.Forge.FindTenantOrganizationIds:output_type -> forge.TenantOrganizationIdList + 325, // 1764: forge.Forge.FindTenantsByOrganizationIds:output_type -> forge.TenantList + 532, // 1765: forge.Forge.FindConnectedDevicesByDpuMachineIds:output_type -> forge.ConnectedDeviceList + 536, // 1766: forge.Forge.FindMachineIdsByBmcIps:output_type -> forge.MachineIdBmcIpPairs + 535, // 1767: forge.Forge.FindMacAddressByBmcIp:output_type -> forge.MacAddressBmcIp + 533, // 1768: forge.Forge.FindBmcIps:output_type -> forge.BmcIpList + 511, // 1769: forge.Forge.IdentifyUuid:output_type -> forge.IdentifyUuidResponse + 514, // 1770: forge.Forge.IdentifyMac:output_type -> forge.IdentifyMacResponse + 516, // 1771: forge.Forge.IdentifySerial:output_type -> forge.IdentifySerialResponse + 430, // 1772: forge.Forge.GetBMCMetaData:output_type -> forge.BMCMetaDataGetResponse + 432, // 1773: forge.Forge.UpdateMachineCredentials:output_type -> forge.MachineCredentialsUpdateResponse + 447, // 1774: forge.Forge.GetPxeInstructions:output_type -> forge.PxeInstructions + 451, // 1775: forge.Forge.GetCloudInitInstructions:output_type -> forge.CloudInitInstructions + 145, // 1776: forge.Forge.Echo:output_type -> forge.EchoResponse + 478, // 1777: forge.Forge.CreateTenant:output_type -> forge.CreateTenantResponse + 482, // 1778: forge.Forge.FindTenant:output_type -> forge.FindTenantResponse + 480, // 1779: forge.Forge.UpdateTenant:output_type -> forge.UpdateTenantResponse + 488, // 1780: forge.Forge.CreateTenantKeyset:output_type -> forge.CreateTenantKeysetResponse + 495, // 1781: forge.Forge.FindTenantKeysetIds:output_type -> forge.TenantKeysetIdList + 489, // 1782: forge.Forge.FindTenantKeysetsByIds:output_type -> forge.TenantKeySetList + 491, // 1783: forge.Forge.UpdateTenantKeyset:output_type -> forge.UpdateTenantKeysetResponse + 493, // 1784: forge.Forge.DeleteTenantKeyset:output_type -> forge.DeleteTenantKeysetResponse + 498, // 1785: forge.Forge.ValidateTenantPublicKey:output_type -> forge.ValidateTenantPublicKeyResponse + 372, // 1786: forge.Forge.GetBmcCredentials:output_type -> forge.GetBmcCredentialsResponse + 372, // 1787: forge.Forge.GetSwitchNvosCredentials:output_type -> forge.GetBmcCredentialsResponse + 405, // 1788: forge.Forge.GetAllManagedHostNetworkStatus:output_type -> forge.ManagedHostNetworkStatusResponse + 1138, // 1789: forge.Forge.GetSiteExplorationReport:output_type -> site_explorer.SiteExplorationReport + 1139, // 1790: forge.Forge.GetSiteExplorerLastRun:output_type -> site_explorer.SiteExplorerLastRunResponse + 1066, // 1791: forge.Forge.ClearSiteExplorationError:output_type -> google.protobuf.Empty + 615, // 1792: forge.Forge.IsBmcInManagedHost:output_type -> forge.IsBmcInManagedHostResponse + 616, // 1793: forge.Forge.BmcCredentialStatus:output_type -> forge.BmcCredentialStatusResponse + 1054, // 1794: forge.Forge.Explore:output_type -> site_explorer.EndpointExplorationReport + 1066, // 1795: forge.Forge.ReExploreEndpoint:output_type -> google.protobuf.Empty + 1140, // 1796: forge.Forge.RefreshEndpointReport:output_type -> site_explorer.ExploredEndpoint + 380, // 1797: forge.Forge.DeleteExploredEndpoint:output_type -> forge.DeleteExploredEndpointResponse + 1066, // 1798: forge.Forge.PauseExploredEndpointRemediation:output_type -> google.protobuf.Empty + 1141, // 1799: forge.Forge.FindExploredEndpointIds:output_type -> site_explorer.ExploredEndpointIdList + 1142, // 1800: forge.Forge.FindExploredEndpointsByIds:output_type -> site_explorer.ExploredEndpointList + 1143, // 1801: forge.Forge.FindExploredManagedHostIds:output_type -> site_explorer.ExploredManagedHostIdList + 1144, // 1802: forge.Forge.FindExploredManagedHostsByIds:output_type -> site_explorer.ExploredManagedHostList + 1145, // 1803: forge.Forge.FindExploredMlxDeviceHostIds:output_type -> site_explorer.ExploredMlxDeviceHostIdList + 1146, // 1804: forge.Forge.FindExploredMlxDevicesByIds:output_type -> site_explorer.ExploredMlxDeviceList + 1066, // 1805: forge.Forge.UpdateMachineHardwareInfo:output_type -> google.protobuf.Empty + 411, // 1806: forge.Forge.AdminForceDeleteMachine:output_type -> forge.AdminForceDeleteMachineResponse + 500, // 1807: forge.Forge.AdminListResourcePools:output_type -> forge.ResourcePools + 503, // 1808: forge.Forge.AdminGrowResourcePool:output_type -> forge.GrowResourcePoolResponse + 1066, // 1809: forge.Forge.UpdateMachineMetadata:output_type -> google.protobuf.Empty + 1066, // 1810: forge.Forge.UpdateRackMetadata:output_type -> google.protobuf.Empty + 1066, // 1811: forge.Forge.UpdateSwitchMetadata:output_type -> google.protobuf.Empty + 1066, // 1812: forge.Forge.UpdatePowerShelfMetadata:output_type -> google.protobuf.Empty + 1066, // 1813: forge.Forge.UpdateMachineNvLinkInfo:output_type -> google.protobuf.Empty + 1066, // 1814: forge.Forge.SetMaintenance:output_type -> google.protobuf.Empty + 1066, // 1815: forge.Forge.SetDynamicConfig:output_type -> google.protobuf.Empty + 1066, // 1816: forge.Forge.TriggerDpuReprovisioning:output_type -> google.protobuf.Empty + 519, // 1817: forge.Forge.ListDpuWaitingForReprovisioning:output_type -> forge.DpuReprovisioningListResponse + 1066, // 1818: forge.Forge.TriggerHostReprovisioning:output_type -> google.protobuf.Empty + 522, // 1819: forge.Forge.ListHostsWaitingForReprovisioning:output_type -> forge.HostReprovisioningListResponse + 1066, // 1820: forge.Forge.MarkManualFirmwareUpgradeComplete:output_type -> google.protobuf.Empty + 1066, // 1821: forge.Forge.ReportScoutFirmwareUpgradeStatus:output_type -> google.protobuf.Empty + 528, // 1822: forge.Forge.GetDpuInfoList:output_type -> forge.GetDpuInfoListResponse + 530, // 1823: forge.Forge.GetMachineBootOverride:output_type -> forge.MachineBootOverride + 1066, // 1824: forge.Forge.SetMachineBootOverride:output_type -> google.protobuf.Empty + 1066, // 1825: forge.Forge.ClearMachineBootOverride:output_type -> google.protobuf.Empty + 954, // 1826: forge.Forge.GetMachineBootInterfaces:output_type -> forge.GetMachineBootInterfacesResponse + 541, // 1827: forge.Forge.GetNetworkTopology:output_type -> forge.NetworkTopologyData + 541, // 1828: forge.Forge.FindNetworkDevicesByDeviceIds:output_type -> forge.NetworkTopologyData + 134, // 1829: forge.Forge.CreateCredential:output_type -> forge.CredentialCreationResult + 135, // 1830: forge.Forge.DeleteCredential:output_type -> forge.CredentialDeletionResult + 137, // 1831: forge.Forge.RotateCredential:output_type -> forge.RotateCredentialResult + 140, // 1832: forge.Forge.GetCredentialRotationStatus:output_type -> forge.CredentialRotationStatusResult + 543, // 1833: forge.Forge.GetRouteServers:output_type -> forge.RouteServerEntries + 1066, // 1834: forge.Forge.AddRouteServers:output_type -> google.protobuf.Empty + 1066, // 1835: forge.Forge.RemoveRouteServers:output_type -> google.protobuf.Empty + 1066, // 1836: forge.Forge.ReplaceRouteServers:output_type -> google.protobuf.Empty + 1066, // 1837: forge.Forge.UpdateAgentReportedInventory:output_type -> google.protobuf.Empty + 308, // 1838: forge.Forge.UpdateInstancePhoneHomeLastContact:output_type -> forge.InstancePhoneHomeLastContactResponse + 546, // 1839: forge.Forge.SetHostUefiPassword:output_type -> forge.SetHostUefiPasswordResponse + 548, // 1840: forge.Forge.ClearHostUefiPassword:output_type -> forge.ClearHostUefiPasswordResponse + 1066, // 1841: forge.Forge.AddExpectedMachine:output_type -> google.protobuf.Empty + 1066, // 1842: forge.Forge.DeleteExpectedMachine:output_type -> google.protobuf.Empty + 1066, // 1843: forge.Forge.UpdateExpectedMachine:output_type -> google.protobuf.Empty + 560, // 1844: forge.Forge.GetExpectedMachine:output_type -> forge.ExpectedMachine + 562, // 1845: forge.Forge.GetAllExpectedMachines:output_type -> forge.ExpectedMachineList + 1066, // 1846: forge.Forge.ReplaceAllExpectedMachines:output_type -> google.protobuf.Empty + 1066, // 1847: forge.Forge.DeleteAllExpectedMachines:output_type -> google.protobuf.Empty + 563, // 1848: forge.Forge.GetAllExpectedMachinesLinked:output_type -> forge.LinkedExpectedMachineList + 565, // 1849: forge.Forge.GetAllUnexpectedMachines:output_type -> forge.UnexpectedMachineList + 569, // 1850: forge.Forge.CreateExpectedMachines:output_type -> forge.BatchExpectedMachineOperationResponse + 569, // 1851: forge.Forge.UpdateExpectedMachines:output_type -> forge.BatchExpectedMachineOperationResponse + 1066, // 1852: forge.Forge.AddExpectedPowerShelf:output_type -> google.protobuf.Empty + 1066, // 1853: forge.Forge.DeleteExpectedPowerShelf:output_type -> google.protobuf.Empty + 1066, // 1854: forge.Forge.UpdateExpectedPowerShelf:output_type -> google.protobuf.Empty + 211, // 1855: forge.Forge.GetExpectedPowerShelf:output_type -> forge.ExpectedPowerShelf + 213, // 1856: forge.Forge.GetAllExpectedPowerShelves:output_type -> forge.ExpectedPowerShelfList + 1066, // 1857: forge.Forge.ReplaceAllExpectedPowerShelves:output_type -> google.protobuf.Empty + 1066, // 1858: forge.Forge.DeleteAllExpectedPowerShelves:output_type -> google.protobuf.Empty + 214, // 1859: forge.Forge.GetAllExpectedPowerShelvesLinked:output_type -> forge.LinkedExpectedPowerShelfList + 1066, // 1860: forge.Forge.AddExpectedSwitch:output_type -> google.protobuf.Empty + 1066, // 1861: forge.Forge.DeleteExpectedSwitch:output_type -> google.protobuf.Empty + 1066, // 1862: forge.Forge.UpdateExpectedSwitch:output_type -> google.protobuf.Empty + 233, // 1863: forge.Forge.GetExpectedSwitch:output_type -> forge.ExpectedSwitch + 235, // 1864: forge.Forge.GetAllExpectedSwitches:output_type -> forge.ExpectedSwitchList + 1066, // 1865: forge.Forge.ReplaceAllExpectedSwitches:output_type -> google.protobuf.Empty + 1066, // 1866: forge.Forge.DeleteAllExpectedSwitches:output_type -> google.protobuf.Empty + 236, // 1867: forge.Forge.GetAllExpectedSwitchesLinked:output_type -> forge.LinkedExpectedSwitchList + 1066, // 1868: forge.Forge.AddExpectedRack:output_type -> google.protobuf.Empty + 1066, // 1869: forge.Forge.DeleteExpectedRack:output_type -> google.protobuf.Empty + 1066, // 1870: forge.Forge.UpdateExpectedRack:output_type -> google.protobuf.Empty + 238, // 1871: forge.Forge.GetExpectedRack:output_type -> forge.ExpectedRack + 240, // 1872: forge.Forge.GetAllExpectedRacks:output_type -> forge.ExpectedRackList + 1066, // 1873: forge.Forge.ReplaceAllExpectedRacks:output_type -> google.protobuf.Empty + 1066, // 1874: forge.Forge.DeleteAllExpectedRacks:output_type -> google.protobuf.Empty + 131, // 1875: forge.Forge.AttestQuote:output_type -> forge.AttestQuoteResponse + 643, // 1876: forge.Forge.CreateInstanceType:output_type -> forge.CreateInstanceTypeResponse + 645, // 1877: forge.Forge.FindInstanceTypeIds:output_type -> forge.FindInstanceTypeIdsResponse + 647, // 1878: forge.Forge.FindInstanceTypesByIds:output_type -> forge.FindInstanceTypesByIdsResponse + 650, // 1879: forge.Forge.UpdateInstanceType:output_type -> forge.UpdateInstanceTypeResponse + 649, // 1880: forge.Forge.DeleteInstanceType:output_type -> forge.DeleteInstanceTypeResponse + 653, // 1881: forge.Forge.AssociateMachinesWithInstanceType:output_type -> forge.AssociateMachinesWithInstanceTypeResponse + 655, // 1882: forge.Forge.RemoveMachineInstanceTypeAssociation:output_type -> forge.RemoveMachineInstanceTypeAssociationResponse + 1147, // 1883: forge.Forge.CreateMeasurementBundle:output_type -> measured_boot.CreateMeasurementBundleResponse + 1148, // 1884: forge.Forge.DeleteMeasurementBundle:output_type -> measured_boot.DeleteMeasurementBundleResponse + 1149, // 1885: forge.Forge.RenameMeasurementBundle:output_type -> measured_boot.RenameMeasurementBundleResponse + 1150, // 1886: forge.Forge.UpdateMeasurementBundle:output_type -> measured_boot.UpdateMeasurementBundleResponse + 1151, // 1887: forge.Forge.ShowMeasurementBundle:output_type -> measured_boot.ShowMeasurementBundleResponse + 1152, // 1888: forge.Forge.ShowMeasurementBundles:output_type -> measured_boot.ShowMeasurementBundlesResponse + 1153, // 1889: forge.Forge.ListMeasurementBundles:output_type -> measured_boot.ListMeasurementBundlesResponse + 1154, // 1890: forge.Forge.ListMeasurementBundleMachines:output_type -> measured_boot.ListMeasurementBundleMachinesResponse + 1151, // 1891: forge.Forge.FindClosestBundleMatch:output_type -> measured_boot.ShowMeasurementBundleResponse + 1155, // 1892: forge.Forge.DeleteMeasurementJournal:output_type -> measured_boot.DeleteMeasurementJournalResponse + 1156, // 1893: forge.Forge.ShowMeasurementJournal:output_type -> measured_boot.ShowMeasurementJournalResponse + 1157, // 1894: forge.Forge.ShowMeasurementJournals:output_type -> measured_boot.ShowMeasurementJournalsResponse + 1158, // 1895: forge.Forge.ListMeasurementJournal:output_type -> measured_boot.ListMeasurementJournalResponse + 1159, // 1896: forge.Forge.AttestCandidateMachine:output_type -> measured_boot.AttestCandidateMachineResponse + 1160, // 1897: forge.Forge.ShowCandidateMachine:output_type -> measured_boot.ShowCandidateMachineResponse + 1161, // 1898: forge.Forge.ShowCandidateMachines:output_type -> measured_boot.ShowCandidateMachinesResponse + 1162, // 1899: forge.Forge.ListCandidateMachines:output_type -> measured_boot.ListCandidateMachinesResponse + 1163, // 1900: forge.Forge.CreateMeasurementSystemProfile:output_type -> measured_boot.CreateMeasurementSystemProfileResponse + 1164, // 1901: forge.Forge.DeleteMeasurementSystemProfile:output_type -> measured_boot.DeleteMeasurementSystemProfileResponse + 1165, // 1902: forge.Forge.RenameMeasurementSystemProfile:output_type -> measured_boot.RenameMeasurementSystemProfileResponse + 1166, // 1903: forge.Forge.ShowMeasurementSystemProfile:output_type -> measured_boot.ShowMeasurementSystemProfileResponse + 1167, // 1904: forge.Forge.ShowMeasurementSystemProfiles:output_type -> measured_boot.ShowMeasurementSystemProfilesResponse + 1168, // 1905: forge.Forge.ListMeasurementSystemProfiles:output_type -> measured_boot.ListMeasurementSystemProfilesResponse + 1169, // 1906: forge.Forge.ListMeasurementSystemProfileBundles:output_type -> measured_boot.ListMeasurementSystemProfileBundlesResponse + 1170, // 1907: forge.Forge.ListMeasurementSystemProfileMachines:output_type -> measured_boot.ListMeasurementSystemProfileMachinesResponse + 1171, // 1908: forge.Forge.CreateMeasurementReport:output_type -> measured_boot.CreateMeasurementReportResponse + 1172, // 1909: forge.Forge.DeleteMeasurementReport:output_type -> measured_boot.DeleteMeasurementReportResponse + 1173, // 1910: forge.Forge.PromoteMeasurementReport:output_type -> measured_boot.PromoteMeasurementReportResponse + 1174, // 1911: forge.Forge.RevokeMeasurementReport:output_type -> measured_boot.RevokeMeasurementReportResponse + 1175, // 1912: forge.Forge.ShowMeasurementReportForId:output_type -> measured_boot.ShowMeasurementReportForIdResponse + 1176, // 1913: forge.Forge.ShowMeasurementReportsForMachine:output_type -> measured_boot.ShowMeasurementReportsForMachineResponse + 1177, // 1914: forge.Forge.ShowMeasurementReports:output_type -> measured_boot.ShowMeasurementReportsResponse + 1178, // 1915: forge.Forge.ListMeasurementReport:output_type -> measured_boot.ListMeasurementReportResponse + 1179, // 1916: forge.Forge.MatchMeasurementReport:output_type -> measured_boot.MatchMeasurementReportResponse + 1180, // 1917: forge.Forge.ImportSiteMeasurements:output_type -> measured_boot.ImportSiteMeasurementsResponse + 1181, // 1918: forge.Forge.ExportSiteMeasurements:output_type -> measured_boot.ExportSiteMeasurementsResponse + 1182, // 1919: forge.Forge.AddMeasurementTrustedMachine:output_type -> measured_boot.AddMeasurementTrustedMachineResponse + 1183, // 1920: forge.Forge.RemoveMeasurementTrustedMachine:output_type -> measured_boot.RemoveMeasurementTrustedMachineResponse + 1184, // 1921: forge.Forge.AddMeasurementTrustedProfile:output_type -> measured_boot.AddMeasurementTrustedProfileResponse + 1185, // 1922: forge.Forge.RemoveMeasurementTrustedProfile:output_type -> measured_boot.RemoveMeasurementTrustedProfileResponse + 1186, // 1923: forge.Forge.ListMeasurementTrustedMachines:output_type -> measured_boot.ListMeasurementTrustedMachinesResponse + 1187, // 1924: forge.Forge.ListMeasurementTrustedProfiles:output_type -> measured_boot.ListMeasurementTrustedProfilesResponse + 1188, // 1925: forge.Forge.ListAttestationSummary:output_type -> measured_boot.ListAttestationSummaryResponse + 674, // 1926: forge.Forge.CreateNetworkSecurityGroup:output_type -> forge.CreateNetworkSecurityGroupResponse + 676, // 1927: forge.Forge.FindNetworkSecurityGroupIds:output_type -> forge.FindNetworkSecurityGroupIdsResponse + 678, // 1928: forge.Forge.FindNetworkSecurityGroupsByIds:output_type -> forge.FindNetworkSecurityGroupsByIdsResponse + 679, // 1929: forge.Forge.UpdateNetworkSecurityGroup:output_type -> forge.UpdateNetworkSecurityGroupResponse + 682, // 1930: forge.Forge.DeleteNetworkSecurityGroup:output_type -> forge.DeleteNetworkSecurityGroupResponse + 685, // 1931: forge.Forge.GetNetworkSecurityGroupPropagationStatus:output_type -> forge.GetNetworkSecurityGroupPropagationStatusResponse + 692, // 1932: forge.Forge.GetNetworkSecurityGroupAttachments:output_type -> forge.GetNetworkSecurityGroupAttachmentsResponse + 550, // 1933: forge.Forge.CreateOsImage:output_type -> forge.OsImage + 554, // 1934: forge.Forge.DeleteOsImage:output_type -> forge.DeleteOsImageResponse + 552, // 1935: forge.Forge.ListOsImage:output_type -> forge.ListOsImageResponse + 550, // 1936: forge.Forge.GetOsImage:output_type -> forge.OsImage + 550, // 1937: forge.Forge.UpdateOsImage:output_type -> forge.OsImage + 271, // 1938: forge.Forge.GetIpxeTemplate:output_type -> forge.IpxeTemplate + 557, // 1939: forge.Forge.ListIpxeTemplates:output_type -> forge.IpxeTemplateList + 570, // 1940: forge.Forge.RebootCompleted:output_type -> forge.MachineRebootCompletedResponse + 1066, // 1941: forge.Forge.PersistValidationResult:output_type -> google.protobuf.Empty + 577, // 1942: forge.Forge.GetMachineValidationResults:output_type -> forge.MachineValidationResultList + 574, // 1943: forge.Forge.MachineValidationCompleted:output_type -> forge.MachineValidationCompletedResponse + 582, // 1944: forge.Forge.MachineSetAutoUpdate:output_type -> forge.MachineSetAutoUpdateResponse + 585, // 1945: forge.Forge.GetMachineValidationExternalConfig:output_type -> forge.GetMachineValidationExternalConfigResponse + 587, // 1946: forge.Forge.GetMachineValidationExternalConfigs:output_type -> forge.GetMachineValidationExternalConfigsResponse + 1066, // 1947: forge.Forge.AddUpdateMachineValidationExternalConfig:output_type -> google.protobuf.Empty + 604, // 1948: forge.Forge.GetMachineValidationRuns:output_type -> forge.MachineValidationRunList + 607, // 1949: forge.Forge.FindMachineValidationRunItemIds:output_type -> forge.MachineValidationRunItemIdList + 609, // 1950: forge.Forge.FindMachineValidationRunItemsByIds:output_type -> forge.MachineValidationRunItemList + 612, // 1951: forge.Forge.GetMachineValidationAttempt:output_type -> forge.MachineValidationAttempt + 614, // 1952: forge.Forge.HeartbeatMachineValidationRun:output_type -> forge.MachineValidationHeartbeatResponse + 1066, // 1953: forge.Forge.RemoveMachineValidationExternalConfig:output_type -> google.protobuf.Empty + 621, // 1954: forge.Forge.GetMachineValidationTests:output_type -> forge.MachineValidationTestsGetResponse + 620, // 1955: forge.Forge.AddMachineValidationTest:output_type -> forge.MachineValidationTestAddUpdateResponse + 620, // 1956: forge.Forge.UpdateMachineValidationTest:output_type -> forge.MachineValidationTestAddUpdateResponse + 623, // 1957: forge.Forge.MachineValidationTestVerfied:output_type -> forge.MachineValidationTestVerfiedResponse + 625, // 1958: forge.Forge.MachineValidationTestNextVersion:output_type -> forge.MachineValidationTestNextVersionResponse + 628, // 1959: forge.Forge.MachineValidationTestEnableDisableTest:output_type -> forge.MachineValidationTestEnableDisableTestResponse + 630, // 1960: forge.Forge.UpdateMachineValidationRun:output_type -> forge.MachineValidationRunResponse + 424, // 1961: forge.Forge.AdminBmcReset:output_type -> forge.AdminBmcResetResponse + 601, // 1962: forge.Forge.AdminPowerControl:output_type -> forge.AdminPowerControlResponse + 412, // 1963: forge.Forge.DisableSecureBoot:output_type -> forge.DisableSecureBootResponse + 414, // 1964: forge.Forge.Lockdown:output_type -> forge.LockdownResponse + 1189, // 1965: forge.Forge.LockdownStatus:output_type -> site_explorer.LockdownStatus + 418, // 1966: forge.Forge.MachineSetup:output_type -> forge.MachineSetupResponse + 420, // 1967: forge.Forge.SetDpuFirstBootOrder:output_type -> forge.SetDpuFirstBootOrderResponse + 797, // 1968: forge.Forge.CreateBmcUser:output_type -> forge.CreateBmcUserResponse + 799, // 1969: forge.Forge.DeleteBmcUser:output_type -> forge.DeleteBmcUserResponse + 801, // 1970: forge.Forge.SetBmcRootPassword:output_type -> forge.SetBmcRootPasswordResponse + 803, // 1971: forge.Forge.ProbeBmcVendor:output_type -> forge.ProbeBmcVendorResponse + 426, // 1972: forge.Forge.EnableInfiniteBoot:output_type -> forge.EnableInfiniteBootResponse + 428, // 1973: forge.Forge.IsInfiniteBootEnabled:output_type -> forge.IsInfiniteBootEnabledResponse + 591, // 1974: forge.Forge.OnDemandMachineValidation:output_type -> forge.MachineValidationOnDemandResponse + 599, // 1975: forge.Forge.OnDemandRackMaintenance:output_type -> forge.RackMaintenanceOnDemandResponse + 122, // 1976: forge.Forge.TpmAddCaCert:output_type -> forge.TpmCaAddedCaStatus + 128, // 1977: forge.Forge.TpmShowCaCerts:output_type -> forge.TpmCaCertDetailCollection + 125, // 1978: forge.Forge.TpmShowUnmatchedEkCerts:output_type -> forge.TpmEkCertStatusCollection + 1066, // 1979: forge.Forge.TpmDeleteCaCert:output_type -> google.protobuf.Empty + 657, // 1980: forge.Forge.RedfishBrowse:output_type -> forge.RedfishBrowseResponse + 659, // 1981: forge.Forge.RedfishListActions:output_type -> forge.RedfishListActionsResponse + 664, // 1982: forge.Forge.RedfishCreateAction:output_type -> forge.RedfishCreateActionResponse + 666, // 1983: forge.Forge.RedfishApproveAction:output_type -> forge.RedfishApproveActionResponse + 667, // 1984: forge.Forge.RedfishApplyAction:output_type -> forge.RedfishApplyActionResponse + 668, // 1985: forge.Forge.RedfishCancelAction:output_type -> forge.RedfishCancelActionResponse + 670, // 1986: forge.Forge.UfmBrowse:output_type -> forge.UfmBrowseResponse + 694, // 1987: forge.Forge.GetDesiredFirmwareVersions:output_type -> forge.GetDesiredFirmwareVersionsResponse + 812, // 1988: forge.Forge.UpsertHostFirmwareConfig:output_type -> forge.HostFirmwareConfigResponse + 1066, // 1989: forge.Forge.DeleteHostFirmwareConfig:output_type -> google.protobuf.Empty + 710, // 1990: forge.Forge.CreateSku:output_type -> forge.SkuIdList + 706, // 1991: forge.Forge.GenerateSkuFromMachine:output_type -> forge.Sku + 1066, // 1992: forge.Forge.VerifySkuForMachine:output_type -> google.protobuf.Empty + 1066, // 1993: forge.Forge.AssignSkuToMachine:output_type -> google.protobuf.Empty + 1066, // 1994: forge.Forge.RemoveSkuAssociation:output_type -> google.protobuf.Empty + 1066, // 1995: forge.Forge.DeleteSku:output_type -> google.protobuf.Empty + 710, // 1996: forge.Forge.GetAllSkuIds:output_type -> forge.SkuIdList + 709, // 1997: forge.Forge.FindSkusByIds:output_type -> forge.SkuList + 1066, // 1998: forge.Forge.UpdateSkuMetadata:output_type -> google.protobuf.Empty + 706, // 1999: forge.Forge.ReplaceSku:output_type -> forge.Sku + 394, // 2000: forge.Forge.GetManagedHostQuarantineState:output_type -> forge.GetManagedHostQuarantineStateResponse + 396, // 2001: forge.Forge.SetManagedHostQuarantineState:output_type -> forge.SetManagedHostQuarantineStateResponse + 398, // 2002: forge.Forge.ClearManagedHostQuarantineState:output_type -> forge.ClearManagedHostQuarantineStateResponse + 1066, // 2003: forge.Forge.ResetHostReprovisioning:output_type -> google.protobuf.Empty + 1066, // 2004: forge.Forge.CopyBfbToDpuRshim:output_type -> google.protobuf.Empty + 716, // 2005: forge.Forge.GetAllDpaInterfaceIds:output_type -> forge.DpaInterfaceIdList + 718, // 2006: forge.Forge.FindDpaInterfacesByIds:output_type -> forge.DpaInterfaceList + 714, // 2007: forge.Forge.CreateDpaInterface:output_type -> forge.DpaInterface + 714, // 2008: forge.Forge.EnsureDpaInterface:output_type -> forge.DpaInterface + 721, // 2009: forge.Forge.DeleteDpaInterface:output_type -> forge.DpaInterfaceDeletionResult + 726, // 2010: forge.Forge.GetPowerOptions:output_type -> forge.PowerOptionResponse + 726, // 2011: forge.Forge.UpdatePowerOption:output_type -> forge.PowerOptionResponse + 1066, // 2012: forge.Forge.AllowIngestionAndPowerOn:output_type -> google.protobuf.Empty + 121, // 2013: forge.Forge.DetermineMachineIngestionState:output_type -> forge.MachineIngestionStateResponse + 744, // 2014: forge.Forge.FindRackIds:output_type -> forge.RackIdList + 742, // 2015: forge.Forge.FindRacksByIds:output_type -> forge.RackList + 741, // 2016: forge.Forge.GetRack:output_type -> forge.GetRackResponse + 1066, // 2017: forge.Forge.DeleteRack:output_type -> google.protobuf.Empty + 752, // 2018: forge.Forge.AdminForceDeleteRack:output_type -> forge.AdminForceDeleteRackResponse + 759, // 2019: forge.Forge.GetRackProfile:output_type -> forge.GetRackProfileResponse + 730, // 2020: forge.Forge.CreateComputeAllocation:output_type -> forge.CreateComputeAllocationResponse + 732, // 2021: forge.Forge.FindComputeAllocationIds:output_type -> forge.FindComputeAllocationIdsResponse + 734, // 2022: forge.Forge.FindComputeAllocationsByIds:output_type -> forge.FindComputeAllocationsByIdsResponse + 735, // 2023: forge.Forge.UpdateComputeAllocation:output_type -> forge.UpdateComputeAllocationResponse + 738, // 2024: forge.Forge.DeleteComputeAllocation:output_type -> forge.DeleteComputeAllocationResponse + 805, // 2025: forge.Forge.SetFirmwareUpdateTimeWindow:output_type -> forge.SetFirmwareUpdateTimeWindowResponse + 814, // 2026: forge.Forge.ListHostFirmware:output_type -> forge.ListHostFirmwareResponse + 1190, // 2027: forge.Forge.PublishMlxDeviceReport:output_type -> mlx_device.PublishMlxDeviceReportResponse + 1191, // 2028: forge.Forge.PublishMlxObservationReport:output_type -> mlx_device.PublishMlxObservationReportResponse + 817, // 2029: forge.Forge.TrimTable:output_type -> forge.TrimTableResponse + 819, // 2030: forge.Forge.ListNvlinkNmxcEndpoints:output_type -> forge.NvlinkNmxcEndpointList + 818, // 2031: forge.Forge.CreateNvlinkNmxcEndpoint:output_type -> forge.NvlinkNmxcEndpoint + 818, // 2032: forge.Forge.UpdateNvlinkNmxcEndpoint:output_type -> forge.NvlinkNmxcEndpoint + 1066, // 2033: forge.Forge.DeleteNvlinkNmxcEndpoint:output_type -> google.protobuf.Empty + 822, // 2034: forge.Forge.CreateRemediation:output_type -> forge.CreateRemediationResponse + 1066, // 2035: forge.Forge.ApproveRemediation:output_type -> google.protobuf.Empty + 1066, // 2036: forge.Forge.RevokeRemediation:output_type -> google.protobuf.Empty + 1066, // 2037: forge.Forge.EnableRemediation:output_type -> google.protobuf.Empty + 1066, // 2038: forge.Forge.DisableRemediation:output_type -> google.protobuf.Empty + 823, // 2039: forge.Forge.FindRemediationIds:output_type -> forge.RemediationIdList + 824, // 2040: forge.Forge.FindRemediationsByIds:output_type -> forge.RemediationList + 831, // 2041: forge.Forge.FindAppliedRemediationIds:output_type -> forge.AppliedRemediationIdList + 834, // 2042: forge.Forge.FindAppliedRemediations:output_type -> forge.AppliedRemediationList + 836, // 2043: forge.Forge.GetNextRemediationForMachine:output_type -> forge.GetNextRemediationForMachineResponse + 1066, // 2044: forge.Forge.RemediationApplied:output_type -> google.protobuf.Empty + 1066, // 2045: forge.Forge.SetPrimaryDpu:output_type -> google.protobuf.Empty + 1066, // 2046: forge.Forge.SetPrimaryInterface:output_type -> google.protobuf.Empty + 845, // 2047: forge.Forge.CreateDpuExtensionService:output_type -> forge.DpuExtensionService + 845, // 2048: forge.Forge.UpdateDpuExtensionService:output_type -> forge.DpuExtensionService + 849, // 2049: forge.Forge.DeleteDpuExtensionService:output_type -> forge.DeleteDpuExtensionServiceResponse + 851, // 2050: forge.Forge.FindDpuExtensionServiceIds:output_type -> forge.DpuExtensionServiceIdList + 853, // 2051: forge.Forge.FindDpuExtensionServicesByIds:output_type -> forge.DpuExtensionServiceList + 855, // 2052: forge.Forge.GetDpuExtensionServiceVersionsInfo:output_type -> forge.DpuExtensionServiceVersionInfoList + 857, // 2053: forge.Forge.FindInstancesByDpuExtensionService:output_type -> forge.FindInstancesByDpuExtensionServiceResponse + 95, // 2054: forge.Forge.TriggerMachineAttestation:output_type -> forge.SpdmMachineAttestationTriggerResponse + 1066, // 2055: forge.Forge.CancelMachineAttestation:output_type -> google.protobuf.Empty + 100, // 2056: forge.Forge.ListAttestationMachines:output_type -> forge.SpdmListAttestationMachinesResponse + 97, // 2057: forge.Forge.GetAttestationMachine:output_type -> forge.SpdmGetAttestationMachineResponse + 102, // 2058: forge.Forge.SignMachineIdentity:output_type -> forge.MachineIdentityResponse + 107, // 2059: forge.Forge.GetTenantIdentityConfiguration:output_type -> forge.TenantIdentityConfigResponse + 107, // 2060: forge.Forge.SetTenantIdentityConfiguration:output_type -> forge.TenantIdentityConfigResponse + 1066, // 2061: forge.Forge.DeleteTenantIdentityConfiguration:output_type -> google.protobuf.Empty + 110, // 2062: forge.Forge.GetTokenDelegation:output_type -> forge.TokenDelegationResponse + 110, // 2063: forge.Forge.SetTokenDelegation:output_type -> forge.TokenDelegationResponse + 1066, // 2064: forge.Forge.DeleteTokenDelegation:output_type -> google.protobuf.Empty + 116, // 2065: forge.Forge.ReencryptTenantIdentitySecrets:output_type -> forge.ReencryptTenantIdentitySecretsResponse + 117, // 2066: forge.Forge.GetJWKS:output_type -> forge.Jwks + 118, // 2067: forge.Forge.GetOpenIDConfiguration:output_type -> forge.OpenIdConfiguration + 864, // 2068: forge.Forge.ScoutStream:output_type -> forge.ScoutStreamScoutBoundMessage + 867, // 2069: forge.Forge.ScoutStreamShowConnections:output_type -> forge.ScoutStreamShowConnectionsResponse + 869, // 2070: forge.Forge.ScoutStreamDisconnect:output_type -> forge.ScoutStreamDisconnectResponse + 871, // 2071: forge.Forge.ScoutStreamPing:output_type -> forge.ScoutStreamAdminPingResponse + 1192, // 2072: forge.Forge.MlxAdminProfileSync:output_type -> mlx_device.MlxAdminProfileSyncResponse + 1193, // 2073: forge.Forge.MlxAdminProfileShow:output_type -> mlx_device.MlxAdminProfileShowResponse + 1194, // 2074: forge.Forge.MlxAdminProfileCompare:output_type -> mlx_device.MlxAdminProfileCompareResponse + 1195, // 2075: forge.Forge.MlxAdminProfileList:output_type -> mlx_device.MlxAdminProfileListResponse + 1196, // 2076: forge.Forge.MlxAdminLockdownLock:output_type -> mlx_device.MlxAdminLockdownLockResponse + 1197, // 2077: forge.Forge.MlxAdminLockdownUnlock:output_type -> mlx_device.MlxAdminLockdownUnlockResponse + 1198, // 2078: forge.Forge.MlxAdminLockdownStatus:output_type -> mlx_device.MlxAdminLockdownStatusResponse + 1199, // 2079: forge.Forge.MlxAdminShowDevice:output_type -> mlx_device.MlxAdminDeviceInfoResponse + 1200, // 2080: forge.Forge.MlxAdminShowMachine:output_type -> mlx_device.MlxAdminDeviceReportResponse + 1201, // 2081: forge.Forge.MlxAdminRegistryList:output_type -> mlx_device.MlxAdminRegistryListResponse + 1202, // 2082: forge.Forge.MlxAdminRegistryShow:output_type -> mlx_device.MlxAdminRegistryShowResponse + 1203, // 2083: forge.Forge.MlxAdminConfigQuery:output_type -> mlx_device.MlxAdminConfigQueryResponse + 1204, // 2084: forge.Forge.MlxAdminConfigSet:output_type -> mlx_device.MlxAdminConfigSetResponse + 1205, // 2085: forge.Forge.MlxAdminConfigSync:output_type -> mlx_device.MlxAdminConfigSyncResponse + 1206, // 2086: forge.Forge.MlxAdminConfigCompare:output_type -> mlx_device.MlxAdminConfigCompareResponse + 782, // 2087: forge.Forge.FindNVLinkPartitionIds:output_type -> forge.NVLinkPartitionIdList + 777, // 2088: forge.Forge.FindNVLinkPartitionsByIds:output_type -> forge.NVLinkPartitionList + 777, // 2089: forge.Forge.NVLinkPartitionsForTenant:output_type -> forge.NVLinkPartitionList + 793, // 2090: forge.Forge.FindNVLinkLogicalPartitionIds:output_type -> forge.NVLinkLogicalPartitionIdList + 787, // 2091: forge.Forge.FindNVLinkLogicalPartitionsByIds:output_type -> forge.NVLinkLogicalPartitionList + 786, // 2092: forge.Forge.CreateNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartition + 795, // 2093: forge.Forge.UpdateNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartitionUpdateResult + 790, // 2094: forge.Forge.DeleteNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartitionDeletionResult + 787, // 2095: forge.Forge.NVLinkLogicalPartitionsForTenant:output_type -> forge.NVLinkLogicalPartitionList + 885, // 2096: forge.Forge.GetMachinePositionInfo:output_type -> forge.MachinePositionInfoList + 775, // 2097: forge.Forge.NmxcBrowse:output_type -> forge.NmxcBrowseResponse + 1066, // 2098: forge.Forge.ModifyDPFState:output_type -> google.protobuf.Empty + 888, // 2099: forge.Forge.GetDPFState:output_type -> forge.DPFStateResponse + 891, // 2100: forge.Forge.GetDPFHostSnapshot:output_type -> forge.DPFHostSnapshotResponse + 894, // 2101: forge.Forge.GetDPFServiceVersions:output_type -> forge.DPFServiceVersionsResponse + 902, // 2102: forge.Forge.ComponentPowerControl:output_type -> forge.ComponentPowerControlResponse + 904, // 2103: forge.Forge.ComponentConfigureSwitchCertificate:output_type -> forge.ComponentConfigureSwitchCertificateResponse + 900, // 2104: forge.Forge.GetComponentInventory:output_type -> forge.GetComponentInventoryResponse + 911, // 2105: forge.Forge.UpdateComponentFirmware:output_type -> forge.UpdateComponentFirmwareResponse + 913, // 2106: forge.Forge.GetComponentFirmwareStatus:output_type -> forge.GetComponentFirmwareStatusResponse + 917, // 2107: forge.Forge.ListComponentFirmwareVersions:output_type -> forge.ListComponentFirmwareVersionsResponse + 930, // 2108: forge.Forge.CreateOperatingSystem:output_type -> forge.OperatingSystem + 930, // 2109: forge.Forge.GetOperatingSystem:output_type -> forge.OperatingSystem + 930, // 2110: forge.Forge.UpdateOperatingSystem:output_type -> forge.OperatingSystem + 936, // 2111: forge.Forge.DeleteOperatingSystem:output_type -> forge.DeleteOperatingSystemResponse + 938, // 2112: forge.Forge.FindOperatingSystemIds:output_type -> forge.OperatingSystemIdList + 940, // 2113: forge.Forge.FindOperatingSystemsByIds:output_type -> forge.OperatingSystemList + 942, // 2114: forge.Forge.GetOperatingSystemCachableIpxeTemplateArtifacts:output_type -> forge.IpxeTemplateArtifactList + 942, // 2115: forge.Forge.UpdateOperatingSystemCachableIpxeTemplateArtifacts:output_type -> forge.IpxeTemplateArtifactList + 947, // 2116: forge.Forge.ReWrapSecrets:output_type -> forge.ReWrapSecretsResponse + 1654, // [1654:2117] is the sub-list for method output_type + 1191, // [1191:1654] is the sub-list for method input_type + 1191, // [1191:1191] is the sub-list for extension type_name + 1191, // [1191:1191] is the sub-list for extension extendee + 0, // [0:1191] is the sub-list for field type_name } func init() { file_nico_nico_proto_init() } @@ -70621,50 +70793,52 @@ func file_nico_nico_proto_init() { file_nico_nico_proto_msgTypes[247].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[248].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[249].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[252].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[253].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[250].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[251].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[254].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[255].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[260].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[265].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[266].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[256].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[257].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[262].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[267].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[268].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[269].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[270].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[271].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[278].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[273].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[280].OneofWrappers = []any{ (*BmcCredentials_UsernamePassword)(nil), (*BmcCredentials_SessionToken)(nil), } - file_nico_nico_proto_msgTypes[281].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[285].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[286].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[283].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[287].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[293].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[294].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[288].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[289].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[295].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[296].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[297].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[298].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[299].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[301].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[303].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[304].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[305].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[306].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[307].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[313].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[318].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[309].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[315].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[320].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[321].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[322].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[323].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[324].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[326].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[328].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[330].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[332].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[333].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[334].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[335].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[336].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[339].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[337].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[338].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[341].OneofWrappers = []any{ (*ForgeAgentControlResponse_Noop_)(nil), (*ForgeAgentControlResponse_Reset_)(nil), (*ForgeAgentControlResponse_Discovery_)(nil), @@ -70676,169 +70850,169 @@ func file_nico_nico_proto_init() { (*ForgeAgentControlResponse_MlxAction_)(nil), (*ForgeAgentControlResponse_FirmwareUpgrade_)(nil), } - file_nico_nico_proto_msgTypes[340].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[342].OneofWrappers = []any{ (*MachineDiscoveryInfo_Info)(nil), } - file_nico_nico_proto_msgTypes[351].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[352].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[353].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[356].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[357].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[354].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[355].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[358].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[359].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[361].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[366].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[369].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[372].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[375].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[378].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[363].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[368].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[371].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[374].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[377].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[380].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[381].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[382].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[383].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[384].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[389].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[395].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[399].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[404].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[411].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[412].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[417].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[386].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[391].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[397].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[401].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[406].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[413].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[414].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[419].OneofWrappers = []any{ (*FindBmcIpsRequest_MacAddress)(nil), (*FindBmcIpsRequest_Serial)(nil), } - file_nico_nico_proto_msgTypes[429].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[430].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[431].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[434].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[435].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[432].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[433].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[436].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[443].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[444].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[450].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[451].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[437].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[438].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[445].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[446].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[452].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[453].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[454].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[455].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[456].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[463].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[464].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[457].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[458].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[465].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[466].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[469].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[467].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[468].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[471].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[473].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[478].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[475].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[480].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[483].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[484].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[482].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[485].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[486].OneofWrappers = []any{ (*MachineValidationStatus_Started)(nil), (*MachineValidationStatus_InProgress)(nil), (*MachineValidationStatus_Completed)(nil), } - file_nico_nico_proto_msgTypes[485].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[489].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[493].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[497].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[498].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[501].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[487].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[491].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[495].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[499].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[500].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[503].OneofWrappers = []any{ (*MaintenanceActivityConfig_FirmwareUpgrade)(nil), (*MaintenanceActivityConfig_ConfigureNmxCluster)(nil), (*MaintenanceActivityConfig_PowerSequence)(nil), (*MaintenanceActivityConfig_NvosUpdate)(nil), } - file_nico_nico_proto_msgTypes[505].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[506].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[515].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[507].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[508].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[517].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[518].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[519].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[520].OneofWrappers = []any{ (*MachineValidationHeartbeatRequest_RunItemId)(nil), (*MachineValidationHeartbeatRequest_AttemptId)(nil), (*MachineValidationHeartbeatRequest_TestId)(nil), } - file_nico_nico_proto_msgTypes[522].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[524].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[529].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[536].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[537].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[526].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[531].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[538].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[539].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[540].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[541].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[542].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[545].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[546].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[543].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[544].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[547].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[551].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[556].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[563].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[548].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[549].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[553].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[558].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[565].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[566].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[577].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[578].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[567].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[568].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[579].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[580].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[582].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[585].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[589].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[592].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[593].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[584].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[587].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[591].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[594].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[595].OneofWrappers = []any{ (*NetworkSecurityGroupRuleAttributes_SrcPrefix)(nil), (*NetworkSecurityGroupRuleAttributes_DstPrefix)(nil), } - file_nico_nico_proto_msgTypes[610].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[611].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[616].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[619].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[620].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[627].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[630].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[633].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[634].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[612].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[613].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[618].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[621].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[622].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[629].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[632].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[635].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[636].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[641].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[645].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[648].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[658].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[659].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[638].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[643].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[647].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[650].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[660].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[665].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[666].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[669].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[670].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[661].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[662].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[667].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[668].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[671].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[672].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[674].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[678].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[684].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[685].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[693].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[696].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[699].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[676].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[680].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[686].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[687].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[695].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[698].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[701].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[703].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[705].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[707].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[711].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[709].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[713].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[714].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[715].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[716].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[730].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[735].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[741].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[748].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[717].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[718].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[732].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[737].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[743].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[750].OneofWrappers = []any{ (*DpuExtensionServiceCredential_UsernamePassword)(nil), } - file_nico_nico_proto_msgTypes[749].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[750].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[751].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[752].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[755].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[761].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[753].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[754].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[757].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[763].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[766].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[765].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[768].OneofWrappers = []any{ (*DpuExtensionServiceObservabilityConfig_Prometheus)(nil), (*DpuExtensionServiceObservabilityConfig_Logging)(nil), } - file_nico_nico_proto_msgTypes[768].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[770].OneofWrappers = []any{ (*ScoutStreamApiBoundMessage_Init)(nil), (*ScoutStreamApiBoundMessage_MlxDeviceLockdownResponse)(nil), (*ScoutStreamApiBoundMessage_MlxDeviceProfileSyncResponse)(nil), @@ -70853,7 +71027,7 @@ func file_nico_nico_proto_init() { (*ScoutStreamApiBoundMessage_MlxDeviceConfigCompareResponse)(nil), (*ScoutStreamApiBoundMessage_ScoutStreamAgentPingResponse)(nil), } - file_nico_nico_proto_msgTypes[769].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[771].OneofWrappers = []any{ (*ScoutStreamScoutBoundMessage_MlxDeviceLockdownLockRequest)(nil), (*ScoutStreamScoutBoundMessage_MlxDeviceLockdownUnlockRequest)(nil), (*ScoutStreamScoutBoundMessage_MlxDeviceLockdownStatusRequest)(nil), @@ -70869,81 +71043,81 @@ func file_nico_nico_proto_init() { (*ScoutStreamScoutBoundMessage_MlxDeviceConfigCompareRequest)(nil), (*ScoutStreamScoutBoundMessage_ScoutStreamAgentPingRequest)(nil), } - file_nico_nico_proto_msgTypes[778].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[780].OneofWrappers = []any{ (*ScoutStreamAgentPingResponse_Pong)(nil), (*ScoutStreamAgentPingResponse_Error)(nil), } - file_nico_nico_proto_msgTypes[787].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[788].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[789].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[790].OneofWrappers = []any{ (*PxeDomain_NewDomain)(nil), (*PxeDomain_LegacyDomain)(nil), } - file_nico_nico_proto_msgTypes[791].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[803].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[793].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[805].OneofWrappers = []any{ (*GetComponentInventoryRequest_MachineIds)(nil), (*GetComponentInventoryRequest_SwitchIds)(nil), (*GetComponentInventoryRequest_PowerShelfIds)(nil), } - file_nico_nico_proto_msgTypes[804].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[806].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[806].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[808].OneofWrappers = []any{ (*ComponentPowerControlRequest_MachineIds)(nil), (*ComponentPowerControlRequest_SwitchIds)(nil), (*ComponentPowerControlRequest_PowerShelfIds)(nil), } - file_nico_nico_proto_msgTypes[808].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[815].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[810].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[817].OneofWrappers = []any{ (*UpdateComponentFirmwareRequest_ComputeTrays)(nil), (*UpdateComponentFirmwareRequest_Switches)(nil), (*UpdateComponentFirmwareRequest_PowerShelves)(nil), (*UpdateComponentFirmwareRequest_Racks)(nil), } - file_nico_nico_proto_msgTypes[817].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[819].OneofWrappers = []any{ (*GetComponentFirmwareStatusRequest_MachineIds)(nil), (*GetComponentFirmwareStatusRequest_SwitchIds)(nil), (*GetComponentFirmwareStatusRequest_PowerShelfIds)(nil), (*GetComponentFirmwareStatusRequest_RackIds)(nil), } - file_nico_nico_proto_msgTypes[819].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[821].OneofWrappers = []any{ (*ListComponentFirmwareVersionsRequest_MachineIds)(nil), (*ListComponentFirmwareVersionsRequest_SwitchIds)(nil), (*ListComponentFirmwareVersionsRequest_PowerShelfIds)(nil), (*ListComponentFirmwareVersionsRequest_RackIds)(nil), } - file_nico_nico_proto_msgTypes[823].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[828].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[835].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[836].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[839].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[842].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[848].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[851].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[854].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[855].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[825].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[830].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[837].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[838].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[841].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[844].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[850].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[853].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[856].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[857].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[858].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[859].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[861].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[863].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[879].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[881].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[865].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[881].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[883].OneofWrappers = []any{ (*ForgeAgentControlResponse_MlxDeviceAction_Noop)(nil), (*ForgeAgentControlResponse_MlxDeviceAction_Lock)(nil), (*ForgeAgentControlResponse_MlxDeviceAction_Unlock)(nil), (*ForgeAgentControlResponse_MlxDeviceAction_ApplyProfile)(nil), (*ForgeAgentControlResponse_MlxDeviceAction_ApplyFirmware)(nil), } - file_nico_nico_proto_msgTypes[885].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[886].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[890].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[891].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[887].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[888].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[892].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[893].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[894].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_nico_nico_proto_rawDesc), len(file_nico_nico_proto_rawDesc)), NumEnums: 93, - NumMessages: 899, + NumMessages: 901, NumExtensions: 0, NumServices: 1, }, diff --git a/rest-api/proto/core/src/v1/nico_nico.proto b/rest-api/proto/core/src/v1/nico_nico.proto index 39449e307d..13762fb11a 100644 --- a/rest-api/proto/core/src/v1/nico_nico.proto +++ b/rest-api/proto/core/src/v1/nico_nico.proto @@ -3647,7 +3647,10 @@ enum MachineType { POWER_SHELF = 3; } +// Deprecated: use BmcEndpoint (ingestion-time fields, on Machine) and +// BmcStatus (observed fields, on MachineStatus) instead. message BmcInfo { + option deprecated = true; optional string ip = 1; optional string mac = 2; optional string version = 3; @@ -3656,6 +3659,20 @@ message BmcInfo { optional common.MachineInterfaceId machine_interface_id = 6; } +// BMC connection details established at ingestion; not operator-mutable. +message BmcEndpoint { + optional string ip = 1; + optional string mac = 2; + optional uint32 port = 3; + optional common.MachineInterfaceId machine_interface_id = 4; +} + +// BMC observed/runtime state. +message BmcStatus { + optional string version = 2; + optional string firmware_version = 3; +} + message SwitchNvosInfo { optional string ip = 1; optional string mac = 2; @@ -3707,6 +3724,9 @@ message MachineStatus { optional string last_scout_observed_version = 22; optional InstanceNetworkRestrictions instance_network_restrictions = 23; LifecycleStatus lifecycle = 24; + + // BMC observed/runtime state. + optional BmcStatus bmc_status = 25; } message Machine { @@ -3747,8 +3767,9 @@ message Machine { // Machine type (DPU or HOST). Set at ingestion time; not operator-mutable. MachineType machine_type = 11; - // BMC connection details. Discovered at ingestion time; not operator-mutable. - BmcInfo bmc_info = 12; + // Deprecated: use bmc (BmcEndpoint) instead. + // TODO: change to reserved once rest-api uses BmcEndpoint + BmcInfo bmc_info = 12 [deprecated = true]; // Deprecated: use status.last_reboot_time // TODO: change to reserved once rest-api uses MachineStatus @@ -3886,6 +3907,9 @@ message Machine { MachineConfig config = 50; MachineStatus status = 51; + + // BMC connection details established at ingestion; not operator-mutable. + BmcEndpoint bmc = 52; } message DpfMachineState {