diff --git a/crates/admin-cli/src/machine/mod.rs b/crates/admin-cli/src/machine/mod.rs index fcb019562f..cb0cfdb82f 100644 --- a/crates/admin-cli/src/machine/mod.rs +++ b/crates/admin-cli/src/machine/mod.rs @@ -27,6 +27,7 @@ pub mod nvlink_info; pub mod positions; pub mod reboot; pub mod show; +pub mod vendor_override; #[cfg(test)] mod tests; @@ -89,4 +90,9 @@ pub enum Cmd { Positions(positions::Args), #[clap(subcommand, about = "Update/show NVLink info for an MNNVL machine")] NvlinkInfo(nvlink_info::Args), + #[clap( + subcommand, + about = "Pin or clear the Redfish BMC vendor override for a machine" + )] + VendorOverride(vendor_override::Args), } diff --git a/crates/admin-cli/src/machine/vendor_override/args.rs b/crates/admin-cli/src/machine/vendor_override/args.rs new file mode 100644 index 0000000000..3f1d63d6dd --- /dev/null +++ b/crates/admin-cli/src/machine/vendor_override/args.rs @@ -0,0 +1,74 @@ +/* + * SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +use carbide_uuid::machine::MachineId; +use clap::Parser; + +#[derive(Parser, Debug, Clone)] +pub enum Args { + #[clap(about = "Pin the Redfish BMC vendor for a machine")] + Set(VendorOverrideSet), + #[clap(about = "Clear the Redfish BMC vendor override for a machine")] + Clear(VendorOverrideClear), + #[clap(about = "Show the Redfish BMC vendor override for a machine")] + Show(VendorOverrideShow), +} + +#[derive(Parser, Debug, Clone)] +#[command(after_long_help = "\ +EXAMPLES: + +Force a machine's BMC vendor to Dell: + $ nico-admin-cli machine vendor-override set 12345678-1234-5678-90ab-cdef01234567 \ + --vendor Dell + +")] +pub struct VendorOverrideSet { + #[clap(help = "The machine whose BMC vendor should be pinned")] + pub machine: MachineId, + #[clap( + long, + help = "RedfishVendor to force (e.g. Dell, Supermicro, NvidiaDpu, Hpe, Lenovo)" + )] + pub vendor: String, +} + +#[derive(Parser, Debug, Clone)] +#[command(after_long_help = "\ +EXAMPLES: + +Clear a machine's BMC vendor override (return to automatic detection): + $ nico-admin-cli machine vendor-override clear 12345678-1234-5678-90ab-cdef01234567 + +")] +pub struct VendorOverrideClear { + #[clap(help = "The machine whose BMC vendor override should be cleared")] + pub machine: MachineId, +} + +#[derive(Parser, Debug, Clone)] +#[command(after_long_help = "\ +EXAMPLES: + +Show a machine's pinned BMC vendor (or that none is set): + $ nico-admin-cli machine vendor-override show 12345678-1234-5678-90ab-cdef01234567 + +")] +pub struct VendorOverrideShow { + #[clap(help = "The machine whose BMC vendor override should be shown")] + pub machine: MachineId, +} diff --git a/crates/admin-cli/src/machine/vendor_override/cmd.rs b/crates/admin-cli/src/machine/vendor_override/cmd.rs new file mode 100644 index 0000000000..27390dfa6c --- /dev/null +++ b/crates/admin-cli/src/machine/vendor_override/cmd.rs @@ -0,0 +1,62 @@ +/* + * SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +use carbide_uuid::machine::MachineId; +use rpc::Machine; + +use super::args::{Args, VendorOverrideClear, VendorOverrideSet, VendorOverrideShow}; +use crate::errors::{CarbideCliError, CarbideCliResult}; +use crate::rpc::ApiClient; + +pub async fn vendor_override(api_client: &ApiClient, cmd: Args) -> CarbideCliResult<()> { + match cmd { + Args::Set(cmd) => set(api_client, cmd).await, + Args::Clear(cmd) => clear(api_client, cmd).await, + Args::Show(cmd) => show(api_client, cmd).await, + } +} + +async fn fetch_machine(api_client: &ApiClient, machine_id: MachineId) -> CarbideCliResult { + let mut machines = api_client + .get_machines_by_ids(&[machine_id]) + .await? + .machines; + machines.pop().ok_or_else(|| { + CarbideCliError::GenericError(format!("Machine with ID {machine_id} was not found")) + }) +} + +async fn set(api_client: &ApiClient, cmd: VendorOverrideSet) -> CarbideCliResult<()> { + api_client + .update_machine_bmc_vendor_override(cmd.machine, Some(cmd.vendor)) + .await +} + +async fn clear(api_client: &ApiClient, cmd: VendorOverrideClear) -> CarbideCliResult<()> { + api_client + .update_machine_bmc_vendor_override(cmd.machine, None) + .await +} + +async fn show(api_client: &ApiClient, cmd: VendorOverrideShow) -> CarbideCliResult<()> { + let machine = fetch_machine(api_client, cmd.machine).await?; + match machine.bmc_vendor_override.as_deref() { + Some(vendor) => println!("{vendor}"), + None => println!("not set (automatic detection)"), + } + Ok(()) +} diff --git a/crates/admin-cli/src/machine/vendor_override/mod.rs b/crates/admin-cli/src/machine/vendor_override/mod.rs new file mode 100644 index 0000000000..1fd27fe848 --- /dev/null +++ b/crates/admin-cli/src/machine/vendor_override/mod.rs @@ -0,0 +1,32 @@ +/* + * SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +pub mod args; +pub mod cmd; + +pub use args::Args; + +use crate::cfg::run::Run; +use crate::cfg::runtime::RuntimeContext; +use crate::errors::CarbideCliResult; + +impl Run for Args { + async fn run(self, ctx: &mut RuntimeContext) -> CarbideCliResult<()> { + cmd::vendor_override(&ctx.api_client, self).await?; + Ok(()) + } +} diff --git a/crates/admin-cli/src/rpc.rs b/crates/admin-cli/src/rpc.rs index 71b060246a..9b442180f4 100644 --- a/crates/admin-cli/src/rpc.rs +++ b/crates/admin-cli/src/rpc.rs @@ -2139,6 +2139,18 @@ impl ApiClient { Ok(self.0.update_machine_metadata(request).await?) } + pub async fn update_machine_bmc_vendor_override( + &self, + machine_id: MachineId, + bmc_vendor_override: Option, + ) -> CarbideCliResult<()> { + let request = ::rpc::forge::MachineBmcVendorOverrideUpdateRequest { + machine_id: Some(machine_id), + bmc_vendor_override, + }; + Ok(self.0.update_machine_bmc_vendor_override(request).await?) + } + pub async fn update_rack_metadata( &self, rack_id: RackId, diff --git a/crates/api-core/src/api.rs b/crates/api-core/src/api.rs index a8acb40ca8..329f49c0c7 100644 --- a/crates/api-core/src/api.rs +++ b/crates/api-core/src/api.rs @@ -1180,6 +1180,13 @@ impl Forge for Api { crate::handlers::machine::update_machine_metadata(self, request).await } + async fn update_machine_bmc_vendor_override( + &self, + request: Request, + ) -> std::result::Result, Status> { + crate::handlers::machine::update_machine_bmc_vendor_override(self, request).await + } + async fn update_rack_metadata( &self, request: Request, diff --git a/crates/api-core/src/auth/internal_rbac_rules.rs b/crates/api-core/src/auth/internal_rbac_rules.rs index dcf4974919..285136021b 100644 --- a/crates/api-core/src/auth/internal_rbac_rules.rs +++ b/crates/api-core/src/auth/internal_rbac_rules.rs @@ -637,6 +637,7 @@ impl InternalRBACRules { x.perm("DeleteBmcUser", vec![ForgeAdminCLI]); x.perm("SetBmcRootPassword", vec![ForgeAdminCLI]); x.perm("ProbeBmcVendor", vec![ForgeAdminCLI]); + x.perm("UpdateMachineBmcVendorOverride", vec![ForgeAdminCLI]); x.perm("SetFirmwareUpdateTimeWindow", vec![ForgeAdminCLI, Flow]); x.perm("ListHostFirmware", vec![ForgeAdminCLI, Flow]); x.perm("EnableInfiniteBoot", vec![ForgeAdminCLI]); diff --git a/crates/api-core/src/handlers/instance.rs b/crates/api-core/src/handlers/instance.rs index ee0a7a01c6..a02c564682 100644 --- a/crates/api-core/src/handlers/instance.rs +++ b/crates/api-core/src/handlers/instance.rs @@ -1084,6 +1084,10 @@ pub(crate) async fn invoke_power( // but instead queue it for the state handler. That will avoid racing // with other internal reboot requests from the state handler. let bmc_ip = bmc_ip.to_string(); + let vendor_override = carbide_redfish::libredfish::conv::redfish_vendor_override( + &bmc_ip, + snapshot.host_snapshot.bmc_vendor_override.as_deref(), + ); let client = api .redfish_pool .create_client( @@ -1092,7 +1096,7 @@ pub(crate) async fn invoke_power( RedfishAuth::Key(CredentialKey::BmcCredentials { credential_type: BmcCredentialType::BmcRoot { bmc_mac_address }, }), - None, + vendor_override, ) .await .map_err(|e| CarbideError::internal(e.to_string()))?; diff --git a/crates/api-core/src/handlers/machine.rs b/crates/api-core/src/handlers/machine.rs index 7da5fdaad5..7c935d6205 100644 --- a/crates/api-core/src/handlers/machine.rs +++ b/crates/api-core/src/handlers/machine.rs @@ -302,6 +302,40 @@ pub(crate) async fn update_machine_metadata( Ok(tonic::Response::new(())) } +pub(crate) async fn update_machine_bmc_vendor_override( + api: &Api, + request: Request, +) -> std::result::Result, tonic::Status> { + log_request_data(&request); + let request = request.into_inner(); + let machine_id = convert_and_log_machine_id(request.machine_id.as_ref())?; + + let mut txn = api.txn_begin().await?; + if db::machine::find_one(&mut txn, &machine_id, MachineSearchConfig::default()) + .await? + .is_none() + { + return Err(CarbideError::NotFoundError { + kind: "machine", + id: machine_id.to_string(), + } + .into()); + } + + // Store the override as a plain string, empty or absent clears it. libredfish + // matches the vendor when the client is built, so the API keeps no vendor list. + let bmc_vendor_override = match request.bmc_vendor_override { + Some(name) if !name.is_empty() => Some(name), + _ => None, + }; + + db::machine::update_bmc_vendor_override(&mut txn, &machine_id, bmc_vendor_override).await?; + + txn.commit().await?; + + Ok(tonic::Response::new(())) +} + pub(crate) async fn admin_force_delete_machine( api: &Api, request: Request, @@ -472,6 +506,11 @@ pub(crate) async fn admin_force_delete_machine( "BMC IP and MAC address for machine was found. Trying to perform Bios unlock", ); + let vendor_override = carbide_redfish::libredfish::conv::redfish_vendor_override( + &ip_address, + machine.bmc_vendor_override.as_deref(), + ); + match api .redfish_pool .create_client( @@ -480,7 +519,7 @@ pub(crate) async fn admin_force_delete_machine( RedfishAuth::Key(CredentialKey::BmcCredentials { credential_type: BmcCredentialType::BmcRoot { bmc_mac_address }, }), - None, + vendor_override, ) .await { diff --git a/crates/api-db/migrations/20260625120000_machine_bmc_vendor_override.sql b/crates/api-db/migrations/20260625120000_machine_bmc_vendor_override.sql new file mode 100644 index 0000000000..06a0c02156 --- /dev/null +++ b/crates/api-db/migrations/20260625120000_machine_bmc_vendor_override.sql @@ -0,0 +1,4 @@ +-- Add bmc_vendor_override to machines so an operator can pin the Redfish BMC +-- vendor for a machine. NULL means automatic detection. The value is a +-- RedfishVendor variant name passed down into libredfish as the forced vendor. +ALTER TABLE machines ADD COLUMN bmc_vendor_override text; diff --git a/crates/api-db/src/machine.rs b/crates/api-db/src/machine.rs index 2dcd277cfe..95d777c0ee 100644 --- a/crates/api-db/src/machine.rs +++ b/crates/api-db/src/machine.rs @@ -926,6 +926,23 @@ pub async fn update_metadata( } } +/// Set or clear the operator pinned Redfish BMC vendor override for a machine. +/// Passing None clears it. +pub async fn update_bmc_vendor_override( + txn: &mut PgConnection, + machine_id: &MachineId, + bmc_vendor_override: Option, +) -> Result<(), DatabaseError> { + let query = "UPDATE machines SET bmc_vendor_override = $1 WHERE id = $2"; + sqlx::query(query) + .bind(bmc_vendor_override) + .bind(machine_id) + .execute(txn) + .await + .map_err(|e| DatabaseError::query(query, e))?; + Ok(()) +} + /// Only does the update if the passed observation is newer than any existing one pub async fn update_network_status_observation( txn: &mut PgConnection, diff --git a/crates/api-db/src/machine_interface.rs b/crates/api-db/src/machine_interface.rs index 09e1ad1e53..be884c16e5 100644 --- a/crates/api-db/src/machine_interface.rs +++ b/crates/api-db/src/machine_interface.rs @@ -434,17 +434,28 @@ pub async fn lookup_bmc_access_info( ip: IpAddr, port: Option, ) -> DatabaseResult { - let mac_address = find_by_ip(db, ip) - .await? - .ok_or_else(|| DatabaseError::NotFoundError { - kind: "Machine Interface", - id: ip.to_string(), - })? - .mac_address; + // Resolve the BMC interface MAC and the owning machine's vendor override in + // one query so every client_by_info caller can act on the override. + let query = r"SELECT mi.mac_address, m.bmc_vendor_override + FROM machine_interface_addresses mia + INNER JOIN machine_interfaces mi ON mi.id = mia.interface_id + LEFT JOIN machines m ON m.id = mi.machine_id + WHERE mia.address = $1::inet + LIMIT 1"; + let row: Option<(MacAddress, Option)> = sqlx::query_as(query) + .bind(ip) + .fetch_optional(db) + .await + .map_err(|e| DatabaseError::query(query, e))?; + let (mac_address, bmc_vendor_override) = row.ok_or_else(|| DatabaseError::NotFoundError { + kind: "Machine Interface", + id: ip.to_string(), + })?; Ok(BmcAccessInfo { host: ip.to_string(), port, mac_address, + bmc_vendor_override, }) } diff --git a/crates/api-model/src/machine/json.rs b/crates/api-model/src/machine/json.rs index 56bf193210..561f515911 100644 --- a/crates/api-model/src/machine/json.rs +++ b/crates/api-model/src/machine/json.rs @@ -91,6 +91,8 @@ pub struct MachineSnapshotPgJson { pub interfaces: Vec, pub topology: Vec, pub bmc_info: BmcInfo, + #[serde(default)] + pub bmc_vendor_override: Option, pub labels: HashMap, pub name: String, pub description: String, @@ -181,6 +183,7 @@ impl TryFrom for Machine { interfaces: value.interfaces, hardware_info, bmc_info: value.bmc_info, + bmc_vendor_override: value.bmc_vendor_override, last_reboot_time: value.last_reboot_time, last_cleanup_time: value.last_cleanup_time, last_discovery_time: value.last_discovery_time, diff --git a/crates/api-model/src/machine/mod.rs b/crates/api-model/src/machine/mod.rs index ff5eedd051..d1426bdf1f 100644 --- a/crates/api-model/src/machine/mod.rs +++ b/crates/api-model/src/machine/mod.rs @@ -781,6 +781,10 @@ pub struct Machine { /// The BMC info for this machine pub bmc_info: BmcInfo, + /// Operator pinned Redfish vendor for this machine, a RedfishVendor variant name. + /// None means automatic detection. + pub bmc_vendor_override: Option, + /// Last time when machine came up. pub last_reboot_time: Option>, diff --git a/crates/redfish/src/libredfish/conv.rs b/crates/redfish/src/libredfish/conv.rs index 54a7a69657..66cbc577b4 100644 --- a/crates/redfish/src/libredfish/conv.rs +++ b/crates/redfish/src/libredfish/conv.rs @@ -168,6 +168,34 @@ pub fn bmc_vendor(r: libredfish::model::service_root::RedfishVendor) -> BMCVendo } } +/// Parse a vendor name into libredfish's RedfishVendor via its own Deserialize +/// so NICo keeps no vendor list. Returns None when the name matches no variant. +pub fn redfish_vendor_from_str( + name: &str, +) -> Option { + use serde::Deserialize; + let de = serde::de::value::StrDeserializer::::new(name); + libredfish::model::service_root::RedfishVendor::deserialize(de).ok() +} + +/// Resolve a stored override string into a forced RedfishVendor. None or empty +/// means no override, and an unknown name warns (host labels the log) and returns None. +pub fn redfish_vendor_override( + host: &str, + raw: Option<&str>, +) -> Option { + let name = raw.filter(|s| !s.is_empty())?; + let vendor = redfish_vendor_from_str(name); + if vendor.is_none() { + tracing::warn!( + bmc = %host, + bmc_vendor_override = %name, + "bmc_vendor_override matches no known Redfish vendor, using automatic detection" + ); + } + vendor +} + impl IntoModel for libredfish::model::component_integrity::CaCertificate { fn into_model(self) -> CaCertificate { CaCertificate { @@ -193,3 +221,37 @@ impl IntoModel for libredfish::model::component_integrity::Evidence { } } } + +#[cfg(test)] +mod vendor_override_tests { + use libredfish::model::service_root::RedfishVendor; + + use super::{redfish_vendor_from_str, redfish_vendor_override}; + + #[test] + fn parses_known_variant_names() { + assert_eq!(redfish_vendor_from_str("Dell"), Some(RedfishVendor::Dell)); + assert_eq!( + redfish_vendor_from_str("NvidiaDpu"), + Some(RedfishVendor::NvidiaDpu) + ); + } + + #[test] + fn rejects_unknown_or_miscased_names() { + assert_eq!(redfish_vendor_from_str("dell"), None); + assert_eq!(redfish_vendor_from_str("NotARealVendor"), None); + assert_eq!(redfish_vendor_from_str(""), None); + } + + #[test] + fn override_helper_handles_empty_and_unmatched() { + assert_eq!(redfish_vendor_override("bmc", None), None); + assert_eq!(redfish_vendor_override("bmc", Some("")), None); + assert_eq!( + redfish_vendor_override("bmc", Some("Dell")), + Some(RedfishVendor::Dell) + ); + assert_eq!(redfish_vendor_override("bmc", Some("bogus")), None); + } +} diff --git a/crates/redfish/src/libredfish/mod.rs b/crates/redfish/src/libredfish/mod.rs index 04e9af856b..1b77cf00b7 100644 --- a/crates/redfish/src/libredfish/mod.rs +++ b/crates/redfish/src/libredfish/mod.rs @@ -97,11 +97,13 @@ pub trait RedfishClientPool: Send + Sync + 'static { &self, access: &BmcAccessInfo, ) -> Result, RedfishClientCreationError> { + let vendor = + conv::redfish_vendor_override(&access.host, access.bmc_vendor_override.as_deref()); self.create_client( &access.host, access.port, RedfishAuth::for_bmc_mac(access.mac_address), - None, + vendor, ) .await } diff --git a/crates/rpc/proto/forge.proto b/crates/rpc/proto/forge.proto index 4babc944b1..ac652bc670 100644 --- a/crates/rpc/proto/forge.proto +++ b/crates/rpc/proto/forge.proto @@ -342,6 +342,9 @@ service Forge { // Update the Metadata of a Machine rpc UpdateMachineMetadata(MachineMetadataUpdateRequest) returns (google.protobuf.Empty); + // Pin or clear the Redfish BMC vendor override of a Machine + rpc UpdateMachineBmcVendorOverride(MachineBmcVendorOverrideUpdateRequest) returns (google.protobuf.Empty); + // Update the Metadata of a Rack rpc UpdateRackMetadata(RackMetadataUpdateRequest) returns (google.protobuf.Empty); @@ -3735,6 +3738,11 @@ message Machine { optional string last_scout_observed_version = 48; optional DpfMachineState dpf = 49; + + // Operator pinned Redfish BMC vendor for this machine. When set, it is passed + // to libredfish as the forced vendor instead of detection from the service + // root. Empty means automatic detection. Holds a RedfishVendor variant name. + optional string bmc_vendor_override = 50; } message DpfMachineState { @@ -3777,6 +3785,15 @@ message MachineMetadataUpdateRequest { Metadata metadata = 3; } +// Pins or clears the Redfish BMC vendor override stored on a Machine +message MachineBmcVendorOverrideUpdateRequest { + // The ID of the Machine for which the override will apply + common.MachineId machine_id = 1; + + // RedfishVendor variant name to force. Empty or unset clears the override. + optional string bmc_vendor_override = 2; +} + message RackMetadataUpdateRequest { // The ID of the Rack for which the Metadata update will apply common.RackId rack_id = 1; diff --git a/crates/rpc/src/model/machine/mod.rs b/crates/rpc/src/model/machine/mod.rs index de57e1975b..60c8be2875 100644 --- a/crates/rpc/src/model/machine/mod.rs +++ b/crates/rpc/src/model/machine/mod.rs @@ -355,6 +355,7 @@ impl From for rpc::forge::Machine { tray_index: machine.tray_index, }), last_scout_observed_version: machine.last_scout_observed_version, + bmc_vendor_override: machine.bmc_vendor_override, dpf, } } diff --git a/crates/utils/src/redfish.rs b/crates/utils/src/redfish.rs index 589a9a239f..a32c06203b 100644 --- a/crates/utils/src/redfish.rs +++ b/crates/utils/src/redfish.rs @@ -25,4 +25,7 @@ pub struct BmcAccessInfo { pub host: String, pub port: Option, pub mac_address: MacAddress, + /// Operator pinned Redfish vendor for this BMC, a RedfishVendor variant + /// name. None means automatic detection. + pub bmc_vendor_override: Option, } diff --git a/docs/manuals/nico-admin-cli/commands/machine/machine-vendor-override-clear.md b/docs/manuals/nico-admin-cli/commands/machine/machine-vendor-override-clear.md new file mode 100644 index 0000000000..28e10cce13 --- /dev/null +++ b/docs/manuals/nico-admin-cli/commands/machine/machine-vendor-override-clear.md @@ -0,0 +1,52 @@ +# `nico-admin-cli machine vendor-override clear` + +_[Hardware commands](../../hardware.md) › [machine](./machine.md) › [vendor-override](./machine-vendor-override.md) › **clear**_ + +## NAME + +nico-admin-cli-machine-vendor-override-clear - Clear the Redfish BMC +vendor override for a machine + +## SYNOPSIS + +**nico-admin-cli machine vendor-override clear** \[**--extended**\] +\[**--sort-by**\] \[**-h**\|**--help**\] \<*MACHINE*\> + +## DESCRIPTION + +Clear the Redfish BMC vendor override for a machine + +## OPTIONS + +**--extended** +Extended result output. + +This used by measured boot, where basic output contains just what you +probably care about, and "extended" output also dumps out all the +internal UUIDs that are used to associate instances. + +**--sort-by** *\* \[default: primary-id\] +Sort output by specified field\ + +\ +*Possible values:* + +- primary-id: Sort by the primary id + +- state: Sort by state + +**-h**, **--help** +Print help (see a summary with -h) + +\<*MACHINE*\> +The machine whose BMC vendor override should be cleared + +## Examples + +```sh +nico-admin-cli machine vendor-override clear 12345678-1234-5678-90ab-cdef01234567 +``` + +--- + +**See also:** [Hardware commands](../../hardware.md) · [CLI reference index](../../README.md) diff --git a/docs/manuals/nico-admin-cli/commands/machine/machine-vendor-override-set.md b/docs/manuals/nico-admin-cli/commands/machine/machine-vendor-override-set.md new file mode 100644 index 0000000000..6aea159b81 --- /dev/null +++ b/docs/manuals/nico-admin-cli/commands/machine/machine-vendor-override-set.md @@ -0,0 +1,56 @@ +# `nico-admin-cli machine vendor-override set` + +_[Hardware commands](../../hardware.md) › [machine](./machine.md) › [vendor-override](./machine-vendor-override.md) › **set**_ + +## NAME + +nico-admin-cli-machine-vendor-override-set - Pin the Redfish BMC vendor +for a machine + +## SYNOPSIS + +**nico-admin-cli machine vendor-override set** \<**--vendor**\> +\[**--extended**\] \[**--sort-by**\] \[**-h**\|**--help**\] +\<*MACHINE*\> + +## DESCRIPTION + +Pin the Redfish BMC vendor for a machine + +## OPTIONS + +**--vendor** *\* +RedfishVendor to force (e.g. Dell, Supermicro, NvidiaDpu, Hpe, Lenovo) + +**--extended** +Extended result output. + +This used by measured boot, where basic output contains just what you +probably care about, and "extended" output also dumps out all the +internal UUIDs that are used to associate instances. + +**--sort-by** *\* \[default: primary-id\] +Sort output by specified field\ + +\ +*Possible values:* + +- primary-id: Sort by the primary id + +- state: Sort by state + +**-h**, **--help** +Print help (see a summary with -h) + +\<*MACHINE*\> +The machine whose BMC vendor should be pinned + +## Examples + +```sh +nico-admin-cli machine vendor-override set 12345678-1234-5678-90ab-cdef01234567 --vendor Dell +``` + +--- + +**See also:** [Hardware commands](../../hardware.md) · [CLI reference index](../../README.md) diff --git a/docs/manuals/nico-admin-cli/commands/machine/machine-vendor-override-show.md b/docs/manuals/nico-admin-cli/commands/machine/machine-vendor-override-show.md new file mode 100644 index 0000000000..38071e4a71 --- /dev/null +++ b/docs/manuals/nico-admin-cli/commands/machine/machine-vendor-override-show.md @@ -0,0 +1,52 @@ +# `nico-admin-cli machine vendor-override show` + +_[Hardware commands](../../hardware.md) › [machine](./machine.md) › [vendor-override](./machine-vendor-override.md) › **show**_ + +## NAME + +nico-admin-cli-machine-vendor-override-show - Show the Redfish BMC +vendor override for a machine + +## SYNOPSIS + +**nico-admin-cli machine vendor-override show** \[**--extended**\] +\[**--sort-by**\] \[**-h**\|**--help**\] \<*MACHINE*\> + +## DESCRIPTION + +Show the Redfish BMC vendor override for a machine + +## OPTIONS + +**--extended** +Extended result output. + +This used by measured boot, where basic output contains just what you +probably care about, and "extended" output also dumps out all the +internal UUIDs that are used to associate instances. + +**--sort-by** *\* \[default: primary-id\] +Sort output by specified field\ + +\ +*Possible values:* + +- primary-id: Sort by the primary id + +- state: Sort by state + +**-h**, **--help** +Print help (see a summary with -h) + +\<*MACHINE*\> +The machine whose BMC vendor override should be shown + +## Examples + +```sh +nico-admin-cli machine vendor-override show 12345678-1234-5678-90ab-cdef01234567 +``` + +--- + +**See also:** [Hardware commands](../../hardware.md) · [CLI reference index](../../README.md) diff --git a/docs/manuals/nico-admin-cli/commands/machine/machine-vendor-override.md b/docs/manuals/nico-admin-cli/commands/machine/machine-vendor-override.md new file mode 100644 index 0000000000..6cefb0aff8 --- /dev/null +++ b/docs/manuals/nico-admin-cli/commands/machine/machine-vendor-override.md @@ -0,0 +1,51 @@ +# `nico-admin-cli machine vendor-override` + +_[Hardware commands](../../hardware.md) › [machine](./machine.md) › **vendor-override**_ + +## NAME + +nico-admin-cli-machine-vendor-override - Pin or clear the Redfish BMC +vendor override for a machine + +## SYNOPSIS + +**nico-admin-cli machine vendor-override** \[**--extended**\] +\[**--sort-by**\] \[**-h**\|**--help**\] \<*subcommands*\> + +## DESCRIPTION + +Pin or clear the Redfish BMC vendor override for a machine + +## OPTIONS + +**--extended** +Extended result output. + +This used by measured boot, where basic output contains just what you +probably care about, and "extended" output also dumps out all the +internal UUIDs that are used to associate instances. + +**--sort-by** *\* \[default: primary-id\] +Sort output by specified field\ + +\ +*Possible values:* + +- primary-id: Sort by the primary id + +- state: Sort by state + +**-h**, **--help** +Print help (see a summary with -h) + +## Subcommands + +| Subcommand | Description | +|---|---| +| [`set`](./machine-vendor-override-set.md) | Pin the Redfish BMC vendor for a machine | +| [`clear`](./machine-vendor-override-clear.md) | Clear the Redfish BMC vendor override for a machine | +| [`show`](./machine-vendor-override-show.md) | Show the Redfish BMC vendor override for a machine | + +--- + +**See also:** [Hardware commands](../../hardware.md) · [CLI reference index](../../README.md) diff --git a/docs/manuals/nico-admin-cli/commands/machine/machine.md b/docs/manuals/nico-admin-cli/commands/machine/machine.md index 909fadb898..0dd6a7e4d6 100644 --- a/docs/manuals/nico-admin-cli/commands/machine/machine.md +++ b/docs/manuals/nico-admin-cli/commands/machine/machine.md @@ -51,6 +51,7 @@ Print help (see a summary with -h) | [`hardware-info`](./machine-hardware-info.md) | Update/show machine hardware info | | [`positions`](./machine-positions.md) | Show physical location info for machines in rack-based systems | | [`nvlink-info`](./machine-nvlink-info.md) | Update/show NVLink info for an MNNVL machine | +| [`vendor-override`](./machine-vendor-override.md) | Pin or clear the Redfish BMC vendor override for a machine | --- 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 f8b35dedad..3199787489 100644 --- a/rest-api/proto/core/gen/v1/nico_nico.pb.go +++ b/rest-api/proto/core/gen/v1/nico_nico.pb.go @@ -4509,7 +4509,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{332, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{333, 0} } // Legacy action enum. New clients will use `action` oneof below. @@ -4580,7 +4580,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{335, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 0} } type MachineCleanupInfo_CleanupResult int32 @@ -4626,7 +4626,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{338, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{339, 0} } type DpuReprovisioningRequest_Mode int32 @@ -4675,7 +4675,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{418, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{419, 0} } type HostReprovisioningRequest_Mode int32 @@ -4721,7 +4721,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{421, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{422, 0} } type MachineSetAutoUpdateRequest_SetAutoupdateAction int32 @@ -4770,7 +4770,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{482, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{483, 0} } type MachineValidationOnDemandRequest_Action int32 @@ -4816,7 +4816,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{491, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{492, 0} } type AdminPowerControlRequest_SystemPowerControl int32 @@ -4880,7 +4880,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{501, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{502, 0} } type GetRedfishJobStateResponse_RedfishJobState int32 @@ -4935,7 +4935,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{504, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{505, 0} } // Indicates the lifecycle state of a resource that is controlled by a state controller @@ -20961,8 +20961,12 @@ type Machine struct { // Build version of nico-scout last observed during machine discovery registration. LastScoutObservedVersion *string `protobuf:"bytes,48,opt,name=last_scout_observed_version,json=lastScoutObservedVersion,proto3,oneof" json:"last_scout_observed_version,omitempty"` Dpf *DpfMachineState `protobuf:"bytes,49,opt,name=dpf,proto3,oneof" json:"dpf,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + // Operator pinned Redfish BMC vendor for this machine. When set, it is passed + // to libredfish as the forced vendor instead of detection from the service + // root. Empty means automatic detection. Holds a RedfishVendor variant name. + BmcVendorOverride *string `protobuf:"bytes,50,opt,name=bmc_vendor_override,json=bmcVendorOverride,proto3,oneof" json:"bmc_vendor_override,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } func (x *Machine) Reset() { @@ -21289,6 +21293,13 @@ func (x *Machine) GetDpf() *DpfMachineState { return nil } +func (x *Machine) GetBmcVendorOverride() string { + if x != nil && x.BmcVendorOverride != nil { + return *x.BmcVendorOverride + } + return "" +} + type DpfMachineState struct { state protoimpl.MessageState `protogen:"open.v1"` Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"` @@ -21465,6 +21476,61 @@ func (x *MachineMetadataUpdateRequest) GetMetadata() *Metadata { return nil } +// Pins or clears the Redfish BMC vendor override stored on a Machine +type MachineBmcVendorOverrideUpdateRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // The ID of the Machine for which the override will apply + MachineId *MachineId `protobuf:"bytes,1,opt,name=machine_id,json=machineId,proto3" json:"machine_id,omitempty"` + // RedfishVendor variant name to force. Empty or unset clears the override. + BmcVendorOverride *string `protobuf:"bytes,2,opt,name=bmc_vendor_override,json=bmcVendorOverride,proto3,oneof" json:"bmc_vendor_override,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *MachineBmcVendorOverrideUpdateRequest) Reset() { + *x = MachineBmcVendorOverrideUpdateRequest{} + mi := &file_nico_nico_proto_msgTypes[249] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *MachineBmcVendorOverrideUpdateRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*MachineBmcVendorOverrideUpdateRequest) ProtoMessage() {} + +func (x *MachineBmcVendorOverrideUpdateRequest) ProtoReflect() protoreflect.Message { + mi := &file_nico_nico_proto_msgTypes[249] + 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 MachineBmcVendorOverrideUpdateRequest.ProtoReflect.Descriptor instead. +func (*MachineBmcVendorOverrideUpdateRequest) Descriptor() ([]byte, []int) { + return file_nico_nico_proto_rawDescGZIP(), []int{249} +} + +func (x *MachineBmcVendorOverrideUpdateRequest) GetMachineId() *MachineId { + if x != nil { + return x.MachineId + } + return nil +} + +func (x *MachineBmcVendorOverrideUpdateRequest) GetBmcVendorOverride() string { + if x != nil && x.BmcVendorOverride != nil { + return *x.BmcVendorOverride + } + return "" +} + type RackMetadataUpdateRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // The ID of the Rack for which the Metadata update will apply @@ -21482,7 +21548,7 @@ type RackMetadataUpdateRequest struct { func (x *RackMetadataUpdateRequest) Reset() { *x = RackMetadataUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[249] + mi := &file_nico_nico_proto_msgTypes[250] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21494,7 +21560,7 @@ func (x *RackMetadataUpdateRequest) String() string { func (*RackMetadataUpdateRequest) ProtoMessage() {} func (x *RackMetadataUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[249] + mi := &file_nico_nico_proto_msgTypes[250] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21507,7 +21573,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{249} + return file_nico_nico_proto_rawDescGZIP(), []int{250} } func (x *RackMetadataUpdateRequest) GetRackId() *RackId { @@ -21548,7 +21614,7 @@ type SwitchMetadataUpdateRequest struct { func (x *SwitchMetadataUpdateRequest) Reset() { *x = SwitchMetadataUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[250] + mi := &file_nico_nico_proto_msgTypes[251] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21560,7 +21626,7 @@ func (x *SwitchMetadataUpdateRequest) String() string { func (*SwitchMetadataUpdateRequest) ProtoMessage() {} func (x *SwitchMetadataUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[250] + mi := &file_nico_nico_proto_msgTypes[251] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21573,7 +21639,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{250} + return file_nico_nico_proto_rawDescGZIP(), []int{251} } func (x *SwitchMetadataUpdateRequest) GetSwitchId() *SwitchId { @@ -21614,7 +21680,7 @@ type PowerShelfMetadataUpdateRequest struct { func (x *PowerShelfMetadataUpdateRequest) Reset() { *x = PowerShelfMetadataUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[251] + mi := &file_nico_nico_proto_msgTypes[252] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21626,7 +21692,7 @@ func (x *PowerShelfMetadataUpdateRequest) String() string { func (*PowerShelfMetadataUpdateRequest) ProtoMessage() {} func (x *PowerShelfMetadataUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[251] + mi := &file_nico_nico_proto_msgTypes[252] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21639,7 +21705,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{251} + return file_nico_nico_proto_rawDescGZIP(), []int{252} } func (x *PowerShelfMetadataUpdateRequest) GetPowerShelfId() *PowerShelfId { @@ -21673,7 +21739,7 @@ type DpuAgentInventoryReport struct { func (x *DpuAgentInventoryReport) Reset() { *x = DpuAgentInventoryReport{} - mi := &file_nico_nico_proto_msgTypes[252] + mi := &file_nico_nico_proto_msgTypes[253] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21685,7 +21751,7 @@ func (x *DpuAgentInventoryReport) String() string { func (*DpuAgentInventoryReport) ProtoMessage() {} func (x *DpuAgentInventoryReport) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[252] + mi := &file_nico_nico_proto_msgTypes[253] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21698,7 +21764,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{252} + return file_nico_nico_proto_rawDescGZIP(), []int{253} } func (x *DpuAgentInventoryReport) GetMachineId() *MachineId { @@ -21725,7 +21791,7 @@ type MachineComponentInventory struct { func (x *MachineComponentInventory) Reset() { *x = MachineComponentInventory{} - mi := &file_nico_nico_proto_msgTypes[253] + mi := &file_nico_nico_proto_msgTypes[254] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21737,7 +21803,7 @@ func (x *MachineComponentInventory) String() string { func (*MachineComponentInventory) ProtoMessage() {} func (x *MachineComponentInventory) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[253] + mi := &file_nico_nico_proto_msgTypes[254] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21750,7 +21816,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{253} + return file_nico_nico_proto_rawDescGZIP(), []int{254} } func (x *MachineComponentInventory) GetComponents() []*MachineInventorySoftwareComponent { @@ -21771,7 +21837,7 @@ type MachineInventorySoftwareComponent struct { func (x *MachineInventorySoftwareComponent) Reset() { *x = MachineInventorySoftwareComponent{} - mi := &file_nico_nico_proto_msgTypes[254] + mi := &file_nico_nico_proto_msgTypes[255] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21783,7 +21849,7 @@ func (x *MachineInventorySoftwareComponent) String() string { func (*MachineInventorySoftwareComponent) ProtoMessage() {} func (x *MachineInventorySoftwareComponent) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[254] + mi := &file_nico_nico_proto_msgTypes[255] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21796,7 +21862,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{254} + return file_nico_nico_proto_rawDescGZIP(), []int{255} } func (x *MachineInventorySoftwareComponent) GetName() string { @@ -21831,7 +21897,7 @@ type HealthSourceOrigin struct { func (x *HealthSourceOrigin) Reset() { *x = HealthSourceOrigin{} - mi := &file_nico_nico_proto_msgTypes[255] + mi := &file_nico_nico_proto_msgTypes[256] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21843,7 +21909,7 @@ func (x *HealthSourceOrigin) String() string { func (*HealthSourceOrigin) ProtoMessage() {} func (x *HealthSourceOrigin) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[255] + mi := &file_nico_nico_proto_msgTypes[256] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21856,7 +21922,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{255} + return file_nico_nico_proto_rawDescGZIP(), []int{256} } func (x *HealthSourceOrigin) GetMode() HealthReportApplyMode { @@ -21888,7 +21954,7 @@ type ControllerStateReason struct { func (x *ControllerStateReason) Reset() { *x = ControllerStateReason{} - mi := &file_nico_nico_proto_msgTypes[256] + mi := &file_nico_nico_proto_msgTypes[257] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21900,7 +21966,7 @@ func (x *ControllerStateReason) String() string { func (*ControllerStateReason) ProtoMessage() {} func (x *ControllerStateReason) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[256] + mi := &file_nico_nico_proto_msgTypes[257] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21913,7 +21979,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{256} + return file_nico_nico_proto_rawDescGZIP(), []int{257} } func (x *ControllerStateReason) GetOutcome() ControllerStateOutcome { @@ -21948,7 +22014,7 @@ type ControllerStateSourceReference struct { func (x *ControllerStateSourceReference) Reset() { *x = ControllerStateSourceReference{} - mi := &file_nico_nico_proto_msgTypes[257] + mi := &file_nico_nico_proto_msgTypes[258] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21960,7 +22026,7 @@ func (x *ControllerStateSourceReference) String() string { func (*ControllerStateSourceReference) ProtoMessage() {} func (x *ControllerStateSourceReference) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[257] + mi := &file_nico_nico_proto_msgTypes[258] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21973,7 +22039,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{257} + return file_nico_nico_proto_rawDescGZIP(), []int{258} } func (x *ControllerStateSourceReference) GetFile() string { @@ -22007,7 +22073,7 @@ type StateSla struct { func (x *StateSla) Reset() { *x = StateSla{} - mi := &file_nico_nico_proto_msgTypes[258] + mi := &file_nico_nico_proto_msgTypes[259] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22019,7 +22085,7 @@ func (x *StateSla) String() string { func (*StateSla) ProtoMessage() {} func (x *StateSla) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[258] + mi := &file_nico_nico_proto_msgTypes[259] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22032,7 +22098,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{258} + return file_nico_nico_proto_rawDescGZIP(), []int{259} } func (x *StateSla) GetSla() *durationpb.Duration { @@ -22062,7 +22128,7 @@ type InstanceTenantStatus struct { func (x *InstanceTenantStatus) Reset() { *x = InstanceTenantStatus{} - mi := &file_nico_nico_proto_msgTypes[259] + mi := &file_nico_nico_proto_msgTypes[260] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22074,7 +22140,7 @@ func (x *InstanceTenantStatus) String() string { func (*InstanceTenantStatus) ProtoMessage() {} func (x *InstanceTenantStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[259] + mi := &file_nico_nico_proto_msgTypes[260] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22087,7 +22153,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{259} + return file_nico_nico_proto_rawDescGZIP(), []int{260} } func (x *InstanceTenantStatus) GetState() TenantState { @@ -22118,7 +22184,7 @@ type MachineEvent struct { func (x *MachineEvent) Reset() { *x = MachineEvent{} - mi := &file_nico_nico_proto_msgTypes[260] + mi := &file_nico_nico_proto_msgTypes[261] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22130,7 +22196,7 @@ func (x *MachineEvent) String() string { func (*MachineEvent) ProtoMessage() {} func (x *MachineEvent) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[260] + mi := &file_nico_nico_proto_msgTypes[261] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22143,7 +22209,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{260} + return file_nico_nico_proto_rawDescGZIP(), []int{261} } func (x *MachineEvent) GetEvent() string { @@ -22193,7 +22259,7 @@ type MachineInterface struct { func (x *MachineInterface) Reset() { *x = MachineInterface{} - mi := &file_nico_nico_proto_msgTypes[261] + mi := &file_nico_nico_proto_msgTypes[262] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22205,7 +22271,7 @@ func (x *MachineInterface) String() string { func (*MachineInterface) ProtoMessage() {} func (x *MachineInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[261] + mi := &file_nico_nico_proto_msgTypes[262] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22218,7 +22284,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{261} + return file_nico_nico_proto_rawDescGZIP(), []int{262} } func (x *MachineInterface) GetId() *MachineInterfaceId { @@ -22354,7 +22420,7 @@ type InfinibandStatusObservation struct { func (x *InfinibandStatusObservation) Reset() { *x = InfinibandStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[262] + mi := &file_nico_nico_proto_msgTypes[263] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22366,7 +22432,7 @@ func (x *InfinibandStatusObservation) String() string { func (*InfinibandStatusObservation) ProtoMessage() {} func (x *InfinibandStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[262] + mi := &file_nico_nico_proto_msgTypes[263] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22379,7 +22445,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{262} + return file_nico_nico_proto_rawDescGZIP(), []int{263} } func (x *InfinibandStatusObservation) GetIbInterfaces() []*MachineIbInterface { @@ -22431,7 +22497,7 @@ type MachineIbInterface struct { func (x *MachineIbInterface) Reset() { *x = MachineIbInterface{} - mi := &file_nico_nico_proto_msgTypes[263] + mi := &file_nico_nico_proto_msgTypes[264] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22443,7 +22509,7 @@ func (x *MachineIbInterface) String() string { func (*MachineIbInterface) ProtoMessage() {} func (x *MachineIbInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[263] + mi := &file_nico_nico_proto_msgTypes[264] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22456,7 +22522,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{263} + return file_nico_nico_proto_rawDescGZIP(), []int{264} } func (x *MachineIbInterface) GetPfGuid() string { @@ -22535,7 +22601,7 @@ type DhcpDiscovery struct { func (x *DhcpDiscovery) Reset() { *x = DhcpDiscovery{} - mi := &file_nico_nico_proto_msgTypes[264] + mi := &file_nico_nico_proto_msgTypes[265] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22547,7 +22613,7 @@ func (x *DhcpDiscovery) String() string { func (*DhcpDiscovery) ProtoMessage() {} func (x *DhcpDiscovery) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[264] + mi := &file_nico_nico_proto_msgTypes[265] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22560,7 +22626,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{264} + return file_nico_nico_proto_rawDescGZIP(), []int{265} } func (x *DhcpDiscovery) GetMacAddress() string { @@ -22647,7 +22713,7 @@ type ExpireDhcpLeaseRequest struct { func (x *ExpireDhcpLeaseRequest) Reset() { *x = ExpireDhcpLeaseRequest{} - mi := &file_nico_nico_proto_msgTypes[265] + mi := &file_nico_nico_proto_msgTypes[266] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22659,7 +22725,7 @@ func (x *ExpireDhcpLeaseRequest) String() string { func (*ExpireDhcpLeaseRequest) ProtoMessage() {} func (x *ExpireDhcpLeaseRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[265] + mi := &file_nico_nico_proto_msgTypes[266] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22672,7 +22738,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{265} + return file_nico_nico_proto_rawDescGZIP(), []int{266} } func (x *ExpireDhcpLeaseRequest) GetIpAddress() string { @@ -22699,7 +22765,7 @@ type ExpireDhcpLeaseResponse struct { func (x *ExpireDhcpLeaseResponse) Reset() { *x = ExpireDhcpLeaseResponse{} - mi := &file_nico_nico_proto_msgTypes[266] + mi := &file_nico_nico_proto_msgTypes[267] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22711,7 +22777,7 @@ func (x *ExpireDhcpLeaseResponse) String() string { func (*ExpireDhcpLeaseResponse) ProtoMessage() {} func (x *ExpireDhcpLeaseResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[266] + mi := &file_nico_nico_proto_msgTypes[267] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22724,7 +22790,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{266} + return file_nico_nico_proto_rawDescGZIP(), []int{267} } func (x *ExpireDhcpLeaseResponse) GetIpAddress() string { @@ -22764,7 +22830,7 @@ type DhcpRecord struct { func (x *DhcpRecord) Reset() { *x = DhcpRecord{} - mi := &file_nico_nico_proto_msgTypes[267] + mi := &file_nico_nico_proto_msgTypes[268] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22776,7 +22842,7 @@ func (x *DhcpRecord) String() string { func (*DhcpRecord) ProtoMessage() {} func (x *DhcpRecord) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[267] + mi := &file_nico_nico_proto_msgTypes[268] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22789,7 +22855,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{267} + return file_nico_nico_proto_rawDescGZIP(), []int{268} } func (x *DhcpRecord) GetMachineId() *MachineId { @@ -22892,7 +22958,7 @@ type NetworkSegmentList struct { func (x *NetworkSegmentList) Reset() { *x = NetworkSegmentList{} - mi := &file_nico_nico_proto_msgTypes[268] + mi := &file_nico_nico_proto_msgTypes[269] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22904,7 +22970,7 @@ func (x *NetworkSegmentList) String() string { func (*NetworkSegmentList) ProtoMessage() {} func (x *NetworkSegmentList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[268] + mi := &file_nico_nico_proto_msgTypes[269] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22917,7 +22983,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{268} + return file_nico_nico_proto_rawDescGZIP(), []int{269} } func (x *NetworkSegmentList) GetNetworkSegments() []*NetworkSegment { @@ -22937,7 +23003,7 @@ type SSHKeyValidationRequest struct { func (x *SSHKeyValidationRequest) Reset() { *x = SSHKeyValidationRequest{} - mi := &file_nico_nico_proto_msgTypes[269] + mi := &file_nico_nico_proto_msgTypes[270] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22949,7 +23015,7 @@ func (x *SSHKeyValidationRequest) String() string { func (*SSHKeyValidationRequest) ProtoMessage() {} func (x *SSHKeyValidationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[269] + mi := &file_nico_nico_proto_msgTypes[270] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22962,7 +23028,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{269} + return file_nico_nico_proto_rawDescGZIP(), []int{270} } func (x *SSHKeyValidationRequest) GetUser() string { @@ -22989,7 +23055,7 @@ type SSHKeyValidationResponse struct { func (x *SSHKeyValidationResponse) Reset() { *x = SSHKeyValidationResponse{} - mi := &file_nico_nico_proto_msgTypes[270] + mi := &file_nico_nico_proto_msgTypes[271] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23001,7 +23067,7 @@ func (x *SSHKeyValidationResponse) String() string { func (*SSHKeyValidationResponse) ProtoMessage() {} func (x *SSHKeyValidationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[270] + mi := &file_nico_nico_proto_msgTypes[271] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23014,7 +23080,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{270} + return file_nico_nico_proto_rawDescGZIP(), []int{271} } func (x *SSHKeyValidationResponse) GetIsAuthenticated() bool { @@ -23040,7 +23106,7 @@ type GetBmcCredentialsRequest struct { func (x *GetBmcCredentialsRequest) Reset() { *x = GetBmcCredentialsRequest{} - mi := &file_nico_nico_proto_msgTypes[271] + mi := &file_nico_nico_proto_msgTypes[272] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23052,7 +23118,7 @@ func (x *GetBmcCredentialsRequest) String() string { func (*GetBmcCredentialsRequest) ProtoMessage() {} func (x *GetBmcCredentialsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[271] + mi := &file_nico_nico_proto_msgTypes[272] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23065,7 +23131,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{271} + return file_nico_nico_proto_rawDescGZIP(), []int{272} } func (x *GetBmcCredentialsRequest) GetMacAddr() string { @@ -23084,7 +23150,7 @@ type GetSwitchNvosCredentialsRequest struct { func (x *GetSwitchNvosCredentialsRequest) Reset() { *x = GetSwitchNvosCredentialsRequest{} - mi := &file_nico_nico_proto_msgTypes[272] + mi := &file_nico_nico_proto_msgTypes[273] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23096,7 +23162,7 @@ func (x *GetSwitchNvosCredentialsRequest) String() string { func (*GetSwitchNvosCredentialsRequest) ProtoMessage() {} func (x *GetSwitchNvosCredentialsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[272] + mi := &file_nico_nico_proto_msgTypes[273] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23109,7 +23175,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{272} + return file_nico_nico_proto_rawDescGZIP(), []int{273} } func (x *GetSwitchNvosCredentialsRequest) GetSwitchId() *SwitchId { @@ -23128,7 +23194,7 @@ type GetBmcCredentialsResponse struct { func (x *GetBmcCredentialsResponse) Reset() { *x = GetBmcCredentialsResponse{} - mi := &file_nico_nico_proto_msgTypes[273] + mi := &file_nico_nico_proto_msgTypes[274] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23140,7 +23206,7 @@ func (x *GetBmcCredentialsResponse) String() string { func (*GetBmcCredentialsResponse) ProtoMessage() {} func (x *GetBmcCredentialsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[273] + mi := &file_nico_nico_proto_msgTypes[274] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23153,7 +23219,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{273} + return file_nico_nico_proto_rawDescGZIP(), []int{274} } func (x *GetBmcCredentialsResponse) GetCredentials() *BmcCredentials { @@ -23176,7 +23242,7 @@ type BmcCredentials struct { func (x *BmcCredentials) Reset() { *x = BmcCredentials{} - mi := &file_nico_nico_proto_msgTypes[274] + mi := &file_nico_nico_proto_msgTypes[275] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23188,7 +23254,7 @@ func (x *BmcCredentials) String() string { func (*BmcCredentials) ProtoMessage() {} func (x *BmcCredentials) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[274] + mi := &file_nico_nico_proto_msgTypes[275] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23201,7 +23267,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{274} + return file_nico_nico_proto_rawDescGZIP(), []int{275} } func (x *BmcCredentials) GetType() isBmcCredentials_Type { @@ -23253,7 +23319,7 @@ type GetSiteExplorationRequest struct { func (x *GetSiteExplorationRequest) Reset() { *x = GetSiteExplorationRequest{} - mi := &file_nico_nico_proto_msgTypes[275] + mi := &file_nico_nico_proto_msgTypes[276] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23265,7 +23331,7 @@ func (x *GetSiteExplorationRequest) String() string { func (*GetSiteExplorationRequest) ProtoMessage() {} func (x *GetSiteExplorationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[275] + mi := &file_nico_nico_proto_msgTypes[276] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23278,7 +23344,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{275} + return file_nico_nico_proto_rawDescGZIP(), []int{276} } type ClearSiteExplorationErrorRequest struct { @@ -23291,7 +23357,7 @@ type ClearSiteExplorationErrorRequest struct { func (x *ClearSiteExplorationErrorRequest) Reset() { *x = ClearSiteExplorationErrorRequest{} - mi := &file_nico_nico_proto_msgTypes[276] + mi := &file_nico_nico_proto_msgTypes[277] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23303,7 +23369,7 @@ func (x *ClearSiteExplorationErrorRequest) String() string { func (*ClearSiteExplorationErrorRequest) ProtoMessage() {} func (x *ClearSiteExplorationErrorRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[276] + mi := &file_nico_nico_proto_msgTypes[277] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23316,7 +23382,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{276} + return file_nico_nico_proto_rawDescGZIP(), []int{277} } func (x *ClearSiteExplorationErrorRequest) GetIpAddress() string { @@ -23339,7 +23405,7 @@ type ReExploreEndpointRequest struct { func (x *ReExploreEndpointRequest) Reset() { *x = ReExploreEndpointRequest{} - mi := &file_nico_nico_proto_msgTypes[277] + mi := &file_nico_nico_proto_msgTypes[278] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23351,7 +23417,7 @@ func (x *ReExploreEndpointRequest) String() string { func (*ReExploreEndpointRequest) ProtoMessage() {} func (x *ReExploreEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[277] + mi := &file_nico_nico_proto_msgTypes[278] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23364,7 +23430,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{277} + return file_nico_nico_proto_rawDescGZIP(), []int{278} } func (x *ReExploreEndpointRequest) GetIpAddress() string { @@ -23391,7 +23457,7 @@ type RefreshEndpointReportRequest struct { func (x *RefreshEndpointReportRequest) Reset() { *x = RefreshEndpointReportRequest{} - mi := &file_nico_nico_proto_msgTypes[278] + mi := &file_nico_nico_proto_msgTypes[279] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23403,7 +23469,7 @@ func (x *RefreshEndpointReportRequest) String() string { func (*RefreshEndpointReportRequest) ProtoMessage() {} func (x *RefreshEndpointReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[278] + mi := &file_nico_nico_proto_msgTypes[279] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23416,7 +23482,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{278} + return file_nico_nico_proto_rawDescGZIP(), []int{279} } func (x *RefreshEndpointReportRequest) GetIpAddress() string { @@ -23436,7 +23502,7 @@ type DeleteExploredEndpointRequest struct { func (x *DeleteExploredEndpointRequest) Reset() { *x = DeleteExploredEndpointRequest{} - mi := &file_nico_nico_proto_msgTypes[279] + mi := &file_nico_nico_proto_msgTypes[280] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23448,7 +23514,7 @@ func (x *DeleteExploredEndpointRequest) String() string { func (*DeleteExploredEndpointRequest) ProtoMessage() {} func (x *DeleteExploredEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[279] + mi := &file_nico_nico_proto_msgTypes[280] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23461,7 +23527,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{279} + return file_nico_nico_proto_rawDescGZIP(), []int{280} } func (x *DeleteExploredEndpointRequest) GetIpAddress() string { @@ -23483,7 +23549,7 @@ type PauseExploredEndpointRemediationRequest struct { func (x *PauseExploredEndpointRemediationRequest) Reset() { *x = PauseExploredEndpointRemediationRequest{} - mi := &file_nico_nico_proto_msgTypes[280] + mi := &file_nico_nico_proto_msgTypes[281] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23495,7 +23561,7 @@ func (x *PauseExploredEndpointRemediationRequest) String() string { func (*PauseExploredEndpointRemediationRequest) ProtoMessage() {} func (x *PauseExploredEndpointRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[280] + mi := &file_nico_nico_proto_msgTypes[281] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23508,7 +23574,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{280} + return file_nico_nico_proto_rawDescGZIP(), []int{281} } func (x *PauseExploredEndpointRemediationRequest) GetIpAddress() string { @@ -23537,7 +23603,7 @@ type DeleteExploredEndpointResponse struct { func (x *DeleteExploredEndpointResponse) Reset() { *x = DeleteExploredEndpointResponse{} - mi := &file_nico_nico_proto_msgTypes[281] + mi := &file_nico_nico_proto_msgTypes[282] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23549,7 +23615,7 @@ func (x *DeleteExploredEndpointResponse) String() string { func (*DeleteExploredEndpointResponse) ProtoMessage() {} func (x *DeleteExploredEndpointResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[281] + mi := &file_nico_nico_proto_msgTypes[282] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23562,7 +23628,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{281} + return file_nico_nico_proto_rawDescGZIP(), []int{282} } func (x *DeleteExploredEndpointResponse) GetDeleted() bool { @@ -23591,7 +23657,7 @@ type BmcEndpointRequest struct { func (x *BmcEndpointRequest) Reset() { *x = BmcEndpointRequest{} - mi := &file_nico_nico_proto_msgTypes[282] + mi := &file_nico_nico_proto_msgTypes[283] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23603,7 +23669,7 @@ func (x *BmcEndpointRequest) String() string { func (*BmcEndpointRequest) ProtoMessage() {} func (x *BmcEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[282] + mi := &file_nico_nico_proto_msgTypes[283] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23616,7 +23682,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{282} + return file_nico_nico_proto_rawDescGZIP(), []int{283} } func (x *BmcEndpointRequest) GetIpAddress() string { @@ -23649,7 +23715,7 @@ type SshTimeoutConfig struct { func (x *SshTimeoutConfig) Reset() { *x = SshTimeoutConfig{} - mi := &file_nico_nico_proto_msgTypes[283] + mi := &file_nico_nico_proto_msgTypes[284] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23661,7 +23727,7 @@ func (x *SshTimeoutConfig) String() string { func (*SshTimeoutConfig) ProtoMessage() {} func (x *SshTimeoutConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[283] + mi := &file_nico_nico_proto_msgTypes[284] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23674,7 +23740,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{283} + return file_nico_nico_proto_rawDescGZIP(), []int{284} } func (x *SshTimeoutConfig) GetTcpConnectionTimeout() uint64 { @@ -23715,7 +23781,7 @@ type SshRequest struct { func (x *SshRequest) Reset() { *x = SshRequest{} - mi := &file_nico_nico_proto_msgTypes[284] + mi := &file_nico_nico_proto_msgTypes[285] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23727,7 +23793,7 @@ func (x *SshRequest) String() string { func (*SshRequest) ProtoMessage() {} func (x *SshRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[284] + mi := &file_nico_nico_proto_msgTypes[285] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23740,7 +23806,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{284} + return file_nico_nico_proto_rawDescGZIP(), []int{285} } func (x *SshRequest) GetEndpointRequest() *BmcEndpointRequest { @@ -23765,7 +23831,7 @@ type CopyBfbToDpuRshimRequest struct { func (x *CopyBfbToDpuRshimRequest) Reset() { *x = CopyBfbToDpuRshimRequest{} - mi := &file_nico_nico_proto_msgTypes[285] + mi := &file_nico_nico_proto_msgTypes[286] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23777,7 +23843,7 @@ func (x *CopyBfbToDpuRshimRequest) String() string { func (*CopyBfbToDpuRshimRequest) ProtoMessage() {} func (x *CopyBfbToDpuRshimRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[285] + mi := &file_nico_nico_proto_msgTypes[286] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23790,7 +23856,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{285} + return file_nico_nico_proto_rawDescGZIP(), []int{286} } func (x *CopyBfbToDpuRshimRequest) GetSshRequest() *SshRequest { @@ -23827,7 +23893,7 @@ type UpdateMachineHardwareInfoRequest struct { func (x *UpdateMachineHardwareInfoRequest) Reset() { *x = UpdateMachineHardwareInfoRequest{} - mi := &file_nico_nico_proto_msgTypes[286] + mi := &file_nico_nico_proto_msgTypes[287] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23839,7 +23905,7 @@ func (x *UpdateMachineHardwareInfoRequest) String() string { func (*UpdateMachineHardwareInfoRequest) ProtoMessage() {} func (x *UpdateMachineHardwareInfoRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[286] + mi := &file_nico_nico_proto_msgTypes[287] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23852,7 +23918,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{286} + return file_nico_nico_proto_rawDescGZIP(), []int{287} } func (x *UpdateMachineHardwareInfoRequest) GetMachineId() *MachineId { @@ -23885,7 +23951,7 @@ type MachineHardwareInfo struct { func (x *MachineHardwareInfo) Reset() { *x = MachineHardwareInfo{} - mi := &file_nico_nico_proto_msgTypes[287] + mi := &file_nico_nico_proto_msgTypes[288] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23897,7 +23963,7 @@ func (x *MachineHardwareInfo) String() string { func (*MachineHardwareInfo) ProtoMessage() {} func (x *MachineHardwareInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[287] + mi := &file_nico_nico_proto_msgTypes[288] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23910,7 +23976,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{287} + return file_nico_nico_proto_rawDescGZIP(), []int{288} } func (x *MachineHardwareInfo) GetGpus() []*Gpu { @@ -23929,7 +23995,7 @@ type ManagedHostNetworkConfigRequest struct { func (x *ManagedHostNetworkConfigRequest) Reset() { *x = ManagedHostNetworkConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[288] + mi := &file_nico_nico_proto_msgTypes[289] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23941,7 +24007,7 @@ func (x *ManagedHostNetworkConfigRequest) String() string { func (*ManagedHostNetworkConfigRequest) ProtoMessage() {} func (x *ManagedHostNetworkConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[288] + mi := &file_nico_nico_proto_msgTypes[289] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23954,7 +24020,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{288} + return file_nico_nico_proto_rawDescGZIP(), []int{289} } func (x *ManagedHostNetworkConfigRequest) GetDpuMachineId() *MachineId { @@ -24089,7 +24155,7 @@ type ManagedHostNetworkConfigResponse struct { func (x *ManagedHostNetworkConfigResponse) Reset() { *x = ManagedHostNetworkConfigResponse{} - mi := &file_nico_nico_proto_msgTypes[289] + mi := &file_nico_nico_proto_msgTypes[290] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24101,7 +24167,7 @@ func (x *ManagedHostNetworkConfigResponse) String() string { func (*ManagedHostNetworkConfigResponse) ProtoMessage() {} func (x *ManagedHostNetworkConfigResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[289] + mi := &file_nico_nico_proto_msgTypes[290] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24114,7 +24180,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{289} + return file_nico_nico_proto_rawDescGZIP(), []int{290} } func (x *ManagedHostNetworkConfigResponse) GetAsn() uint32 { @@ -24419,7 +24485,7 @@ type TrafficInterceptConfig struct { func (x *TrafficInterceptConfig) Reset() { *x = TrafficInterceptConfig{} - mi := &file_nico_nico_proto_msgTypes[290] + mi := &file_nico_nico_proto_msgTypes[291] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24431,7 +24497,7 @@ func (x *TrafficInterceptConfig) String() string { func (*TrafficInterceptConfig) ProtoMessage() {} func (x *TrafficInterceptConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[290] + mi := &file_nico_nico_proto_msgTypes[291] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24444,7 +24510,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{290} + return file_nico_nico_proto_rawDescGZIP(), []int{291} } func (x *TrafficInterceptConfig) GetAdditionalOverlayVtepIp() string { @@ -24501,7 +24567,7 @@ type TrafficInterceptBridging struct { func (x *TrafficInterceptBridging) Reset() { *x = TrafficInterceptBridging{} - mi := &file_nico_nico_proto_msgTypes[291] + mi := &file_nico_nico_proto_msgTypes[292] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24513,7 +24579,7 @@ func (x *TrafficInterceptBridging) String() string { func (*TrafficInterceptBridging) ProtoMessage() {} func (x *TrafficInterceptBridging) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[291] + mi := &file_nico_nico_proto_msgTypes[292] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24526,7 +24592,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{291} + return file_nico_nico_proto_rawDescGZIP(), []int{292} } func (x *TrafficInterceptBridging) GetInternalBridgeRoutingPrefix() string { @@ -24587,7 +24653,7 @@ type ManagedHostDpuExtensionServiceConfig struct { func (x *ManagedHostDpuExtensionServiceConfig) Reset() { *x = ManagedHostDpuExtensionServiceConfig{} - mi := &file_nico_nico_proto_msgTypes[292] + mi := &file_nico_nico_proto_msgTypes[293] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24599,7 +24665,7 @@ func (x *ManagedHostDpuExtensionServiceConfig) String() string { func (*ManagedHostDpuExtensionServiceConfig) ProtoMessage() {} func (x *ManagedHostDpuExtensionServiceConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[292] + mi := &file_nico_nico_proto_msgTypes[293] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24612,7 +24678,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{292} + return file_nico_nico_proto_rawDescGZIP(), []int{293} } func (x *ManagedHostDpuExtensionServiceConfig) GetServiceId() string { @@ -24681,7 +24747,7 @@ type ManagedHostQuarantineState struct { func (x *ManagedHostQuarantineState) Reset() { *x = ManagedHostQuarantineState{} - mi := &file_nico_nico_proto_msgTypes[293] + mi := &file_nico_nico_proto_msgTypes[294] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24693,7 +24759,7 @@ func (x *ManagedHostQuarantineState) String() string { func (*ManagedHostQuarantineState) ProtoMessage() {} func (x *ManagedHostQuarantineState) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[293] + mi := &file_nico_nico_proto_msgTypes[294] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24706,7 +24772,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{293} + return file_nico_nico_proto_rawDescGZIP(), []int{294} } func (x *ManagedHostQuarantineState) GetMode() ManagedHostQuarantineMode { @@ -24732,7 +24798,7 @@ type GetManagedHostQuarantineStateRequest struct { func (x *GetManagedHostQuarantineStateRequest) Reset() { *x = GetManagedHostQuarantineStateRequest{} - mi := &file_nico_nico_proto_msgTypes[294] + mi := &file_nico_nico_proto_msgTypes[295] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24744,7 +24810,7 @@ func (x *GetManagedHostQuarantineStateRequest) String() string { func (*GetManagedHostQuarantineStateRequest) ProtoMessage() {} func (x *GetManagedHostQuarantineStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[294] + mi := &file_nico_nico_proto_msgTypes[295] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24757,7 +24823,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{294} + return file_nico_nico_proto_rawDescGZIP(), []int{295} } func (x *GetManagedHostQuarantineStateRequest) GetMachineId() *MachineId { @@ -24776,7 +24842,7 @@ type GetManagedHostQuarantineStateResponse struct { func (x *GetManagedHostQuarantineStateResponse) Reset() { *x = GetManagedHostQuarantineStateResponse{} - mi := &file_nico_nico_proto_msgTypes[295] + mi := &file_nico_nico_proto_msgTypes[296] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24788,7 +24854,7 @@ func (x *GetManagedHostQuarantineStateResponse) String() string { func (*GetManagedHostQuarantineStateResponse) ProtoMessage() {} func (x *GetManagedHostQuarantineStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[295] + mi := &file_nico_nico_proto_msgTypes[296] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24801,7 +24867,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{295} + return file_nico_nico_proto_rawDescGZIP(), []int{296} } func (x *GetManagedHostQuarantineStateResponse) GetQuarantineState() *ManagedHostQuarantineState { @@ -24821,7 +24887,7 @@ type SetManagedHostQuarantineStateRequest struct { func (x *SetManagedHostQuarantineStateRequest) Reset() { *x = SetManagedHostQuarantineStateRequest{} - mi := &file_nico_nico_proto_msgTypes[296] + mi := &file_nico_nico_proto_msgTypes[297] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24833,7 +24899,7 @@ func (x *SetManagedHostQuarantineStateRequest) String() string { func (*SetManagedHostQuarantineStateRequest) ProtoMessage() {} func (x *SetManagedHostQuarantineStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[296] + mi := &file_nico_nico_proto_msgTypes[297] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24846,7 +24912,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{296} + return file_nico_nico_proto_rawDescGZIP(), []int{297} } func (x *SetManagedHostQuarantineStateRequest) GetMachineId() *MachineId { @@ -24872,7 +24938,7 @@ type SetManagedHostQuarantineStateResponse struct { func (x *SetManagedHostQuarantineStateResponse) Reset() { *x = SetManagedHostQuarantineStateResponse{} - mi := &file_nico_nico_proto_msgTypes[297] + mi := &file_nico_nico_proto_msgTypes[298] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24884,7 +24950,7 @@ func (x *SetManagedHostQuarantineStateResponse) String() string { func (*SetManagedHostQuarantineStateResponse) ProtoMessage() {} func (x *SetManagedHostQuarantineStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[297] + mi := &file_nico_nico_proto_msgTypes[298] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24897,7 +24963,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{297} + return file_nico_nico_proto_rawDescGZIP(), []int{298} } func (x *SetManagedHostQuarantineStateResponse) GetPriorQuarantineState() *ManagedHostQuarantineState { @@ -24916,7 +24982,7 @@ type ClearManagedHostQuarantineStateRequest struct { func (x *ClearManagedHostQuarantineStateRequest) Reset() { *x = ClearManagedHostQuarantineStateRequest{} - mi := &file_nico_nico_proto_msgTypes[298] + mi := &file_nico_nico_proto_msgTypes[299] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24928,7 +24994,7 @@ func (x *ClearManagedHostQuarantineStateRequest) String() string { func (*ClearManagedHostQuarantineStateRequest) ProtoMessage() {} func (x *ClearManagedHostQuarantineStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[298] + mi := &file_nico_nico_proto_msgTypes[299] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24941,7 +25007,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{298} + return file_nico_nico_proto_rawDescGZIP(), []int{299} } func (x *ClearManagedHostQuarantineStateRequest) GetMachineId() *MachineId { @@ -24960,7 +25026,7 @@ type ClearManagedHostQuarantineStateResponse struct { func (x *ClearManagedHostQuarantineStateResponse) Reset() { *x = ClearManagedHostQuarantineStateResponse{} - mi := &file_nico_nico_proto_msgTypes[299] + mi := &file_nico_nico_proto_msgTypes[300] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24972,7 +25038,7 @@ func (x *ClearManagedHostQuarantineStateResponse) String() string { func (*ClearManagedHostQuarantineStateResponse) ProtoMessage() {} func (x *ClearManagedHostQuarantineStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[299] + mi := &file_nico_nico_proto_msgTypes[300] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24985,7 +25051,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{299} + return file_nico_nico_proto_rawDescGZIP(), []int{300} } func (x *ClearManagedHostQuarantineStateResponse) GetPriorQuarantineState() *ManagedHostQuarantineState { @@ -25007,7 +25073,7 @@ type ManagedHostNetworkConfig struct { func (x *ManagedHostNetworkConfig) Reset() { *x = ManagedHostNetworkConfig{} - mi := &file_nico_nico_proto_msgTypes[300] + mi := &file_nico_nico_proto_msgTypes[301] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25019,7 +25085,7 @@ func (x *ManagedHostNetworkConfig) String() string { func (*ManagedHostNetworkConfig) ProtoMessage() {} func (x *ManagedHostNetworkConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[300] + mi := &file_nico_nico_proto_msgTypes[301] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25032,7 +25098,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{300} + return file_nico_nico_proto_rawDescGZIP(), []int{301} } func (x *ManagedHostNetworkConfig) GetLoopbackIp() string { @@ -25148,7 +25214,7 @@ type FlatInterfaceConfig struct { func (x *FlatInterfaceConfig) Reset() { *x = FlatInterfaceConfig{} - mi := &file_nico_nico_proto_msgTypes[301] + mi := &file_nico_nico_proto_msgTypes[302] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25160,7 +25226,7 @@ func (x *FlatInterfaceConfig) String() string { func (*FlatInterfaceConfig) ProtoMessage() {} func (x *FlatInterfaceConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[301] + mi := &file_nico_nico_proto_msgTypes[302] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25173,7 +25239,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{301} + return file_nico_nico_proto_rawDescGZIP(), []int{302} } func (x *FlatInterfaceConfig) GetFunctionType() InterfaceFunctionType { @@ -25346,7 +25412,7 @@ type FlatInterfaceRoutingProfile struct { func (x *FlatInterfaceRoutingProfile) Reset() { *x = FlatInterfaceRoutingProfile{} - mi := &file_nico_nico_proto_msgTypes[302] + mi := &file_nico_nico_proto_msgTypes[303] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25358,7 +25424,7 @@ func (x *FlatInterfaceRoutingProfile) String() string { func (*FlatInterfaceRoutingProfile) ProtoMessage() {} func (x *FlatInterfaceRoutingProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[302] + mi := &file_nico_nico_proto_msgTypes[303] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25371,7 +25437,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{302} + return file_nico_nico_proto_rawDescGZIP(), []int{303} } func (x *FlatInterfaceRoutingProfile) GetAllowedAnycastPrefixes() []*PrefixFilterPolicyEntry { @@ -25398,7 +25464,7 @@ type FlatInterfaceIpv6Config struct { func (x *FlatInterfaceIpv6Config) Reset() { *x = FlatInterfaceIpv6Config{} - mi := &file_nico_nico_proto_msgTypes[303] + mi := &file_nico_nico_proto_msgTypes[304] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25410,7 +25476,7 @@ func (x *FlatInterfaceIpv6Config) String() string { func (*FlatInterfaceIpv6Config) ProtoMessage() {} func (x *FlatInterfaceIpv6Config) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[303] + mi := &file_nico_nico_proto_msgTypes[304] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25423,7 +25489,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{303} + return file_nico_nico_proto_rawDescGZIP(), []int{304} } func (x *FlatInterfaceIpv6Config) GetIp() string { @@ -25460,7 +25526,7 @@ type FlatInterfaceNetworkSecurityGroupConfig struct { func (x *FlatInterfaceNetworkSecurityGroupConfig) Reset() { *x = FlatInterfaceNetworkSecurityGroupConfig{} - mi := &file_nico_nico_proto_msgTypes[304] + mi := &file_nico_nico_proto_msgTypes[305] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25472,7 +25538,7 @@ func (x *FlatInterfaceNetworkSecurityGroupConfig) String() string { func (*FlatInterfaceNetworkSecurityGroupConfig) ProtoMessage() {} func (x *FlatInterfaceNetworkSecurityGroupConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[304] + mi := &file_nico_nico_proto_msgTypes[305] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25485,7 +25551,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{304} + return file_nico_nico_proto_rawDescGZIP(), []int{305} } func (x *FlatInterfaceNetworkSecurityGroupConfig) GetId() string { @@ -25531,7 +25597,7 @@ type ManagedHostNetworkStatusRequest struct { func (x *ManagedHostNetworkStatusRequest) Reset() { *x = ManagedHostNetworkStatusRequest{} - mi := &file_nico_nico_proto_msgTypes[305] + mi := &file_nico_nico_proto_msgTypes[306] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25543,7 +25609,7 @@ func (x *ManagedHostNetworkStatusRequest) String() string { func (*ManagedHostNetworkStatusRequest) ProtoMessage() {} func (x *ManagedHostNetworkStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[305] + mi := &file_nico_nico_proto_msgTypes[306] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25556,7 +25622,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{305} + return file_nico_nico_proto_rawDescGZIP(), []int{306} } type ManagedHostNetworkStatusResponse struct { @@ -25568,7 +25634,7 @@ type ManagedHostNetworkStatusResponse struct { func (x *ManagedHostNetworkStatusResponse) Reset() { *x = ManagedHostNetworkStatusResponse{} - mi := &file_nico_nico_proto_msgTypes[306] + mi := &file_nico_nico_proto_msgTypes[307] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25580,7 +25646,7 @@ func (x *ManagedHostNetworkStatusResponse) String() string { func (*ManagedHostNetworkStatusResponse) ProtoMessage() {} func (x *ManagedHostNetworkStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[306] + mi := &file_nico_nico_proto_msgTypes[307] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25593,7 +25659,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{306} + return file_nico_nico_proto_rawDescGZIP(), []int{307} } func (x *ManagedHostNetworkStatusResponse) GetAll() []*DpuNetworkStatus { @@ -25615,7 +25681,7 @@ type DpuAgentUpgradeCheckRequest struct { func (x *DpuAgentUpgradeCheckRequest) Reset() { *x = DpuAgentUpgradeCheckRequest{} - mi := &file_nico_nico_proto_msgTypes[307] + mi := &file_nico_nico_proto_msgTypes[308] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25627,7 +25693,7 @@ func (x *DpuAgentUpgradeCheckRequest) String() string { func (*DpuAgentUpgradeCheckRequest) ProtoMessage() {} func (x *DpuAgentUpgradeCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[307] + mi := &file_nico_nico_proto_msgTypes[308] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25640,7 +25706,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{307} + return file_nico_nico_proto_rawDescGZIP(), []int{308} } func (x *DpuAgentUpgradeCheckRequest) GetMachineId() string { @@ -25682,7 +25748,7 @@ type DpuAgentUpgradeCheckResponse struct { func (x *DpuAgentUpgradeCheckResponse) Reset() { *x = DpuAgentUpgradeCheckResponse{} - mi := &file_nico_nico_proto_msgTypes[308] + mi := &file_nico_nico_proto_msgTypes[309] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25694,7 +25760,7 @@ func (x *DpuAgentUpgradeCheckResponse) String() string { func (*DpuAgentUpgradeCheckResponse) ProtoMessage() {} func (x *DpuAgentUpgradeCheckResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[308] + mi := &file_nico_nico_proto_msgTypes[309] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25707,7 +25773,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{308} + return file_nico_nico_proto_rawDescGZIP(), []int{309} } func (x *DpuAgentUpgradeCheckResponse) GetShouldUpgrade() bool { @@ -25740,7 +25806,7 @@ type DpuAgentUpgradePolicyRequest struct { func (x *DpuAgentUpgradePolicyRequest) Reset() { *x = DpuAgentUpgradePolicyRequest{} - mi := &file_nico_nico_proto_msgTypes[309] + mi := &file_nico_nico_proto_msgTypes[310] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25752,7 +25818,7 @@ func (x *DpuAgentUpgradePolicyRequest) String() string { func (*DpuAgentUpgradePolicyRequest) ProtoMessage() {} func (x *DpuAgentUpgradePolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[309] + mi := &file_nico_nico_proto_msgTypes[310] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25765,7 +25831,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{309} + return file_nico_nico_proto_rawDescGZIP(), []int{310} } func (x *DpuAgentUpgradePolicyRequest) GetNewPolicy() AgentUpgradePolicy { @@ -25787,7 +25853,7 @@ type DpuAgentUpgradePolicyResponse struct { func (x *DpuAgentUpgradePolicyResponse) Reset() { *x = DpuAgentUpgradePolicyResponse{} - mi := &file_nico_nico_proto_msgTypes[310] + mi := &file_nico_nico_proto_msgTypes[311] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25799,7 +25865,7 @@ func (x *DpuAgentUpgradePolicyResponse) String() string { func (*DpuAgentUpgradePolicyResponse) ProtoMessage() {} func (x *DpuAgentUpgradePolicyResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[310] + mi := &file_nico_nico_proto_msgTypes[311] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25812,7 +25878,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{310} + return file_nico_nico_proto_rawDescGZIP(), []int{311} } func (x *DpuAgentUpgradePolicyResponse) GetActivePolicy() AgentUpgradePolicy { @@ -25849,7 +25915,7 @@ type AdminForceDeleteMachineRequest struct { func (x *AdminForceDeleteMachineRequest) Reset() { *x = AdminForceDeleteMachineRequest{} - mi := &file_nico_nico_proto_msgTypes[311] + mi := &file_nico_nico_proto_msgTypes[312] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25861,7 +25927,7 @@ func (x *AdminForceDeleteMachineRequest) String() string { func (*AdminForceDeleteMachineRequest) ProtoMessage() {} func (x *AdminForceDeleteMachineRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[311] + mi := &file_nico_nico_proto_msgTypes[312] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25874,7 +25940,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{311} + return file_nico_nico_proto_rawDescGZIP(), []int{312} } func (x *AdminForceDeleteMachineRequest) GetHostQuery() string { @@ -25951,7 +26017,7 @@ type AdminForceDeleteMachineResponse struct { func (x *AdminForceDeleteMachineResponse) Reset() { *x = AdminForceDeleteMachineResponse{} - mi := &file_nico_nico_proto_msgTypes[312] + mi := &file_nico_nico_proto_msgTypes[313] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25963,7 +26029,7 @@ func (x *AdminForceDeleteMachineResponse) String() string { func (*AdminForceDeleteMachineResponse) ProtoMessage() {} func (x *AdminForceDeleteMachineResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[312] + mi := &file_nico_nico_proto_msgTypes[313] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25976,7 +26042,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{312} + return file_nico_nico_proto_rawDescGZIP(), []int{313} } func (x *AdminForceDeleteMachineResponse) GetAllDone() bool { @@ -26127,7 +26193,7 @@ type DisableSecureBootResponse struct { func (x *DisableSecureBootResponse) Reset() { *x = DisableSecureBootResponse{} - mi := &file_nico_nico_proto_msgTypes[313] + mi := &file_nico_nico_proto_msgTypes[314] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26139,7 +26205,7 @@ func (x *DisableSecureBootResponse) String() string { func (*DisableSecureBootResponse) ProtoMessage() {} func (x *DisableSecureBootResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[313] + mi := &file_nico_nico_proto_msgTypes[314] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26152,7 +26218,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{313} + return file_nico_nico_proto_rawDescGZIP(), []int{314} } type LockdownRequest struct { @@ -26166,7 +26232,7 @@ type LockdownRequest struct { func (x *LockdownRequest) Reset() { *x = LockdownRequest{} - mi := &file_nico_nico_proto_msgTypes[314] + mi := &file_nico_nico_proto_msgTypes[315] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26178,7 +26244,7 @@ func (x *LockdownRequest) String() string { func (*LockdownRequest) ProtoMessage() {} func (x *LockdownRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[314] + mi := &file_nico_nico_proto_msgTypes[315] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26191,7 +26257,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{314} + return file_nico_nico_proto_rawDescGZIP(), []int{315} } func (x *LockdownRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -26223,7 +26289,7 @@ type LockdownResponse struct { func (x *LockdownResponse) Reset() { *x = LockdownResponse{} - mi := &file_nico_nico_proto_msgTypes[315] + mi := &file_nico_nico_proto_msgTypes[316] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26235,7 +26301,7 @@ func (x *LockdownResponse) String() string { func (*LockdownResponse) ProtoMessage() {} func (x *LockdownResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[315] + mi := &file_nico_nico_proto_msgTypes[316] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26248,7 +26314,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{315} + return file_nico_nico_proto_rawDescGZIP(), []int{316} } type LockdownStatusRequest struct { @@ -26261,7 +26327,7 @@ type LockdownStatusRequest struct { func (x *LockdownStatusRequest) Reset() { *x = LockdownStatusRequest{} - mi := &file_nico_nico_proto_msgTypes[316] + mi := &file_nico_nico_proto_msgTypes[317] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26273,7 +26339,7 @@ func (x *LockdownStatusRequest) String() string { func (*LockdownStatusRequest) ProtoMessage() {} func (x *LockdownStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[316] + mi := &file_nico_nico_proto_msgTypes[317] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26286,7 +26352,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{316} + return file_nico_nico_proto_rawDescGZIP(), []int{317} } func (x *LockdownStatusRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -26313,7 +26379,7 @@ type MachineSetupStatusRequest struct { func (x *MachineSetupStatusRequest) Reset() { *x = MachineSetupStatusRequest{} - mi := &file_nico_nico_proto_msgTypes[317] + mi := &file_nico_nico_proto_msgTypes[318] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26325,7 +26391,7 @@ func (x *MachineSetupStatusRequest) String() string { func (*MachineSetupStatusRequest) ProtoMessage() {} func (x *MachineSetupStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[317] + mi := &file_nico_nico_proto_msgTypes[318] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26338,7 +26404,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{317} + return file_nico_nico_proto_rawDescGZIP(), []int{318} } func (x *MachineSetupStatusRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -26366,7 +26432,7 @@ type MachineSetupRequest struct { func (x *MachineSetupRequest) Reset() { *x = MachineSetupRequest{} - mi := &file_nico_nico_proto_msgTypes[318] + mi := &file_nico_nico_proto_msgTypes[319] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26378,7 +26444,7 @@ func (x *MachineSetupRequest) String() string { func (*MachineSetupRequest) ProtoMessage() {} func (x *MachineSetupRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[318] + mi := &file_nico_nico_proto_msgTypes[319] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26391,7 +26457,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{318} + return file_nico_nico_proto_rawDescGZIP(), []int{319} } func (x *MachineSetupRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -26423,7 +26489,7 @@ type MachineSetupResponse struct { func (x *MachineSetupResponse) Reset() { *x = MachineSetupResponse{} - mi := &file_nico_nico_proto_msgTypes[319] + mi := &file_nico_nico_proto_msgTypes[320] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26435,7 +26501,7 @@ func (x *MachineSetupResponse) String() string { func (*MachineSetupResponse) ProtoMessage() {} func (x *MachineSetupResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[319] + mi := &file_nico_nico_proto_msgTypes[320] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26448,7 +26514,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{319} + return file_nico_nico_proto_rawDescGZIP(), []int{320} } type SetDpuFirstBootOrderRequest struct { @@ -26462,7 +26528,7 @@ type SetDpuFirstBootOrderRequest struct { func (x *SetDpuFirstBootOrderRequest) Reset() { *x = SetDpuFirstBootOrderRequest{} - mi := &file_nico_nico_proto_msgTypes[320] + mi := &file_nico_nico_proto_msgTypes[321] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26474,7 +26540,7 @@ func (x *SetDpuFirstBootOrderRequest) String() string { func (*SetDpuFirstBootOrderRequest) ProtoMessage() {} func (x *SetDpuFirstBootOrderRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[320] + mi := &file_nico_nico_proto_msgTypes[321] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26487,7 +26553,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{320} + return file_nico_nico_proto_rawDescGZIP(), []int{321} } func (x *SetDpuFirstBootOrderRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -26519,7 +26585,7 @@ type SetDpuFirstBootOrderResponse struct { func (x *SetDpuFirstBootOrderResponse) Reset() { *x = SetDpuFirstBootOrderResponse{} - mi := &file_nico_nico_proto_msgTypes[321] + mi := &file_nico_nico_proto_msgTypes[322] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26531,7 +26597,7 @@ func (x *SetDpuFirstBootOrderResponse) String() string { func (*SetDpuFirstBootOrderResponse) ProtoMessage() {} func (x *SetDpuFirstBootOrderResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[321] + mi := &file_nico_nico_proto_msgTypes[322] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26544,7 +26610,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{321} + return file_nico_nico_proto_rawDescGZIP(), []int{322} } // Must provide either machine_id or ip/mac pair @@ -26558,7 +26624,7 @@ type AdminRebootRequest struct { func (x *AdminRebootRequest) Reset() { *x = AdminRebootRequest{} - mi := &file_nico_nico_proto_msgTypes[322] + mi := &file_nico_nico_proto_msgTypes[323] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26570,7 +26636,7 @@ func (x *AdminRebootRequest) String() string { func (*AdminRebootRequest) ProtoMessage() {} func (x *AdminRebootRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[322] + mi := &file_nico_nico_proto_msgTypes[323] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26583,7 +26649,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{322} + return file_nico_nico_proto_rawDescGZIP(), []int{323} } func (x *AdminRebootRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -26608,7 +26674,7 @@ type AdminRebootResponse struct { func (x *AdminRebootResponse) Reset() { *x = AdminRebootResponse{} - mi := &file_nico_nico_proto_msgTypes[323] + mi := &file_nico_nico_proto_msgTypes[324] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26620,7 +26686,7 @@ func (x *AdminRebootResponse) String() string { func (*AdminRebootResponse) ProtoMessage() {} func (x *AdminRebootResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[323] + mi := &file_nico_nico_proto_msgTypes[324] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26633,7 +26699,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{323} + return file_nico_nico_proto_rawDescGZIP(), []int{324} } // Must provide either machine_id or ip/mac pair @@ -26650,7 +26716,7 @@ type AdminBmcResetRequest struct { func (x *AdminBmcResetRequest) Reset() { *x = AdminBmcResetRequest{} - mi := &file_nico_nico_proto_msgTypes[324] + mi := &file_nico_nico_proto_msgTypes[325] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26662,7 +26728,7 @@ func (x *AdminBmcResetRequest) String() string { func (*AdminBmcResetRequest) ProtoMessage() {} func (x *AdminBmcResetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[324] + mi := &file_nico_nico_proto_msgTypes[325] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26675,7 +26741,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{324} + return file_nico_nico_proto_rawDescGZIP(), []int{325} } func (x *AdminBmcResetRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -26707,7 +26773,7 @@ type AdminBmcResetResponse struct { func (x *AdminBmcResetResponse) Reset() { *x = AdminBmcResetResponse{} - mi := &file_nico_nico_proto_msgTypes[325] + mi := &file_nico_nico_proto_msgTypes[326] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26719,7 +26785,7 @@ func (x *AdminBmcResetResponse) String() string { func (*AdminBmcResetResponse) ProtoMessage() {} func (x *AdminBmcResetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[325] + mi := &file_nico_nico_proto_msgTypes[326] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26732,7 +26798,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{325} + return file_nico_nico_proto_rawDescGZIP(), []int{326} } type EnableInfiniteBootRequest struct { @@ -26745,7 +26811,7 @@ type EnableInfiniteBootRequest struct { func (x *EnableInfiniteBootRequest) Reset() { *x = EnableInfiniteBootRequest{} - mi := &file_nico_nico_proto_msgTypes[326] + mi := &file_nico_nico_proto_msgTypes[327] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26757,7 +26823,7 @@ func (x *EnableInfiniteBootRequest) String() string { func (*EnableInfiniteBootRequest) ProtoMessage() {} func (x *EnableInfiniteBootRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[326] + mi := &file_nico_nico_proto_msgTypes[327] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26770,7 +26836,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{326} + return file_nico_nico_proto_rawDescGZIP(), []int{327} } func (x *EnableInfiniteBootRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -26795,7 +26861,7 @@ type EnableInfiniteBootResponse struct { func (x *EnableInfiniteBootResponse) Reset() { *x = EnableInfiniteBootResponse{} - mi := &file_nico_nico_proto_msgTypes[327] + mi := &file_nico_nico_proto_msgTypes[328] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26807,7 +26873,7 @@ func (x *EnableInfiniteBootResponse) String() string { func (*EnableInfiniteBootResponse) ProtoMessage() {} func (x *EnableInfiniteBootResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[327] + mi := &file_nico_nico_proto_msgTypes[328] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26820,7 +26886,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{327} + return file_nico_nico_proto_rawDescGZIP(), []int{328} } type IsInfiniteBootEnabledRequest struct { @@ -26833,7 +26899,7 @@ type IsInfiniteBootEnabledRequest struct { func (x *IsInfiniteBootEnabledRequest) Reset() { *x = IsInfiniteBootEnabledRequest{} - mi := &file_nico_nico_proto_msgTypes[328] + mi := &file_nico_nico_proto_msgTypes[329] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26845,7 +26911,7 @@ func (x *IsInfiniteBootEnabledRequest) String() string { func (*IsInfiniteBootEnabledRequest) ProtoMessage() {} func (x *IsInfiniteBootEnabledRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[328] + mi := &file_nico_nico_proto_msgTypes[329] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26858,7 +26924,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{328} + return file_nico_nico_proto_rawDescGZIP(), []int{329} } func (x *IsInfiniteBootEnabledRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -26884,7 +26950,7 @@ type IsInfiniteBootEnabledResponse struct { func (x *IsInfiniteBootEnabledResponse) Reset() { *x = IsInfiniteBootEnabledResponse{} - mi := &file_nico_nico_proto_msgTypes[329] + mi := &file_nico_nico_proto_msgTypes[330] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26896,7 +26962,7 @@ func (x *IsInfiniteBootEnabledResponse) String() string { func (*IsInfiniteBootEnabledResponse) ProtoMessage() {} func (x *IsInfiniteBootEnabledResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[329] + mi := &file_nico_nico_proto_msgTypes[330] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26909,7 +26975,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{329} + return file_nico_nico_proto_rawDescGZIP(), []int{330} } func (x *IsInfiniteBootEnabledResponse) GetIsEnabled() bool { @@ -26933,7 +26999,7 @@ type BMCMetaDataGetRequest struct { func (x *BMCMetaDataGetRequest) Reset() { *x = BMCMetaDataGetRequest{} - mi := &file_nico_nico_proto_msgTypes[330] + mi := &file_nico_nico_proto_msgTypes[331] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26945,7 +27011,7 @@ func (x *BMCMetaDataGetRequest) String() string { func (*BMCMetaDataGetRequest) ProtoMessage() {} func (x *BMCMetaDataGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[330] + mi := &file_nico_nico_proto_msgTypes[331] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26958,7 +27024,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{330} + return file_nico_nico_proto_rawDescGZIP(), []int{331} } func (x *BMCMetaDataGetRequest) GetMachineId() *MachineId { @@ -27005,7 +27071,7 @@ type BMCMetaDataGetResponse struct { func (x *BMCMetaDataGetResponse) Reset() { *x = BMCMetaDataGetResponse{} - mi := &file_nico_nico_proto_msgTypes[331] + mi := &file_nico_nico_proto_msgTypes[332] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27017,7 +27083,7 @@ func (x *BMCMetaDataGetResponse) String() string { func (*BMCMetaDataGetResponse) ProtoMessage() {} func (x *BMCMetaDataGetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[331] + mi := &file_nico_nico_proto_msgTypes[332] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27030,7 +27096,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{331} + return file_nico_nico_proto_rawDescGZIP(), []int{332} } func (x *BMCMetaDataGetResponse) GetIp() string { @@ -27100,7 +27166,7 @@ type MachineCredentialsUpdateRequest struct { func (x *MachineCredentialsUpdateRequest) Reset() { *x = MachineCredentialsUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[332] + mi := &file_nico_nico_proto_msgTypes[333] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27112,7 +27178,7 @@ func (x *MachineCredentialsUpdateRequest) String() string { func (*MachineCredentialsUpdateRequest) ProtoMessage() {} func (x *MachineCredentialsUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[332] + mi := &file_nico_nico_proto_msgTypes[333] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27125,7 +27191,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{332} + return file_nico_nico_proto_rawDescGZIP(), []int{333} } func (x *MachineCredentialsUpdateRequest) GetMachineId() *MachineId { @@ -27157,7 +27223,7 @@ type MachineCredentialsUpdateResponse struct { func (x *MachineCredentialsUpdateResponse) Reset() { *x = MachineCredentialsUpdateResponse{} - mi := &file_nico_nico_proto_msgTypes[333] + mi := &file_nico_nico_proto_msgTypes[334] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27169,7 +27235,7 @@ func (x *MachineCredentialsUpdateResponse) String() string { func (*MachineCredentialsUpdateResponse) ProtoMessage() {} func (x *MachineCredentialsUpdateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[333] + mi := &file_nico_nico_proto_msgTypes[334] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27182,7 +27248,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{333} + return file_nico_nico_proto_rawDescGZIP(), []int{334} } type ForgeAgentControlRequest struct { @@ -27194,7 +27260,7 @@ type ForgeAgentControlRequest struct { func (x *ForgeAgentControlRequest) Reset() { *x = ForgeAgentControlRequest{} - mi := &file_nico_nico_proto_msgTypes[334] + mi := &file_nico_nico_proto_msgTypes[335] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27206,7 +27272,7 @@ func (x *ForgeAgentControlRequest) String() string { func (*ForgeAgentControlRequest) ProtoMessage() {} func (x *ForgeAgentControlRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[334] + mi := &file_nico_nico_proto_msgTypes[335] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27219,7 +27285,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{334} + return file_nico_nico_proto_rawDescGZIP(), []int{335} } func (x *ForgeAgentControlRequest) GetMachineId() *MachineId { @@ -27252,7 +27318,7 @@ type ForgeAgentControlResponse struct { func (x *ForgeAgentControlResponse) Reset() { *x = ForgeAgentControlResponse{} - mi := &file_nico_nico_proto_msgTypes[335] + mi := &file_nico_nico_proto_msgTypes[336] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27264,7 +27330,7 @@ func (x *ForgeAgentControlResponse) String() string { func (*ForgeAgentControlResponse) ProtoMessage() {} func (x *ForgeAgentControlResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[335] + mi := &file_nico_nico_proto_msgTypes[336] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27277,7 +27343,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{335} + return file_nico_nico_proto_rawDescGZIP(), []int{336} } func (x *ForgeAgentControlResponse) GetLegacyAction() ForgeAgentControlResponse_LegacyAction { @@ -27471,7 +27537,7 @@ type MachineDiscoveryInfo struct { func (x *MachineDiscoveryInfo) Reset() { *x = MachineDiscoveryInfo{} - mi := &file_nico_nico_proto_msgTypes[336] + mi := &file_nico_nico_proto_msgTypes[337] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27483,7 +27549,7 @@ func (x *MachineDiscoveryInfo) String() string { func (*MachineDiscoveryInfo) ProtoMessage() {} func (x *MachineDiscoveryInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[336] + mi := &file_nico_nico_proto_msgTypes[337] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27496,7 +27562,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{336} + return file_nico_nico_proto_rawDescGZIP(), []int{337} } func (x *MachineDiscoveryInfo) GetMachineInterfaceId() *MachineInterfaceId { @@ -27562,7 +27628,7 @@ type MachineDiscoveryCompletedRequest struct { func (x *MachineDiscoveryCompletedRequest) Reset() { *x = MachineDiscoveryCompletedRequest{} - mi := &file_nico_nico_proto_msgTypes[337] + mi := &file_nico_nico_proto_msgTypes[338] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27574,7 +27640,7 @@ func (x *MachineDiscoveryCompletedRequest) String() string { func (*MachineDiscoveryCompletedRequest) ProtoMessage() {} func (x *MachineDiscoveryCompletedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[337] + mi := &file_nico_nico_proto_msgTypes[338] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27587,7 +27653,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{337} + return file_nico_nico_proto_rawDescGZIP(), []int{338} } func (x *MachineDiscoveryCompletedRequest) GetMachineId() *MachineId { @@ -27617,7 +27683,7 @@ type MachineCleanupInfo struct { func (x *MachineCleanupInfo) Reset() { *x = MachineCleanupInfo{} - mi := &file_nico_nico_proto_msgTypes[338] + mi := &file_nico_nico_proto_msgTypes[339] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27629,7 +27695,7 @@ func (x *MachineCleanupInfo) String() string { func (*MachineCleanupInfo) ProtoMessage() {} func (x *MachineCleanupInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[338] + mi := &file_nico_nico_proto_msgTypes[339] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27642,7 +27708,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{338} + return file_nico_nico_proto_rawDescGZIP(), []int{339} } func (x *MachineCleanupInfo) GetMachineId() *MachineId { @@ -27705,7 +27771,7 @@ type MachineCertificate struct { func (x *MachineCertificate) Reset() { *x = MachineCertificate{} - mi := &file_nico_nico_proto_msgTypes[339] + mi := &file_nico_nico_proto_msgTypes[340] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27717,7 +27783,7 @@ func (x *MachineCertificate) String() string { func (*MachineCertificate) ProtoMessage() {} func (x *MachineCertificate) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[339] + mi := &file_nico_nico_proto_msgTypes[340] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27730,7 +27796,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{339} + return file_nico_nico_proto_rawDescGZIP(), []int{340} } func (x *MachineCertificate) GetPublicKey() []byte { @@ -27762,7 +27828,7 @@ type MachineCertificateRenewRequest struct { func (x *MachineCertificateRenewRequest) Reset() { *x = MachineCertificateRenewRequest{} - mi := &file_nico_nico_proto_msgTypes[340] + mi := &file_nico_nico_proto_msgTypes[341] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27774,7 +27840,7 @@ func (x *MachineCertificateRenewRequest) String() string { func (*MachineCertificateRenewRequest) ProtoMessage() {} func (x *MachineCertificateRenewRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[340] + mi := &file_nico_nico_proto_msgTypes[341] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27787,7 +27853,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{340} + return file_nico_nico_proto_rawDescGZIP(), []int{341} } type MachineCertificateResult struct { @@ -27800,7 +27866,7 @@ type MachineCertificateResult struct { func (x *MachineCertificateResult) Reset() { *x = MachineCertificateResult{} - mi := &file_nico_nico_proto_msgTypes[341] + mi := &file_nico_nico_proto_msgTypes[342] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27812,7 +27878,7 @@ func (x *MachineCertificateResult) String() string { func (*MachineCertificateResult) ProtoMessage() {} func (x *MachineCertificateResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[341] + mi := &file_nico_nico_proto_msgTypes[342] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27825,7 +27891,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{341} + return file_nico_nico_proto_rawDescGZIP(), []int{342} } func (x *MachineCertificateResult) GetMachineCertificate() *MachineCertificate { @@ -27851,7 +27917,7 @@ type MachineDiscoveryResult struct { func (x *MachineDiscoveryResult) Reset() { *x = MachineDiscoveryResult{} - mi := &file_nico_nico_proto_msgTypes[342] + mi := &file_nico_nico_proto_msgTypes[343] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27863,7 +27929,7 @@ func (x *MachineDiscoveryResult) String() string { func (*MachineDiscoveryResult) ProtoMessage() {} func (x *MachineDiscoveryResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[342] + mi := &file_nico_nico_proto_msgTypes[343] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27876,7 +27942,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{342} + return file_nico_nico_proto_rawDescGZIP(), []int{343} } func (x *MachineDiscoveryResult) GetMachineId() *MachineId { @@ -27915,7 +27981,7 @@ type MachineDiscoveryCompletedResponse struct { func (x *MachineDiscoveryCompletedResponse) Reset() { *x = MachineDiscoveryCompletedResponse{} - mi := &file_nico_nico_proto_msgTypes[343] + mi := &file_nico_nico_proto_msgTypes[344] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27927,7 +27993,7 @@ func (x *MachineDiscoveryCompletedResponse) String() string { func (*MachineDiscoveryCompletedResponse) ProtoMessage() {} func (x *MachineDiscoveryCompletedResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[343] + mi := &file_nico_nico_proto_msgTypes[344] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27940,7 +28006,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{343} + return file_nico_nico_proto_rawDescGZIP(), []int{344} } type MachineCleanupResult struct { @@ -27951,7 +28017,7 @@ type MachineCleanupResult struct { func (x *MachineCleanupResult) Reset() { *x = MachineCleanupResult{} - mi := &file_nico_nico_proto_msgTypes[344] + mi := &file_nico_nico_proto_msgTypes[345] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27963,7 +28029,7 @@ func (x *MachineCleanupResult) String() string { func (*MachineCleanupResult) ProtoMessage() {} func (x *MachineCleanupResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[344] + mi := &file_nico_nico_proto_msgTypes[345] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27976,7 +28042,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{344} + return file_nico_nico_proto_rawDescGZIP(), []int{345} } type ForgeScoutErrorReport struct { @@ -27994,7 +28060,7 @@ type ForgeScoutErrorReport struct { func (x *ForgeScoutErrorReport) Reset() { *x = ForgeScoutErrorReport{} - mi := &file_nico_nico_proto_msgTypes[345] + mi := &file_nico_nico_proto_msgTypes[346] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28006,7 +28072,7 @@ func (x *ForgeScoutErrorReport) String() string { func (*ForgeScoutErrorReport) ProtoMessage() {} func (x *ForgeScoutErrorReport) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[345] + mi := &file_nico_nico_proto_msgTypes[346] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28019,7 +28085,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{345} + return file_nico_nico_proto_rawDescGZIP(), []int{346} } func (x *ForgeScoutErrorReport) GetMachineId() *MachineId { @@ -28051,7 +28117,7 @@ type ForgeScoutErrorReportResult struct { func (x *ForgeScoutErrorReportResult) Reset() { *x = ForgeScoutErrorReportResult{} - mi := &file_nico_nico_proto_msgTypes[346] + mi := &file_nico_nico_proto_msgTypes[347] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28063,7 +28129,7 @@ func (x *ForgeScoutErrorReportResult) String() string { func (*ForgeScoutErrorReportResult) ProtoMessage() {} func (x *ForgeScoutErrorReportResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[346] + mi := &file_nico_nico_proto_msgTypes[347] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28076,7 +28142,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{346} + return file_nico_nico_proto_rawDescGZIP(), []int{347} } type PxeInstructionRequest struct { @@ -28100,7 +28166,7 @@ type PxeInstructionRequest struct { func (x *PxeInstructionRequest) Reset() { *x = PxeInstructionRequest{} - mi := &file_nico_nico_proto_msgTypes[347] + mi := &file_nico_nico_proto_msgTypes[348] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28112,7 +28178,7 @@ func (x *PxeInstructionRequest) String() string { func (*PxeInstructionRequest) ProtoMessage() {} func (x *PxeInstructionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[347] + mi := &file_nico_nico_proto_msgTypes[348] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28125,7 +28191,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{347} + return file_nico_nico_proto_rawDescGZIP(), []int{348} } func (x *PxeInstructionRequest) GetArch() MachineArchitecture { @@ -28173,7 +28239,7 @@ type PxeInstructions struct { func (x *PxeInstructions) Reset() { *x = PxeInstructions{} - mi := &file_nico_nico_proto_msgTypes[348] + mi := &file_nico_nico_proto_msgTypes[349] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28185,7 +28251,7 @@ func (x *PxeInstructions) String() string { func (*PxeInstructions) ProtoMessage() {} func (x *PxeInstructions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[348] + mi := &file_nico_nico_proto_msgTypes[349] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28198,7 +28264,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{348} + return file_nico_nico_proto_rawDescGZIP(), []int{349} } func (x *PxeInstructions) GetPxeScript() string { @@ -28256,7 +28322,7 @@ type CloudInitDiscoveryInstructions struct { func (x *CloudInitDiscoveryInstructions) Reset() { *x = CloudInitDiscoveryInstructions{} - mi := &file_nico_nico_proto_msgTypes[349] + mi := &file_nico_nico_proto_msgTypes[350] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28268,7 +28334,7 @@ func (x *CloudInitDiscoveryInstructions) String() string { func (*CloudInitDiscoveryInstructions) ProtoMessage() {} func (x *CloudInitDiscoveryInstructions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[349] + mi := &file_nico_nico_proto_msgTypes[350] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28281,7 +28347,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{349} + return file_nico_nico_proto_rawDescGZIP(), []int{350} } func (x *CloudInitDiscoveryInstructions) GetMachineInterface() *MachineInterface { @@ -28365,7 +28431,7 @@ type CloudInitMetaData struct { func (x *CloudInitMetaData) Reset() { *x = CloudInitMetaData{} - mi := &file_nico_nico_proto_msgTypes[350] + mi := &file_nico_nico_proto_msgTypes[351] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28377,7 +28443,7 @@ func (x *CloudInitMetaData) String() string { func (*CloudInitMetaData) ProtoMessage() {} func (x *CloudInitMetaData) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[350] + mi := &file_nico_nico_proto_msgTypes[351] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28390,7 +28456,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{350} + return file_nico_nico_proto_rawDescGZIP(), []int{351} } func (x *CloudInitMetaData) GetInstanceId() string { @@ -28423,7 +28489,7 @@ type CloudInitInstructionsRequest struct { func (x *CloudInitInstructionsRequest) Reset() { *x = CloudInitInstructionsRequest{} - mi := &file_nico_nico_proto_msgTypes[351] + mi := &file_nico_nico_proto_msgTypes[352] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28435,7 +28501,7 @@ func (x *CloudInitInstructionsRequest) String() string { func (*CloudInitInstructionsRequest) ProtoMessage() {} func (x *CloudInitInstructionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[351] + mi := &file_nico_nico_proto_msgTypes[352] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28448,7 +28514,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{351} + return file_nico_nico_proto_rawDescGZIP(), []int{352} } func (x *CloudInitInstructionsRequest) GetIp() string { @@ -28475,7 +28541,7 @@ type CloudInitInstructions struct { func (x *CloudInitInstructions) Reset() { *x = CloudInitInstructions{} - mi := &file_nico_nico_proto_msgTypes[352] + mi := &file_nico_nico_proto_msgTypes[353] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28487,7 +28553,7 @@ func (x *CloudInitInstructions) String() string { func (*CloudInitInstructions) ProtoMessage() {} func (x *CloudInitInstructions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[352] + mi := &file_nico_nico_proto_msgTypes[353] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28500,7 +28566,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{352} + return file_nico_nico_proto_rawDescGZIP(), []int{353} } func (x *CloudInitInstructions) GetCustomCloudInit() string { @@ -28569,7 +28635,7 @@ type DpuNetworkStatus struct { func (x *DpuNetworkStatus) Reset() { *x = DpuNetworkStatus{} - mi := &file_nico_nico_proto_msgTypes[353] + mi := &file_nico_nico_proto_msgTypes[354] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28581,7 +28647,7 @@ func (x *DpuNetworkStatus) String() string { func (*DpuNetworkStatus) ProtoMessage() {} func (x *DpuNetworkStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[353] + mi := &file_nico_nico_proto_msgTypes[354] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28594,7 +28660,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{353} + return file_nico_nico_proto_rawDescGZIP(), []int{354} } func (x *DpuNetworkStatus) GetDpuMachineId() *MachineId { @@ -28719,7 +28785,7 @@ type LastDhcpRequest struct { func (x *LastDhcpRequest) Reset() { *x = LastDhcpRequest{} - mi := &file_nico_nico_proto_msgTypes[354] + mi := &file_nico_nico_proto_msgTypes[355] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28731,7 +28797,7 @@ func (x *LastDhcpRequest) String() string { func (*LastDhcpRequest) ProtoMessage() {} func (x *LastDhcpRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[354] + mi := &file_nico_nico_proto_msgTypes[355] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28744,7 +28810,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{354} + return file_nico_nico_proto_rawDescGZIP(), []int{355} } func (x *LastDhcpRequest) GetHostInterfaceId() *MachineInterfaceId { @@ -28778,7 +28844,7 @@ type DpuExtensionServiceStatusObservation struct { func (x *DpuExtensionServiceStatusObservation) Reset() { *x = DpuExtensionServiceStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[355] + mi := &file_nico_nico_proto_msgTypes[356] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28790,7 +28856,7 @@ func (x *DpuExtensionServiceStatusObservation) String() string { func (*DpuExtensionServiceStatusObservation) ProtoMessage() {} func (x *DpuExtensionServiceStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[355] + mi := &file_nico_nico_proto_msgTypes[356] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28803,7 +28869,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{355} + return file_nico_nico_proto_rawDescGZIP(), []int{356} } func (x *DpuExtensionServiceStatusObservation) GetServiceId() string { @@ -28874,7 +28940,7 @@ type DpuExtensionServiceComponent struct { func (x *DpuExtensionServiceComponent) Reset() { *x = DpuExtensionServiceComponent{} - mi := &file_nico_nico_proto_msgTypes[356] + mi := &file_nico_nico_proto_msgTypes[357] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28886,7 +28952,7 @@ func (x *DpuExtensionServiceComponent) String() string { func (*DpuExtensionServiceComponent) ProtoMessage() {} func (x *DpuExtensionServiceComponent) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[356] + mi := &file_nico_nico_proto_msgTypes[357] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28899,7 +28965,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{356} + return file_nico_nico_proto_rawDescGZIP(), []int{357} } func (x *DpuExtensionServiceComponent) GetName() string { @@ -28939,7 +29005,7 @@ type OptionalHealthReport struct { func (x *OptionalHealthReport) Reset() { *x = OptionalHealthReport{} - mi := &file_nico_nico_proto_msgTypes[357] + mi := &file_nico_nico_proto_msgTypes[358] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28951,7 +29017,7 @@ func (x *OptionalHealthReport) String() string { func (*OptionalHealthReport) ProtoMessage() {} func (x *OptionalHealthReport) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[357] + mi := &file_nico_nico_proto_msgTypes[358] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28964,7 +29030,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{357} + return file_nico_nico_proto_rawDescGZIP(), []int{358} } func (x *OptionalHealthReport) GetReport() *HealthReport { @@ -28984,7 +29050,7 @@ type HealthReportEntry struct { func (x *HealthReportEntry) Reset() { *x = HealthReportEntry{} - mi := &file_nico_nico_proto_msgTypes[358] + mi := &file_nico_nico_proto_msgTypes[359] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28996,7 +29062,7 @@ func (x *HealthReportEntry) String() string { func (*HealthReportEntry) ProtoMessage() {} func (x *HealthReportEntry) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[358] + mi := &file_nico_nico_proto_msgTypes[359] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29009,7 +29075,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{358} + return file_nico_nico_proto_rawDescGZIP(), []int{359} } func (x *HealthReportEntry) GetReport() *HealthReport { @@ -29037,7 +29103,7 @@ type InsertMachineHealthReportRequest struct { func (x *InsertMachineHealthReportRequest) Reset() { *x = InsertMachineHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[359] + mi := &file_nico_nico_proto_msgTypes[360] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29049,7 +29115,7 @@ func (x *InsertMachineHealthReportRequest) String() string { func (*InsertMachineHealthReportRequest) ProtoMessage() {} func (x *InsertMachineHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[359] + mi := &file_nico_nico_proto_msgTypes[360] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29062,7 +29128,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{359} + return file_nico_nico_proto_rawDescGZIP(), []int{360} } func (x *InsertMachineHealthReportRequest) GetMachineId() *MachineId { @@ -29090,7 +29156,7 @@ type InsertRackHealthReportRequest struct { func (x *InsertRackHealthReportRequest) Reset() { *x = InsertRackHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[360] + mi := &file_nico_nico_proto_msgTypes[361] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29102,7 +29168,7 @@ func (x *InsertRackHealthReportRequest) String() string { func (*InsertRackHealthReportRequest) ProtoMessage() {} func (x *InsertRackHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[360] + mi := &file_nico_nico_proto_msgTypes[361] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29115,7 +29181,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{360} + return file_nico_nico_proto_rawDescGZIP(), []int{361} } func (x *InsertRackHealthReportRequest) GetRackId() *RackId { @@ -29143,7 +29209,7 @@ type RemoveRackHealthReportRequest struct { func (x *RemoveRackHealthReportRequest) Reset() { *x = RemoveRackHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[361] + mi := &file_nico_nico_proto_msgTypes[362] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29155,7 +29221,7 @@ func (x *RemoveRackHealthReportRequest) String() string { func (*RemoveRackHealthReportRequest) ProtoMessage() {} func (x *RemoveRackHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[361] + mi := &file_nico_nico_proto_msgTypes[362] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29168,7 +29234,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{361} + return file_nico_nico_proto_rawDescGZIP(), []int{362} } func (x *RemoveRackHealthReportRequest) GetRackId() *RackId { @@ -29195,7 +29261,7 @@ type ListRackHealthReportsRequest struct { func (x *ListRackHealthReportsRequest) Reset() { *x = ListRackHealthReportsRequest{} - mi := &file_nico_nico_proto_msgTypes[362] + mi := &file_nico_nico_proto_msgTypes[363] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29207,7 +29273,7 @@ func (x *ListRackHealthReportsRequest) String() string { func (*ListRackHealthReportsRequest) ProtoMessage() {} func (x *ListRackHealthReportsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[362] + mi := &file_nico_nico_proto_msgTypes[363] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29220,7 +29286,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{362} + return file_nico_nico_proto_rawDescGZIP(), []int{363} } func (x *ListRackHealthReportsRequest) GetRackId() *RackId { @@ -29241,7 +29307,7 @@ type InsertSwitchHealthReportRequest struct { func (x *InsertSwitchHealthReportRequest) Reset() { *x = InsertSwitchHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[363] + mi := &file_nico_nico_proto_msgTypes[364] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29253,7 +29319,7 @@ func (x *InsertSwitchHealthReportRequest) String() string { func (*InsertSwitchHealthReportRequest) ProtoMessage() {} func (x *InsertSwitchHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[363] + mi := &file_nico_nico_proto_msgTypes[364] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29266,7 +29332,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{363} + return file_nico_nico_proto_rawDescGZIP(), []int{364} } func (x *InsertSwitchHealthReportRequest) GetSwitchId() *SwitchId { @@ -29294,7 +29360,7 @@ type RemoveSwitchHealthReportRequest struct { func (x *RemoveSwitchHealthReportRequest) Reset() { *x = RemoveSwitchHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[364] + mi := &file_nico_nico_proto_msgTypes[365] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29306,7 +29372,7 @@ func (x *RemoveSwitchHealthReportRequest) String() string { func (*RemoveSwitchHealthReportRequest) ProtoMessage() {} func (x *RemoveSwitchHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[364] + mi := &file_nico_nico_proto_msgTypes[365] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29319,7 +29385,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{364} + return file_nico_nico_proto_rawDescGZIP(), []int{365} } func (x *RemoveSwitchHealthReportRequest) GetSwitchId() *SwitchId { @@ -29346,7 +29412,7 @@ type ListSwitchHealthReportsRequest struct { func (x *ListSwitchHealthReportsRequest) Reset() { *x = ListSwitchHealthReportsRequest{} - mi := &file_nico_nico_proto_msgTypes[365] + mi := &file_nico_nico_proto_msgTypes[366] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29358,7 +29424,7 @@ func (x *ListSwitchHealthReportsRequest) String() string { func (*ListSwitchHealthReportsRequest) ProtoMessage() {} func (x *ListSwitchHealthReportsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[365] + mi := &file_nico_nico_proto_msgTypes[366] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29371,7 +29437,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{365} + return file_nico_nico_proto_rawDescGZIP(), []int{366} } func (x *ListSwitchHealthReportsRequest) GetSwitchId() *SwitchId { @@ -29392,7 +29458,7 @@ type InsertPowerShelfHealthReportRequest struct { func (x *InsertPowerShelfHealthReportRequest) Reset() { *x = InsertPowerShelfHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[366] + mi := &file_nico_nico_proto_msgTypes[367] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29404,7 +29470,7 @@ func (x *InsertPowerShelfHealthReportRequest) String() string { func (*InsertPowerShelfHealthReportRequest) ProtoMessage() {} func (x *InsertPowerShelfHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[366] + mi := &file_nico_nico_proto_msgTypes[367] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29417,7 +29483,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{366} + return file_nico_nico_proto_rawDescGZIP(), []int{367} } func (x *InsertPowerShelfHealthReportRequest) GetPowerShelfId() *PowerShelfId { @@ -29445,7 +29511,7 @@ type RemovePowerShelfHealthReportRequest struct { func (x *RemovePowerShelfHealthReportRequest) Reset() { *x = RemovePowerShelfHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[367] + mi := &file_nico_nico_proto_msgTypes[368] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29457,7 +29523,7 @@ func (x *RemovePowerShelfHealthReportRequest) String() string { func (*RemovePowerShelfHealthReportRequest) ProtoMessage() {} func (x *RemovePowerShelfHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[367] + mi := &file_nico_nico_proto_msgTypes[368] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29470,7 +29536,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{367} + return file_nico_nico_proto_rawDescGZIP(), []int{368} } func (x *RemovePowerShelfHealthReportRequest) GetPowerShelfId() *PowerShelfId { @@ -29497,7 +29563,7 @@ type ListPowerShelfHealthReportsRequest struct { func (x *ListPowerShelfHealthReportsRequest) Reset() { *x = ListPowerShelfHealthReportsRequest{} - mi := &file_nico_nico_proto_msgTypes[368] + mi := &file_nico_nico_proto_msgTypes[369] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29509,7 +29575,7 @@ func (x *ListPowerShelfHealthReportsRequest) String() string { func (*ListPowerShelfHealthReportsRequest) ProtoMessage() {} func (x *ListPowerShelfHealthReportsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[368] + mi := &file_nico_nico_proto_msgTypes[369] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29522,7 +29588,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{368} + return file_nico_nico_proto_rawDescGZIP(), []int{369} } func (x *ListPowerShelfHealthReportsRequest) GetPowerShelfId() *PowerShelfId { @@ -29541,7 +29607,7 @@ type ListHealthReportResponse struct { func (x *ListHealthReportResponse) Reset() { *x = ListHealthReportResponse{} - mi := &file_nico_nico_proto_msgTypes[369] + mi := &file_nico_nico_proto_msgTypes[370] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29553,7 +29619,7 @@ func (x *ListHealthReportResponse) String() string { func (*ListHealthReportResponse) ProtoMessage() {} func (x *ListHealthReportResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[369] + mi := &file_nico_nico_proto_msgTypes[370] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29566,7 +29632,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{369} + return file_nico_nico_proto_rawDescGZIP(), []int{370} } func (x *ListHealthReportResponse) GetHealthReportEntries() []*HealthReportEntry { @@ -29587,7 +29653,7 @@ type RemoveMachineHealthReportRequest struct { func (x *RemoveMachineHealthReportRequest) Reset() { *x = RemoveMachineHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[370] + mi := &file_nico_nico_proto_msgTypes[371] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29599,7 +29665,7 @@ func (x *RemoveMachineHealthReportRequest) String() string { func (*RemoveMachineHealthReportRequest) ProtoMessage() {} func (x *RemoveMachineHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[370] + mi := &file_nico_nico_proto_msgTypes[371] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29612,7 +29678,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{370} + return file_nico_nico_proto_rawDescGZIP(), []int{371} } func (x *RemoveMachineHealthReportRequest) GetMachineId() *MachineId { @@ -29639,7 +29705,7 @@ type ListNVLinkDomainHealthReportsRequest struct { func (x *ListNVLinkDomainHealthReportsRequest) Reset() { *x = ListNVLinkDomainHealthReportsRequest{} - mi := &file_nico_nico_proto_msgTypes[371] + mi := &file_nico_nico_proto_msgTypes[372] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29651,7 +29717,7 @@ func (x *ListNVLinkDomainHealthReportsRequest) String() string { func (*ListNVLinkDomainHealthReportsRequest) ProtoMessage() {} func (x *ListNVLinkDomainHealthReportsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[371] + mi := &file_nico_nico_proto_msgTypes[372] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29664,7 +29730,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{371} + return file_nico_nico_proto_rawDescGZIP(), []int{372} } func (x *ListNVLinkDomainHealthReportsRequest) GetDomainId() *NVLinkDomainId { @@ -29685,7 +29751,7 @@ type InsertNVLinkDomainHealthReportRequest struct { func (x *InsertNVLinkDomainHealthReportRequest) Reset() { *x = InsertNVLinkDomainHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[372] + mi := &file_nico_nico_proto_msgTypes[373] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29697,7 +29763,7 @@ func (x *InsertNVLinkDomainHealthReportRequest) String() string { func (*InsertNVLinkDomainHealthReportRequest) ProtoMessage() {} func (x *InsertNVLinkDomainHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[372] + mi := &file_nico_nico_proto_msgTypes[373] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29710,7 +29776,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{372} + return file_nico_nico_proto_rawDescGZIP(), []int{373} } func (x *InsertNVLinkDomainHealthReportRequest) GetDomainId() *NVLinkDomainId { @@ -29738,7 +29804,7 @@ type RemoveNVLinkDomainHealthReportRequest struct { func (x *RemoveNVLinkDomainHealthReportRequest) Reset() { *x = RemoveNVLinkDomainHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[373] + mi := &file_nico_nico_proto_msgTypes[374] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29750,7 +29816,7 @@ func (x *RemoveNVLinkDomainHealthReportRequest) String() string { func (*RemoveNVLinkDomainHealthReportRequest) ProtoMessage() {} func (x *RemoveNVLinkDomainHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[373] + mi := &file_nico_nico_proto_msgTypes[374] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29763,7 +29829,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{373} + return file_nico_nico_proto_rawDescGZIP(), []int{374} } func (x *RemoveNVLinkDomainHealthReportRequest) GetDomainId() *NVLinkDomainId { @@ -29819,7 +29885,7 @@ type InstanceInterfaceStatusObservation struct { func (x *InstanceInterfaceStatusObservation) Reset() { *x = InstanceInterfaceStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[374] + mi := &file_nico_nico_proto_msgTypes[375] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29831,7 +29897,7 @@ func (x *InstanceInterfaceStatusObservation) String() string { func (*InstanceInterfaceStatusObservation) ProtoMessage() {} func (x *InstanceInterfaceStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[374] + mi := &file_nico_nico_proto_msgTypes[375] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29844,7 +29910,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{374} + return file_nico_nico_proto_rawDescGZIP(), []int{375} } func (x *InstanceInterfaceStatusObservation) GetFunctionType() InterfaceFunctionType { @@ -29915,7 +29981,7 @@ type FabricInterfaceData struct { func (x *FabricInterfaceData) Reset() { *x = FabricInterfaceData{} - mi := &file_nico_nico_proto_msgTypes[375] + mi := &file_nico_nico_proto_msgTypes[376] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29927,7 +29993,7 @@ func (x *FabricInterfaceData) String() string { func (*FabricInterfaceData) ProtoMessage() {} func (x *FabricInterfaceData) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[375] + mi := &file_nico_nico_proto_msgTypes[376] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29940,7 +30006,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{375} + return file_nico_nico_proto_rawDescGZIP(), []int{376} } func (x *FabricInterfaceData) GetInterfaceName() string { @@ -29972,7 +30038,7 @@ type LinkData struct { func (x *LinkData) Reset() { *x = LinkData{} - mi := &file_nico_nico_proto_msgTypes[376] + mi := &file_nico_nico_proto_msgTypes[377] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29984,7 +30050,7 @@ func (x *LinkData) String() string { func (*LinkData) ProtoMessage() {} func (x *LinkData) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[376] + mi := &file_nico_nico_proto_msgTypes[377] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29997,7 +30063,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{376} + return file_nico_nico_proto_rawDescGZIP(), []int{377} } func (x *LinkData) GetLinkType() string { @@ -30055,7 +30121,7 @@ type Tenant struct { func (x *Tenant) Reset() { *x = Tenant{} - mi := &file_nico_nico_proto_msgTypes[377] + mi := &file_nico_nico_proto_msgTypes[378] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30067,7 +30133,7 @@ func (x *Tenant) String() string { func (*Tenant) ProtoMessage() {} func (x *Tenant) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[377] + mi := &file_nico_nico_proto_msgTypes[378] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30080,7 +30146,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{377} + return file_nico_nico_proto_rawDescGZIP(), []int{378} } func (x *Tenant) GetOrganizationId() string { @@ -30123,7 +30189,7 @@ type CreateTenantRequest struct { func (x *CreateTenantRequest) Reset() { *x = CreateTenantRequest{} - mi := &file_nico_nico_proto_msgTypes[378] + mi := &file_nico_nico_proto_msgTypes[379] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30135,7 +30201,7 @@ func (x *CreateTenantRequest) String() string { func (*CreateTenantRequest) ProtoMessage() {} func (x *CreateTenantRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[378] + mi := &file_nico_nico_proto_msgTypes[379] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30148,7 +30214,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{378} + return file_nico_nico_proto_rawDescGZIP(), []int{379} } func (x *CreateTenantRequest) GetOrganizationId() string { @@ -30181,7 +30247,7 @@ type CreateTenantResponse struct { func (x *CreateTenantResponse) Reset() { *x = CreateTenantResponse{} - mi := &file_nico_nico_proto_msgTypes[379] + mi := &file_nico_nico_proto_msgTypes[380] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30193,7 +30259,7 @@ func (x *CreateTenantResponse) String() string { func (*CreateTenantResponse) ProtoMessage() {} func (x *CreateTenantResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[379] + mi := &file_nico_nico_proto_msgTypes[380] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30206,7 +30272,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{379} + return file_nico_nico_proto_rawDescGZIP(), []int{380} } func (x *CreateTenantResponse) GetTenant() *Tenant { @@ -30231,7 +30297,7 @@ type UpdateTenantRequest struct { func (x *UpdateTenantRequest) Reset() { *x = UpdateTenantRequest{} - mi := &file_nico_nico_proto_msgTypes[380] + mi := &file_nico_nico_proto_msgTypes[381] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30243,7 +30309,7 @@ func (x *UpdateTenantRequest) String() string { func (*UpdateTenantRequest) ProtoMessage() {} func (x *UpdateTenantRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[380] + mi := &file_nico_nico_proto_msgTypes[381] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30256,7 +30322,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{380} + return file_nico_nico_proto_rawDescGZIP(), []int{381} } func (x *UpdateTenantRequest) GetOrganizationId() string { @@ -30297,7 +30363,7 @@ type UpdateTenantResponse struct { func (x *UpdateTenantResponse) Reset() { *x = UpdateTenantResponse{} - mi := &file_nico_nico_proto_msgTypes[381] + mi := &file_nico_nico_proto_msgTypes[382] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30309,7 +30375,7 @@ func (x *UpdateTenantResponse) String() string { func (*UpdateTenantResponse) ProtoMessage() {} func (x *UpdateTenantResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[381] + mi := &file_nico_nico_proto_msgTypes[382] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30322,7 +30388,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{381} + return file_nico_nico_proto_rawDescGZIP(), []int{382} } func (x *UpdateTenantResponse) GetTenant() *Tenant { @@ -30341,7 +30407,7 @@ type FindTenantRequest struct { func (x *FindTenantRequest) Reset() { *x = FindTenantRequest{} - mi := &file_nico_nico_proto_msgTypes[382] + mi := &file_nico_nico_proto_msgTypes[383] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30353,7 +30419,7 @@ func (x *FindTenantRequest) String() string { func (*FindTenantRequest) ProtoMessage() {} func (x *FindTenantRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[382] + mi := &file_nico_nico_proto_msgTypes[383] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30366,7 +30432,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{382} + return file_nico_nico_proto_rawDescGZIP(), []int{383} } func (x *FindTenantRequest) GetTenantOrganizationId() string { @@ -30385,7 +30451,7 @@ type FindTenantResponse struct { func (x *FindTenantResponse) Reset() { *x = FindTenantResponse{} - mi := &file_nico_nico_proto_msgTypes[383] + mi := &file_nico_nico_proto_msgTypes[384] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30397,7 +30463,7 @@ func (x *FindTenantResponse) String() string { func (*FindTenantResponse) ProtoMessage() {} func (x *FindTenantResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[383] + mi := &file_nico_nico_proto_msgTypes[384] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30410,7 +30476,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{383} + return file_nico_nico_proto_rawDescGZIP(), []int{384} } func (x *FindTenantResponse) GetTenant() *Tenant { @@ -30433,7 +30499,7 @@ type TenantKeysetIdentifier struct { func (x *TenantKeysetIdentifier) Reset() { *x = TenantKeysetIdentifier{} - mi := &file_nico_nico_proto_msgTypes[384] + mi := &file_nico_nico_proto_msgTypes[385] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30445,7 +30511,7 @@ func (x *TenantKeysetIdentifier) String() string { func (*TenantKeysetIdentifier) ProtoMessage() {} func (x *TenantKeysetIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[384] + mi := &file_nico_nico_proto_msgTypes[385] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30458,7 +30524,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{384} + return file_nico_nico_proto_rawDescGZIP(), []int{385} } func (x *TenantKeysetIdentifier) GetOrganizationId() string { @@ -30485,7 +30551,7 @@ type TenantPublicKey struct { func (x *TenantPublicKey) Reset() { *x = TenantPublicKey{} - mi := &file_nico_nico_proto_msgTypes[385] + mi := &file_nico_nico_proto_msgTypes[386] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30497,7 +30563,7 @@ func (x *TenantPublicKey) String() string { func (*TenantPublicKey) ProtoMessage() {} func (x *TenantPublicKey) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[385] + mi := &file_nico_nico_proto_msgTypes[386] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30510,7 +30576,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{385} + return file_nico_nico_proto_rawDescGZIP(), []int{386} } func (x *TenantPublicKey) GetPublicKey() string { @@ -30536,7 +30602,7 @@ type TenantKeysetContent struct { func (x *TenantKeysetContent) Reset() { *x = TenantKeysetContent{} - mi := &file_nico_nico_proto_msgTypes[386] + mi := &file_nico_nico_proto_msgTypes[387] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30548,7 +30614,7 @@ func (x *TenantKeysetContent) String() string { func (*TenantKeysetContent) ProtoMessage() {} func (x *TenantKeysetContent) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[386] + mi := &file_nico_nico_proto_msgTypes[387] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30561,7 +30627,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{386} + return file_nico_nico_proto_rawDescGZIP(), []int{387} } func (x *TenantKeysetContent) GetPublicKeys() []*TenantPublicKey { @@ -30583,7 +30649,7 @@ type TenantKeyset struct { func (x *TenantKeyset) Reset() { *x = TenantKeyset{} - mi := &file_nico_nico_proto_msgTypes[387] + mi := &file_nico_nico_proto_msgTypes[388] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30595,7 +30661,7 @@ func (x *TenantKeyset) String() string { func (*TenantKeyset) ProtoMessage() {} func (x *TenantKeyset) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[387] + mi := &file_nico_nico_proto_msgTypes[388] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30608,7 +30674,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{387} + return file_nico_nico_proto_rawDescGZIP(), []int{388} } func (x *TenantKeyset) GetKeysetIdentifier() *TenantKeysetIdentifier { @@ -30647,7 +30713,7 @@ type CreateTenantKeysetRequest struct { func (x *CreateTenantKeysetRequest) Reset() { *x = CreateTenantKeysetRequest{} - mi := &file_nico_nico_proto_msgTypes[388] + mi := &file_nico_nico_proto_msgTypes[389] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30659,7 +30725,7 @@ func (x *CreateTenantKeysetRequest) String() string { func (*CreateTenantKeysetRequest) ProtoMessage() {} func (x *CreateTenantKeysetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[388] + mi := &file_nico_nico_proto_msgTypes[389] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30672,7 +30738,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{388} + return file_nico_nico_proto_rawDescGZIP(), []int{389} } func (x *CreateTenantKeysetRequest) GetKeysetIdentifier() *TenantKeysetIdentifier { @@ -30705,7 +30771,7 @@ type CreateTenantKeysetResponse struct { func (x *CreateTenantKeysetResponse) Reset() { *x = CreateTenantKeysetResponse{} - mi := &file_nico_nico_proto_msgTypes[389] + mi := &file_nico_nico_proto_msgTypes[390] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30717,7 +30783,7 @@ func (x *CreateTenantKeysetResponse) String() string { func (*CreateTenantKeysetResponse) ProtoMessage() {} func (x *CreateTenantKeysetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[389] + mi := &file_nico_nico_proto_msgTypes[390] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30730,7 +30796,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{389} + return file_nico_nico_proto_rawDescGZIP(), []int{390} } func (x *CreateTenantKeysetResponse) GetKeyset() *TenantKeyset { @@ -30749,7 +30815,7 @@ type TenantKeySetList struct { func (x *TenantKeySetList) Reset() { *x = TenantKeySetList{} - mi := &file_nico_nico_proto_msgTypes[390] + mi := &file_nico_nico_proto_msgTypes[391] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30761,7 +30827,7 @@ func (x *TenantKeySetList) String() string { func (*TenantKeySetList) ProtoMessage() {} func (x *TenantKeySetList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[390] + mi := &file_nico_nico_proto_msgTypes[391] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30774,7 +30840,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{390} + return file_nico_nico_proto_rawDescGZIP(), []int{391} } func (x *TenantKeySetList) GetKeyset() []*TenantKeyset { @@ -30802,7 +30868,7 @@ type UpdateTenantKeysetRequest struct { func (x *UpdateTenantKeysetRequest) Reset() { *x = UpdateTenantKeysetRequest{} - mi := &file_nico_nico_proto_msgTypes[391] + mi := &file_nico_nico_proto_msgTypes[392] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30814,7 +30880,7 @@ func (x *UpdateTenantKeysetRequest) String() string { func (*UpdateTenantKeysetRequest) ProtoMessage() {} func (x *UpdateTenantKeysetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[391] + mi := &file_nico_nico_proto_msgTypes[392] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30827,7 +30893,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{391} + return file_nico_nico_proto_rawDescGZIP(), []int{392} } func (x *UpdateTenantKeysetRequest) GetKeysetIdentifier() *TenantKeysetIdentifier { @@ -30866,7 +30932,7 @@ type UpdateTenantKeysetResponse struct { func (x *UpdateTenantKeysetResponse) Reset() { *x = UpdateTenantKeysetResponse{} - mi := &file_nico_nico_proto_msgTypes[392] + mi := &file_nico_nico_proto_msgTypes[393] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30878,7 +30944,7 @@ func (x *UpdateTenantKeysetResponse) String() string { func (*UpdateTenantKeysetResponse) ProtoMessage() {} func (x *UpdateTenantKeysetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[392] + mi := &file_nico_nico_proto_msgTypes[393] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30891,7 +30957,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{392} + return file_nico_nico_proto_rawDescGZIP(), []int{393} } type DeleteTenantKeysetRequest struct { @@ -30903,7 +30969,7 @@ type DeleteTenantKeysetRequest struct { func (x *DeleteTenantKeysetRequest) Reset() { *x = DeleteTenantKeysetRequest{} - mi := &file_nico_nico_proto_msgTypes[393] + mi := &file_nico_nico_proto_msgTypes[394] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30915,7 +30981,7 @@ func (x *DeleteTenantKeysetRequest) String() string { func (*DeleteTenantKeysetRequest) ProtoMessage() {} func (x *DeleteTenantKeysetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[393] + mi := &file_nico_nico_proto_msgTypes[394] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30928,7 +30994,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{393} + return file_nico_nico_proto_rawDescGZIP(), []int{394} } func (x *DeleteTenantKeysetRequest) GetKeysetIdentifier() *TenantKeysetIdentifier { @@ -30946,7 +31012,7 @@ type DeleteTenantKeysetResponse struct { func (x *DeleteTenantKeysetResponse) Reset() { *x = DeleteTenantKeysetResponse{} - mi := &file_nico_nico_proto_msgTypes[394] + mi := &file_nico_nico_proto_msgTypes[395] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30958,7 +31024,7 @@ func (x *DeleteTenantKeysetResponse) String() string { func (*DeleteTenantKeysetResponse) ProtoMessage() {} func (x *DeleteTenantKeysetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[394] + mi := &file_nico_nico_proto_msgTypes[395] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30971,7 +31037,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{394} + return file_nico_nico_proto_rawDescGZIP(), []int{395} } type TenantKeysetSearchFilter struct { @@ -30983,7 +31049,7 @@ type TenantKeysetSearchFilter struct { func (x *TenantKeysetSearchFilter) Reset() { *x = TenantKeysetSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[395] + mi := &file_nico_nico_proto_msgTypes[396] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30995,7 +31061,7 @@ func (x *TenantKeysetSearchFilter) String() string { func (*TenantKeysetSearchFilter) ProtoMessage() {} func (x *TenantKeysetSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[395] + mi := &file_nico_nico_proto_msgTypes[396] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31008,7 +31074,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{395} + return file_nico_nico_proto_rawDescGZIP(), []int{396} } func (x *TenantKeysetSearchFilter) GetTenantOrgId() string { @@ -31027,7 +31093,7 @@ type TenantKeysetIdList struct { func (x *TenantKeysetIdList) Reset() { *x = TenantKeysetIdList{} - mi := &file_nico_nico_proto_msgTypes[396] + mi := &file_nico_nico_proto_msgTypes[397] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31039,7 +31105,7 @@ func (x *TenantKeysetIdList) String() string { func (*TenantKeysetIdList) ProtoMessage() {} func (x *TenantKeysetIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[396] + mi := &file_nico_nico_proto_msgTypes[397] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31052,7 +31118,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{396} + return file_nico_nico_proto_rawDescGZIP(), []int{397} } func (x *TenantKeysetIdList) GetKeysetIds() []*TenantKeysetIdentifier { @@ -31072,7 +31138,7 @@ type TenantKeysetsByIdsRequest struct { func (x *TenantKeysetsByIdsRequest) Reset() { *x = TenantKeysetsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[397] + mi := &file_nico_nico_proto_msgTypes[398] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31084,7 +31150,7 @@ func (x *TenantKeysetsByIdsRequest) String() string { func (*TenantKeysetsByIdsRequest) ProtoMessage() {} func (x *TenantKeysetsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[397] + mi := &file_nico_nico_proto_msgTypes[398] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31097,7 +31163,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{397} + return file_nico_nico_proto_rawDescGZIP(), []int{398} } func (x *TenantKeysetsByIdsRequest) GetKeysetIds() []*TenantKeysetIdentifier { @@ -31129,7 +31195,7 @@ type ValidateTenantPublicKeyRequest struct { func (x *ValidateTenantPublicKeyRequest) Reset() { *x = ValidateTenantPublicKeyRequest{} - mi := &file_nico_nico_proto_msgTypes[398] + mi := &file_nico_nico_proto_msgTypes[399] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31141,7 +31207,7 @@ func (x *ValidateTenantPublicKeyRequest) String() string { func (*ValidateTenantPublicKeyRequest) ProtoMessage() {} func (x *ValidateTenantPublicKeyRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[398] + mi := &file_nico_nico_proto_msgTypes[399] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31154,7 +31220,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{398} + return file_nico_nico_proto_rawDescGZIP(), []int{399} } func (x *ValidateTenantPublicKeyRequest) GetInstanceId() string { @@ -31180,7 +31246,7 @@ type ValidateTenantPublicKeyResponse struct { func (x *ValidateTenantPublicKeyResponse) Reset() { *x = ValidateTenantPublicKeyResponse{} - mi := &file_nico_nico_proto_msgTypes[399] + mi := &file_nico_nico_proto_msgTypes[400] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31192,7 +31258,7 @@ func (x *ValidateTenantPublicKeyResponse) String() string { func (*ValidateTenantPublicKeyResponse) ProtoMessage() {} func (x *ValidateTenantPublicKeyResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[399] + mi := &file_nico_nico_proto_msgTypes[400] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31205,7 +31271,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{399} + return file_nico_nico_proto_rawDescGZIP(), []int{400} } type ListResourcePoolsRequest struct { @@ -31217,7 +31283,7 @@ type ListResourcePoolsRequest struct { func (x *ListResourcePoolsRequest) Reset() { *x = ListResourcePoolsRequest{} - mi := &file_nico_nico_proto_msgTypes[400] + mi := &file_nico_nico_proto_msgTypes[401] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31229,7 +31295,7 @@ func (x *ListResourcePoolsRequest) String() string { func (*ListResourcePoolsRequest) ProtoMessage() {} func (x *ListResourcePoolsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[400] + mi := &file_nico_nico_proto_msgTypes[401] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31242,7 +31308,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{400} + return file_nico_nico_proto_rawDescGZIP(), []int{401} } func (x *ListResourcePoolsRequest) GetAutoAssignable() bool { @@ -31261,7 +31327,7 @@ type ResourcePools struct { func (x *ResourcePools) Reset() { *x = ResourcePools{} - mi := &file_nico_nico_proto_msgTypes[401] + mi := &file_nico_nico_proto_msgTypes[402] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31273,7 +31339,7 @@ func (x *ResourcePools) String() string { func (*ResourcePools) ProtoMessage() {} func (x *ResourcePools) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[401] + mi := &file_nico_nico_proto_msgTypes[402] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31286,7 +31352,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{401} + return file_nico_nico_proto_rawDescGZIP(), []int{402} } func (x *ResourcePools) GetPools() []*ResourcePool { @@ -31309,7 +31375,7 @@ type ResourcePool struct { func (x *ResourcePool) Reset() { *x = ResourcePool{} - mi := &file_nico_nico_proto_msgTypes[402] + mi := &file_nico_nico_proto_msgTypes[403] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31321,7 +31387,7 @@ func (x *ResourcePool) String() string { func (*ResourcePool) ProtoMessage() {} func (x *ResourcePool) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[402] + mi := &file_nico_nico_proto_msgTypes[403] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31334,7 +31400,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{402} + return file_nico_nico_proto_rawDescGZIP(), []int{403} } func (x *ResourcePool) GetName() string { @@ -31382,7 +31448,7 @@ type GrowResourcePoolRequest struct { func (x *GrowResourcePoolRequest) Reset() { *x = GrowResourcePoolRequest{} - mi := &file_nico_nico_proto_msgTypes[403] + mi := &file_nico_nico_proto_msgTypes[404] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31394,7 +31460,7 @@ func (x *GrowResourcePoolRequest) String() string { func (*GrowResourcePoolRequest) ProtoMessage() {} func (x *GrowResourcePoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[403] + mi := &file_nico_nico_proto_msgTypes[404] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31407,7 +31473,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{403} + return file_nico_nico_proto_rawDescGZIP(), []int{404} } func (x *GrowResourcePoolRequest) GetText() string { @@ -31425,7 +31491,7 @@ type GrowResourcePoolResponse struct { func (x *GrowResourcePoolResponse) Reset() { *x = GrowResourcePoolResponse{} - mi := &file_nico_nico_proto_msgTypes[404] + mi := &file_nico_nico_proto_msgTypes[405] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31437,7 +31503,7 @@ func (x *GrowResourcePoolResponse) String() string { func (*GrowResourcePoolResponse) ProtoMessage() {} func (x *GrowResourcePoolResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[404] + mi := &file_nico_nico_proto_msgTypes[405] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31450,7 +31516,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{404} + return file_nico_nico_proto_rawDescGZIP(), []int{405} } type Range struct { @@ -31463,7 +31529,7 @@ type Range struct { func (x *Range) Reset() { *x = Range{} - mi := &file_nico_nico_proto_msgTypes[405] + mi := &file_nico_nico_proto_msgTypes[406] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31475,7 +31541,7 @@ func (x *Range) String() string { func (*Range) ProtoMessage() {} func (x *Range) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[405] + mi := &file_nico_nico_proto_msgTypes[406] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31488,7 +31554,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{405} + return file_nico_nico_proto_rawDescGZIP(), []int{406} } func (x *Range) GetStart() string { @@ -31515,7 +31581,7 @@ type MigrateVpcVniResponse struct { func (x *MigrateVpcVniResponse) Reset() { *x = MigrateVpcVniResponse{} - mi := &file_nico_nico_proto_msgTypes[406] + mi := &file_nico_nico_proto_msgTypes[407] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31527,7 +31593,7 @@ func (x *MigrateVpcVniResponse) String() string { func (*MigrateVpcVniResponse) ProtoMessage() {} func (x *MigrateVpcVniResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[406] + mi := &file_nico_nico_proto_msgTypes[407] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31540,7 +31606,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{406} + return file_nico_nico_proto_rawDescGZIP(), []int{407} } func (x *MigrateVpcVniResponse) GetUpdatedCount() uint32 { @@ -31570,7 +31636,7 @@ type MaintenanceRequest struct { func (x *MaintenanceRequest) Reset() { *x = MaintenanceRequest{} - mi := &file_nico_nico_proto_msgTypes[407] + mi := &file_nico_nico_proto_msgTypes[408] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31582,7 +31648,7 @@ func (x *MaintenanceRequest) String() string { func (*MaintenanceRequest) ProtoMessage() {} func (x *MaintenanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[407] + mi := &file_nico_nico_proto_msgTypes[408] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31595,7 +31661,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{407} + return file_nico_nico_proto_rawDescGZIP(), []int{408} } func (x *MaintenanceRequest) GetOperation() MaintenanceOperation { @@ -31630,7 +31696,7 @@ type SetDynamicConfigRequest struct { func (x *SetDynamicConfigRequest) Reset() { *x = SetDynamicConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[408] + mi := &file_nico_nico_proto_msgTypes[409] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31642,7 +31708,7 @@ func (x *SetDynamicConfigRequest) String() string { func (*SetDynamicConfigRequest) ProtoMessage() {} func (x *SetDynamicConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[408] + mi := &file_nico_nico_proto_msgTypes[409] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31655,7 +31721,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{408} + return file_nico_nico_proto_rawDescGZIP(), []int{409} } func (x *SetDynamicConfigRequest) GetSetting() ConfigSetting { @@ -31688,7 +31754,7 @@ type FindIpAddressRequest struct { func (x *FindIpAddressRequest) Reset() { *x = FindIpAddressRequest{} - mi := &file_nico_nico_proto_msgTypes[409] + mi := &file_nico_nico_proto_msgTypes[410] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31700,7 +31766,7 @@ func (x *FindIpAddressRequest) String() string { func (*FindIpAddressRequest) ProtoMessage() {} func (x *FindIpAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[409] + mi := &file_nico_nico_proto_msgTypes[410] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31713,7 +31779,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{409} + return file_nico_nico_proto_rawDescGZIP(), []int{410} } func (x *FindIpAddressRequest) GetIp() string { @@ -31733,7 +31799,7 @@ type FindIpAddressResponse struct { func (x *FindIpAddressResponse) Reset() { *x = FindIpAddressResponse{} - mi := &file_nico_nico_proto_msgTypes[410] + mi := &file_nico_nico_proto_msgTypes[411] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31745,7 +31811,7 @@ func (x *FindIpAddressResponse) String() string { func (*FindIpAddressResponse) ProtoMessage() {} func (x *FindIpAddressResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[410] + mi := &file_nico_nico_proto_msgTypes[411] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31758,7 +31824,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{410} + return file_nico_nico_proto_rawDescGZIP(), []int{411} } func (x *FindIpAddressResponse) GetMatches() []*IpAddressMatch { @@ -31784,7 +31850,7 @@ type IdentifyUuidRequest struct { func (x *IdentifyUuidRequest) Reset() { *x = IdentifyUuidRequest{} - mi := &file_nico_nico_proto_msgTypes[411] + mi := &file_nico_nico_proto_msgTypes[412] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31796,7 +31862,7 @@ func (x *IdentifyUuidRequest) String() string { func (*IdentifyUuidRequest) ProtoMessage() {} func (x *IdentifyUuidRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[411] + mi := &file_nico_nico_proto_msgTypes[412] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31809,7 +31875,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{411} + return file_nico_nico_proto_rawDescGZIP(), []int{412} } func (x *IdentifyUuidRequest) GetUuid() *UUID { @@ -31829,7 +31895,7 @@ type IdentifyUuidResponse struct { func (x *IdentifyUuidResponse) Reset() { *x = IdentifyUuidResponse{} - mi := &file_nico_nico_proto_msgTypes[412] + mi := &file_nico_nico_proto_msgTypes[413] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31841,7 +31907,7 @@ func (x *IdentifyUuidResponse) String() string { func (*IdentifyUuidResponse) ProtoMessage() {} func (x *IdentifyUuidResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[412] + mi := &file_nico_nico_proto_msgTypes[413] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31854,7 +31920,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{412} + return file_nico_nico_proto_rawDescGZIP(), []int{413} } func (x *IdentifyUuidResponse) GetUuid() *UUID { @@ -31884,7 +31950,7 @@ type FindBmcIpsRequest struct { func (x *FindBmcIpsRequest) Reset() { *x = FindBmcIpsRequest{} - mi := &file_nico_nico_proto_msgTypes[413] + mi := &file_nico_nico_proto_msgTypes[414] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31896,7 +31962,7 @@ func (x *FindBmcIpsRequest) String() string { func (*FindBmcIpsRequest) ProtoMessage() {} func (x *FindBmcIpsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[413] + mi := &file_nico_nico_proto_msgTypes[414] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31909,7 +31975,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{413} + return file_nico_nico_proto_rawDescGZIP(), []int{414} } func (x *FindBmcIpsRequest) GetLookupBy() isFindBmcIpsRequest_LookupBy { @@ -31962,7 +32028,7 @@ type IdentifyMacRequest struct { func (x *IdentifyMacRequest) Reset() { *x = IdentifyMacRequest{} - mi := &file_nico_nico_proto_msgTypes[414] + mi := &file_nico_nico_proto_msgTypes[415] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31974,7 +32040,7 @@ func (x *IdentifyMacRequest) String() string { func (*IdentifyMacRequest) ProtoMessage() {} func (x *IdentifyMacRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[414] + mi := &file_nico_nico_proto_msgTypes[415] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31987,7 +32053,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{414} + return file_nico_nico_proto_rawDescGZIP(), []int{415} } func (x *IdentifyMacRequest) GetMacAddress() string { @@ -32008,7 +32074,7 @@ type IdentifyMacResponse struct { func (x *IdentifyMacResponse) Reset() { *x = IdentifyMacResponse{} - mi := &file_nico_nico_proto_msgTypes[415] + mi := &file_nico_nico_proto_msgTypes[416] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32020,7 +32086,7 @@ func (x *IdentifyMacResponse) String() string { func (*IdentifyMacResponse) ProtoMessage() {} func (x *IdentifyMacResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[415] + mi := &file_nico_nico_proto_msgTypes[416] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32033,7 +32099,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{415} + return file_nico_nico_proto_rawDescGZIP(), []int{416} } func (x *IdentifyMacResponse) GetMacAddress() string { @@ -32068,7 +32134,7 @@ type IdentifySerialRequest struct { func (x *IdentifySerialRequest) Reset() { *x = IdentifySerialRequest{} - mi := &file_nico_nico_proto_msgTypes[416] + mi := &file_nico_nico_proto_msgTypes[417] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32080,7 +32146,7 @@ func (x *IdentifySerialRequest) String() string { func (*IdentifySerialRequest) ProtoMessage() {} func (x *IdentifySerialRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[416] + mi := &file_nico_nico_proto_msgTypes[417] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32093,7 +32159,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{416} + return file_nico_nico_proto_rawDescGZIP(), []int{417} } func (x *IdentifySerialRequest) GetSerialNumber() string { @@ -32120,7 +32186,7 @@ type IdentifySerialResponse struct { func (x *IdentifySerialResponse) Reset() { *x = IdentifySerialResponse{} - mi := &file_nico_nico_proto_msgTypes[417] + mi := &file_nico_nico_proto_msgTypes[418] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32132,7 +32198,7 @@ func (x *IdentifySerialResponse) String() string { func (*IdentifySerialResponse) ProtoMessage() {} func (x *IdentifySerialResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[417] + mi := &file_nico_nico_proto_msgTypes[418] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32145,7 +32211,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{417} + return file_nico_nico_proto_rawDescGZIP(), []int{418} } func (x *IdentifySerialResponse) GetSerialNumber() string { @@ -32176,7 +32242,7 @@ type DpuReprovisioningRequest struct { func (x *DpuReprovisioningRequest) Reset() { *x = DpuReprovisioningRequest{} - mi := &file_nico_nico_proto_msgTypes[418] + mi := &file_nico_nico_proto_msgTypes[419] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32188,7 +32254,7 @@ func (x *DpuReprovisioningRequest) String() string { func (*DpuReprovisioningRequest) ProtoMessage() {} func (x *DpuReprovisioningRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[418] + mi := &file_nico_nico_proto_msgTypes[419] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32201,7 +32267,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{418} + return file_nico_nico_proto_rawDescGZIP(), []int{419} } func (x *DpuReprovisioningRequest) GetDpuId() *MachineId { @@ -32247,7 +32313,7 @@ type DpuReprovisioningListRequest struct { func (x *DpuReprovisioningListRequest) Reset() { *x = DpuReprovisioningListRequest{} - mi := &file_nico_nico_proto_msgTypes[419] + mi := &file_nico_nico_proto_msgTypes[420] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32259,7 +32325,7 @@ func (x *DpuReprovisioningListRequest) String() string { func (*DpuReprovisioningListRequest) ProtoMessage() {} func (x *DpuReprovisioningListRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[419] + mi := &file_nico_nico_proto_msgTypes[420] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32272,7 +32338,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{419} + return file_nico_nico_proto_rawDescGZIP(), []int{420} } type DpuReprovisioningListResponse struct { @@ -32284,7 +32350,7 @@ type DpuReprovisioningListResponse struct { func (x *DpuReprovisioningListResponse) Reset() { *x = DpuReprovisioningListResponse{} - mi := &file_nico_nico_proto_msgTypes[420] + mi := &file_nico_nico_proto_msgTypes[421] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32296,7 +32362,7 @@ func (x *DpuReprovisioningListResponse) String() string { func (*DpuReprovisioningListResponse) ProtoMessage() {} func (x *DpuReprovisioningListResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[420] + mi := &file_nico_nico_proto_msgTypes[421] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32309,7 +32375,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{420} + return file_nico_nico_proto_rawDescGZIP(), []int{421} } func (x *DpuReprovisioningListResponse) GetDpus() []*DpuReprovisioningListResponse_DpuReprovisioningListItem { @@ -32330,7 +32396,7 @@ type HostReprovisioningRequest struct { func (x *HostReprovisioningRequest) Reset() { *x = HostReprovisioningRequest{} - mi := &file_nico_nico_proto_msgTypes[421] + mi := &file_nico_nico_proto_msgTypes[422] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32342,7 +32408,7 @@ func (x *HostReprovisioningRequest) String() string { func (*HostReprovisioningRequest) ProtoMessage() {} func (x *HostReprovisioningRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[421] + mi := &file_nico_nico_proto_msgTypes[422] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32355,7 +32421,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{421} + return file_nico_nico_proto_rawDescGZIP(), []int{422} } func (x *HostReprovisioningRequest) GetMachineId() *MachineId { @@ -32387,7 +32453,7 @@ type HostReprovisioningListRequest struct { func (x *HostReprovisioningListRequest) Reset() { *x = HostReprovisioningListRequest{} - mi := &file_nico_nico_proto_msgTypes[422] + mi := &file_nico_nico_proto_msgTypes[423] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32399,7 +32465,7 @@ func (x *HostReprovisioningListRequest) String() string { func (*HostReprovisioningListRequest) ProtoMessage() {} func (x *HostReprovisioningListRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[422] + mi := &file_nico_nico_proto_msgTypes[423] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32412,7 +32478,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{422} + return file_nico_nico_proto_rawDescGZIP(), []int{423} } type HostReprovisioningListResponse struct { @@ -32424,7 +32490,7 @@ type HostReprovisioningListResponse struct { func (x *HostReprovisioningListResponse) Reset() { *x = HostReprovisioningListResponse{} - mi := &file_nico_nico_proto_msgTypes[423] + mi := &file_nico_nico_proto_msgTypes[424] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32436,7 +32502,7 @@ func (x *HostReprovisioningListResponse) String() string { func (*HostReprovisioningListResponse) ProtoMessage() {} func (x *HostReprovisioningListResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[423] + mi := &file_nico_nico_proto_msgTypes[424] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32449,7 +32515,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{423} + return file_nico_nico_proto_rawDescGZIP(), []int{424} } func (x *HostReprovisioningListResponse) GetHosts() []*HostReprovisioningListResponse_HostReprovisioningListItem { @@ -32468,7 +32534,7 @@ type DpuOsOperationalState struct { func (x *DpuOsOperationalState) Reset() { *x = DpuOsOperationalState{} - mi := &file_nico_nico_proto_msgTypes[424] + mi := &file_nico_nico_proto_msgTypes[425] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32480,7 +32546,7 @@ func (x *DpuOsOperationalState) String() string { func (*DpuOsOperationalState) ProtoMessage() {} func (x *DpuOsOperationalState) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[424] + mi := &file_nico_nico_proto_msgTypes[425] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32493,7 +32559,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{424} + return file_nico_nico_proto_rawDescGZIP(), []int{425} } func (x *DpuOsOperationalState) GetStateDetail() string { @@ -32514,7 +32580,7 @@ type DpuRepresentorStatus struct { func (x *DpuRepresentorStatus) Reset() { *x = DpuRepresentorStatus{} - mi := &file_nico_nico_proto_msgTypes[425] + mi := &file_nico_nico_proto_msgTypes[426] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32526,7 +32592,7 @@ func (x *DpuRepresentorStatus) String() string { func (*DpuRepresentorStatus) ProtoMessage() {} func (x *DpuRepresentorStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[425] + mi := &file_nico_nico_proto_msgTypes[426] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32539,7 +32605,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{425} + return file_nico_nico_proto_rawDescGZIP(), []int{426} } func (x *DpuRepresentorStatus) GetName() string { @@ -32575,7 +32641,7 @@ type DpuInfoStatusObservation struct { func (x *DpuInfoStatusObservation) Reset() { *x = DpuInfoStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[426] + mi := &file_nico_nico_proto_msgTypes[427] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32587,7 +32653,7 @@ func (x *DpuInfoStatusObservation) String() string { func (*DpuInfoStatusObservation) ProtoMessage() {} func (x *DpuInfoStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[426] + mi := &file_nico_nico_proto_msgTypes[427] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32600,7 +32666,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{426} + return file_nico_nico_proto_rawDescGZIP(), []int{427} } func (x *DpuInfoStatusObservation) GetOsOperationalState() *DpuOsOperationalState { @@ -32642,7 +32708,7 @@ type DpuInfo struct { func (x *DpuInfo) Reset() { *x = DpuInfo{} - mi := &file_nico_nico_proto_msgTypes[427] + mi := &file_nico_nico_proto_msgTypes[428] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32654,7 +32720,7 @@ func (x *DpuInfo) String() string { func (*DpuInfo) ProtoMessage() {} func (x *DpuInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[427] + mi := &file_nico_nico_proto_msgTypes[428] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32667,7 +32733,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{427} + return file_nico_nico_proto_rawDescGZIP(), []int{428} } func (x *DpuInfo) GetId() string { @@ -32699,7 +32765,7 @@ type GetDpuInfoListRequest struct { func (x *GetDpuInfoListRequest) Reset() { *x = GetDpuInfoListRequest{} - mi := &file_nico_nico_proto_msgTypes[428] + mi := &file_nico_nico_proto_msgTypes[429] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32711,7 +32777,7 @@ func (x *GetDpuInfoListRequest) String() string { func (*GetDpuInfoListRequest) ProtoMessage() {} func (x *GetDpuInfoListRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[428] + mi := &file_nico_nico_proto_msgTypes[429] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32724,7 +32790,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{428} + return file_nico_nico_proto_rawDescGZIP(), []int{429} } type GetDpuInfoListResponse struct { @@ -32736,7 +32802,7 @@ type GetDpuInfoListResponse struct { func (x *GetDpuInfoListResponse) Reset() { *x = GetDpuInfoListResponse{} - mi := &file_nico_nico_proto_msgTypes[429] + mi := &file_nico_nico_proto_msgTypes[430] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32748,7 +32814,7 @@ func (x *GetDpuInfoListResponse) String() string { func (*GetDpuInfoListResponse) ProtoMessage() {} func (x *GetDpuInfoListResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[429] + mi := &file_nico_nico_proto_msgTypes[430] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32761,7 +32827,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{429} + return file_nico_nico_proto_rawDescGZIP(), []int{430} } func (x *GetDpuInfoListResponse) GetDpuList() []*DpuInfo { @@ -32782,7 +32848,7 @@ type IpAddressMatch struct { func (x *IpAddressMatch) Reset() { *x = IpAddressMatch{} - mi := &file_nico_nico_proto_msgTypes[430] + mi := &file_nico_nico_proto_msgTypes[431] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32794,7 +32860,7 @@ func (x *IpAddressMatch) String() string { func (*IpAddressMatch) ProtoMessage() {} func (x *IpAddressMatch) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[430] + mi := &file_nico_nico_proto_msgTypes[431] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32807,7 +32873,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{430} + return file_nico_nico_proto_rawDescGZIP(), []int{431} } func (x *IpAddressMatch) GetIpType() IpType { @@ -32842,7 +32908,7 @@ type MachineBootOverride struct { func (x *MachineBootOverride) Reset() { *x = MachineBootOverride{} - mi := &file_nico_nico_proto_msgTypes[431] + mi := &file_nico_nico_proto_msgTypes[432] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32854,7 +32920,7 @@ func (x *MachineBootOverride) String() string { func (*MachineBootOverride) ProtoMessage() {} func (x *MachineBootOverride) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[431] + mi := &file_nico_nico_proto_msgTypes[432] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32867,7 +32933,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{431} + return file_nico_nico_proto_rawDescGZIP(), []int{432} } func (x *MachineBootOverride) GetMachineInterfaceId() *MachineInterfaceId { @@ -32904,7 +32970,7 @@ type ConnectedDevice struct { func (x *ConnectedDevice) Reset() { *x = ConnectedDevice{} - mi := &file_nico_nico_proto_msgTypes[432] + mi := &file_nico_nico_proto_msgTypes[433] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32916,7 +32982,7 @@ func (x *ConnectedDevice) String() string { func (*ConnectedDevice) ProtoMessage() {} func (x *ConnectedDevice) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[432] + mi := &file_nico_nico_proto_msgTypes[433] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32929,7 +32995,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{432} + return file_nico_nico_proto_rawDescGZIP(), []int{433} } func (x *ConnectedDevice) GetId() *MachineId { @@ -32969,7 +33035,7 @@ type ConnectedDeviceList struct { func (x *ConnectedDeviceList) Reset() { *x = ConnectedDeviceList{} - mi := &file_nico_nico_proto_msgTypes[433] + mi := &file_nico_nico_proto_msgTypes[434] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32981,7 +33047,7 @@ func (x *ConnectedDeviceList) String() string { func (*ConnectedDeviceList) ProtoMessage() {} func (x *ConnectedDeviceList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[433] + mi := &file_nico_nico_proto_msgTypes[434] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32994,7 +33060,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{433} + return file_nico_nico_proto_rawDescGZIP(), []int{434} } func (x *ConnectedDeviceList) GetConnectedDevices() []*ConnectedDevice { @@ -33013,7 +33079,7 @@ type BmcIpList struct { func (x *BmcIpList) Reset() { *x = BmcIpList{} - mi := &file_nico_nico_proto_msgTypes[434] + mi := &file_nico_nico_proto_msgTypes[435] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33025,7 +33091,7 @@ func (x *BmcIpList) String() string { func (*BmcIpList) ProtoMessage() {} func (x *BmcIpList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[434] + mi := &file_nico_nico_proto_msgTypes[435] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33038,7 +33104,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{434} + return file_nico_nico_proto_rawDescGZIP(), []int{435} } func (x *BmcIpList) GetBmcIps() []string { @@ -33057,7 +33123,7 @@ type BmcIp struct { func (x *BmcIp) Reset() { *x = BmcIp{} - mi := &file_nico_nico_proto_msgTypes[435] + mi := &file_nico_nico_proto_msgTypes[436] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33069,7 +33135,7 @@ func (x *BmcIp) String() string { func (*BmcIp) ProtoMessage() {} func (x *BmcIp) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[435] + mi := &file_nico_nico_proto_msgTypes[436] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33082,7 +33148,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{435} + return file_nico_nico_proto_rawDescGZIP(), []int{436} } func (x *BmcIp) GetBmcIp() string { @@ -33102,7 +33168,7 @@ type MacAddressBmcIp struct { func (x *MacAddressBmcIp) Reset() { *x = MacAddressBmcIp{} - mi := &file_nico_nico_proto_msgTypes[436] + mi := &file_nico_nico_proto_msgTypes[437] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33114,7 +33180,7 @@ func (x *MacAddressBmcIp) String() string { func (*MacAddressBmcIp) ProtoMessage() {} func (x *MacAddressBmcIp) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[436] + mi := &file_nico_nico_proto_msgTypes[437] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33127,7 +33193,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{436} + return file_nico_nico_proto_rawDescGZIP(), []int{437} } func (x *MacAddressBmcIp) GetBmcIp() string { @@ -33153,7 +33219,7 @@ type MachineIdBmcIpPairs struct { func (x *MachineIdBmcIpPairs) Reset() { *x = MachineIdBmcIpPairs{} - mi := &file_nico_nico_proto_msgTypes[437] + mi := &file_nico_nico_proto_msgTypes[438] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33165,7 +33231,7 @@ func (x *MachineIdBmcIpPairs) String() string { func (*MachineIdBmcIpPairs) ProtoMessage() {} func (x *MachineIdBmcIpPairs) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[437] + mi := &file_nico_nico_proto_msgTypes[438] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33178,7 +33244,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{437} + return file_nico_nico_proto_rawDescGZIP(), []int{438} } func (x *MachineIdBmcIpPairs) GetPairs() []*MachineIdBmcIp { @@ -33198,7 +33264,7 @@ type MachineIdBmcIp struct { func (x *MachineIdBmcIp) Reset() { *x = MachineIdBmcIp{} - mi := &file_nico_nico_proto_msgTypes[438] + mi := &file_nico_nico_proto_msgTypes[439] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33210,7 +33276,7 @@ func (x *MachineIdBmcIp) String() string { func (*MachineIdBmcIp) ProtoMessage() {} func (x *MachineIdBmcIp) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[438] + mi := &file_nico_nico_proto_msgTypes[439] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33223,7 +33289,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{438} + return file_nico_nico_proto_rawDescGZIP(), []int{439} } func (x *MachineIdBmcIp) GetMachineId() *MachineId { @@ -33256,7 +33322,7 @@ type NetworkDevice struct { func (x *NetworkDevice) Reset() { *x = NetworkDevice{} - mi := &file_nico_nico_proto_msgTypes[439] + mi := &file_nico_nico_proto_msgTypes[440] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33268,7 +33334,7 @@ func (x *NetworkDevice) String() string { func (*NetworkDevice) ProtoMessage() {} func (x *NetworkDevice) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[439] + mi := &file_nico_nico_proto_msgTypes[440] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33281,7 +33347,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{439} + return file_nico_nico_proto_rawDescGZIP(), []int{440} } func (x *NetworkDevice) GetId() string { @@ -33342,7 +33408,7 @@ type NetworkTopologyRequest struct { func (x *NetworkTopologyRequest) Reset() { *x = NetworkTopologyRequest{} - mi := &file_nico_nico_proto_msgTypes[440] + mi := &file_nico_nico_proto_msgTypes[441] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33354,7 +33420,7 @@ func (x *NetworkTopologyRequest) String() string { func (*NetworkTopologyRequest) ProtoMessage() {} func (x *NetworkTopologyRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[440] + mi := &file_nico_nico_proto_msgTypes[441] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33367,7 +33433,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{440} + return file_nico_nico_proto_rawDescGZIP(), []int{441} } func (x *NetworkTopologyRequest) GetId() string { @@ -33386,7 +33452,7 @@ type NetworkDeviceIdList struct { func (x *NetworkDeviceIdList) Reset() { *x = NetworkDeviceIdList{} - mi := &file_nico_nico_proto_msgTypes[441] + mi := &file_nico_nico_proto_msgTypes[442] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33398,7 +33464,7 @@ func (x *NetworkDeviceIdList) String() string { func (*NetworkDeviceIdList) ProtoMessage() {} func (x *NetworkDeviceIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[441] + mi := &file_nico_nico_proto_msgTypes[442] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33411,7 +33477,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{441} + return file_nico_nico_proto_rawDescGZIP(), []int{442} } func (x *NetworkDeviceIdList) GetNetworkDeviceIds() []string { @@ -33430,7 +33496,7 @@ type NetworkTopologyData struct { func (x *NetworkTopologyData) Reset() { *x = NetworkTopologyData{} - mi := &file_nico_nico_proto_msgTypes[442] + mi := &file_nico_nico_proto_msgTypes[443] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33442,7 +33508,7 @@ func (x *NetworkTopologyData) String() string { func (*NetworkTopologyData) ProtoMessage() {} func (x *NetworkTopologyData) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[442] + mi := &file_nico_nico_proto_msgTypes[443] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33455,7 +33521,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{442} + return file_nico_nico_proto_rawDescGZIP(), []int{443} } func (x *NetworkTopologyData) GetNetworkDevices() []*NetworkDevice { @@ -33489,7 +33555,7 @@ type RouteServers struct { func (x *RouteServers) Reset() { *x = RouteServers{} - mi := &file_nico_nico_proto_msgTypes[443] + mi := &file_nico_nico_proto_msgTypes[444] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33501,7 +33567,7 @@ func (x *RouteServers) String() string { func (*RouteServers) ProtoMessage() {} func (x *RouteServers) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[443] + mi := &file_nico_nico_proto_msgTypes[444] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33514,7 +33580,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{443} + return file_nico_nico_proto_rawDescGZIP(), []int{444} } func (x *RouteServers) GetRouteServers() []string { @@ -33540,7 +33606,7 @@ type RouteServerEntries struct { func (x *RouteServerEntries) Reset() { *x = RouteServerEntries{} - mi := &file_nico_nico_proto_msgTypes[444] + mi := &file_nico_nico_proto_msgTypes[445] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33552,7 +33618,7 @@ func (x *RouteServerEntries) String() string { func (*RouteServerEntries) ProtoMessage() {} func (x *RouteServerEntries) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[444] + mi := &file_nico_nico_proto_msgTypes[445] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33565,7 +33631,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{444} + return file_nico_nico_proto_rawDescGZIP(), []int{445} } func (x *RouteServerEntries) GetRouteServers() []*RouteServer { @@ -33588,7 +33654,7 @@ type RouteServer struct { func (x *RouteServer) Reset() { *x = RouteServer{} - mi := &file_nico_nico_proto_msgTypes[445] + mi := &file_nico_nico_proto_msgTypes[446] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33600,7 +33666,7 @@ func (x *RouteServer) String() string { func (*RouteServer) ProtoMessage() {} func (x *RouteServer) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[445] + mi := &file_nico_nico_proto_msgTypes[446] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33613,7 +33679,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{445} + return file_nico_nico_proto_rawDescGZIP(), []int{446} } func (x *RouteServer) GetAddress() string { @@ -33642,7 +33708,7 @@ type SetHostUefiPasswordRequest struct { func (x *SetHostUefiPasswordRequest) Reset() { *x = SetHostUefiPasswordRequest{} - mi := &file_nico_nico_proto_msgTypes[446] + mi := &file_nico_nico_proto_msgTypes[447] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33654,7 +33720,7 @@ func (x *SetHostUefiPasswordRequest) String() string { func (*SetHostUefiPasswordRequest) ProtoMessage() {} func (x *SetHostUefiPasswordRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[446] + mi := &file_nico_nico_proto_msgTypes[447] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33667,7 +33733,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{446} + return file_nico_nico_proto_rawDescGZIP(), []int{447} } func (x *SetHostUefiPasswordRequest) GetHostId() *MachineId { @@ -33693,7 +33759,7 @@ type SetHostUefiPasswordResponse struct { func (x *SetHostUefiPasswordResponse) Reset() { *x = SetHostUefiPasswordResponse{} - mi := &file_nico_nico_proto_msgTypes[447] + mi := &file_nico_nico_proto_msgTypes[448] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33705,7 +33771,7 @@ func (x *SetHostUefiPasswordResponse) String() string { func (*SetHostUefiPasswordResponse) ProtoMessage() {} func (x *SetHostUefiPasswordResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[447] + mi := &file_nico_nico_proto_msgTypes[448] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33718,7 +33784,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{447} + return file_nico_nico_proto_rawDescGZIP(), []int{448} } func (x *SetHostUefiPasswordResponse) GetJobId() string { @@ -33740,7 +33806,7 @@ type ClearHostUefiPasswordRequest struct { func (x *ClearHostUefiPasswordRequest) Reset() { *x = ClearHostUefiPasswordRequest{} - mi := &file_nico_nico_proto_msgTypes[448] + mi := &file_nico_nico_proto_msgTypes[449] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33752,7 +33818,7 @@ func (x *ClearHostUefiPasswordRequest) String() string { func (*ClearHostUefiPasswordRequest) ProtoMessage() {} func (x *ClearHostUefiPasswordRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[448] + mi := &file_nico_nico_proto_msgTypes[449] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33765,7 +33831,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{448} + return file_nico_nico_proto_rawDescGZIP(), []int{449} } func (x *ClearHostUefiPasswordRequest) GetHostId() *MachineId { @@ -33791,7 +33857,7 @@ type ClearHostUefiPasswordResponse struct { func (x *ClearHostUefiPasswordResponse) Reset() { *x = ClearHostUefiPasswordResponse{} - mi := &file_nico_nico_proto_msgTypes[449] + mi := &file_nico_nico_proto_msgTypes[450] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33803,7 +33869,7 @@ func (x *ClearHostUefiPasswordResponse) String() string { func (*ClearHostUefiPasswordResponse) ProtoMessage() {} func (x *ClearHostUefiPasswordResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[449] + mi := &file_nico_nico_proto_msgTypes[450] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33816,7 +33882,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{449} + return file_nico_nico_proto_rawDescGZIP(), []int{450} } func (x *ClearHostUefiPasswordResponse) GetJobId() string { @@ -33852,7 +33918,7 @@ type OsImageAttributes struct { func (x *OsImageAttributes) Reset() { *x = OsImageAttributes{} - mi := &file_nico_nico_proto_msgTypes[450] + mi := &file_nico_nico_proto_msgTypes[451] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33864,7 +33930,7 @@ func (x *OsImageAttributes) String() string { func (*OsImageAttributes) ProtoMessage() {} func (x *OsImageAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[450] + mi := &file_nico_nico_proto_msgTypes[451] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33877,7 +33943,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{450} + return file_nico_nico_proto_rawDescGZIP(), []int{451} } func (x *OsImageAttributes) GetId() *UUID { @@ -33998,7 +34064,7 @@ type OsImage struct { func (x *OsImage) Reset() { *x = OsImage{} - mi := &file_nico_nico_proto_msgTypes[451] + mi := &file_nico_nico_proto_msgTypes[452] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34010,7 +34076,7 @@ func (x *OsImage) String() string { func (*OsImage) ProtoMessage() {} func (x *OsImage) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[451] + mi := &file_nico_nico_proto_msgTypes[452] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34023,7 +34089,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{451} + return file_nico_nico_proto_rawDescGZIP(), []int{452} } func (x *OsImage) GetAttributes() *OsImageAttributes { @@ -34070,7 +34136,7 @@ type ListOsImageRequest struct { func (x *ListOsImageRequest) Reset() { *x = ListOsImageRequest{} - mi := &file_nico_nico_proto_msgTypes[452] + mi := &file_nico_nico_proto_msgTypes[453] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34082,7 +34148,7 @@ func (x *ListOsImageRequest) String() string { func (*ListOsImageRequest) ProtoMessage() {} func (x *ListOsImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[452] + mi := &file_nico_nico_proto_msgTypes[453] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34095,7 +34161,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{452} + return file_nico_nico_proto_rawDescGZIP(), []int{453} } func (x *ListOsImageRequest) GetTenantOrganizationId() string { @@ -34114,7 +34180,7 @@ type ListOsImageResponse struct { func (x *ListOsImageResponse) Reset() { *x = ListOsImageResponse{} - mi := &file_nico_nico_proto_msgTypes[453] + mi := &file_nico_nico_proto_msgTypes[454] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34126,7 +34192,7 @@ func (x *ListOsImageResponse) String() string { func (*ListOsImageResponse) ProtoMessage() {} func (x *ListOsImageResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[453] + mi := &file_nico_nico_proto_msgTypes[454] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34139,7 +34205,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{453} + return file_nico_nico_proto_rawDescGZIP(), []int{454} } func (x *ListOsImageResponse) GetImages() []*OsImage { @@ -34159,7 +34225,7 @@ type DeleteOsImageRequest struct { func (x *DeleteOsImageRequest) Reset() { *x = DeleteOsImageRequest{} - mi := &file_nico_nico_proto_msgTypes[454] + mi := &file_nico_nico_proto_msgTypes[455] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34171,7 +34237,7 @@ func (x *DeleteOsImageRequest) String() string { func (*DeleteOsImageRequest) ProtoMessage() {} func (x *DeleteOsImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[454] + mi := &file_nico_nico_proto_msgTypes[455] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34184,7 +34250,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{454} + return file_nico_nico_proto_rawDescGZIP(), []int{455} } func (x *DeleteOsImageRequest) GetId() *UUID { @@ -34209,7 +34275,7 @@ type DeleteOsImageResponse struct { func (x *DeleteOsImageResponse) Reset() { *x = DeleteOsImageResponse{} - mi := &file_nico_nico_proto_msgTypes[455] + mi := &file_nico_nico_proto_msgTypes[456] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34221,7 +34287,7 @@ func (x *DeleteOsImageResponse) String() string { func (*DeleteOsImageResponse) ProtoMessage() {} func (x *DeleteOsImageResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[455] + mi := &file_nico_nico_proto_msgTypes[456] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34234,7 +34300,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{455} + return file_nico_nico_proto_rawDescGZIP(), []int{456} } // Request/Response messages for iPXE Script Template management @@ -34247,7 +34313,7 @@ type GetIpxeTemplateRequest struct { func (x *GetIpxeTemplateRequest) Reset() { *x = GetIpxeTemplateRequest{} - mi := &file_nico_nico_proto_msgTypes[456] + mi := &file_nico_nico_proto_msgTypes[457] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34259,7 +34325,7 @@ func (x *GetIpxeTemplateRequest) String() string { func (*GetIpxeTemplateRequest) ProtoMessage() {} func (x *GetIpxeTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[456] + mi := &file_nico_nico_proto_msgTypes[457] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34272,7 +34338,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{456} + return file_nico_nico_proto_rawDescGZIP(), []int{457} } func (x *GetIpxeTemplateRequest) GetId() *IpxeTemplateId { @@ -34290,7 +34356,7 @@ type ListIpxeTemplatesRequest struct { func (x *ListIpxeTemplatesRequest) Reset() { *x = ListIpxeTemplatesRequest{} - mi := &file_nico_nico_proto_msgTypes[457] + mi := &file_nico_nico_proto_msgTypes[458] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34302,7 +34368,7 @@ func (x *ListIpxeTemplatesRequest) String() string { func (*ListIpxeTemplatesRequest) ProtoMessage() {} func (x *ListIpxeTemplatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[457] + mi := &file_nico_nico_proto_msgTypes[458] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34315,7 +34381,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{457} + return file_nico_nico_proto_rawDescGZIP(), []int{458} } type IpxeTemplateList struct { @@ -34327,7 +34393,7 @@ type IpxeTemplateList struct { func (x *IpxeTemplateList) Reset() { *x = IpxeTemplateList{} - mi := &file_nico_nico_proto_msgTypes[458] + mi := &file_nico_nico_proto_msgTypes[459] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34339,7 +34405,7 @@ func (x *IpxeTemplateList) String() string { func (*IpxeTemplateList) ProtoMessage() {} func (x *IpxeTemplateList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[458] + mi := &file_nico_nico_proto_msgTypes[459] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34352,7 +34418,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{458} + return file_nico_nico_proto_rawDescGZIP(), []int{459} } func (x *IpxeTemplateList) GetTemplates() []*IpxeTemplate { @@ -34393,7 +34459,7 @@ type ExpectedHostNic struct { func (x *ExpectedHostNic) Reset() { *x = ExpectedHostNic{} - mi := &file_nico_nico_proto_msgTypes[459] + mi := &file_nico_nico_proto_msgTypes[460] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34405,7 +34471,7 @@ func (x *ExpectedHostNic) String() string { func (*ExpectedHostNic) ProtoMessage() {} func (x *ExpectedHostNic) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[459] + mi := &file_nico_nico_proto_msgTypes[460] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34418,7 +34484,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{459} + return file_nico_nico_proto_rawDescGZIP(), []int{460} } func (x *ExpectedHostNic) GetMacAddress() string { @@ -34484,7 +34550,7 @@ type HostLifecycleProfile struct { func (x *HostLifecycleProfile) Reset() { *x = HostLifecycleProfile{} - mi := &file_nico_nico_proto_msgTypes[460] + mi := &file_nico_nico_proto_msgTypes[461] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34496,7 +34562,7 @@ func (x *HostLifecycleProfile) String() string { func (*HostLifecycleProfile) ProtoMessage() {} func (x *HostLifecycleProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[460] + mi := &file_nico_nico_proto_msgTypes[461] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34509,7 +34575,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{460} + return file_nico_nico_proto_rawDescGZIP(), []int{461} } func (x *HostLifecycleProfile) GetDisableLockdown() bool { @@ -34570,7 +34636,7 @@ type ExpectedMachine struct { func (x *ExpectedMachine) Reset() { *x = ExpectedMachine{} - mi := &file_nico_nico_proto_msgTypes[461] + mi := &file_nico_nico_proto_msgTypes[462] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34582,7 +34648,7 @@ func (x *ExpectedMachine) String() string { func (*ExpectedMachine) ProtoMessage() {} func (x *ExpectedMachine) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[461] + mi := &file_nico_nico_proto_msgTypes[462] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34595,7 +34661,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{461} + return file_nico_nico_proto_rawDescGZIP(), []int{462} } func (x *ExpectedMachine) GetBmcMacAddress() string { @@ -34793,7 +34859,7 @@ type ExpectedMachineRequest struct { func (x *ExpectedMachineRequest) Reset() { *x = ExpectedMachineRequest{} - mi := &file_nico_nico_proto_msgTypes[462] + mi := &file_nico_nico_proto_msgTypes[463] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34805,7 +34871,7 @@ func (x *ExpectedMachineRequest) String() string { func (*ExpectedMachineRequest) ProtoMessage() {} func (x *ExpectedMachineRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[462] + mi := &file_nico_nico_proto_msgTypes[463] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34818,7 +34884,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{462} + return file_nico_nico_proto_rawDescGZIP(), []int{463} } func (x *ExpectedMachineRequest) GetBmcMacAddress() string { @@ -34844,7 +34910,7 @@ type ExpectedMachineList struct { func (x *ExpectedMachineList) Reset() { *x = ExpectedMachineList{} - mi := &file_nico_nico_proto_msgTypes[463] + mi := &file_nico_nico_proto_msgTypes[464] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34856,7 +34922,7 @@ func (x *ExpectedMachineList) String() string { func (*ExpectedMachineList) ProtoMessage() {} func (x *ExpectedMachineList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[463] + mi := &file_nico_nico_proto_msgTypes[464] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34869,7 +34935,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{463} + return file_nico_nico_proto_rawDescGZIP(), []int{464} } func (x *ExpectedMachineList) GetExpectedMachines() []*ExpectedMachine { @@ -34888,7 +34954,7 @@ type LinkedExpectedMachineList struct { func (x *LinkedExpectedMachineList) Reset() { *x = LinkedExpectedMachineList{} - mi := &file_nico_nico_proto_msgTypes[464] + mi := &file_nico_nico_proto_msgTypes[465] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34900,7 +34966,7 @@ func (x *LinkedExpectedMachineList) String() string { func (*LinkedExpectedMachineList) ProtoMessage() {} func (x *LinkedExpectedMachineList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[464] + mi := &file_nico_nico_proto_msgTypes[465] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34913,7 +34979,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{464} + return file_nico_nico_proto_rawDescGZIP(), []int{465} } func (x *LinkedExpectedMachineList) GetExpectedMachines() []*LinkedExpectedMachine { @@ -34937,7 +35003,7 @@ type LinkedExpectedMachine struct { func (x *LinkedExpectedMachine) Reset() { *x = LinkedExpectedMachine{} - mi := &file_nico_nico_proto_msgTypes[465] + mi := &file_nico_nico_proto_msgTypes[466] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34949,7 +35015,7 @@ func (x *LinkedExpectedMachine) String() string { func (*LinkedExpectedMachine) ProtoMessage() {} func (x *LinkedExpectedMachine) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[465] + mi := &file_nico_nico_proto_msgTypes[466] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34962,7 +35028,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{465} + return file_nico_nico_proto_rawDescGZIP(), []int{466} } func (x *LinkedExpectedMachine) GetChassisSerialNumber() string { @@ -35016,7 +35082,7 @@ type UnexpectedMachineList struct { func (x *UnexpectedMachineList) Reset() { *x = UnexpectedMachineList{} - mi := &file_nico_nico_proto_msgTypes[466] + mi := &file_nico_nico_proto_msgTypes[467] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35028,7 +35094,7 @@ func (x *UnexpectedMachineList) String() string { func (*UnexpectedMachineList) ProtoMessage() {} func (x *UnexpectedMachineList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[466] + mi := &file_nico_nico_proto_msgTypes[467] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35041,7 +35107,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{466} + return file_nico_nico_proto_rawDescGZIP(), []int{467} } func (x *UnexpectedMachineList) GetUnexpectedMachines() []*UnexpectedMachine { @@ -35062,7 +35128,7 @@ type UnexpectedMachine struct { func (x *UnexpectedMachine) Reset() { *x = UnexpectedMachine{} - mi := &file_nico_nico_proto_msgTypes[467] + mi := &file_nico_nico_proto_msgTypes[468] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35074,7 +35140,7 @@ func (x *UnexpectedMachine) String() string { func (*UnexpectedMachine) ProtoMessage() {} func (x *UnexpectedMachine) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[467] + mi := &file_nico_nico_proto_msgTypes[468] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35087,7 +35153,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{467} + return file_nico_nico_proto_rawDescGZIP(), []int{468} } func (x *UnexpectedMachine) GetAddress() string { @@ -35123,7 +35189,7 @@ type BatchExpectedMachineOperationRequest struct { func (x *BatchExpectedMachineOperationRequest) Reset() { *x = BatchExpectedMachineOperationRequest{} - mi := &file_nico_nico_proto_msgTypes[468] + mi := &file_nico_nico_proto_msgTypes[469] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35135,7 +35201,7 @@ func (x *BatchExpectedMachineOperationRequest) String() string { func (*BatchExpectedMachineOperationRequest) ProtoMessage() {} func (x *BatchExpectedMachineOperationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[468] + mi := &file_nico_nico_proto_msgTypes[469] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35148,7 +35214,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{468} + return file_nico_nico_proto_rawDescGZIP(), []int{469} } func (x *BatchExpectedMachineOperationRequest) GetExpectedMachines() *ExpectedMachineList { @@ -35181,7 +35247,7 @@ type ExpectedMachineOperationResult struct { func (x *ExpectedMachineOperationResult) Reset() { *x = ExpectedMachineOperationResult{} - mi := &file_nico_nico_proto_msgTypes[469] + mi := &file_nico_nico_proto_msgTypes[470] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35193,7 +35259,7 @@ func (x *ExpectedMachineOperationResult) String() string { func (*ExpectedMachineOperationResult) ProtoMessage() {} func (x *ExpectedMachineOperationResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[469] + mi := &file_nico_nico_proto_msgTypes[470] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35206,7 +35272,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{469} + return file_nico_nico_proto_rawDescGZIP(), []int{470} } func (x *ExpectedMachineOperationResult) GetId() *UUID { @@ -35247,7 +35313,7 @@ type BatchExpectedMachineOperationResponse struct { func (x *BatchExpectedMachineOperationResponse) Reset() { *x = BatchExpectedMachineOperationResponse{} - mi := &file_nico_nico_proto_msgTypes[470] + mi := &file_nico_nico_proto_msgTypes[471] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35259,7 +35325,7 @@ func (x *BatchExpectedMachineOperationResponse) String() string { func (*BatchExpectedMachineOperationResponse) ProtoMessage() {} func (x *BatchExpectedMachineOperationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[470] + mi := &file_nico_nico_proto_msgTypes[471] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35272,7 +35338,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{470} + return file_nico_nico_proto_rawDescGZIP(), []int{471} } func (x *BatchExpectedMachineOperationResponse) GetResults() []*ExpectedMachineOperationResult { @@ -35290,7 +35356,7 @@ type MachineRebootCompletedResponse struct { func (x *MachineRebootCompletedResponse) Reset() { *x = MachineRebootCompletedResponse{} - mi := &file_nico_nico_proto_msgTypes[471] + mi := &file_nico_nico_proto_msgTypes[472] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35302,7 +35368,7 @@ func (x *MachineRebootCompletedResponse) String() string { func (*MachineRebootCompletedResponse) ProtoMessage() {} func (x *MachineRebootCompletedResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[471] + mi := &file_nico_nico_proto_msgTypes[472] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35315,7 +35381,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{471} + return file_nico_nico_proto_rawDescGZIP(), []int{472} } type MachineRebootCompletedRequest struct { @@ -35327,7 +35393,7 @@ type MachineRebootCompletedRequest struct { func (x *MachineRebootCompletedRequest) Reset() { *x = MachineRebootCompletedRequest{} - mi := &file_nico_nico_proto_msgTypes[472] + mi := &file_nico_nico_proto_msgTypes[473] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35339,7 +35405,7 @@ func (x *MachineRebootCompletedRequest) String() string { func (*MachineRebootCompletedRequest) ProtoMessage() {} func (x *MachineRebootCompletedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[472] + mi := &file_nico_nico_proto_msgTypes[473] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35352,7 +35418,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{472} + return file_nico_nico_proto_rawDescGZIP(), []int{473} } func (x *MachineRebootCompletedRequest) GetMachineId() *MachineId { @@ -35377,7 +35443,7 @@ type ScoutFirmwareUpgradeStatusRequest struct { func (x *ScoutFirmwareUpgradeStatusRequest) Reset() { *x = ScoutFirmwareUpgradeStatusRequest{} - mi := &file_nico_nico_proto_msgTypes[473] + mi := &file_nico_nico_proto_msgTypes[474] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35389,7 +35455,7 @@ func (x *ScoutFirmwareUpgradeStatusRequest) String() string { func (*ScoutFirmwareUpgradeStatusRequest) ProtoMessage() {} func (x *ScoutFirmwareUpgradeStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[473] + mi := &file_nico_nico_proto_msgTypes[474] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35402,7 +35468,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{473} + return file_nico_nico_proto_rawDescGZIP(), []int{474} } func (x *ScoutFirmwareUpgradeStatusRequest) GetMachineId() *MachineId { @@ -35465,7 +35531,7 @@ type MachineValidationCompletedRequest struct { func (x *MachineValidationCompletedRequest) Reset() { *x = MachineValidationCompletedRequest{} - mi := &file_nico_nico_proto_msgTypes[474] + mi := &file_nico_nico_proto_msgTypes[475] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35477,7 +35543,7 @@ func (x *MachineValidationCompletedRequest) String() string { func (*MachineValidationCompletedRequest) ProtoMessage() {} func (x *MachineValidationCompletedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[474] + mi := &file_nico_nico_proto_msgTypes[475] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35490,7 +35556,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{474} + return file_nico_nico_proto_rawDescGZIP(), []int{475} } func (x *MachineValidationCompletedRequest) GetMachineId() *MachineId { @@ -35522,7 +35588,7 @@ type MachineValidationCompletedResponse struct { func (x *MachineValidationCompletedResponse) Reset() { *x = MachineValidationCompletedResponse{} - mi := &file_nico_nico_proto_msgTypes[475] + mi := &file_nico_nico_proto_msgTypes[476] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35534,7 +35600,7 @@ func (x *MachineValidationCompletedResponse) String() string { func (*MachineValidationCompletedResponse) ProtoMessage() {} func (x *MachineValidationCompletedResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[475] + mi := &file_nico_nico_proto_msgTypes[476] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35547,7 +35613,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{475} + return file_nico_nico_proto_rawDescGZIP(), []int{476} } type MachineValidationResult struct { @@ -35570,7 +35636,7 @@ type MachineValidationResult struct { func (x *MachineValidationResult) Reset() { *x = MachineValidationResult{} - mi := &file_nico_nico_proto_msgTypes[476] + mi := &file_nico_nico_proto_msgTypes[477] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35582,7 +35648,7 @@ func (x *MachineValidationResult) String() string { func (*MachineValidationResult) ProtoMessage() {} func (x *MachineValidationResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[476] + mi := &file_nico_nico_proto_msgTypes[477] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35595,7 +35661,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{476} + return file_nico_nico_proto_rawDescGZIP(), []int{477} } func (x *MachineValidationResult) GetName() string { @@ -35691,7 +35757,7 @@ type MachineValidationResultPostRequest struct { func (x *MachineValidationResultPostRequest) Reset() { *x = MachineValidationResultPostRequest{} - mi := &file_nico_nico_proto_msgTypes[477] + mi := &file_nico_nico_proto_msgTypes[478] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35703,7 +35769,7 @@ func (x *MachineValidationResultPostRequest) String() string { func (*MachineValidationResultPostRequest) ProtoMessage() {} func (x *MachineValidationResultPostRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[477] + mi := &file_nico_nico_proto_msgTypes[478] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35716,7 +35782,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{477} + return file_nico_nico_proto_rawDescGZIP(), []int{478} } func (x *MachineValidationResultPostRequest) GetResult() *MachineValidationResult { @@ -35735,7 +35801,7 @@ type MachineValidationResultList struct { func (x *MachineValidationResultList) Reset() { *x = MachineValidationResultList{} - mi := &file_nico_nico_proto_msgTypes[478] + mi := &file_nico_nico_proto_msgTypes[479] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35747,7 +35813,7 @@ func (x *MachineValidationResultList) String() string { func (*MachineValidationResultList) ProtoMessage() {} func (x *MachineValidationResultList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[478] + mi := &file_nico_nico_proto_msgTypes[479] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35760,7 +35826,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{478} + return file_nico_nico_proto_rawDescGZIP(), []int{479} } func (x *MachineValidationResultList) GetResults() []*MachineValidationResult { @@ -35781,7 +35847,7 @@ type MachineValidationGetRequest struct { func (x *MachineValidationGetRequest) Reset() { *x = MachineValidationGetRequest{} - mi := &file_nico_nico_proto_msgTypes[479] + mi := &file_nico_nico_proto_msgTypes[480] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35793,7 +35859,7 @@ func (x *MachineValidationGetRequest) String() string { func (*MachineValidationGetRequest) ProtoMessage() {} func (x *MachineValidationGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[479] + mi := &file_nico_nico_proto_msgTypes[480] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35806,7 +35872,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{479} + return file_nico_nico_proto_rawDescGZIP(), []int{480} } func (x *MachineValidationGetRequest) GetMachineId() *MachineId { @@ -35846,7 +35912,7 @@ type MachineValidationStatus struct { func (x *MachineValidationStatus) Reset() { *x = MachineValidationStatus{} - mi := &file_nico_nico_proto_msgTypes[480] + mi := &file_nico_nico_proto_msgTypes[481] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35858,7 +35924,7 @@ func (x *MachineValidationStatus) String() string { func (*MachineValidationStatus) ProtoMessage() {} func (x *MachineValidationStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[480] + mi := &file_nico_nico_proto_msgTypes[481] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35871,7 +35937,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{480} + return file_nico_nico_proto_rawDescGZIP(), []int{481} } func (x *MachineValidationStatus) GetMachineValidationState() isMachineValidationStatus_MachineValidationState { @@ -35961,7 +36027,7 @@ type MachineValidationRun struct { func (x *MachineValidationRun) Reset() { *x = MachineValidationRun{} - mi := &file_nico_nico_proto_msgTypes[481] + mi := &file_nico_nico_proto_msgTypes[482] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35973,7 +36039,7 @@ func (x *MachineValidationRun) String() string { func (*MachineValidationRun) ProtoMessage() {} func (x *MachineValidationRun) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[481] + mi := &file_nico_nico_proto_msgTypes[482] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35986,7 +36052,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{481} + return file_nico_nico_proto_rawDescGZIP(), []int{482} } func (x *MachineValidationRun) GetValidationId() *MachineValidationId { @@ -36062,7 +36128,7 @@ type MachineSetAutoUpdateRequest struct { func (x *MachineSetAutoUpdateRequest) Reset() { *x = MachineSetAutoUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[482] + mi := &file_nico_nico_proto_msgTypes[483] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36074,7 +36140,7 @@ func (x *MachineSetAutoUpdateRequest) String() string { func (*MachineSetAutoUpdateRequest) ProtoMessage() {} func (x *MachineSetAutoUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[482] + mi := &file_nico_nico_proto_msgTypes[483] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36087,7 +36153,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{482} + return file_nico_nico_proto_rawDescGZIP(), []int{483} } func (x *MachineSetAutoUpdateRequest) GetMachineId() *MachineId { @@ -36112,7 +36178,7 @@ type MachineSetAutoUpdateResponse struct { func (x *MachineSetAutoUpdateResponse) Reset() { *x = MachineSetAutoUpdateResponse{} - mi := &file_nico_nico_proto_msgTypes[483] + mi := &file_nico_nico_proto_msgTypes[484] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36124,7 +36190,7 @@ func (x *MachineSetAutoUpdateResponse) String() string { func (*MachineSetAutoUpdateResponse) ProtoMessage() {} func (x *MachineSetAutoUpdateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[483] + mi := &file_nico_nico_proto_msgTypes[484] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36137,7 +36203,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{483} + return file_nico_nico_proto_rawDescGZIP(), []int{484} } type GetMachineValidationExternalConfigRequest struct { @@ -36149,7 +36215,7 @@ type GetMachineValidationExternalConfigRequest struct { func (x *GetMachineValidationExternalConfigRequest) Reset() { *x = GetMachineValidationExternalConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[484] + mi := &file_nico_nico_proto_msgTypes[485] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36161,7 +36227,7 @@ func (x *GetMachineValidationExternalConfigRequest) String() string { func (*GetMachineValidationExternalConfigRequest) ProtoMessage() {} func (x *GetMachineValidationExternalConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[484] + mi := &file_nico_nico_proto_msgTypes[485] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36174,7 +36240,7 @@ func (x *GetMachineValidationExternalConfigRequest) ProtoReflect() protoreflect. // Deprecated: Use GetMachineValidationExternalConfigRequest.ProtoReflect.Descriptor instead. func (*GetMachineValidationExternalConfigRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{484} + return file_nico_nico_proto_rawDescGZIP(), []int{485} } func (x *GetMachineValidationExternalConfigRequest) GetName() string { @@ -36197,7 +36263,7 @@ type MachineValidationExternalConfig struct { func (x *MachineValidationExternalConfig) Reset() { *x = MachineValidationExternalConfig{} - mi := &file_nico_nico_proto_msgTypes[485] + mi := &file_nico_nico_proto_msgTypes[486] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36209,7 +36275,7 @@ func (x *MachineValidationExternalConfig) String() string { func (*MachineValidationExternalConfig) ProtoMessage() {} func (x *MachineValidationExternalConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[485] + mi := &file_nico_nico_proto_msgTypes[486] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36222,7 +36288,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{485} + return file_nico_nico_proto_rawDescGZIP(), []int{486} } func (x *MachineValidationExternalConfig) GetName() string { @@ -36269,7 +36335,7 @@ type GetMachineValidationExternalConfigResponse struct { func (x *GetMachineValidationExternalConfigResponse) Reset() { *x = GetMachineValidationExternalConfigResponse{} - mi := &file_nico_nico_proto_msgTypes[486] + mi := &file_nico_nico_proto_msgTypes[487] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36281,7 +36347,7 @@ func (x *GetMachineValidationExternalConfigResponse) String() string { func (*GetMachineValidationExternalConfigResponse) ProtoMessage() {} func (x *GetMachineValidationExternalConfigResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[486] + mi := &file_nico_nico_proto_msgTypes[487] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36294,7 +36360,7 @@ func (x *GetMachineValidationExternalConfigResponse) ProtoReflect() protoreflect // Deprecated: Use GetMachineValidationExternalConfigResponse.ProtoReflect.Descriptor instead. func (*GetMachineValidationExternalConfigResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{486} + return file_nico_nico_proto_rawDescGZIP(), []int{487} } func (x *GetMachineValidationExternalConfigResponse) GetConfig() *MachineValidationExternalConfig { @@ -36313,7 +36379,7 @@ type GetMachineValidationExternalConfigsRequest struct { func (x *GetMachineValidationExternalConfigsRequest) Reset() { *x = GetMachineValidationExternalConfigsRequest{} - mi := &file_nico_nico_proto_msgTypes[487] + mi := &file_nico_nico_proto_msgTypes[488] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36325,7 +36391,7 @@ func (x *GetMachineValidationExternalConfigsRequest) String() string { func (*GetMachineValidationExternalConfigsRequest) ProtoMessage() {} func (x *GetMachineValidationExternalConfigsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[487] + mi := &file_nico_nico_proto_msgTypes[488] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36338,7 +36404,7 @@ func (x *GetMachineValidationExternalConfigsRequest) ProtoReflect() protoreflect // Deprecated: Use GetMachineValidationExternalConfigsRequest.ProtoReflect.Descriptor instead. func (*GetMachineValidationExternalConfigsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{487} + return file_nico_nico_proto_rawDescGZIP(), []int{488} } func (x *GetMachineValidationExternalConfigsRequest) GetNames() []string { @@ -36357,7 +36423,7 @@ type GetMachineValidationExternalConfigsResponse struct { func (x *GetMachineValidationExternalConfigsResponse) Reset() { *x = GetMachineValidationExternalConfigsResponse{} - mi := &file_nico_nico_proto_msgTypes[488] + mi := &file_nico_nico_proto_msgTypes[489] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36369,7 +36435,7 @@ func (x *GetMachineValidationExternalConfigsResponse) String() string { func (*GetMachineValidationExternalConfigsResponse) ProtoMessage() {} func (x *GetMachineValidationExternalConfigsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[488] + mi := &file_nico_nico_proto_msgTypes[489] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36382,7 +36448,7 @@ func (x *GetMachineValidationExternalConfigsResponse) ProtoReflect() protoreflec // Deprecated: Use GetMachineValidationExternalConfigsResponse.ProtoReflect.Descriptor instead. func (*GetMachineValidationExternalConfigsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{488} + return file_nico_nico_proto_rawDescGZIP(), []int{489} } func (x *GetMachineValidationExternalConfigsResponse) GetConfigs() []*MachineValidationExternalConfig { @@ -36403,7 +36469,7 @@ type AddUpdateMachineValidationExternalConfigRequest struct { func (x *AddUpdateMachineValidationExternalConfigRequest) Reset() { *x = AddUpdateMachineValidationExternalConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[489] + mi := &file_nico_nico_proto_msgTypes[490] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36415,7 +36481,7 @@ func (x *AddUpdateMachineValidationExternalConfigRequest) String() string { func (*AddUpdateMachineValidationExternalConfigRequest) ProtoMessage() {} func (x *AddUpdateMachineValidationExternalConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[489] + mi := &file_nico_nico_proto_msgTypes[490] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36428,7 +36494,7 @@ func (x *AddUpdateMachineValidationExternalConfigRequest) ProtoReflect() protore // Deprecated: Use AddUpdateMachineValidationExternalConfigRequest.ProtoReflect.Descriptor instead. func (*AddUpdateMachineValidationExternalConfigRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{489} + return file_nico_nico_proto_rawDescGZIP(), []int{490} } func (x *AddUpdateMachineValidationExternalConfigRequest) GetName() string { @@ -36461,7 +36527,7 @@ type RemoveMachineValidationExternalConfigRequest struct { func (x *RemoveMachineValidationExternalConfigRequest) Reset() { *x = RemoveMachineValidationExternalConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[490] + mi := &file_nico_nico_proto_msgTypes[491] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36473,7 +36539,7 @@ func (x *RemoveMachineValidationExternalConfigRequest) String() string { func (*RemoveMachineValidationExternalConfigRequest) ProtoMessage() {} func (x *RemoveMachineValidationExternalConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[490] + mi := &file_nico_nico_proto_msgTypes[491] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36486,7 +36552,7 @@ func (x *RemoveMachineValidationExternalConfigRequest) ProtoReflect() protorefle // Deprecated: Use RemoveMachineValidationExternalConfigRequest.ProtoReflect.Descriptor instead. func (*RemoveMachineValidationExternalConfigRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{490} + return file_nico_nico_proto_rawDescGZIP(), []int{491} } func (x *RemoveMachineValidationExternalConfigRequest) GetName() string { @@ -36510,7 +36576,7 @@ type MachineValidationOnDemandRequest struct { func (x *MachineValidationOnDemandRequest) Reset() { *x = MachineValidationOnDemandRequest{} - mi := &file_nico_nico_proto_msgTypes[491] + mi := &file_nico_nico_proto_msgTypes[492] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36522,7 +36588,7 @@ func (x *MachineValidationOnDemandRequest) String() string { func (*MachineValidationOnDemandRequest) ProtoMessage() {} func (x *MachineValidationOnDemandRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[491] + mi := &file_nico_nico_proto_msgTypes[492] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36535,7 +36601,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{491} + return file_nico_nico_proto_rawDescGZIP(), []int{492} } func (x *MachineValidationOnDemandRequest) GetMachineId() *MachineId { @@ -36589,7 +36655,7 @@ type MachineValidationOnDemandResponse struct { func (x *MachineValidationOnDemandResponse) Reset() { *x = MachineValidationOnDemandResponse{} - mi := &file_nico_nico_proto_msgTypes[492] + mi := &file_nico_nico_proto_msgTypes[493] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36601,7 +36667,7 @@ func (x *MachineValidationOnDemandResponse) String() string { func (*MachineValidationOnDemandResponse) ProtoMessage() {} func (x *MachineValidationOnDemandResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[492] + mi := &file_nico_nico_proto_msgTypes[493] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36614,7 +36680,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{492} + return file_nico_nico_proto_rawDescGZIP(), []int{493} } func (x *MachineValidationOnDemandResponse) GetValidationId() *MachineValidationId { @@ -36644,7 +36710,7 @@ type FirmwareUpgradeActivity struct { func (x *FirmwareUpgradeActivity) Reset() { *x = FirmwareUpgradeActivity{} - mi := &file_nico_nico_proto_msgTypes[493] + mi := &file_nico_nico_proto_msgTypes[494] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36656,7 +36722,7 @@ func (x *FirmwareUpgradeActivity) String() string { func (*FirmwareUpgradeActivity) ProtoMessage() {} func (x *FirmwareUpgradeActivity) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[493] + mi := &file_nico_nico_proto_msgTypes[494] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36669,7 +36735,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{493} + return file_nico_nico_proto_rawDescGZIP(), []int{494} } func (x *FirmwareUpgradeActivity) GetFirmwareVersion() string { @@ -36715,7 +36781,7 @@ type NvosUpdateActivity struct { func (x *NvosUpdateActivity) Reset() { *x = NvosUpdateActivity{} - mi := &file_nico_nico_proto_msgTypes[494] + mi := &file_nico_nico_proto_msgTypes[495] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36727,7 +36793,7 @@ func (x *NvosUpdateActivity) String() string { func (*NvosUpdateActivity) ProtoMessage() {} func (x *NvosUpdateActivity) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[494] + mi := &file_nico_nico_proto_msgTypes[495] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36740,7 +36806,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{494} + return file_nico_nico_proto_rawDescGZIP(), []int{495} } func (x *NvosUpdateActivity) GetConfigJson() string { @@ -36765,7 +36831,7 @@ type ConfigureNmxClusterActivity struct { func (x *ConfigureNmxClusterActivity) Reset() { *x = ConfigureNmxClusterActivity{} - mi := &file_nico_nico_proto_msgTypes[495] + mi := &file_nico_nico_proto_msgTypes[496] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36777,7 +36843,7 @@ func (x *ConfigureNmxClusterActivity) String() string { func (*ConfigureNmxClusterActivity) ProtoMessage() {} func (x *ConfigureNmxClusterActivity) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[495] + mi := &file_nico_nico_proto_msgTypes[496] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36790,7 +36856,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{495} + return file_nico_nico_proto_rawDescGZIP(), []int{496} } type PowerSequenceActivity struct { @@ -36801,7 +36867,7 @@ type PowerSequenceActivity struct { func (x *PowerSequenceActivity) Reset() { *x = PowerSequenceActivity{} - mi := &file_nico_nico_proto_msgTypes[496] + mi := &file_nico_nico_proto_msgTypes[497] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36813,7 +36879,7 @@ func (x *PowerSequenceActivity) String() string { func (*PowerSequenceActivity) ProtoMessage() {} func (x *PowerSequenceActivity) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[496] + mi := &file_nico_nico_proto_msgTypes[497] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36826,7 +36892,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{496} + return file_nico_nico_proto_rawDescGZIP(), []int{497} } // A single maintenance activity with its per-activity configuration. @@ -36846,7 +36912,7 @@ type MaintenanceActivityConfig struct { func (x *MaintenanceActivityConfig) Reset() { *x = MaintenanceActivityConfig{} - mi := &file_nico_nico_proto_msgTypes[497] + mi := &file_nico_nico_proto_msgTypes[498] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36858,7 +36924,7 @@ func (x *MaintenanceActivityConfig) String() string { func (*MaintenanceActivityConfig) ProtoMessage() {} func (x *MaintenanceActivityConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[497] + mi := &file_nico_nico_proto_msgTypes[498] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36871,7 +36937,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{497} + return file_nico_nico_proto_rawDescGZIP(), []int{498} } func (x *MaintenanceActivityConfig) GetActivity() isMaintenanceActivityConfig_Activity { @@ -36962,7 +37028,7 @@ type RackMaintenanceScope struct { func (x *RackMaintenanceScope) Reset() { *x = RackMaintenanceScope{} - mi := &file_nico_nico_proto_msgTypes[498] + mi := &file_nico_nico_proto_msgTypes[499] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36974,7 +37040,7 @@ func (x *RackMaintenanceScope) String() string { func (*RackMaintenanceScope) ProtoMessage() {} func (x *RackMaintenanceScope) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[498] + mi := &file_nico_nico_proto_msgTypes[499] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36987,7 +37053,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{498} + return file_nico_nico_proto_rawDescGZIP(), []int{499} } func (x *RackMaintenanceScope) GetMachineIds() []string { @@ -37031,7 +37097,7 @@ type RackMaintenanceOnDemandRequest struct { func (x *RackMaintenanceOnDemandRequest) Reset() { *x = RackMaintenanceOnDemandRequest{} - mi := &file_nico_nico_proto_msgTypes[499] + mi := &file_nico_nico_proto_msgTypes[500] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37043,7 +37109,7 @@ func (x *RackMaintenanceOnDemandRequest) String() string { func (*RackMaintenanceOnDemandRequest) ProtoMessage() {} func (x *RackMaintenanceOnDemandRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[499] + mi := &file_nico_nico_proto_msgTypes[500] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37056,7 +37122,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{499} + return file_nico_nico_proto_rawDescGZIP(), []int{500} } func (x *RackMaintenanceOnDemandRequest) GetRackId() *RackId { @@ -37081,7 +37147,7 @@ type RackMaintenanceOnDemandResponse struct { func (x *RackMaintenanceOnDemandResponse) Reset() { *x = RackMaintenanceOnDemandResponse{} - mi := &file_nico_nico_proto_msgTypes[500] + mi := &file_nico_nico_proto_msgTypes[501] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37093,7 +37159,7 @@ func (x *RackMaintenanceOnDemandResponse) String() string { func (*RackMaintenanceOnDemandResponse) ProtoMessage() {} func (x *RackMaintenanceOnDemandResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[500] + mi := &file_nico_nico_proto_msgTypes[501] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37106,7 +37172,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{500} + return file_nico_nico_proto_rawDescGZIP(), []int{501} } type AdminPowerControlRequest struct { @@ -37120,7 +37186,7 @@ type AdminPowerControlRequest struct { func (x *AdminPowerControlRequest) Reset() { *x = AdminPowerControlRequest{} - mi := &file_nico_nico_proto_msgTypes[501] + mi := &file_nico_nico_proto_msgTypes[502] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37132,7 +37198,7 @@ func (x *AdminPowerControlRequest) String() string { func (*AdminPowerControlRequest) ProtoMessage() {} func (x *AdminPowerControlRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[501] + mi := &file_nico_nico_proto_msgTypes[502] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37145,7 +37211,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{501} + return file_nico_nico_proto_rawDescGZIP(), []int{502} } func (x *AdminPowerControlRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -37178,7 +37244,7 @@ type AdminPowerControlResponse struct { func (x *AdminPowerControlResponse) Reset() { *x = AdminPowerControlResponse{} - mi := &file_nico_nico_proto_msgTypes[502] + mi := &file_nico_nico_proto_msgTypes[503] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37190,7 +37256,7 @@ func (x *AdminPowerControlResponse) String() string { func (*AdminPowerControlResponse) ProtoMessage() {} func (x *AdminPowerControlResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[502] + mi := &file_nico_nico_proto_msgTypes[503] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37203,7 +37269,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{502} + return file_nico_nico_proto_rawDescGZIP(), []int{503} } func (x *AdminPowerControlResponse) GetMsg() string { @@ -37223,7 +37289,7 @@ type GetRedfishJobStateRequest struct { func (x *GetRedfishJobStateRequest) Reset() { *x = GetRedfishJobStateRequest{} - mi := &file_nico_nico_proto_msgTypes[503] + mi := &file_nico_nico_proto_msgTypes[504] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37235,7 +37301,7 @@ func (x *GetRedfishJobStateRequest) String() string { func (*GetRedfishJobStateRequest) ProtoMessage() {} func (x *GetRedfishJobStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[503] + mi := &file_nico_nico_proto_msgTypes[504] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37248,7 +37314,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{503} + return file_nico_nico_proto_rawDescGZIP(), []int{504} } func (x *GetRedfishJobStateRequest) GetMachineId() *MachineId { @@ -37274,7 +37340,7 @@ type GetRedfishJobStateResponse struct { func (x *GetRedfishJobStateResponse) Reset() { *x = GetRedfishJobStateResponse{} - mi := &file_nico_nico_proto_msgTypes[504] + mi := &file_nico_nico_proto_msgTypes[505] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37286,7 +37352,7 @@ func (x *GetRedfishJobStateResponse) String() string { func (*GetRedfishJobStateResponse) ProtoMessage() {} func (x *GetRedfishJobStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[504] + mi := &file_nico_nico_proto_msgTypes[505] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37299,7 +37365,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{504} + return file_nico_nico_proto_rawDescGZIP(), []int{505} } func (x *GetRedfishJobStateResponse) GetJobState() GetRedfishJobStateResponse_RedfishJobState { @@ -37318,7 +37384,7 @@ type MachineValidationRunList struct { func (x *MachineValidationRunList) Reset() { *x = MachineValidationRunList{} - mi := &file_nico_nico_proto_msgTypes[505] + mi := &file_nico_nico_proto_msgTypes[506] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37330,7 +37396,7 @@ func (x *MachineValidationRunList) String() string { func (*MachineValidationRunList) ProtoMessage() {} func (x *MachineValidationRunList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[505] + mi := &file_nico_nico_proto_msgTypes[506] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37343,7 +37409,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{505} + return file_nico_nico_proto_rawDescGZIP(), []int{506} } func (x *MachineValidationRunList) GetRuns() []*MachineValidationRun { @@ -37363,7 +37429,7 @@ type MachineValidationRunListGetRequest struct { func (x *MachineValidationRunListGetRequest) Reset() { *x = MachineValidationRunListGetRequest{} - mi := &file_nico_nico_proto_msgTypes[506] + mi := &file_nico_nico_proto_msgTypes[507] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37375,7 +37441,7 @@ func (x *MachineValidationRunListGetRequest) String() string { func (*MachineValidationRunListGetRequest) ProtoMessage() {} func (x *MachineValidationRunListGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[506] + mi := &file_nico_nico_proto_msgTypes[507] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37388,7 +37454,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{506} + return file_nico_nico_proto_rawDescGZIP(), []int{507} } func (x *MachineValidationRunListGetRequest) GetMachineId() *MachineId { @@ -37414,7 +37480,7 @@ type MachineValidationRunItemSearchFilter struct { func (x *MachineValidationRunItemSearchFilter) Reset() { *x = MachineValidationRunItemSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[507] + mi := &file_nico_nico_proto_msgTypes[508] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37426,7 +37492,7 @@ func (x *MachineValidationRunItemSearchFilter) String() string { func (*MachineValidationRunItemSearchFilter) ProtoMessage() {} func (x *MachineValidationRunItemSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[507] + mi := &file_nico_nico_proto_msgTypes[508] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37439,7 +37505,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{507} + return file_nico_nico_proto_rawDescGZIP(), []int{508} } func (x *MachineValidationRunItemSearchFilter) GetValidationId() *MachineValidationId { @@ -37458,7 +37524,7 @@ type MachineValidationRunItemIdList struct { func (x *MachineValidationRunItemIdList) Reset() { *x = MachineValidationRunItemIdList{} - mi := &file_nico_nico_proto_msgTypes[508] + mi := &file_nico_nico_proto_msgTypes[509] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37470,7 +37536,7 @@ func (x *MachineValidationRunItemIdList) String() string { func (*MachineValidationRunItemIdList) ProtoMessage() {} func (x *MachineValidationRunItemIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[508] + mi := &file_nico_nico_proto_msgTypes[509] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37483,7 +37549,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{508} + return file_nico_nico_proto_rawDescGZIP(), []int{509} } func (x *MachineValidationRunItemIdList) GetRunItemIds() []*UUID { @@ -37502,7 +37568,7 @@ type MachineValidationRunItemsByIdsRequest struct { func (x *MachineValidationRunItemsByIdsRequest) Reset() { *x = MachineValidationRunItemsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[509] + mi := &file_nico_nico_proto_msgTypes[510] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37514,7 +37580,7 @@ func (x *MachineValidationRunItemsByIdsRequest) String() string { func (*MachineValidationRunItemsByIdsRequest) ProtoMessage() {} func (x *MachineValidationRunItemsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[509] + mi := &file_nico_nico_proto_msgTypes[510] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37527,7 +37593,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{509} + return file_nico_nico_proto_rawDescGZIP(), []int{510} } func (x *MachineValidationRunItemsByIdsRequest) GetRunItemIds() []*UUID { @@ -37546,7 +37612,7 @@ type MachineValidationRunItemList struct { func (x *MachineValidationRunItemList) Reset() { *x = MachineValidationRunItemList{} - mi := &file_nico_nico_proto_msgTypes[510] + mi := &file_nico_nico_proto_msgTypes[511] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37558,7 +37624,7 @@ func (x *MachineValidationRunItemList) String() string { func (*MachineValidationRunItemList) ProtoMessage() {} func (x *MachineValidationRunItemList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[510] + mi := &file_nico_nico_proto_msgTypes[511] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37571,7 +37637,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{510} + return file_nico_nico_proto_rawDescGZIP(), []int{511} } func (x *MachineValidationRunItemList) GetRunItems() []*MachineValidationRunItem { @@ -37607,7 +37673,7 @@ type MachineValidationRunItem struct { func (x *MachineValidationRunItem) Reset() { *x = MachineValidationRunItem{} - mi := &file_nico_nico_proto_msgTypes[511] + mi := &file_nico_nico_proto_msgTypes[512] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37619,7 +37685,7 @@ func (x *MachineValidationRunItem) String() string { func (*MachineValidationRunItem) ProtoMessage() {} func (x *MachineValidationRunItem) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[511] + mi := &file_nico_nico_proto_msgTypes[512] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37632,7 +37698,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{511} + return file_nico_nico_proto_rawDescGZIP(), []int{512} } func (x *MachineValidationRunItem) GetRunItemId() *UUID { @@ -37770,7 +37836,7 @@ type MachineValidationAttemptGetRequest struct { func (x *MachineValidationAttemptGetRequest) Reset() { *x = MachineValidationAttemptGetRequest{} - mi := &file_nico_nico_proto_msgTypes[512] + mi := &file_nico_nico_proto_msgTypes[513] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37782,7 +37848,7 @@ func (x *MachineValidationAttemptGetRequest) String() string { func (*MachineValidationAttemptGetRequest) ProtoMessage() {} func (x *MachineValidationAttemptGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[512] + mi := &file_nico_nico_proto_msgTypes[513] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37795,7 +37861,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{512} + return file_nico_nico_proto_rawDescGZIP(), []int{513} } func (x *MachineValidationAttemptGetRequest) GetAttemptId() *UUID { @@ -37828,7 +37894,7 @@ type MachineValidationAttempt struct { func (x *MachineValidationAttempt) Reset() { *x = MachineValidationAttempt{} - mi := &file_nico_nico_proto_msgTypes[513] + mi := &file_nico_nico_proto_msgTypes[514] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37840,7 +37906,7 @@ func (x *MachineValidationAttempt) String() string { func (*MachineValidationAttempt) ProtoMessage() {} func (x *MachineValidationAttempt) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[513] + mi := &file_nico_nico_proto_msgTypes[514] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37853,7 +37919,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{513} + return file_nico_nico_proto_rawDescGZIP(), []int{514} } func (x *MachineValidationAttempt) GetAttemptId() *UUID { @@ -37976,7 +38042,7 @@ type MachineValidationHeartbeatRequest struct { func (x *MachineValidationHeartbeatRequest) Reset() { *x = MachineValidationHeartbeatRequest{} - mi := &file_nico_nico_proto_msgTypes[514] + mi := &file_nico_nico_proto_msgTypes[515] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37988,7 +38054,7 @@ func (x *MachineValidationHeartbeatRequest) String() string { func (*MachineValidationHeartbeatRequest) ProtoMessage() {} func (x *MachineValidationHeartbeatRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[514] + mi := &file_nico_nico_proto_msgTypes[515] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38001,7 +38067,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{514} + return file_nico_nico_proto_rawDescGZIP(), []int{515} } func (x *MachineValidationHeartbeatRequest) GetValidationId() *MachineValidationId { @@ -38076,7 +38142,7 @@ type MachineValidationHeartbeatResponse struct { func (x *MachineValidationHeartbeatResponse) Reset() { *x = MachineValidationHeartbeatResponse{} - mi := &file_nico_nico_proto_msgTypes[515] + mi := &file_nico_nico_proto_msgTypes[516] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38088,7 +38154,7 @@ func (x *MachineValidationHeartbeatResponse) String() string { func (*MachineValidationHeartbeatResponse) ProtoMessage() {} func (x *MachineValidationHeartbeatResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[515] + mi := &file_nico_nico_proto_msgTypes[516] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38101,7 +38167,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{515} + return file_nico_nico_proto_rawDescGZIP(), []int{516} } func (x *MachineValidationHeartbeatResponse) GetAccepted() bool { @@ -38120,7 +38186,7 @@ type IsBmcInManagedHostResponse struct { func (x *IsBmcInManagedHostResponse) Reset() { *x = IsBmcInManagedHostResponse{} - mi := &file_nico_nico_proto_msgTypes[516] + mi := &file_nico_nico_proto_msgTypes[517] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38132,7 +38198,7 @@ func (x *IsBmcInManagedHostResponse) String() string { func (*IsBmcInManagedHostResponse) ProtoMessage() {} func (x *IsBmcInManagedHostResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[516] + mi := &file_nico_nico_proto_msgTypes[517] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38145,7 +38211,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{516} + return file_nico_nico_proto_rawDescGZIP(), []int{517} } func (x *IsBmcInManagedHostResponse) GetInManagedHost() bool { @@ -38164,7 +38230,7 @@ type BmcCredentialStatusResponse struct { func (x *BmcCredentialStatusResponse) Reset() { *x = BmcCredentialStatusResponse{} - mi := &file_nico_nico_proto_msgTypes[517] + mi := &file_nico_nico_proto_msgTypes[518] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38176,7 +38242,7 @@ func (x *BmcCredentialStatusResponse) String() string { func (*BmcCredentialStatusResponse) ProtoMessage() {} func (x *BmcCredentialStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[517] + mi := &file_nico_nico_proto_msgTypes[518] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38189,7 +38255,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{517} + return file_nico_nico_proto_rawDescGZIP(), []int{518} } func (x *BmcCredentialStatusResponse) GetHaveCredentials() bool { @@ -38215,7 +38281,7 @@ type MachineValidationTestsGetRequest struct { func (x *MachineValidationTestsGetRequest) Reset() { *x = MachineValidationTestsGetRequest{} - mi := &file_nico_nico_proto_msgTypes[518] + mi := &file_nico_nico_proto_msgTypes[519] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38227,7 +38293,7 @@ func (x *MachineValidationTestsGetRequest) String() string { func (*MachineValidationTestsGetRequest) ProtoMessage() {} func (x *MachineValidationTestsGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[518] + mi := &file_nico_nico_proto_msgTypes[519] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38240,7 +38306,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{518} + return file_nico_nico_proto_rawDescGZIP(), []int{519} } func (x *MachineValidationTestsGetRequest) GetSupportedPlatforms() []string { @@ -38310,7 +38376,7 @@ type MachineValidationTestUpdateRequest struct { func (x *MachineValidationTestUpdateRequest) Reset() { *x = MachineValidationTestUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[519] + mi := &file_nico_nico_proto_msgTypes[520] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38322,7 +38388,7 @@ func (x *MachineValidationTestUpdateRequest) String() string { func (*MachineValidationTestUpdateRequest) ProtoMessage() {} func (x *MachineValidationTestUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[519] + mi := &file_nico_nico_proto_msgTypes[520] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38335,7 +38401,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{519} + return file_nico_nico_proto_rawDescGZIP(), []int{520} } func (x *MachineValidationTestUpdateRequest) GetTestId() string { @@ -38385,7 +38451,7 @@ type MachineValidationTestAddRequest struct { func (x *MachineValidationTestAddRequest) Reset() { *x = MachineValidationTestAddRequest{} - mi := &file_nico_nico_proto_msgTypes[520] + mi := &file_nico_nico_proto_msgTypes[521] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38397,7 +38463,7 @@ func (x *MachineValidationTestAddRequest) String() string { func (*MachineValidationTestAddRequest) ProtoMessage() {} func (x *MachineValidationTestAddRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[520] + mi := &file_nico_nico_proto_msgTypes[521] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38410,7 +38476,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{520} + return file_nico_nico_proto_rawDescGZIP(), []int{521} } func (x *MachineValidationTestAddRequest) GetName() string { @@ -38549,7 +38615,7 @@ type MachineValidationTestAddUpdateResponse struct { func (x *MachineValidationTestAddUpdateResponse) Reset() { *x = MachineValidationTestAddUpdateResponse{} - mi := &file_nico_nico_proto_msgTypes[521] + mi := &file_nico_nico_proto_msgTypes[522] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38561,7 +38627,7 @@ func (x *MachineValidationTestAddUpdateResponse) String() string { func (*MachineValidationTestAddUpdateResponse) ProtoMessage() {} func (x *MachineValidationTestAddUpdateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[521] + mi := &file_nico_nico_proto_msgTypes[522] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38574,7 +38640,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{521} + return file_nico_nico_proto_rawDescGZIP(), []int{522} } func (x *MachineValidationTestAddUpdateResponse) GetTestId() string { @@ -38600,7 +38666,7 @@ type MachineValidationTestsGetResponse struct { func (x *MachineValidationTestsGetResponse) Reset() { *x = MachineValidationTestsGetResponse{} - mi := &file_nico_nico_proto_msgTypes[522] + mi := &file_nico_nico_proto_msgTypes[523] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38612,7 +38678,7 @@ func (x *MachineValidationTestsGetResponse) String() string { func (*MachineValidationTestsGetResponse) ProtoMessage() {} func (x *MachineValidationTestsGetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[522] + mi := &file_nico_nico_proto_msgTypes[523] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38625,7 +38691,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{522} + return file_nico_nico_proto_rawDescGZIP(), []int{523} } func (x *MachineValidationTestsGetResponse) GetTests() []*MachineValidationTest { @@ -38645,7 +38711,7 @@ type MachineValidationTestVerfiedRequest struct { func (x *MachineValidationTestVerfiedRequest) Reset() { *x = MachineValidationTestVerfiedRequest{} - mi := &file_nico_nico_proto_msgTypes[523] + mi := &file_nico_nico_proto_msgTypes[524] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38657,7 +38723,7 @@ func (x *MachineValidationTestVerfiedRequest) String() string { func (*MachineValidationTestVerfiedRequest) ProtoMessage() {} func (x *MachineValidationTestVerfiedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[523] + mi := &file_nico_nico_proto_msgTypes[524] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38670,7 +38736,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{523} + return file_nico_nico_proto_rawDescGZIP(), []int{524} } func (x *MachineValidationTestVerfiedRequest) GetTestId() string { @@ -38696,7 +38762,7 @@ type MachineValidationTestVerfiedResponse struct { func (x *MachineValidationTestVerfiedResponse) Reset() { *x = MachineValidationTestVerfiedResponse{} - mi := &file_nico_nico_proto_msgTypes[524] + mi := &file_nico_nico_proto_msgTypes[525] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38708,7 +38774,7 @@ func (x *MachineValidationTestVerfiedResponse) String() string { func (*MachineValidationTestVerfiedResponse) ProtoMessage() {} func (x *MachineValidationTestVerfiedResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[524] + mi := &file_nico_nico_proto_msgTypes[525] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38721,7 +38787,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{524} + return file_nico_nico_proto_rawDescGZIP(), []int{525} } func (x *MachineValidationTestVerfiedResponse) GetMessage() string { @@ -38762,7 +38828,7 @@ type MachineValidationTest struct { func (x *MachineValidationTest) Reset() { *x = MachineValidationTest{} - mi := &file_nico_nico_proto_msgTypes[525] + mi := &file_nico_nico_proto_msgTypes[526] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38774,7 +38840,7 @@ func (x *MachineValidationTest) String() string { func (*MachineValidationTest) ProtoMessage() {} func (x *MachineValidationTest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[525] + mi := &file_nico_nico_proto_msgTypes[526] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38787,7 +38853,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{525} + return file_nico_nico_proto_rawDescGZIP(), []int{526} } func (x *MachineValidationTest) GetTestId() string { @@ -38961,7 +39027,7 @@ type MachineValidationTestNextVersionResponse struct { func (x *MachineValidationTestNextVersionResponse) Reset() { *x = MachineValidationTestNextVersionResponse{} - mi := &file_nico_nico_proto_msgTypes[526] + mi := &file_nico_nico_proto_msgTypes[527] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38973,7 +39039,7 @@ func (x *MachineValidationTestNextVersionResponse) String() string { func (*MachineValidationTestNextVersionResponse) ProtoMessage() {} func (x *MachineValidationTestNextVersionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[526] + mi := &file_nico_nico_proto_msgTypes[527] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38986,7 +39052,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{526} + return file_nico_nico_proto_rawDescGZIP(), []int{527} } func (x *MachineValidationTestNextVersionResponse) GetTestId() string { @@ -39012,7 +39078,7 @@ type MachineValidationTestNextVersionRequest struct { func (x *MachineValidationTestNextVersionRequest) Reset() { *x = MachineValidationTestNextVersionRequest{} - mi := &file_nico_nico_proto_msgTypes[527] + mi := &file_nico_nico_proto_msgTypes[528] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39024,7 +39090,7 @@ func (x *MachineValidationTestNextVersionRequest) String() string { func (*MachineValidationTestNextVersionRequest) ProtoMessage() {} func (x *MachineValidationTestNextVersionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[527] + mi := &file_nico_nico_proto_msgTypes[528] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39037,7 +39103,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{527} + return file_nico_nico_proto_rawDescGZIP(), []int{528} } func (x *MachineValidationTestNextVersionRequest) GetTestId() string { @@ -39058,7 +39124,7 @@ type MachineValidationTestEnableDisableTestRequest struct { func (x *MachineValidationTestEnableDisableTestRequest) Reset() { *x = MachineValidationTestEnableDisableTestRequest{} - mi := &file_nico_nico_proto_msgTypes[528] + mi := &file_nico_nico_proto_msgTypes[529] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39070,7 +39136,7 @@ func (x *MachineValidationTestEnableDisableTestRequest) String() string { func (*MachineValidationTestEnableDisableTestRequest) ProtoMessage() {} func (x *MachineValidationTestEnableDisableTestRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[528] + mi := &file_nico_nico_proto_msgTypes[529] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39083,7 +39149,7 @@ func (x *MachineValidationTestEnableDisableTestRequest) ProtoReflect() protorefl // Deprecated: Use MachineValidationTestEnableDisableTestRequest.ProtoReflect.Descriptor instead. func (*MachineValidationTestEnableDisableTestRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{528} + return file_nico_nico_proto_rawDescGZIP(), []int{529} } func (x *MachineValidationTestEnableDisableTestRequest) GetTestId() string { @@ -39116,7 +39182,7 @@ type MachineValidationTestEnableDisableTestResponse struct { func (x *MachineValidationTestEnableDisableTestResponse) Reset() { *x = MachineValidationTestEnableDisableTestResponse{} - mi := &file_nico_nico_proto_msgTypes[529] + mi := &file_nico_nico_proto_msgTypes[530] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39128,7 +39194,7 @@ func (x *MachineValidationTestEnableDisableTestResponse) String() string { func (*MachineValidationTestEnableDisableTestResponse) ProtoMessage() {} func (x *MachineValidationTestEnableDisableTestResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[529] + mi := &file_nico_nico_proto_msgTypes[530] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39141,7 +39207,7 @@ func (x *MachineValidationTestEnableDisableTestResponse) ProtoReflect() protoref // Deprecated: Use MachineValidationTestEnableDisableTestResponse.ProtoReflect.Descriptor instead. func (*MachineValidationTestEnableDisableTestResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{529} + return file_nico_nico_proto_rawDescGZIP(), []int{530} } func (x *MachineValidationTestEnableDisableTestResponse) GetMessage() string { @@ -39163,7 +39229,7 @@ type MachineValidationRunRequest struct { func (x *MachineValidationRunRequest) Reset() { *x = MachineValidationRunRequest{} - mi := &file_nico_nico_proto_msgTypes[530] + mi := &file_nico_nico_proto_msgTypes[531] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39175,7 +39241,7 @@ func (x *MachineValidationRunRequest) String() string { func (*MachineValidationRunRequest) ProtoMessage() {} func (x *MachineValidationRunRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[530] + mi := &file_nico_nico_proto_msgTypes[531] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39188,7 +39254,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{530} + return file_nico_nico_proto_rawDescGZIP(), []int{531} } func (x *MachineValidationRunRequest) GetValidationId() *MachineValidationId { @@ -39228,7 +39294,7 @@ type MachineValidationRunResponse struct { func (x *MachineValidationRunResponse) Reset() { *x = MachineValidationRunResponse{} - mi := &file_nico_nico_proto_msgTypes[531] + mi := &file_nico_nico_proto_msgTypes[532] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39240,7 +39306,7 @@ func (x *MachineValidationRunResponse) String() string { func (*MachineValidationRunResponse) ProtoMessage() {} func (x *MachineValidationRunResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[531] + mi := &file_nico_nico_proto_msgTypes[532] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39253,7 +39319,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{531} + return file_nico_nico_proto_rawDescGZIP(), []int{532} } func (x *MachineValidationRunResponse) GetMessage() string { @@ -39276,7 +39342,7 @@ type MachineCapabilityAttributesCpu struct { func (x *MachineCapabilityAttributesCpu) Reset() { *x = MachineCapabilityAttributesCpu{} - mi := &file_nico_nico_proto_msgTypes[532] + mi := &file_nico_nico_proto_msgTypes[533] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39288,7 +39354,7 @@ func (x *MachineCapabilityAttributesCpu) String() string { func (*MachineCapabilityAttributesCpu) ProtoMessage() {} func (x *MachineCapabilityAttributesCpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[532] + mi := &file_nico_nico_proto_msgTypes[533] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39301,7 +39367,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{532} + return file_nico_nico_proto_rawDescGZIP(), []int{533} } func (x *MachineCapabilityAttributesCpu) GetName() string { @@ -39355,7 +39421,7 @@ type MachineCapabilityAttributesGpu struct { func (x *MachineCapabilityAttributesGpu) Reset() { *x = MachineCapabilityAttributesGpu{} - mi := &file_nico_nico_proto_msgTypes[533] + mi := &file_nico_nico_proto_msgTypes[534] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39367,7 +39433,7 @@ func (x *MachineCapabilityAttributesGpu) String() string { func (*MachineCapabilityAttributesGpu) ProtoMessage() {} func (x *MachineCapabilityAttributesGpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[533] + mi := &file_nico_nico_proto_msgTypes[534] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39380,7 +39446,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{533} + return file_nico_nico_proto_rawDescGZIP(), []int{534} } func (x *MachineCapabilityAttributesGpu) GetName() string { @@ -39451,7 +39517,7 @@ type MachineCapabilityAttributesMemory struct { func (x *MachineCapabilityAttributesMemory) Reset() { *x = MachineCapabilityAttributesMemory{} - mi := &file_nico_nico_proto_msgTypes[534] + mi := &file_nico_nico_proto_msgTypes[535] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39463,7 +39529,7 @@ func (x *MachineCapabilityAttributesMemory) String() string { func (*MachineCapabilityAttributesMemory) ProtoMessage() {} func (x *MachineCapabilityAttributesMemory) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[534] + mi := &file_nico_nico_proto_msgTypes[535] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39476,7 +39542,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{534} + return file_nico_nico_proto_rawDescGZIP(), []int{535} } func (x *MachineCapabilityAttributesMemory) GetName() string { @@ -39519,7 +39585,7 @@ type MachineCapabilityAttributesStorage struct { func (x *MachineCapabilityAttributesStorage) Reset() { *x = MachineCapabilityAttributesStorage{} - mi := &file_nico_nico_proto_msgTypes[535] + mi := &file_nico_nico_proto_msgTypes[536] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39531,7 +39597,7 @@ func (x *MachineCapabilityAttributesStorage) String() string { func (*MachineCapabilityAttributesStorage) ProtoMessage() {} func (x *MachineCapabilityAttributesStorage) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[535] + mi := &file_nico_nico_proto_msgTypes[536] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39544,7 +39610,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{535} + return file_nico_nico_proto_rawDescGZIP(), []int{536} } func (x *MachineCapabilityAttributesStorage) GetName() string { @@ -39587,7 +39653,7 @@ type MachineCapabilityAttributesNetwork struct { func (x *MachineCapabilityAttributesNetwork) Reset() { *x = MachineCapabilityAttributesNetwork{} - mi := &file_nico_nico_proto_msgTypes[536] + mi := &file_nico_nico_proto_msgTypes[537] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39599,7 +39665,7 @@ func (x *MachineCapabilityAttributesNetwork) String() string { func (*MachineCapabilityAttributesNetwork) ProtoMessage() {} func (x *MachineCapabilityAttributesNetwork) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[536] + mi := &file_nico_nico_proto_msgTypes[537] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39612,7 +39678,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{536} + return file_nico_nico_proto_rawDescGZIP(), []int{537} } func (x *MachineCapabilityAttributesNetwork) GetName() string { @@ -39662,7 +39728,7 @@ type MachineCapabilityAttributesInfiniband struct { func (x *MachineCapabilityAttributesInfiniband) Reset() { *x = MachineCapabilityAttributesInfiniband{} - mi := &file_nico_nico_proto_msgTypes[537] + mi := &file_nico_nico_proto_msgTypes[538] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39674,7 +39740,7 @@ func (x *MachineCapabilityAttributesInfiniband) String() string { func (*MachineCapabilityAttributesInfiniband) ProtoMessage() {} func (x *MachineCapabilityAttributesInfiniband) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[537] + mi := &file_nico_nico_proto_msgTypes[538] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39687,7 +39753,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{537} + return file_nico_nico_proto_rawDescGZIP(), []int{538} } func (x *MachineCapabilityAttributesInfiniband) GetName() string { @@ -39729,7 +39795,7 @@ type MachineCapabilityAttributesDpu struct { func (x *MachineCapabilityAttributesDpu) Reset() { *x = MachineCapabilityAttributesDpu{} - mi := &file_nico_nico_proto_msgTypes[538] + mi := &file_nico_nico_proto_msgTypes[539] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39741,7 +39807,7 @@ func (x *MachineCapabilityAttributesDpu) String() string { func (*MachineCapabilityAttributesDpu) ProtoMessage() {} func (x *MachineCapabilityAttributesDpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[538] + mi := &file_nico_nico_proto_msgTypes[539] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39754,7 +39820,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{538} + return file_nico_nico_proto_rawDescGZIP(), []int{539} } func (x *MachineCapabilityAttributesDpu) GetName() string { @@ -39793,7 +39859,7 @@ type MachineCapabilitiesSet struct { func (x *MachineCapabilitiesSet) Reset() { *x = MachineCapabilitiesSet{} - mi := &file_nico_nico_proto_msgTypes[539] + mi := &file_nico_nico_proto_msgTypes[540] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39805,7 +39871,7 @@ func (x *MachineCapabilitiesSet) String() string { func (*MachineCapabilitiesSet) ProtoMessage() {} func (x *MachineCapabilitiesSet) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[539] + mi := &file_nico_nico_proto_msgTypes[540] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39818,7 +39884,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{539} + return file_nico_nico_proto_rawDescGZIP(), []int{540} } func (x *MachineCapabilitiesSet) GetCpu() []*MachineCapabilityAttributesCpu { @@ -39882,7 +39948,7 @@ type InstanceTypeAttributes struct { func (x *InstanceTypeAttributes) Reset() { *x = InstanceTypeAttributes{} - mi := &file_nico_nico_proto_msgTypes[540] + mi := &file_nico_nico_proto_msgTypes[541] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39894,7 +39960,7 @@ func (x *InstanceTypeAttributes) String() string { func (*InstanceTypeAttributes) ProtoMessage() {} func (x *InstanceTypeAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[540] + mi := &file_nico_nico_proto_msgTypes[541] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39907,7 +39973,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{540} + return file_nico_nico_proto_rawDescGZIP(), []int{541} } func (x *InstanceTypeAttributes) GetDesiredCapabilities() []*InstanceTypeMachineCapabilityFilterAttributes { @@ -39936,7 +40002,7 @@ type InstanceType struct { func (x *InstanceType) Reset() { *x = InstanceType{} - mi := &file_nico_nico_proto_msgTypes[541] + mi := &file_nico_nico_proto_msgTypes[542] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39948,7 +40014,7 @@ func (x *InstanceType) String() string { func (*InstanceType) ProtoMessage() {} func (x *InstanceType) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[541] + mi := &file_nico_nico_proto_msgTypes[542] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39961,7 +40027,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{541} + return file_nico_nico_proto_rawDescGZIP(), []int{542} } func (x *InstanceType) GetId() string { @@ -40032,7 +40098,7 @@ type InstanceTypeMachineCapabilityFilterAttributes struct { func (x *InstanceTypeMachineCapabilityFilterAttributes) Reset() { *x = InstanceTypeMachineCapabilityFilterAttributes{} - mi := &file_nico_nico_proto_msgTypes[542] + mi := &file_nico_nico_proto_msgTypes[543] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40044,7 +40110,7 @@ func (x *InstanceTypeMachineCapabilityFilterAttributes) String() string { func (*InstanceTypeMachineCapabilityFilterAttributes) ProtoMessage() {} func (x *InstanceTypeMachineCapabilityFilterAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[542] + mi := &file_nico_nico_proto_msgTypes[543] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40057,7 +40123,7 @@ func (x *InstanceTypeMachineCapabilityFilterAttributes) ProtoReflect() protorefl // Deprecated: Use InstanceTypeMachineCapabilityFilterAttributes.ProtoReflect.Descriptor instead. func (*InstanceTypeMachineCapabilityFilterAttributes) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{542} + return file_nico_nico_proto_rawDescGZIP(), []int{543} } func (x *InstanceTypeMachineCapabilityFilterAttributes) GetCapabilityType() MachineCapabilityType { @@ -40148,7 +40214,7 @@ type CreateInstanceTypeRequest struct { func (x *CreateInstanceTypeRequest) Reset() { *x = CreateInstanceTypeRequest{} - mi := &file_nico_nico_proto_msgTypes[543] + mi := &file_nico_nico_proto_msgTypes[544] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40160,7 +40226,7 @@ func (x *CreateInstanceTypeRequest) String() string { func (*CreateInstanceTypeRequest) ProtoMessage() {} func (x *CreateInstanceTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[543] + mi := &file_nico_nico_proto_msgTypes[544] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40173,7 +40239,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{543} + return file_nico_nico_proto_rawDescGZIP(), []int{544} } func (x *CreateInstanceTypeRequest) GetId() string { @@ -40206,7 +40272,7 @@ type CreateInstanceTypeResponse struct { func (x *CreateInstanceTypeResponse) Reset() { *x = CreateInstanceTypeResponse{} - mi := &file_nico_nico_proto_msgTypes[544] + mi := &file_nico_nico_proto_msgTypes[545] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40218,7 +40284,7 @@ func (x *CreateInstanceTypeResponse) String() string { func (*CreateInstanceTypeResponse) ProtoMessage() {} func (x *CreateInstanceTypeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[544] + mi := &file_nico_nico_proto_msgTypes[545] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40231,7 +40297,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{544} + return file_nico_nico_proto_rawDescGZIP(), []int{545} } func (x *CreateInstanceTypeResponse) GetInstanceType() *InstanceType { @@ -40249,7 +40315,7 @@ type FindInstanceTypeIdsRequest struct { func (x *FindInstanceTypeIdsRequest) Reset() { *x = FindInstanceTypeIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[545] + mi := &file_nico_nico_proto_msgTypes[546] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40261,7 +40327,7 @@ func (x *FindInstanceTypeIdsRequest) String() string { func (*FindInstanceTypeIdsRequest) ProtoMessage() {} func (x *FindInstanceTypeIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[545] + mi := &file_nico_nico_proto_msgTypes[546] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40274,7 +40340,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{545} + return file_nico_nico_proto_rawDescGZIP(), []int{546} } type FindInstanceTypeIdsResponse struct { @@ -40286,7 +40352,7 @@ type FindInstanceTypeIdsResponse struct { func (x *FindInstanceTypeIdsResponse) Reset() { *x = FindInstanceTypeIdsResponse{} - mi := &file_nico_nico_proto_msgTypes[546] + mi := &file_nico_nico_proto_msgTypes[547] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40298,7 +40364,7 @@ func (x *FindInstanceTypeIdsResponse) String() string { func (*FindInstanceTypeIdsResponse) ProtoMessage() {} func (x *FindInstanceTypeIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[546] + mi := &file_nico_nico_proto_msgTypes[547] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40311,7 +40377,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{546} + return file_nico_nico_proto_rawDescGZIP(), []int{547} } func (x *FindInstanceTypeIdsResponse) GetInstanceTypeIds() []string { @@ -40334,7 +40400,7 @@ type FindInstanceTypesByIdsRequest struct { func (x *FindInstanceTypesByIdsRequest) Reset() { *x = FindInstanceTypesByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[547] + mi := &file_nico_nico_proto_msgTypes[548] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40346,7 +40412,7 @@ func (x *FindInstanceTypesByIdsRequest) String() string { func (*FindInstanceTypesByIdsRequest) ProtoMessage() {} func (x *FindInstanceTypesByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[547] + mi := &file_nico_nico_proto_msgTypes[548] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40359,7 +40425,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{547} + return file_nico_nico_proto_rawDescGZIP(), []int{548} } func (x *FindInstanceTypesByIdsRequest) GetInstanceTypeIds() []string { @@ -40392,7 +40458,7 @@ type FindInstanceTypesByIdsResponse struct { func (x *FindInstanceTypesByIdsResponse) Reset() { *x = FindInstanceTypesByIdsResponse{} - mi := &file_nico_nico_proto_msgTypes[548] + mi := &file_nico_nico_proto_msgTypes[549] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40404,7 +40470,7 @@ func (x *FindInstanceTypesByIdsResponse) String() string { func (*FindInstanceTypesByIdsResponse) ProtoMessage() {} func (x *FindInstanceTypesByIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[548] + mi := &file_nico_nico_proto_msgTypes[549] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40417,7 +40483,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{548} + return file_nico_nico_proto_rawDescGZIP(), []int{549} } func (x *FindInstanceTypesByIdsResponse) GetInstanceTypes() []*InstanceType { @@ -40436,7 +40502,7 @@ type DeleteInstanceTypeRequest struct { func (x *DeleteInstanceTypeRequest) Reset() { *x = DeleteInstanceTypeRequest{} - mi := &file_nico_nico_proto_msgTypes[549] + mi := &file_nico_nico_proto_msgTypes[550] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40448,7 +40514,7 @@ func (x *DeleteInstanceTypeRequest) String() string { func (*DeleteInstanceTypeRequest) ProtoMessage() {} func (x *DeleteInstanceTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[549] + mi := &file_nico_nico_proto_msgTypes[550] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40461,7 +40527,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{549} + return file_nico_nico_proto_rawDescGZIP(), []int{550} } func (x *DeleteInstanceTypeRequest) GetId() string { @@ -40479,7 +40545,7 @@ type DeleteInstanceTypeResponse struct { func (x *DeleteInstanceTypeResponse) Reset() { *x = DeleteInstanceTypeResponse{} - mi := &file_nico_nico_proto_msgTypes[550] + mi := &file_nico_nico_proto_msgTypes[551] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40491,7 +40557,7 @@ func (x *DeleteInstanceTypeResponse) String() string { func (*DeleteInstanceTypeResponse) ProtoMessage() {} func (x *DeleteInstanceTypeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[550] + mi := &file_nico_nico_proto_msgTypes[551] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40504,7 +40570,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{550} + return file_nico_nico_proto_rawDescGZIP(), []int{551} } type UpdateInstanceTypeResponse struct { @@ -40516,7 +40582,7 @@ type UpdateInstanceTypeResponse struct { func (x *UpdateInstanceTypeResponse) Reset() { *x = UpdateInstanceTypeResponse{} - mi := &file_nico_nico_proto_msgTypes[551] + mi := &file_nico_nico_proto_msgTypes[552] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40528,7 +40594,7 @@ func (x *UpdateInstanceTypeResponse) String() string { func (*UpdateInstanceTypeResponse) ProtoMessage() {} func (x *UpdateInstanceTypeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[551] + mi := &file_nico_nico_proto_msgTypes[552] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40541,7 +40607,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{551} + return file_nico_nico_proto_rawDescGZIP(), []int{552} } func (x *UpdateInstanceTypeResponse) GetInstanceType() *InstanceType { @@ -40563,7 +40629,7 @@ type UpdateInstanceTypeRequest struct { func (x *UpdateInstanceTypeRequest) Reset() { *x = UpdateInstanceTypeRequest{} - mi := &file_nico_nico_proto_msgTypes[552] + mi := &file_nico_nico_proto_msgTypes[553] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40575,7 +40641,7 @@ func (x *UpdateInstanceTypeRequest) String() string { func (*UpdateInstanceTypeRequest) ProtoMessage() {} func (x *UpdateInstanceTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[552] + mi := &file_nico_nico_proto_msgTypes[553] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40588,7 +40654,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{552} + return file_nico_nico_proto_rawDescGZIP(), []int{553} } func (x *UpdateInstanceTypeRequest) GetId() string { @@ -40629,7 +40695,7 @@ type AssociateMachinesWithInstanceTypeRequest struct { func (x *AssociateMachinesWithInstanceTypeRequest) Reset() { *x = AssociateMachinesWithInstanceTypeRequest{} - mi := &file_nico_nico_proto_msgTypes[553] + mi := &file_nico_nico_proto_msgTypes[554] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40641,7 +40707,7 @@ func (x *AssociateMachinesWithInstanceTypeRequest) String() string { func (*AssociateMachinesWithInstanceTypeRequest) ProtoMessage() {} func (x *AssociateMachinesWithInstanceTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[553] + mi := &file_nico_nico_proto_msgTypes[554] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40654,7 +40720,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{553} + return file_nico_nico_proto_rawDescGZIP(), []int{554} } func (x *AssociateMachinesWithInstanceTypeRequest) GetInstanceTypeId() string { @@ -40679,7 +40745,7 @@ type AssociateMachinesWithInstanceTypeResponse struct { func (x *AssociateMachinesWithInstanceTypeResponse) Reset() { *x = AssociateMachinesWithInstanceTypeResponse{} - mi := &file_nico_nico_proto_msgTypes[554] + mi := &file_nico_nico_proto_msgTypes[555] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40691,7 +40757,7 @@ func (x *AssociateMachinesWithInstanceTypeResponse) String() string { func (*AssociateMachinesWithInstanceTypeResponse) ProtoMessage() {} func (x *AssociateMachinesWithInstanceTypeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[554] + mi := &file_nico_nico_proto_msgTypes[555] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40704,7 +40770,7 @@ func (x *AssociateMachinesWithInstanceTypeResponse) ProtoReflect() protoreflect. // Deprecated: Use AssociateMachinesWithInstanceTypeResponse.ProtoReflect.Descriptor instead. func (*AssociateMachinesWithInstanceTypeResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{554} + return file_nico_nico_proto_rawDescGZIP(), []int{555} } type RemoveMachineInstanceTypeAssociationRequest struct { @@ -40716,7 +40782,7 @@ type RemoveMachineInstanceTypeAssociationRequest struct { func (x *RemoveMachineInstanceTypeAssociationRequest) Reset() { *x = RemoveMachineInstanceTypeAssociationRequest{} - mi := &file_nico_nico_proto_msgTypes[555] + mi := &file_nico_nico_proto_msgTypes[556] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40728,7 +40794,7 @@ func (x *RemoveMachineInstanceTypeAssociationRequest) String() string { func (*RemoveMachineInstanceTypeAssociationRequest) ProtoMessage() {} func (x *RemoveMachineInstanceTypeAssociationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[555] + mi := &file_nico_nico_proto_msgTypes[556] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40741,7 +40807,7 @@ func (x *RemoveMachineInstanceTypeAssociationRequest) ProtoReflect() protoreflec // Deprecated: Use RemoveMachineInstanceTypeAssociationRequest.ProtoReflect.Descriptor instead. func (*RemoveMachineInstanceTypeAssociationRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{555} + return file_nico_nico_proto_rawDescGZIP(), []int{556} } func (x *RemoveMachineInstanceTypeAssociationRequest) GetMachineId() string { @@ -40759,7 +40825,7 @@ type RemoveMachineInstanceTypeAssociationResponse struct { func (x *RemoveMachineInstanceTypeAssociationResponse) Reset() { *x = RemoveMachineInstanceTypeAssociationResponse{} - mi := &file_nico_nico_proto_msgTypes[556] + mi := &file_nico_nico_proto_msgTypes[557] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40771,7 +40837,7 @@ func (x *RemoveMachineInstanceTypeAssociationResponse) String() string { func (*RemoveMachineInstanceTypeAssociationResponse) ProtoMessage() {} func (x *RemoveMachineInstanceTypeAssociationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[556] + mi := &file_nico_nico_proto_msgTypes[557] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40784,7 +40850,7 @@ func (x *RemoveMachineInstanceTypeAssociationResponse) ProtoReflect() protorefle // Deprecated: Use RemoveMachineInstanceTypeAssociationResponse.ProtoReflect.Descriptor instead. func (*RemoveMachineInstanceTypeAssociationResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{556} + return file_nico_nico_proto_rawDescGZIP(), []int{557} } type RedfishBrowseRequest struct { @@ -40796,7 +40862,7 @@ type RedfishBrowseRequest struct { func (x *RedfishBrowseRequest) Reset() { *x = RedfishBrowseRequest{} - mi := &file_nico_nico_proto_msgTypes[557] + mi := &file_nico_nico_proto_msgTypes[558] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40808,7 +40874,7 @@ func (x *RedfishBrowseRequest) String() string { func (*RedfishBrowseRequest) ProtoMessage() {} func (x *RedfishBrowseRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[557] + mi := &file_nico_nico_proto_msgTypes[558] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40821,7 +40887,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{557} + return file_nico_nico_proto_rawDescGZIP(), []int{558} } func (x *RedfishBrowseRequest) GetUri() string { @@ -40842,7 +40908,7 @@ type RedfishBrowseResponse struct { func (x *RedfishBrowseResponse) Reset() { *x = RedfishBrowseResponse{} - mi := &file_nico_nico_proto_msgTypes[558] + mi := &file_nico_nico_proto_msgTypes[559] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40854,7 +40920,7 @@ func (x *RedfishBrowseResponse) String() string { func (*RedfishBrowseResponse) ProtoMessage() {} func (x *RedfishBrowseResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[558] + mi := &file_nico_nico_proto_msgTypes[559] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40867,7 +40933,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{558} + return file_nico_nico_proto_rawDescGZIP(), []int{559} } func (x *RedfishBrowseResponse) GetText() string { @@ -40893,7 +40959,7 @@ type RedfishListActionsRequest struct { func (x *RedfishListActionsRequest) Reset() { *x = RedfishListActionsRequest{} - mi := &file_nico_nico_proto_msgTypes[559] + mi := &file_nico_nico_proto_msgTypes[560] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40905,7 +40971,7 @@ func (x *RedfishListActionsRequest) String() string { func (*RedfishListActionsRequest) ProtoMessage() {} func (x *RedfishListActionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[559] + mi := &file_nico_nico_proto_msgTypes[560] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40918,7 +40984,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{559} + return file_nico_nico_proto_rawDescGZIP(), []int{560} } func (x *RedfishListActionsRequest) GetMachineIp() string { @@ -40937,7 +41003,7 @@ type RedfishListActionsResponse struct { func (x *RedfishListActionsResponse) Reset() { *x = RedfishListActionsResponse{} - mi := &file_nico_nico_proto_msgTypes[560] + mi := &file_nico_nico_proto_msgTypes[561] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40949,7 +41015,7 @@ func (x *RedfishListActionsResponse) String() string { func (*RedfishListActionsResponse) ProtoMessage() {} func (x *RedfishListActionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[560] + mi := &file_nico_nico_proto_msgTypes[561] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40962,7 +41028,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{560} + return file_nico_nico_proto_rawDescGZIP(), []int{561} } func (x *RedfishListActionsResponse) GetActions() []*RedfishAction { @@ -40995,7 +41061,7 @@ type RedfishAction struct { func (x *RedfishAction) Reset() { *x = RedfishAction{} - mi := &file_nico_nico_proto_msgTypes[561] + mi := &file_nico_nico_proto_msgTypes[562] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41007,7 +41073,7 @@ func (x *RedfishAction) String() string { func (*RedfishAction) ProtoMessage() {} func (x *RedfishAction) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[561] + mi := &file_nico_nico_proto_msgTypes[562] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41020,7 +41086,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{561} + return file_nico_nico_proto_rawDescGZIP(), []int{562} } func (x *RedfishAction) GetRequestId() int64 { @@ -41116,7 +41182,7 @@ type OptionalRedfishActionResult struct { func (x *OptionalRedfishActionResult) Reset() { *x = OptionalRedfishActionResult{} - mi := &file_nico_nico_proto_msgTypes[562] + mi := &file_nico_nico_proto_msgTypes[563] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41128,7 +41194,7 @@ func (x *OptionalRedfishActionResult) String() string { func (*OptionalRedfishActionResult) ProtoMessage() {} func (x *OptionalRedfishActionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[562] + mi := &file_nico_nico_proto_msgTypes[563] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41141,7 +41207,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{562} + return file_nico_nico_proto_rawDescGZIP(), []int{563} } func (x *OptionalRedfishActionResult) GetResult() *RedfishActionResult { @@ -41163,7 +41229,7 @@ type RedfishActionResult struct { func (x *RedfishActionResult) Reset() { *x = RedfishActionResult{} - mi := &file_nico_nico_proto_msgTypes[563] + mi := &file_nico_nico_proto_msgTypes[564] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41175,7 +41241,7 @@ func (x *RedfishActionResult) String() string { func (*RedfishActionResult) ProtoMessage() {} func (x *RedfishActionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[563] + mi := &file_nico_nico_proto_msgTypes[564] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41188,7 +41254,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{563} + return file_nico_nico_proto_rawDescGZIP(), []int{564} } func (x *RedfishActionResult) GetHeaders() map[string]string { @@ -41231,7 +41297,7 @@ type RedfishCreateActionRequest struct { func (x *RedfishCreateActionRequest) Reset() { *x = RedfishCreateActionRequest{} - mi := &file_nico_nico_proto_msgTypes[564] + mi := &file_nico_nico_proto_msgTypes[565] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41243,7 +41309,7 @@ func (x *RedfishCreateActionRequest) String() string { func (*RedfishCreateActionRequest) ProtoMessage() {} func (x *RedfishCreateActionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[564] + mi := &file_nico_nico_proto_msgTypes[565] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41256,7 +41322,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{564} + return file_nico_nico_proto_rawDescGZIP(), []int{565} } func (x *RedfishCreateActionRequest) GetIps() []string { @@ -41296,7 +41362,7 @@ type RedfishCreateActionResponse struct { func (x *RedfishCreateActionResponse) Reset() { *x = RedfishCreateActionResponse{} - mi := &file_nico_nico_proto_msgTypes[565] + mi := &file_nico_nico_proto_msgTypes[566] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41308,7 +41374,7 @@ func (x *RedfishCreateActionResponse) String() string { func (*RedfishCreateActionResponse) ProtoMessage() {} func (x *RedfishCreateActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[565] + mi := &file_nico_nico_proto_msgTypes[566] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41321,7 +41387,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{565} + return file_nico_nico_proto_rawDescGZIP(), []int{566} } func (x *RedfishCreateActionResponse) GetRequestId() int64 { @@ -41340,7 +41406,7 @@ type RedfishActionID struct { func (x *RedfishActionID) Reset() { *x = RedfishActionID{} - mi := &file_nico_nico_proto_msgTypes[566] + mi := &file_nico_nico_proto_msgTypes[567] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41352,7 +41418,7 @@ func (x *RedfishActionID) String() string { func (*RedfishActionID) ProtoMessage() {} func (x *RedfishActionID) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[566] + mi := &file_nico_nico_proto_msgTypes[567] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41365,7 +41431,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{566} + return file_nico_nico_proto_rawDescGZIP(), []int{567} } func (x *RedfishActionID) GetRequestId() int64 { @@ -41383,7 +41449,7 @@ type RedfishApproveActionResponse struct { func (x *RedfishApproveActionResponse) Reset() { *x = RedfishApproveActionResponse{} - mi := &file_nico_nico_proto_msgTypes[567] + mi := &file_nico_nico_proto_msgTypes[568] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41395,7 +41461,7 @@ func (x *RedfishApproveActionResponse) String() string { func (*RedfishApproveActionResponse) ProtoMessage() {} func (x *RedfishApproveActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[567] + mi := &file_nico_nico_proto_msgTypes[568] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41408,7 +41474,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{567} + return file_nico_nico_proto_rawDescGZIP(), []int{568} } type RedfishApplyActionResponse struct { @@ -41419,7 +41485,7 @@ type RedfishApplyActionResponse struct { func (x *RedfishApplyActionResponse) Reset() { *x = RedfishApplyActionResponse{} - mi := &file_nico_nico_proto_msgTypes[568] + mi := &file_nico_nico_proto_msgTypes[569] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41431,7 +41497,7 @@ func (x *RedfishApplyActionResponse) String() string { func (*RedfishApplyActionResponse) ProtoMessage() {} func (x *RedfishApplyActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[568] + mi := &file_nico_nico_proto_msgTypes[569] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41444,7 +41510,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{568} + return file_nico_nico_proto_rawDescGZIP(), []int{569} } type RedfishCancelActionResponse struct { @@ -41455,7 +41521,7 @@ type RedfishCancelActionResponse struct { func (x *RedfishCancelActionResponse) Reset() { *x = RedfishCancelActionResponse{} - mi := &file_nico_nico_proto_msgTypes[569] + mi := &file_nico_nico_proto_msgTypes[570] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41467,7 +41533,7 @@ func (x *RedfishCancelActionResponse) String() string { func (*RedfishCancelActionResponse) ProtoMessage() {} func (x *RedfishCancelActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[569] + mi := &file_nico_nico_proto_msgTypes[570] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41480,7 +41546,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{569} + return file_nico_nico_proto_rawDescGZIP(), []int{570} } type UfmBrowseRequest struct { @@ -41495,7 +41561,7 @@ type UfmBrowseRequest struct { func (x *UfmBrowseRequest) Reset() { *x = UfmBrowseRequest{} - mi := &file_nico_nico_proto_msgTypes[570] + mi := &file_nico_nico_proto_msgTypes[571] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41507,7 +41573,7 @@ func (x *UfmBrowseRequest) String() string { func (*UfmBrowseRequest) ProtoMessage() {} func (x *UfmBrowseRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[570] + mi := &file_nico_nico_proto_msgTypes[571] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41520,7 +41586,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{570} + return file_nico_nico_proto_rawDescGZIP(), []int{571} } func (x *UfmBrowseRequest) GetFabricId() string { @@ -41551,7 +41617,7 @@ type UfmBrowseResponse struct { func (x *UfmBrowseResponse) Reset() { *x = UfmBrowseResponse{} - mi := &file_nico_nico_proto_msgTypes[571] + mi := &file_nico_nico_proto_msgTypes[572] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41563,7 +41629,7 @@ func (x *UfmBrowseResponse) String() string { func (*UfmBrowseResponse) ProtoMessage() {} func (x *UfmBrowseResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[571] + mi := &file_nico_nico_proto_msgTypes[572] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41576,7 +41642,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{571} + return file_nico_nico_proto_rawDescGZIP(), []int{572} } func (x *UfmBrowseResponse) GetBody() string { @@ -41611,7 +41677,7 @@ type NetworkSecurityGroupAttributes struct { func (x *NetworkSecurityGroupAttributes) Reset() { *x = NetworkSecurityGroupAttributes{} - mi := &file_nico_nico_proto_msgTypes[572] + mi := &file_nico_nico_proto_msgTypes[573] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41623,7 +41689,7 @@ func (x *NetworkSecurityGroupAttributes) String() string { func (*NetworkSecurityGroupAttributes) ProtoMessage() {} func (x *NetworkSecurityGroupAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[572] + mi := &file_nico_nico_proto_msgTypes[573] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41636,7 +41702,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{572} + return file_nico_nico_proto_rawDescGZIP(), []int{573} } func (x *NetworkSecurityGroupAttributes) GetRules() []*NetworkSecurityGroupRuleAttributes { @@ -41669,7 +41735,7 @@ type NetworkSecurityGroup struct { func (x *NetworkSecurityGroup) Reset() { *x = NetworkSecurityGroup{} - mi := &file_nico_nico_proto_msgTypes[573] + mi := &file_nico_nico_proto_msgTypes[574] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41681,7 +41747,7 @@ func (x *NetworkSecurityGroup) String() string { func (*NetworkSecurityGroup) ProtoMessage() {} func (x *NetworkSecurityGroup) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[573] + mi := &file_nico_nico_proto_msgTypes[574] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41694,7 +41760,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{573} + return file_nico_nico_proto_rawDescGZIP(), []int{574} } func (x *NetworkSecurityGroup) GetId() string { @@ -41765,7 +41831,7 @@ type CreateNetworkSecurityGroupRequest struct { func (x *CreateNetworkSecurityGroupRequest) Reset() { *x = CreateNetworkSecurityGroupRequest{} - mi := &file_nico_nico_proto_msgTypes[574] + mi := &file_nico_nico_proto_msgTypes[575] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41777,7 +41843,7 @@ func (x *CreateNetworkSecurityGroupRequest) String() string { func (*CreateNetworkSecurityGroupRequest) ProtoMessage() {} func (x *CreateNetworkSecurityGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[574] + mi := &file_nico_nico_proto_msgTypes[575] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41790,7 +41856,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{574} + return file_nico_nico_proto_rawDescGZIP(), []int{575} } func (x *CreateNetworkSecurityGroupRequest) GetId() string { @@ -41830,7 +41896,7 @@ type CreateNetworkSecurityGroupResponse struct { func (x *CreateNetworkSecurityGroupResponse) Reset() { *x = CreateNetworkSecurityGroupResponse{} - mi := &file_nico_nico_proto_msgTypes[575] + mi := &file_nico_nico_proto_msgTypes[576] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41842,7 +41908,7 @@ func (x *CreateNetworkSecurityGroupResponse) String() string { func (*CreateNetworkSecurityGroupResponse) ProtoMessage() {} func (x *CreateNetworkSecurityGroupResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[575] + mi := &file_nico_nico_proto_msgTypes[576] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41855,7 +41921,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{575} + return file_nico_nico_proto_rawDescGZIP(), []int{576} } func (x *CreateNetworkSecurityGroupResponse) GetNetworkSecurityGroup() *NetworkSecurityGroup { @@ -41875,7 +41941,7 @@ type FindNetworkSecurityGroupIdsRequest struct { func (x *FindNetworkSecurityGroupIdsRequest) Reset() { *x = FindNetworkSecurityGroupIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[576] + mi := &file_nico_nico_proto_msgTypes[577] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41887,7 +41953,7 @@ func (x *FindNetworkSecurityGroupIdsRequest) String() string { func (*FindNetworkSecurityGroupIdsRequest) ProtoMessage() {} func (x *FindNetworkSecurityGroupIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[576] + mi := &file_nico_nico_proto_msgTypes[577] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41900,7 +41966,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{576} + return file_nico_nico_proto_rawDescGZIP(), []int{577} } func (x *FindNetworkSecurityGroupIdsRequest) GetName() string { @@ -41926,7 +41992,7 @@ type FindNetworkSecurityGroupIdsResponse struct { func (x *FindNetworkSecurityGroupIdsResponse) Reset() { *x = FindNetworkSecurityGroupIdsResponse{} - mi := &file_nico_nico_proto_msgTypes[577] + mi := &file_nico_nico_proto_msgTypes[578] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41938,7 +42004,7 @@ func (x *FindNetworkSecurityGroupIdsResponse) String() string { func (*FindNetworkSecurityGroupIdsResponse) ProtoMessage() {} func (x *FindNetworkSecurityGroupIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[577] + mi := &file_nico_nico_proto_msgTypes[578] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41951,7 +42017,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{577} + return file_nico_nico_proto_rawDescGZIP(), []int{578} } func (x *FindNetworkSecurityGroupIdsResponse) GetNetworkSecurityGroupIds() []string { @@ -41971,7 +42037,7 @@ type FindNetworkSecurityGroupsByIdsRequest struct { func (x *FindNetworkSecurityGroupsByIdsRequest) Reset() { *x = FindNetworkSecurityGroupsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[578] + mi := &file_nico_nico_proto_msgTypes[579] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41983,7 +42049,7 @@ func (x *FindNetworkSecurityGroupsByIdsRequest) String() string { func (*FindNetworkSecurityGroupsByIdsRequest) ProtoMessage() {} func (x *FindNetworkSecurityGroupsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[578] + mi := &file_nico_nico_proto_msgTypes[579] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41996,7 +42062,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{578} + return file_nico_nico_proto_rawDescGZIP(), []int{579} } func (x *FindNetworkSecurityGroupsByIdsRequest) GetNetworkSecurityGroupIds() []string { @@ -42022,7 +42088,7 @@ type FindNetworkSecurityGroupsByIdsResponse struct { func (x *FindNetworkSecurityGroupsByIdsResponse) Reset() { *x = FindNetworkSecurityGroupsByIdsResponse{} - mi := &file_nico_nico_proto_msgTypes[579] + mi := &file_nico_nico_proto_msgTypes[580] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42034,7 +42100,7 @@ func (x *FindNetworkSecurityGroupsByIdsResponse) String() string { func (*FindNetworkSecurityGroupsByIdsResponse) ProtoMessage() {} func (x *FindNetworkSecurityGroupsByIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[579] + mi := &file_nico_nico_proto_msgTypes[580] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42047,7 +42113,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{579} + return file_nico_nico_proto_rawDescGZIP(), []int{580} } func (x *FindNetworkSecurityGroupsByIdsResponse) GetNetworkSecurityGroups() []*NetworkSecurityGroup { @@ -42066,7 +42132,7 @@ type UpdateNetworkSecurityGroupResponse struct { func (x *UpdateNetworkSecurityGroupResponse) Reset() { *x = UpdateNetworkSecurityGroupResponse{} - mi := &file_nico_nico_proto_msgTypes[580] + mi := &file_nico_nico_proto_msgTypes[581] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42078,7 +42144,7 @@ func (x *UpdateNetworkSecurityGroupResponse) String() string { func (*UpdateNetworkSecurityGroupResponse) ProtoMessage() {} func (x *UpdateNetworkSecurityGroupResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[580] + mi := &file_nico_nico_proto_msgTypes[581] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42091,7 +42157,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{580} + return file_nico_nico_proto_rawDescGZIP(), []int{581} } func (x *UpdateNetworkSecurityGroupResponse) GetNetworkSecurityGroup() *NetworkSecurityGroup { @@ -42114,7 +42180,7 @@ type UpdateNetworkSecurityGroupRequest struct { func (x *UpdateNetworkSecurityGroupRequest) Reset() { *x = UpdateNetworkSecurityGroupRequest{} - mi := &file_nico_nico_proto_msgTypes[581] + mi := &file_nico_nico_proto_msgTypes[582] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42126,7 +42192,7 @@ func (x *UpdateNetworkSecurityGroupRequest) String() string { func (*UpdateNetworkSecurityGroupRequest) ProtoMessage() {} func (x *UpdateNetworkSecurityGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[581] + mi := &file_nico_nico_proto_msgTypes[582] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42139,7 +42205,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{581} + return file_nico_nico_proto_rawDescGZIP(), []int{582} } func (x *UpdateNetworkSecurityGroupRequest) GetId() string { @@ -42187,7 +42253,7 @@ type DeleteNetworkSecurityGroupRequest struct { func (x *DeleteNetworkSecurityGroupRequest) Reset() { *x = DeleteNetworkSecurityGroupRequest{} - mi := &file_nico_nico_proto_msgTypes[582] + mi := &file_nico_nico_proto_msgTypes[583] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42199,7 +42265,7 @@ func (x *DeleteNetworkSecurityGroupRequest) String() string { func (*DeleteNetworkSecurityGroupRequest) ProtoMessage() {} func (x *DeleteNetworkSecurityGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[582] + mi := &file_nico_nico_proto_msgTypes[583] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42212,7 +42278,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{582} + return file_nico_nico_proto_rawDescGZIP(), []int{583} } func (x *DeleteNetworkSecurityGroupRequest) GetId() string { @@ -42237,7 +42303,7 @@ type DeleteNetworkSecurityGroupResponse struct { func (x *DeleteNetworkSecurityGroupResponse) Reset() { *x = DeleteNetworkSecurityGroupResponse{} - mi := &file_nico_nico_proto_msgTypes[583] + mi := &file_nico_nico_proto_msgTypes[584] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42249,7 +42315,7 @@ func (x *DeleteNetworkSecurityGroupResponse) String() string { func (*DeleteNetworkSecurityGroupResponse) ProtoMessage() {} func (x *DeleteNetworkSecurityGroupResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[583] + mi := &file_nico_nico_proto_msgTypes[584] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42262,7 +42328,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{583} + return file_nico_nico_proto_rawDescGZIP(), []int{584} } type NetworkSecurityGroupStatus struct { @@ -42276,7 +42342,7 @@ type NetworkSecurityGroupStatus struct { func (x *NetworkSecurityGroupStatus) Reset() { *x = NetworkSecurityGroupStatus{} - mi := &file_nico_nico_proto_msgTypes[584] + mi := &file_nico_nico_proto_msgTypes[585] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42288,7 +42354,7 @@ func (x *NetworkSecurityGroupStatus) String() string { func (*NetworkSecurityGroupStatus) ProtoMessage() {} func (x *NetworkSecurityGroupStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[584] + mi := &file_nico_nico_proto_msgTypes[585] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42301,7 +42367,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{584} + return file_nico_nico_proto_rawDescGZIP(), []int{585} } func (x *NetworkSecurityGroupStatus) GetSource() NetworkSecurityGroupSource { @@ -42354,7 +42420,7 @@ type NetworkSecurityGroupPropagationObjectStatus struct { func (x *NetworkSecurityGroupPropagationObjectStatus) Reset() { *x = NetworkSecurityGroupPropagationObjectStatus{} - mi := &file_nico_nico_proto_msgTypes[585] + mi := &file_nico_nico_proto_msgTypes[586] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42366,7 +42432,7 @@ func (x *NetworkSecurityGroupPropagationObjectStatus) String() string { func (*NetworkSecurityGroupPropagationObjectStatus) ProtoMessage() {} func (x *NetworkSecurityGroupPropagationObjectStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[585] + mi := &file_nico_nico_proto_msgTypes[586] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42379,7 +42445,7 @@ func (x *NetworkSecurityGroupPropagationObjectStatus) ProtoReflect() protoreflec // Deprecated: Use NetworkSecurityGroupPropagationObjectStatus.ProtoReflect.Descriptor instead. func (*NetworkSecurityGroupPropagationObjectStatus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{585} + return file_nico_nico_proto_rawDescGZIP(), []int{586} } func (x *NetworkSecurityGroupPropagationObjectStatus) GetId() string { @@ -42427,7 +42493,7 @@ type GetNetworkSecurityGroupPropagationStatusResponse struct { func (x *GetNetworkSecurityGroupPropagationStatusResponse) Reset() { *x = GetNetworkSecurityGroupPropagationStatusResponse{} - mi := &file_nico_nico_proto_msgTypes[586] + mi := &file_nico_nico_proto_msgTypes[587] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42439,7 +42505,7 @@ func (x *GetNetworkSecurityGroupPropagationStatusResponse) String() string { func (*GetNetworkSecurityGroupPropagationStatusResponse) ProtoMessage() {} func (x *GetNetworkSecurityGroupPropagationStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[586] + mi := &file_nico_nico_proto_msgTypes[587] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42452,7 +42518,7 @@ func (x *GetNetworkSecurityGroupPropagationStatusResponse) ProtoReflect() protor // Deprecated: Use GetNetworkSecurityGroupPropagationStatusResponse.ProtoReflect.Descriptor instead. func (*GetNetworkSecurityGroupPropagationStatusResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{586} + return file_nico_nico_proto_rawDescGZIP(), []int{587} } func (x *GetNetworkSecurityGroupPropagationStatusResponse) GetVpcs() []*NetworkSecurityGroupPropagationObjectStatus { @@ -42478,7 +42544,7 @@ type NetworkSecurityGroupIdList struct { func (x *NetworkSecurityGroupIdList) Reset() { *x = NetworkSecurityGroupIdList{} - mi := &file_nico_nico_proto_msgTypes[587] + mi := &file_nico_nico_proto_msgTypes[588] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42490,7 +42556,7 @@ func (x *NetworkSecurityGroupIdList) String() string { func (*NetworkSecurityGroupIdList) ProtoMessage() {} func (x *NetworkSecurityGroupIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[587] + mi := &file_nico_nico_proto_msgTypes[588] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42503,7 +42569,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{587} + return file_nico_nico_proto_rawDescGZIP(), []int{588} } func (x *NetworkSecurityGroupIdList) GetIds() []string { @@ -42535,7 +42601,7 @@ type GetNetworkSecurityGroupPropagationStatusRequest struct { func (x *GetNetworkSecurityGroupPropagationStatusRequest) Reset() { *x = GetNetworkSecurityGroupPropagationStatusRequest{} - mi := &file_nico_nico_proto_msgTypes[588] + mi := &file_nico_nico_proto_msgTypes[589] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42547,7 +42613,7 @@ func (x *GetNetworkSecurityGroupPropagationStatusRequest) String() string { func (*GetNetworkSecurityGroupPropagationStatusRequest) ProtoMessage() {} func (x *GetNetworkSecurityGroupPropagationStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[588] + mi := &file_nico_nico_proto_msgTypes[589] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42560,7 +42626,7 @@ func (x *GetNetworkSecurityGroupPropagationStatusRequest) ProtoReflect() protore // Deprecated: Use GetNetworkSecurityGroupPropagationStatusRequest.ProtoReflect.Descriptor instead. func (*GetNetworkSecurityGroupPropagationStatusRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{588} + return file_nico_nico_proto_rawDescGZIP(), []int{589} } func (x *GetNetworkSecurityGroupPropagationStatusRequest) GetVpcIds() []string { @@ -42612,7 +42678,7 @@ type NetworkSecurityGroupRuleAttributes struct { func (x *NetworkSecurityGroupRuleAttributes) Reset() { *x = NetworkSecurityGroupRuleAttributes{} - mi := &file_nico_nico_proto_msgTypes[589] + mi := &file_nico_nico_proto_msgTypes[590] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42624,7 +42690,7 @@ func (x *NetworkSecurityGroupRuleAttributes) String() string { func (*NetworkSecurityGroupRuleAttributes) ProtoMessage() {} func (x *NetworkSecurityGroupRuleAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[589] + mi := &file_nico_nico_proto_msgTypes[590] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42637,7 +42703,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{589} + return file_nico_nico_proto_rawDescGZIP(), []int{590} } func (x *NetworkSecurityGroupRuleAttributes) GetId() string { @@ -42781,7 +42847,7 @@ type ResolvedNetworkSecurityGroupRule struct { func (x *ResolvedNetworkSecurityGroupRule) Reset() { *x = ResolvedNetworkSecurityGroupRule{} - mi := &file_nico_nico_proto_msgTypes[590] + mi := &file_nico_nico_proto_msgTypes[591] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42793,7 +42859,7 @@ func (x *ResolvedNetworkSecurityGroupRule) String() string { func (*ResolvedNetworkSecurityGroupRule) ProtoMessage() {} func (x *ResolvedNetworkSecurityGroupRule) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[590] + mi := &file_nico_nico_proto_msgTypes[591] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42806,7 +42872,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{590} + return file_nico_nico_proto_rawDescGZIP(), []int{591} } func (x *ResolvedNetworkSecurityGroupRule) GetRule() *NetworkSecurityGroupRuleAttributes { @@ -42839,7 +42905,7 @@ type GetNetworkSecurityGroupAttachmentsRequest struct { func (x *GetNetworkSecurityGroupAttachmentsRequest) Reset() { *x = GetNetworkSecurityGroupAttachmentsRequest{} - mi := &file_nico_nico_proto_msgTypes[591] + mi := &file_nico_nico_proto_msgTypes[592] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42851,7 +42917,7 @@ func (x *GetNetworkSecurityGroupAttachmentsRequest) String() string { func (*GetNetworkSecurityGroupAttachmentsRequest) ProtoMessage() {} func (x *GetNetworkSecurityGroupAttachmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[591] + mi := &file_nico_nico_proto_msgTypes[592] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42864,7 +42930,7 @@ func (x *GetNetworkSecurityGroupAttachmentsRequest) ProtoReflect() protoreflect. // Deprecated: Use GetNetworkSecurityGroupAttachmentsRequest.ProtoReflect.Descriptor instead. func (*GetNetworkSecurityGroupAttachmentsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{591} + return file_nico_nico_proto_rawDescGZIP(), []int{592} } func (x *GetNetworkSecurityGroupAttachmentsRequest) GetNetworkSecurityGroupIds() []string { @@ -42885,7 +42951,7 @@ type NetworkSecurityGroupAttachments struct { func (x *NetworkSecurityGroupAttachments) Reset() { *x = NetworkSecurityGroupAttachments{} - mi := &file_nico_nico_proto_msgTypes[592] + mi := &file_nico_nico_proto_msgTypes[593] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42897,7 +42963,7 @@ func (x *NetworkSecurityGroupAttachments) String() string { func (*NetworkSecurityGroupAttachments) ProtoMessage() {} func (x *NetworkSecurityGroupAttachments) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[592] + mi := &file_nico_nico_proto_msgTypes[593] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42910,7 +42976,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{592} + return file_nico_nico_proto_rawDescGZIP(), []int{593} } func (x *NetworkSecurityGroupAttachments) GetNetworkSecurityGroupId() string { @@ -42943,7 +43009,7 @@ type GetNetworkSecurityGroupAttachmentsResponse struct { func (x *GetNetworkSecurityGroupAttachmentsResponse) Reset() { *x = GetNetworkSecurityGroupAttachmentsResponse{} - mi := &file_nico_nico_proto_msgTypes[593] + mi := &file_nico_nico_proto_msgTypes[594] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42955,7 +43021,7 @@ func (x *GetNetworkSecurityGroupAttachmentsResponse) String() string { func (*GetNetworkSecurityGroupAttachmentsResponse) ProtoMessage() {} func (x *GetNetworkSecurityGroupAttachmentsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[593] + mi := &file_nico_nico_proto_msgTypes[594] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42968,7 +43034,7 @@ func (x *GetNetworkSecurityGroupAttachmentsResponse) ProtoReflect() protoreflect // Deprecated: Use GetNetworkSecurityGroupAttachmentsResponse.ProtoReflect.Descriptor instead. func (*GetNetworkSecurityGroupAttachmentsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{593} + return file_nico_nico_proto_rawDescGZIP(), []int{594} } func (x *GetNetworkSecurityGroupAttachmentsResponse) GetAttachments() []*NetworkSecurityGroupAttachments { @@ -42986,7 +43052,7 @@ type GetDesiredFirmwareVersionsRequest struct { func (x *GetDesiredFirmwareVersionsRequest) Reset() { *x = GetDesiredFirmwareVersionsRequest{} - mi := &file_nico_nico_proto_msgTypes[594] + mi := &file_nico_nico_proto_msgTypes[595] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42998,7 +43064,7 @@ func (x *GetDesiredFirmwareVersionsRequest) String() string { func (*GetDesiredFirmwareVersionsRequest) ProtoMessage() {} func (x *GetDesiredFirmwareVersionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[594] + mi := &file_nico_nico_proto_msgTypes[595] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43011,7 +43077,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{594} + return file_nico_nico_proto_rawDescGZIP(), []int{595} } type GetDesiredFirmwareVersionsResponse struct { @@ -43023,7 +43089,7 @@ type GetDesiredFirmwareVersionsResponse struct { func (x *GetDesiredFirmwareVersionsResponse) Reset() { *x = GetDesiredFirmwareVersionsResponse{} - mi := &file_nico_nico_proto_msgTypes[595] + mi := &file_nico_nico_proto_msgTypes[596] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43035,7 +43101,7 @@ func (x *GetDesiredFirmwareVersionsResponse) String() string { func (*GetDesiredFirmwareVersionsResponse) ProtoMessage() {} func (x *GetDesiredFirmwareVersionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[595] + mi := &file_nico_nico_proto_msgTypes[596] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43048,7 +43114,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{595} + return file_nico_nico_proto_rawDescGZIP(), []int{596} } func (x *GetDesiredFirmwareVersionsResponse) GetEntries() []*DesiredFirmwareVersionEntry { @@ -43069,7 +43135,7 @@ type DesiredFirmwareVersionEntry struct { func (x *DesiredFirmwareVersionEntry) Reset() { *x = DesiredFirmwareVersionEntry{} - mi := &file_nico_nico_proto_msgTypes[596] + mi := &file_nico_nico_proto_msgTypes[597] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43081,7 +43147,7 @@ func (x *DesiredFirmwareVersionEntry) String() string { func (*DesiredFirmwareVersionEntry) ProtoMessage() {} func (x *DesiredFirmwareVersionEntry) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[596] + mi := &file_nico_nico_proto_msgTypes[597] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43094,7 +43160,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{596} + return file_nico_nico_proto_rawDescGZIP(), []int{597} } func (x *DesiredFirmwareVersionEntry) GetVendor() string { @@ -43129,7 +43195,7 @@ type SkuComponentChassis struct { func (x *SkuComponentChassis) Reset() { *x = SkuComponentChassis{} - mi := &file_nico_nico_proto_msgTypes[597] + mi := &file_nico_nico_proto_msgTypes[598] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43141,7 +43207,7 @@ func (x *SkuComponentChassis) String() string { func (*SkuComponentChassis) ProtoMessage() {} func (x *SkuComponentChassis) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[597] + mi := &file_nico_nico_proto_msgTypes[598] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43154,7 +43220,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{597} + return file_nico_nico_proto_rawDescGZIP(), []int{598} } func (x *SkuComponentChassis) GetVendor() string { @@ -43190,7 +43256,7 @@ type SkuComponentCpu struct { func (x *SkuComponentCpu) Reset() { *x = SkuComponentCpu{} - mi := &file_nico_nico_proto_msgTypes[598] + mi := &file_nico_nico_proto_msgTypes[599] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43202,7 +43268,7 @@ func (x *SkuComponentCpu) String() string { func (*SkuComponentCpu) ProtoMessage() {} func (x *SkuComponentCpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[598] + mi := &file_nico_nico_proto_msgTypes[599] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43215,7 +43281,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{598} + return file_nico_nico_proto_rawDescGZIP(), []int{599} } func (x *SkuComponentCpu) GetVendor() string { @@ -43258,7 +43324,7 @@ type SkuComponentGpu struct { func (x *SkuComponentGpu) Reset() { *x = SkuComponentGpu{} - mi := &file_nico_nico_proto_msgTypes[599] + mi := &file_nico_nico_proto_msgTypes[600] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43270,7 +43336,7 @@ func (x *SkuComponentGpu) String() string { func (*SkuComponentGpu) ProtoMessage() {} func (x *SkuComponentGpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[599] + mi := &file_nico_nico_proto_msgTypes[600] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43283,7 +43349,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{599} + return file_nico_nico_proto_rawDescGZIP(), []int{600} } func (x *SkuComponentGpu) GetVendor() string { @@ -43326,7 +43392,7 @@ type SkuComponentEthernetDevices struct { func (x *SkuComponentEthernetDevices) Reset() { *x = SkuComponentEthernetDevices{} - mi := &file_nico_nico_proto_msgTypes[600] + mi := &file_nico_nico_proto_msgTypes[601] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43338,7 +43404,7 @@ func (x *SkuComponentEthernetDevices) String() string { func (*SkuComponentEthernetDevices) ProtoMessage() {} func (x *SkuComponentEthernetDevices) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[600] + mi := &file_nico_nico_proto_msgTypes[601] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43351,7 +43417,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{600} + return file_nico_nico_proto_rawDescGZIP(), []int{601} } func (x *SkuComponentEthernetDevices) GetVendor() string { @@ -43405,7 +43471,7 @@ type SkuComponentInfinibandDevices struct { func (x *SkuComponentInfinibandDevices) Reset() { *x = SkuComponentInfinibandDevices{} - mi := &file_nico_nico_proto_msgTypes[601] + mi := &file_nico_nico_proto_msgTypes[602] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43417,7 +43483,7 @@ func (x *SkuComponentInfinibandDevices) String() string { func (*SkuComponentInfinibandDevices) ProtoMessage() {} func (x *SkuComponentInfinibandDevices) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[601] + mi := &file_nico_nico_proto_msgTypes[602] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43430,7 +43496,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{601} + return file_nico_nico_proto_rawDescGZIP(), []int{602} } func (x *SkuComponentInfinibandDevices) GetVendor() string { @@ -43473,7 +43539,7 @@ type SkuComponentStorage struct { func (x *SkuComponentStorage) Reset() { *x = SkuComponentStorage{} - mi := &file_nico_nico_proto_msgTypes[602] + mi := &file_nico_nico_proto_msgTypes[603] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43485,7 +43551,7 @@ func (x *SkuComponentStorage) String() string { func (*SkuComponentStorage) ProtoMessage() {} func (x *SkuComponentStorage) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[602] + mi := &file_nico_nico_proto_msgTypes[603] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43498,7 +43564,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{602} + return file_nico_nico_proto_rawDescGZIP(), []int{603} } func (x *SkuComponentStorage) GetVendor() string { @@ -43540,7 +43606,7 @@ type SkuComponentStorageController struct { func (x *SkuComponentStorageController) Reset() { *x = SkuComponentStorageController{} - mi := &file_nico_nico_proto_msgTypes[603] + mi := &file_nico_nico_proto_msgTypes[604] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43552,7 +43618,7 @@ func (x *SkuComponentStorageController) String() string { func (*SkuComponentStorageController) ProtoMessage() {} func (x *SkuComponentStorageController) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[603] + mi := &file_nico_nico_proto_msgTypes[604] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43565,7 +43631,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{603} + return file_nico_nico_proto_rawDescGZIP(), []int{604} } func (x *SkuComponentStorageController) GetVendor() string { @@ -43600,7 +43666,7 @@ type SkuComponentMemory struct { func (x *SkuComponentMemory) Reset() { *x = SkuComponentMemory{} - mi := &file_nico_nico_proto_msgTypes[604] + mi := &file_nico_nico_proto_msgTypes[605] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43612,7 +43678,7 @@ func (x *SkuComponentMemory) String() string { func (*SkuComponentMemory) ProtoMessage() {} func (x *SkuComponentMemory) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[604] + mi := &file_nico_nico_proto_msgTypes[605] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43625,7 +43691,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{604} + return file_nico_nico_proto_rawDescGZIP(), []int{605} } func (x *SkuComponentMemory) GetMemoryType() string { @@ -43659,7 +43725,7 @@ type SkuComponentTpm struct { func (x *SkuComponentTpm) Reset() { *x = SkuComponentTpm{} - mi := &file_nico_nico_proto_msgTypes[605] + mi := &file_nico_nico_proto_msgTypes[606] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43671,7 +43737,7 @@ func (x *SkuComponentTpm) String() string { func (*SkuComponentTpm) ProtoMessage() {} func (x *SkuComponentTpm) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[605] + mi := &file_nico_nico_proto_msgTypes[606] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43684,7 +43750,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{605} + return file_nico_nico_proto_rawDescGZIP(), []int{606} } func (x *SkuComponentTpm) GetVendor() string { @@ -43717,7 +43783,7 @@ type SkuComponents struct { func (x *SkuComponents) Reset() { *x = SkuComponents{} - mi := &file_nico_nico_proto_msgTypes[606] + mi := &file_nico_nico_proto_msgTypes[607] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43729,7 +43795,7 @@ func (x *SkuComponents) String() string { func (*SkuComponents) ProtoMessage() {} func (x *SkuComponents) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[606] + mi := &file_nico_nico_proto_msgTypes[607] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43742,7 +43808,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{606} + return file_nico_nico_proto_rawDescGZIP(), []int{607} } func (x *SkuComponents) GetChassis() *SkuComponentChassis { @@ -43816,7 +43882,7 @@ type Sku struct { func (x *Sku) Reset() { *x = Sku{} - mi := &file_nico_nico_proto_msgTypes[607] + mi := &file_nico_nico_proto_msgTypes[608] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43828,7 +43894,7 @@ func (x *Sku) String() string { func (*Sku) ProtoMessage() {} func (x *Sku) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[607] + mi := &file_nico_nico_proto_msgTypes[608] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43841,7 +43907,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{607} + return file_nico_nico_proto_rawDescGZIP(), []int{608} } func (x *Sku) GetId() string { @@ -43904,7 +43970,7 @@ type SkuMachinePair struct { func (x *SkuMachinePair) Reset() { *x = SkuMachinePair{} - mi := &file_nico_nico_proto_msgTypes[608] + mi := &file_nico_nico_proto_msgTypes[609] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43916,7 +43982,7 @@ func (x *SkuMachinePair) String() string { func (*SkuMachinePair) ProtoMessage() {} func (x *SkuMachinePair) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[608] + mi := &file_nico_nico_proto_msgTypes[609] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43929,7 +43995,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{608} + return file_nico_nico_proto_rawDescGZIP(), []int{609} } func (x *SkuMachinePair) GetSkuId() string { @@ -43963,7 +44029,7 @@ type RemoveSkuRequest struct { func (x *RemoveSkuRequest) Reset() { *x = RemoveSkuRequest{} - mi := &file_nico_nico_proto_msgTypes[609] + mi := &file_nico_nico_proto_msgTypes[610] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43975,7 +44041,7 @@ func (x *RemoveSkuRequest) String() string { func (*RemoveSkuRequest) ProtoMessage() {} func (x *RemoveSkuRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[609] + mi := &file_nico_nico_proto_msgTypes[610] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43988,7 +44054,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{609} + return file_nico_nico_proto_rawDescGZIP(), []int{610} } func (x *RemoveSkuRequest) GetMachineId() *MachineId { @@ -44014,7 +44080,7 @@ type SkuList struct { func (x *SkuList) Reset() { *x = SkuList{} - mi := &file_nico_nico_proto_msgTypes[610] + mi := &file_nico_nico_proto_msgTypes[611] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44026,7 +44092,7 @@ func (x *SkuList) String() string { func (*SkuList) ProtoMessage() {} func (x *SkuList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[610] + mi := &file_nico_nico_proto_msgTypes[611] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44039,7 +44105,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{610} + return file_nico_nico_proto_rawDescGZIP(), []int{611} } func (x *SkuList) GetSkus() []*Sku { @@ -44058,7 +44124,7 @@ type SkuIdList struct { func (x *SkuIdList) Reset() { *x = SkuIdList{} - mi := &file_nico_nico_proto_msgTypes[611] + mi := &file_nico_nico_proto_msgTypes[612] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44070,7 +44136,7 @@ func (x *SkuIdList) String() string { func (*SkuIdList) ProtoMessage() {} func (x *SkuIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[611] + mi := &file_nico_nico_proto_msgTypes[612] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44083,7 +44149,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{611} + return file_nico_nico_proto_rawDescGZIP(), []int{612} } func (x *SkuIdList) GetIds() []string { @@ -44104,7 +44170,7 @@ type SkuStatus struct { func (x *SkuStatus) Reset() { *x = SkuStatus{} - mi := &file_nico_nico_proto_msgTypes[612] + mi := &file_nico_nico_proto_msgTypes[613] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44116,7 +44182,7 @@ func (x *SkuStatus) String() string { func (*SkuStatus) ProtoMessage() {} func (x *SkuStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[612] + mi := &file_nico_nico_proto_msgTypes[613] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44129,7 +44195,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{612} + return file_nico_nico_proto_rawDescGZIP(), []int{613} } func (x *SkuStatus) GetVerifyRequestTime() *timestamppb.Timestamp { @@ -44162,7 +44228,7 @@ type SkusByIdsRequest struct { func (x *SkusByIdsRequest) Reset() { *x = SkusByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[613] + mi := &file_nico_nico_proto_msgTypes[614] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44174,7 +44240,7 @@ func (x *SkusByIdsRequest) String() string { func (*SkusByIdsRequest) ProtoMessage() {} func (x *SkusByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[613] + mi := &file_nico_nico_proto_msgTypes[614] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44187,7 +44253,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{613} + return file_nico_nico_proto_rawDescGZIP(), []int{614} } func (x *SkusByIdsRequest) GetIds() []string { @@ -44205,7 +44271,7 @@ type SkuSearchFilter struct { func (x *SkuSearchFilter) Reset() { *x = SkuSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[614] + mi := &file_nico_nico_proto_msgTypes[615] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44217,7 +44283,7 @@ func (x *SkuSearchFilter) String() string { func (*SkuSearchFilter) ProtoMessage() {} func (x *SkuSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[614] + mi := &file_nico_nico_proto_msgTypes[615] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44230,7 +44296,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{614} + return file_nico_nico_proto_rawDescGZIP(), []int{615} } type DpaInterface struct { @@ -44270,7 +44336,7 @@ type DpaInterface struct { func (x *DpaInterface) Reset() { *x = DpaInterface{} - mi := &file_nico_nico_proto_msgTypes[615] + mi := &file_nico_nico_proto_msgTypes[616] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44282,7 +44348,7 @@ func (x *DpaInterface) String() string { func (*DpaInterface) ProtoMessage() {} func (x *DpaInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[615] + mi := &file_nico_nico_proto_msgTypes[616] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44295,7 +44361,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{615} + return file_nico_nico_proto_rawDescGZIP(), []int{616} } func (x *DpaInterface) GetId() *DpaInterfaceId { @@ -44452,7 +44518,7 @@ type DpaInterfaceCreationRequest struct { func (x *DpaInterfaceCreationRequest) Reset() { *x = DpaInterfaceCreationRequest{} - mi := &file_nico_nico_proto_msgTypes[616] + mi := &file_nico_nico_proto_msgTypes[617] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44464,7 +44530,7 @@ func (x *DpaInterfaceCreationRequest) String() string { func (*DpaInterfaceCreationRequest) ProtoMessage() {} func (x *DpaInterfaceCreationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[616] + mi := &file_nico_nico_proto_msgTypes[617] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44477,7 +44543,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{616} + return file_nico_nico_proto_rawDescGZIP(), []int{617} } func (x *DpaInterfaceCreationRequest) GetMachineId() *MachineId { @@ -44531,7 +44597,7 @@ type DpaInterfaceIdList struct { func (x *DpaInterfaceIdList) Reset() { *x = DpaInterfaceIdList{} - mi := &file_nico_nico_proto_msgTypes[617] + mi := &file_nico_nico_proto_msgTypes[618] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44543,7 +44609,7 @@ func (x *DpaInterfaceIdList) String() string { func (*DpaInterfaceIdList) ProtoMessage() {} func (x *DpaInterfaceIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[617] + mi := &file_nico_nico_proto_msgTypes[618] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44556,7 +44622,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{617} + return file_nico_nico_proto_rawDescGZIP(), []int{618} } func (x *DpaInterfaceIdList) GetIds() []*DpaInterfaceId { @@ -44576,7 +44642,7 @@ type DpaInterfacesByIdsRequest struct { func (x *DpaInterfacesByIdsRequest) Reset() { *x = DpaInterfacesByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[618] + mi := &file_nico_nico_proto_msgTypes[619] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44588,7 +44654,7 @@ func (x *DpaInterfacesByIdsRequest) String() string { func (*DpaInterfacesByIdsRequest) ProtoMessage() {} func (x *DpaInterfacesByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[618] + mi := &file_nico_nico_proto_msgTypes[619] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44601,7 +44667,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{618} + return file_nico_nico_proto_rawDescGZIP(), []int{619} } func (x *DpaInterfacesByIdsRequest) GetIds() []*DpaInterfaceId { @@ -44627,7 +44693,7 @@ type DpaInterfaceList struct { func (x *DpaInterfaceList) Reset() { *x = DpaInterfaceList{} - mi := &file_nico_nico_proto_msgTypes[619] + mi := &file_nico_nico_proto_msgTypes[620] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44639,7 +44705,7 @@ func (x *DpaInterfaceList) String() string { func (*DpaInterfaceList) ProtoMessage() {} func (x *DpaInterfaceList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[619] + mi := &file_nico_nico_proto_msgTypes[620] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44652,7 +44718,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{619} + return file_nico_nico_proto_rawDescGZIP(), []int{620} } func (x *DpaInterfaceList) GetInterfaces() []*DpaInterface { @@ -44671,7 +44737,7 @@ type DpaNetworkObservationSetRequest struct { func (x *DpaNetworkObservationSetRequest) Reset() { *x = DpaNetworkObservationSetRequest{} - mi := &file_nico_nico_proto_msgTypes[620] + mi := &file_nico_nico_proto_msgTypes[621] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44683,7 +44749,7 @@ func (x *DpaNetworkObservationSetRequest) String() string { func (*DpaNetworkObservationSetRequest) ProtoMessage() {} func (x *DpaNetworkObservationSetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[620] + mi := &file_nico_nico_proto_msgTypes[621] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44696,7 +44762,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{620} + return file_nico_nico_proto_rawDescGZIP(), []int{621} } func (x *DpaNetworkObservationSetRequest) GetId() *DpaInterfaceId { @@ -44715,7 +44781,7 @@ type DpaInterfaceDeletionRequest struct { func (x *DpaInterfaceDeletionRequest) Reset() { *x = DpaInterfaceDeletionRequest{} - mi := &file_nico_nico_proto_msgTypes[621] + mi := &file_nico_nico_proto_msgTypes[622] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44727,7 +44793,7 @@ func (x *DpaInterfaceDeletionRequest) String() string { func (*DpaInterfaceDeletionRequest) ProtoMessage() {} func (x *DpaInterfaceDeletionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[621] + mi := &file_nico_nico_proto_msgTypes[622] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44740,7 +44806,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{621} + return file_nico_nico_proto_rawDescGZIP(), []int{622} } func (x *DpaInterfaceDeletionRequest) GetId() *DpaInterfaceId { @@ -44758,7 +44824,7 @@ type DpaInterfaceDeletionResult struct { func (x *DpaInterfaceDeletionResult) Reset() { *x = DpaInterfaceDeletionResult{} - mi := &file_nico_nico_proto_msgTypes[622] + mi := &file_nico_nico_proto_msgTypes[623] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44770,7 +44836,7 @@ func (x *DpaInterfaceDeletionResult) String() string { func (*DpaInterfaceDeletionResult) ProtoMessage() {} func (x *DpaInterfaceDeletionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[622] + mi := &file_nico_nico_proto_msgTypes[623] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44783,7 +44849,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{622} + return file_nico_nico_proto_rawDescGZIP(), []int{623} } type SkuUpdateMetadataRequest struct { @@ -44797,7 +44863,7 @@ type SkuUpdateMetadataRequest struct { func (x *SkuUpdateMetadataRequest) Reset() { *x = SkuUpdateMetadataRequest{} - mi := &file_nico_nico_proto_msgTypes[623] + mi := &file_nico_nico_proto_msgTypes[624] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44809,7 +44875,7 @@ func (x *SkuUpdateMetadataRequest) String() string { func (*SkuUpdateMetadataRequest) ProtoMessage() {} func (x *SkuUpdateMetadataRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[623] + mi := &file_nico_nico_proto_msgTypes[624] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44822,7 +44888,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{623} + return file_nico_nico_proto_rawDescGZIP(), []int{624} } func (x *SkuUpdateMetadataRequest) GetSkuId() string { @@ -44855,7 +44921,7 @@ type PowerOptionRequest struct { func (x *PowerOptionRequest) Reset() { *x = PowerOptionRequest{} - mi := &file_nico_nico_proto_msgTypes[624] + mi := &file_nico_nico_proto_msgTypes[625] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44867,7 +44933,7 @@ func (x *PowerOptionRequest) String() string { func (*PowerOptionRequest) ProtoMessage() {} func (x *PowerOptionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[624] + mi := &file_nico_nico_proto_msgTypes[625] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44880,7 +44946,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{624} + return file_nico_nico_proto_rawDescGZIP(), []int{625} } func (x *PowerOptionRequest) GetMachineId() []*MachineId { @@ -44900,7 +44966,7 @@ type PowerOptionUpdateRequest struct { func (x *PowerOptionUpdateRequest) Reset() { *x = PowerOptionUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[625] + mi := &file_nico_nico_proto_msgTypes[626] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44912,7 +44978,7 @@ func (x *PowerOptionUpdateRequest) String() string { func (*PowerOptionUpdateRequest) ProtoMessage() {} func (x *PowerOptionUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[625] + mi := &file_nico_nico_proto_msgTypes[626] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44925,7 +44991,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{625} + return file_nico_nico_proto_rawDescGZIP(), []int{626} } func (x *PowerOptionUpdateRequest) GetMachineId() *MachineId { @@ -44961,7 +45027,7 @@ type PowerOptions struct { func (x *PowerOptions) Reset() { *x = PowerOptions{} - mi := &file_nico_nico_proto_msgTypes[626] + mi := &file_nico_nico_proto_msgTypes[627] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44973,7 +45039,7 @@ func (x *PowerOptions) String() string { func (*PowerOptions) ProtoMessage() {} func (x *PowerOptions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[626] + mi := &file_nico_nico_proto_msgTypes[627] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44986,7 +45052,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{626} + return file_nico_nico_proto_rawDescGZIP(), []int{627} } func (x *PowerOptions) GetDesiredState() PowerState { @@ -45075,7 +45141,7 @@ type PowerOptionResponse struct { func (x *PowerOptionResponse) Reset() { *x = PowerOptionResponse{} - mi := &file_nico_nico_proto_msgTypes[627] + mi := &file_nico_nico_proto_msgTypes[628] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45087,7 +45153,7 @@ func (x *PowerOptionResponse) String() string { func (*PowerOptionResponse) ProtoMessage() {} func (x *PowerOptionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[627] + mi := &file_nico_nico_proto_msgTypes[628] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45100,7 +45166,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{627} + return file_nico_nico_proto_rawDescGZIP(), []int{628} } func (x *PowerOptionResponse) GetResponse() []*PowerOptions { @@ -45126,7 +45192,7 @@ type ComputeAllocationAttributes struct { func (x *ComputeAllocationAttributes) Reset() { *x = ComputeAllocationAttributes{} - mi := &file_nico_nico_proto_msgTypes[628] + mi := &file_nico_nico_proto_msgTypes[629] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45138,7 +45204,7 @@ func (x *ComputeAllocationAttributes) String() string { func (*ComputeAllocationAttributes) ProtoMessage() {} func (x *ComputeAllocationAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[628] + mi := &file_nico_nico_proto_msgTypes[629] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45151,7 +45217,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{628} + return file_nico_nico_proto_rawDescGZIP(), []int{629} } func (x *ComputeAllocationAttributes) GetInstanceTypeId() string { @@ -45184,7 +45250,7 @@ type ComputeAllocation struct { func (x *ComputeAllocation) Reset() { *x = ComputeAllocation{} - mi := &file_nico_nico_proto_msgTypes[629] + mi := &file_nico_nico_proto_msgTypes[630] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45196,7 +45262,7 @@ func (x *ComputeAllocation) String() string { func (*ComputeAllocation) ProtoMessage() {} func (x *ComputeAllocation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[629] + mi := &file_nico_nico_proto_msgTypes[630] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45209,7 +45275,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{629} + return file_nico_nico_proto_rawDescGZIP(), []int{630} } func (x *ComputeAllocation) GetId() *ComputeAllocationId { @@ -45281,7 +45347,7 @@ type CreateComputeAllocationRequest struct { func (x *CreateComputeAllocationRequest) Reset() { *x = CreateComputeAllocationRequest{} - mi := &file_nico_nico_proto_msgTypes[630] + mi := &file_nico_nico_proto_msgTypes[631] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45293,7 +45359,7 @@ func (x *CreateComputeAllocationRequest) String() string { func (*CreateComputeAllocationRequest) ProtoMessage() {} func (x *CreateComputeAllocationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[630] + mi := &file_nico_nico_proto_msgTypes[631] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45306,7 +45372,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{630} + return file_nico_nico_proto_rawDescGZIP(), []int{631} } func (x *CreateComputeAllocationRequest) GetId() *ComputeAllocationId { @@ -45353,7 +45419,7 @@ type CreateComputeAllocationResponse struct { func (x *CreateComputeAllocationResponse) Reset() { *x = CreateComputeAllocationResponse{} - mi := &file_nico_nico_proto_msgTypes[631] + mi := &file_nico_nico_proto_msgTypes[632] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45365,7 +45431,7 @@ func (x *CreateComputeAllocationResponse) String() string { func (*CreateComputeAllocationResponse) ProtoMessage() {} func (x *CreateComputeAllocationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[631] + mi := &file_nico_nico_proto_msgTypes[632] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45378,7 +45444,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{631} + return file_nico_nico_proto_rawDescGZIP(), []int{632} } func (x *CreateComputeAllocationResponse) GetAllocation() *ComputeAllocation { @@ -45405,7 +45471,7 @@ type FindComputeAllocationIdsRequest struct { func (x *FindComputeAllocationIdsRequest) Reset() { *x = FindComputeAllocationIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[632] + mi := &file_nico_nico_proto_msgTypes[633] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45417,7 +45483,7 @@ func (x *FindComputeAllocationIdsRequest) String() string { func (*FindComputeAllocationIdsRequest) ProtoMessage() {} func (x *FindComputeAllocationIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[632] + mi := &file_nico_nico_proto_msgTypes[633] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45430,7 +45496,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{632} + return file_nico_nico_proto_rawDescGZIP(), []int{633} } func (x *FindComputeAllocationIdsRequest) GetName() string { @@ -45463,7 +45529,7 @@ type FindComputeAllocationIdsResponse struct { func (x *FindComputeAllocationIdsResponse) Reset() { *x = FindComputeAllocationIdsResponse{} - mi := &file_nico_nico_proto_msgTypes[633] + mi := &file_nico_nico_proto_msgTypes[634] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45475,7 +45541,7 @@ func (x *FindComputeAllocationIdsResponse) String() string { func (*FindComputeAllocationIdsResponse) ProtoMessage() {} func (x *FindComputeAllocationIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[633] + mi := &file_nico_nico_proto_msgTypes[634] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45488,7 +45554,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{633} + return file_nico_nico_proto_rawDescGZIP(), []int{634} } func (x *FindComputeAllocationIdsResponse) GetIds() []*ComputeAllocationId { @@ -45510,7 +45576,7 @@ type FindComputeAllocationsByIdsRequest struct { func (x *FindComputeAllocationsByIdsRequest) Reset() { *x = FindComputeAllocationsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[634] + mi := &file_nico_nico_proto_msgTypes[635] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45522,7 +45588,7 @@ func (x *FindComputeAllocationsByIdsRequest) String() string { func (*FindComputeAllocationsByIdsRequest) ProtoMessage() {} func (x *FindComputeAllocationsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[634] + mi := &file_nico_nico_proto_msgTypes[635] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45535,7 +45601,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{634} + return file_nico_nico_proto_rawDescGZIP(), []int{635} } func (x *FindComputeAllocationsByIdsRequest) GetIds() []*ComputeAllocationId { @@ -45554,7 +45620,7 @@ type FindComputeAllocationsByIdsResponse struct { func (x *FindComputeAllocationsByIdsResponse) Reset() { *x = FindComputeAllocationsByIdsResponse{} - mi := &file_nico_nico_proto_msgTypes[635] + mi := &file_nico_nico_proto_msgTypes[636] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45566,7 +45632,7 @@ func (x *FindComputeAllocationsByIdsResponse) String() string { func (*FindComputeAllocationsByIdsResponse) ProtoMessage() {} func (x *FindComputeAllocationsByIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[635] + mi := &file_nico_nico_proto_msgTypes[636] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45579,7 +45645,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{635} + return file_nico_nico_proto_rawDescGZIP(), []int{636} } func (x *FindComputeAllocationsByIdsResponse) GetAllocations() []*ComputeAllocation { @@ -45598,7 +45664,7 @@ type UpdateComputeAllocationResponse struct { func (x *UpdateComputeAllocationResponse) Reset() { *x = UpdateComputeAllocationResponse{} - mi := &file_nico_nico_proto_msgTypes[636] + mi := &file_nico_nico_proto_msgTypes[637] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45610,7 +45676,7 @@ func (x *UpdateComputeAllocationResponse) String() string { func (*UpdateComputeAllocationResponse) ProtoMessage() {} func (x *UpdateComputeAllocationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[636] + mi := &file_nico_nico_proto_msgTypes[637] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45623,7 +45689,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{636} + return file_nico_nico_proto_rawDescGZIP(), []int{637} } func (x *UpdateComputeAllocationResponse) GetAllocation() *ComputeAllocation { @@ -45647,7 +45713,7 @@ type UpdateComputeAllocationRequest struct { func (x *UpdateComputeAllocationRequest) Reset() { *x = UpdateComputeAllocationRequest{} - mi := &file_nico_nico_proto_msgTypes[637] + mi := &file_nico_nico_proto_msgTypes[638] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45659,7 +45725,7 @@ func (x *UpdateComputeAllocationRequest) String() string { func (*UpdateComputeAllocationRequest) ProtoMessage() {} func (x *UpdateComputeAllocationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[637] + mi := &file_nico_nico_proto_msgTypes[638] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45672,7 +45738,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{637} + return file_nico_nico_proto_rawDescGZIP(), []int{638} } func (x *UpdateComputeAllocationRequest) GetId() *ComputeAllocationId { @@ -45727,7 +45793,7 @@ type DeleteComputeAllocationRequest struct { func (x *DeleteComputeAllocationRequest) Reset() { *x = DeleteComputeAllocationRequest{} - mi := &file_nico_nico_proto_msgTypes[638] + mi := &file_nico_nico_proto_msgTypes[639] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45739,7 +45805,7 @@ func (x *DeleteComputeAllocationRequest) String() string { func (*DeleteComputeAllocationRequest) ProtoMessage() {} func (x *DeleteComputeAllocationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[638] + mi := &file_nico_nico_proto_msgTypes[639] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45752,7 +45818,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{638} + return file_nico_nico_proto_rawDescGZIP(), []int{639} } func (x *DeleteComputeAllocationRequest) GetId() *ComputeAllocationId { @@ -45777,7 +45843,7 @@ type DeleteComputeAllocationResponse struct { func (x *DeleteComputeAllocationResponse) Reset() { *x = DeleteComputeAllocationResponse{} - mi := &file_nico_nico_proto_msgTypes[639] + mi := &file_nico_nico_proto_msgTypes[640] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45789,7 +45855,7 @@ func (x *DeleteComputeAllocationResponse) String() string { func (*DeleteComputeAllocationResponse) ProtoMessage() {} func (x *DeleteComputeAllocationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[639] + mi := &file_nico_nico_proto_msgTypes[640] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45802,7 +45868,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{639} + return file_nico_nico_proto_rawDescGZIP(), []int{640} } // For use with the existing InstanceType message @@ -45827,7 +45893,7 @@ type InstanceTypeAllocationStats struct { func (x *InstanceTypeAllocationStats) Reset() { *x = InstanceTypeAllocationStats{} - mi := &file_nico_nico_proto_msgTypes[640] + mi := &file_nico_nico_proto_msgTypes[641] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45839,7 +45905,7 @@ func (x *InstanceTypeAllocationStats) String() string { func (*InstanceTypeAllocationStats) ProtoMessage() {} func (x *InstanceTypeAllocationStats) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[640] + mi := &file_nico_nico_proto_msgTypes[641] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45852,7 +45918,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{640} + return file_nico_nico_proto_rawDescGZIP(), []int{641} } func (x *InstanceTypeAllocationStats) GetMaxAllocatable() uint32 { @@ -45892,7 +45958,7 @@ type GetRackRequest struct { func (x *GetRackRequest) Reset() { *x = GetRackRequest{} - mi := &file_nico_nico_proto_msgTypes[641] + mi := &file_nico_nico_proto_msgTypes[642] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45904,7 +45970,7 @@ func (x *GetRackRequest) String() string { func (*GetRackRequest) ProtoMessage() {} func (x *GetRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[641] + mi := &file_nico_nico_proto_msgTypes[642] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45917,7 +45983,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{641} + return file_nico_nico_proto_rawDescGZIP(), []int{642} } func (x *GetRackRequest) GetId() string { @@ -45936,7 +46002,7 @@ type GetRackResponse struct { func (x *GetRackResponse) Reset() { *x = GetRackResponse{} - mi := &file_nico_nico_proto_msgTypes[642] + mi := &file_nico_nico_proto_msgTypes[643] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45948,7 +46014,7 @@ func (x *GetRackResponse) String() string { func (*GetRackResponse) ProtoMessage() {} func (x *GetRackResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[642] + mi := &file_nico_nico_proto_msgTypes[643] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45961,7 +46027,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{642} + return file_nico_nico_proto_rawDescGZIP(), []int{643} } func (x *GetRackResponse) GetRack() []*Rack { @@ -45980,7 +46046,7 @@ type RackList struct { func (x *RackList) Reset() { *x = RackList{} - mi := &file_nico_nico_proto_msgTypes[643] + mi := &file_nico_nico_proto_msgTypes[644] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45992,7 +46058,7 @@ func (x *RackList) String() string { func (*RackList) ProtoMessage() {} func (x *RackList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[643] + mi := &file_nico_nico_proto_msgTypes[644] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46005,7 +46071,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{643} + return file_nico_nico_proto_rawDescGZIP(), []int{644} } func (x *RackList) GetRacks() []*Rack { @@ -46025,7 +46091,7 @@ type RackSearchFilter struct { func (x *RackSearchFilter) Reset() { *x = RackSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[644] + mi := &file_nico_nico_proto_msgTypes[645] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46037,7 +46103,7 @@ func (x *RackSearchFilter) String() string { func (*RackSearchFilter) ProtoMessage() {} func (x *RackSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[644] + mi := &file_nico_nico_proto_msgTypes[645] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46050,7 +46116,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{644} + return file_nico_nico_proto_rawDescGZIP(), []int{645} } func (x *RackSearchFilter) GetLabel() *Label { @@ -46069,7 +46135,7 @@ type RackIdList struct { func (x *RackIdList) Reset() { *x = RackIdList{} - mi := &file_nico_nico_proto_msgTypes[645] + mi := &file_nico_nico_proto_msgTypes[646] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46081,7 +46147,7 @@ func (x *RackIdList) String() string { func (*RackIdList) ProtoMessage() {} func (x *RackIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[645] + mi := &file_nico_nico_proto_msgTypes[646] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46094,7 +46160,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{645} + return file_nico_nico_proto_rawDescGZIP(), []int{646} } func (x *RackIdList) GetRackIds() []*RackId { @@ -46113,7 +46179,7 @@ type RacksByIdsRequest struct { func (x *RacksByIdsRequest) Reset() { *x = RacksByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[646] + mi := &file_nico_nico_proto_msgTypes[647] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46125,7 +46191,7 @@ func (x *RacksByIdsRequest) String() string { func (*RacksByIdsRequest) ProtoMessage() {} func (x *RacksByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[646] + mi := &file_nico_nico_proto_msgTypes[647] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46138,7 +46204,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{646} + return file_nico_nico_proto_rawDescGZIP(), []int{647} } func (x *RacksByIdsRequest) GetRackIds() []*RackId { @@ -46166,7 +46232,7 @@ type Rack struct { func (x *Rack) Reset() { *x = Rack{} - mi := &file_nico_nico_proto_msgTypes[647] + mi := &file_nico_nico_proto_msgTypes[648] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46178,7 +46244,7 @@ func (x *Rack) String() string { func (*Rack) ProtoMessage() {} func (x *Rack) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[647] + mi := &file_nico_nico_proto_msgTypes[648] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46191,7 +46257,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{647} + return file_nico_nico_proto_rawDescGZIP(), []int{648} } func (x *Rack) GetId() *RackId { @@ -46265,7 +46331,7 @@ type RackConfig struct { func (x *RackConfig) Reset() { *x = RackConfig{} - mi := &file_nico_nico_proto_msgTypes[648] + mi := &file_nico_nico_proto_msgTypes[649] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46277,7 +46343,7 @@ func (x *RackConfig) String() string { func (*RackConfig) ProtoMessage() {} func (x *RackConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[648] + mi := &file_nico_nico_proto_msgTypes[649] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46290,7 +46356,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{648} + return file_nico_nico_proto_rawDescGZIP(), []int{649} } type RackStatus struct { @@ -46305,7 +46371,7 @@ type RackStatus struct { func (x *RackStatus) Reset() { *x = RackStatus{} - mi := &file_nico_nico_proto_msgTypes[649] + mi := &file_nico_nico_proto_msgTypes[650] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46317,7 +46383,7 @@ func (x *RackStatus) String() string { func (*RackStatus) ProtoMessage() {} func (x *RackStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[649] + mi := &file_nico_nico_proto_msgTypes[650] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46330,7 +46396,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{649} + return file_nico_nico_proto_rawDescGZIP(), []int{650} } func (x *RackStatus) GetHealth() *HealthReport { @@ -46363,7 +46429,7 @@ type RackStateHistoriesRequest struct { func (x *RackStateHistoriesRequest) Reset() { *x = RackStateHistoriesRequest{} - mi := &file_nico_nico_proto_msgTypes[650] + mi := &file_nico_nico_proto_msgTypes[651] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46375,7 +46441,7 @@ func (x *RackStateHistoriesRequest) String() string { func (*RackStateHistoriesRequest) ProtoMessage() {} func (x *RackStateHistoriesRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[650] + mi := &file_nico_nico_proto_msgTypes[651] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46388,7 +46454,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{650} + return file_nico_nico_proto_rawDescGZIP(), []int{651} } func (x *RackStateHistoriesRequest) GetRackIds() []*RackId { @@ -46407,7 +46473,7 @@ type DeleteRackRequest struct { func (x *DeleteRackRequest) Reset() { *x = DeleteRackRequest{} - mi := &file_nico_nico_proto_msgTypes[651] + mi := &file_nico_nico_proto_msgTypes[652] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46419,7 +46485,7 @@ func (x *DeleteRackRequest) String() string { func (*DeleteRackRequest) ProtoMessage() {} func (x *DeleteRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[651] + mi := &file_nico_nico_proto_msgTypes[652] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46432,7 +46498,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{651} + return file_nico_nico_proto_rawDescGZIP(), []int{652} } func (x *DeleteRackRequest) GetId() string { @@ -46453,7 +46519,7 @@ type AdminForceDeleteRackRequest struct { func (x *AdminForceDeleteRackRequest) Reset() { *x = AdminForceDeleteRackRequest{} - mi := &file_nico_nico_proto_msgTypes[652] + mi := &file_nico_nico_proto_msgTypes[653] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46465,7 +46531,7 @@ func (x *AdminForceDeleteRackRequest) String() string { func (*AdminForceDeleteRackRequest) ProtoMessage() {} func (x *AdminForceDeleteRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[652] + mi := &file_nico_nico_proto_msgTypes[653] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46478,7 +46544,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{652} + return file_nico_nico_proto_rawDescGZIP(), []int{653} } func (x *AdminForceDeleteRackRequest) GetRackId() *RackId { @@ -46498,7 +46564,7 @@ type AdminForceDeleteRackResponse struct { func (x *AdminForceDeleteRackResponse) Reset() { *x = AdminForceDeleteRackResponse{} - mi := &file_nico_nico_proto_msgTypes[653] + mi := &file_nico_nico_proto_msgTypes[654] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46510,7 +46576,7 @@ func (x *AdminForceDeleteRackResponse) String() string { func (*AdminForceDeleteRackResponse) ProtoMessage() {} func (x *AdminForceDeleteRackResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[653] + mi := &file_nico_nico_proto_msgTypes[654] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46523,7 +46589,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{653} + return file_nico_nico_proto_rawDescGZIP(), []int{654} } func (x *AdminForceDeleteRackResponse) GetRackId() string { @@ -46545,7 +46611,7 @@ type RackCapabilityCompute struct { func (x *RackCapabilityCompute) Reset() { *x = RackCapabilityCompute{} - mi := &file_nico_nico_proto_msgTypes[654] + mi := &file_nico_nico_proto_msgTypes[655] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46557,7 +46623,7 @@ func (x *RackCapabilityCompute) String() string { func (*RackCapabilityCompute) ProtoMessage() {} func (x *RackCapabilityCompute) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[654] + mi := &file_nico_nico_proto_msgTypes[655] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46570,7 +46636,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{654} + return file_nico_nico_proto_rawDescGZIP(), []int{655} } func (x *RackCapabilityCompute) GetName() string { @@ -46613,7 +46679,7 @@ type RackCapabilitySwitch struct { func (x *RackCapabilitySwitch) Reset() { *x = RackCapabilitySwitch{} - mi := &file_nico_nico_proto_msgTypes[655] + mi := &file_nico_nico_proto_msgTypes[656] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46625,7 +46691,7 @@ func (x *RackCapabilitySwitch) String() string { func (*RackCapabilitySwitch) ProtoMessage() {} func (x *RackCapabilitySwitch) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[655] + mi := &file_nico_nico_proto_msgTypes[656] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46638,7 +46704,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{655} + return file_nico_nico_proto_rawDescGZIP(), []int{656} } func (x *RackCapabilitySwitch) GetName() string { @@ -46681,7 +46747,7 @@ type RackCapabilityPowerShelf struct { func (x *RackCapabilityPowerShelf) Reset() { *x = RackCapabilityPowerShelf{} - mi := &file_nico_nico_proto_msgTypes[656] + mi := &file_nico_nico_proto_msgTypes[657] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46693,7 +46759,7 @@ func (x *RackCapabilityPowerShelf) String() string { func (*RackCapabilityPowerShelf) ProtoMessage() {} func (x *RackCapabilityPowerShelf) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[656] + mi := &file_nico_nico_proto_msgTypes[657] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46706,7 +46772,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{656} + return file_nico_nico_proto_rawDescGZIP(), []int{657} } func (x *RackCapabilityPowerShelf) GetName() string { @@ -46748,7 +46814,7 @@ type RackCapabilitiesSet struct { func (x *RackCapabilitiesSet) Reset() { *x = RackCapabilitiesSet{} - mi := &file_nico_nico_proto_msgTypes[657] + mi := &file_nico_nico_proto_msgTypes[658] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46760,7 +46826,7 @@ func (x *RackCapabilitiesSet) String() string { func (*RackCapabilitiesSet) ProtoMessage() {} func (x *RackCapabilitiesSet) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[657] + mi := &file_nico_nico_proto_msgTypes[658] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46773,7 +46839,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{657} + return file_nico_nico_proto_rawDescGZIP(), []int{658} } func (x *RackCapabilitiesSet) GetCompute() *RackCapabilityCompute { @@ -46810,7 +46876,7 @@ type RackProfile struct { func (x *RackProfile) Reset() { *x = RackProfile{} - mi := &file_nico_nico_proto_msgTypes[658] + mi := &file_nico_nico_proto_msgTypes[659] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46822,7 +46888,7 @@ func (x *RackProfile) String() string { func (*RackProfile) ProtoMessage() {} func (x *RackProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[658] + mi := &file_nico_nico_proto_msgTypes[659] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46835,7 +46901,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{658} + return file_nico_nico_proto_rawDescGZIP(), []int{659} } func (x *RackProfile) GetRackHardwareType() *RackHardwareType { @@ -46882,7 +46948,7 @@ type GetRackProfileRequest struct { func (x *GetRackProfileRequest) Reset() { *x = GetRackProfileRequest{} - mi := &file_nico_nico_proto_msgTypes[659] + mi := &file_nico_nico_proto_msgTypes[660] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46894,7 +46960,7 @@ func (x *GetRackProfileRequest) String() string { func (*GetRackProfileRequest) ProtoMessage() {} func (x *GetRackProfileRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[659] + mi := &file_nico_nico_proto_msgTypes[660] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46907,7 +46973,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{659} + return file_nico_nico_proto_rawDescGZIP(), []int{660} } func (x *GetRackProfileRequest) GetRackId() *RackId { @@ -46928,7 +46994,7 @@ type GetRackProfileResponse struct { func (x *GetRackProfileResponse) Reset() { *x = GetRackProfileResponse{} - mi := &file_nico_nico_proto_msgTypes[660] + mi := &file_nico_nico_proto_msgTypes[661] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46940,7 +47006,7 @@ func (x *GetRackProfileResponse) String() string { func (*GetRackProfileResponse) ProtoMessage() {} func (x *GetRackProfileResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[660] + mi := &file_nico_nico_proto_msgTypes[661] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46953,7 +47019,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{660} + return file_nico_nico_proto_rawDescGZIP(), []int{661} } func (x *GetRackProfileResponse) GetRackId() *RackId { @@ -46987,7 +47053,7 @@ type RackManagerForgeRequest struct { func (x *RackManagerForgeRequest) Reset() { *x = RackManagerForgeRequest{} - mi := &file_nico_nico_proto_msgTypes[661] + mi := &file_nico_nico_proto_msgTypes[662] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46999,7 +47065,7 @@ func (x *RackManagerForgeRequest) String() string { func (*RackManagerForgeRequest) ProtoMessage() {} func (x *RackManagerForgeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[661] + mi := &file_nico_nico_proto_msgTypes[662] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47012,7 +47078,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{661} + return file_nico_nico_proto_rawDescGZIP(), []int{662} } func (x *RackManagerForgeRequest) GetCmd() RackManagerForgeCmd { @@ -47038,7 +47104,7 @@ type RackManagerForgeResponse struct { func (x *RackManagerForgeResponse) Reset() { *x = RackManagerForgeResponse{} - mi := &file_nico_nico_proto_msgTypes[662] + mi := &file_nico_nico_proto_msgTypes[663] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47050,7 +47116,7 @@ func (x *RackManagerForgeResponse) String() string { func (*RackManagerForgeResponse) ProtoMessage() {} func (x *RackManagerForgeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[662] + mi := &file_nico_nico_proto_msgTypes[663] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47063,7 +47129,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{662} + return file_nico_nico_proto_rawDescGZIP(), []int{663} } func (x *RackManagerForgeResponse) GetJsonResult() string { @@ -47084,7 +47150,7 @@ type MachineNVLinkInfo struct { func (x *MachineNVLinkInfo) Reset() { *x = MachineNVLinkInfo{} - mi := &file_nico_nico_proto_msgTypes[663] + mi := &file_nico_nico_proto_msgTypes[664] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47096,7 +47162,7 @@ func (x *MachineNVLinkInfo) String() string { func (*MachineNVLinkInfo) ProtoMessage() {} func (x *MachineNVLinkInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[663] + mi := &file_nico_nico_proto_msgTypes[664] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47109,7 +47175,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{663} + return file_nico_nico_proto_rawDescGZIP(), []int{664} } func (x *MachineNVLinkInfo) GetDomainUuid() *NVLinkDomainId { @@ -47143,7 +47209,7 @@ type UpdateMachineNvLinkInfoRequest struct { func (x *UpdateMachineNvLinkInfoRequest) Reset() { *x = UpdateMachineNvLinkInfoRequest{} - mi := &file_nico_nico_proto_msgTypes[664] + mi := &file_nico_nico_proto_msgTypes[665] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47155,7 +47221,7 @@ func (x *UpdateMachineNvLinkInfoRequest) String() string { func (*UpdateMachineNvLinkInfoRequest) ProtoMessage() {} func (x *UpdateMachineNvLinkInfoRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[664] + mi := &file_nico_nico_proto_msgTypes[665] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47168,7 +47234,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{664} + return file_nico_nico_proto_rawDescGZIP(), []int{665} } func (x *UpdateMachineNvLinkInfoRequest) GetMachineId() *MachineId { @@ -47195,7 +47261,7 @@ type MachineSpxStatusObservation struct { func (x *MachineSpxStatusObservation) Reset() { *x = MachineSpxStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[665] + mi := &file_nico_nico_proto_msgTypes[666] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47207,7 +47273,7 @@ func (x *MachineSpxStatusObservation) String() string { func (*MachineSpxStatusObservation) ProtoMessage() {} func (x *MachineSpxStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[665] + mi := &file_nico_nico_proto_msgTypes[666] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47220,7 +47286,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{665} + return file_nico_nico_proto_rawDescGZIP(), []int{666} } func (x *MachineSpxStatusObservation) GetAttachmentStatus() []*MachineSpxAttachmentStatusObservation { @@ -47250,7 +47316,7 @@ type MachineSpxAttachmentStatusObservation struct { func (x *MachineSpxAttachmentStatusObservation) Reset() { *x = MachineSpxAttachmentStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[666] + mi := &file_nico_nico_proto_msgTypes[667] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47262,7 +47328,7 @@ func (x *MachineSpxAttachmentStatusObservation) String() string { func (*MachineSpxAttachmentStatusObservation) ProtoMessage() {} func (x *MachineSpxAttachmentStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[666] + mi := &file_nico_nico_proto_msgTypes[667] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47275,7 +47341,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{666} + return file_nico_nico_proto_rawDescGZIP(), []int{667} } func (x *MachineSpxAttachmentStatusObservation) GetMacAddress() string { @@ -47322,7 +47388,7 @@ type AstraConfig struct { func (x *AstraConfig) Reset() { *x = AstraConfig{} - mi := &file_nico_nico_proto_msgTypes[667] + mi := &file_nico_nico_proto_msgTypes[668] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47334,7 +47400,7 @@ func (x *AstraConfig) String() string { func (*AstraConfig) ProtoMessage() {} func (x *AstraConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[667] + mi := &file_nico_nico_proto_msgTypes[668] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47347,7 +47413,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{667} + return file_nico_nico_proto_rawDescGZIP(), []int{668} } func (x *AstraConfig) GetAstraAttachments() []*AstraAttachment { @@ -47373,7 +47439,7 @@ type AstraAttachment struct { func (x *AstraAttachment) Reset() { *x = AstraAttachment{} - mi := &file_nico_nico_proto_msgTypes[668] + mi := &file_nico_nico_proto_msgTypes[669] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47385,7 +47451,7 @@ func (x *AstraAttachment) String() string { func (*AstraAttachment) ProtoMessage() {} func (x *AstraAttachment) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[668] + mi := &file_nico_nico_proto_msgTypes[669] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47398,7 +47464,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{668} + return file_nico_nico_proto_rawDescGZIP(), []int{669} } func (x *AstraAttachment) GetMacAddress() string { @@ -47466,7 +47532,7 @@ type AstraConfigStatus struct { func (x *AstraConfigStatus) Reset() { *x = AstraConfigStatus{} - mi := &file_nico_nico_proto_msgTypes[669] + mi := &file_nico_nico_proto_msgTypes[670] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47478,7 +47544,7 @@ func (x *AstraConfigStatus) String() string { func (*AstraConfigStatus) ProtoMessage() {} func (x *AstraConfigStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[669] + mi := &file_nico_nico_proto_msgTypes[670] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47491,7 +47557,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{669} + return file_nico_nico_proto_rawDescGZIP(), []int{670} } func (x *AstraConfigStatus) GetAstraAttachmentsStatus() []*AstraAttachmentStatus { @@ -47518,7 +47584,7 @@ type AstraAttachmentStatus struct { func (x *AstraAttachmentStatus) Reset() { *x = AstraAttachmentStatus{} - mi := &file_nico_nico_proto_msgTypes[670] + mi := &file_nico_nico_proto_msgTypes[671] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47530,7 +47596,7 @@ func (x *AstraAttachmentStatus) String() string { func (*AstraAttachmentStatus) ProtoMessage() {} func (x *AstraAttachmentStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[670] + mi := &file_nico_nico_proto_msgTypes[671] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47543,7 +47609,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{670} + return file_nico_nico_proto_rawDescGZIP(), []int{671} } func (x *AstraAttachmentStatus) GetMacAddress() string { @@ -47620,7 +47686,7 @@ type AstraStatus struct { func (x *AstraStatus) Reset() { *x = AstraStatus{} - mi := &file_nico_nico_proto_msgTypes[671] + mi := &file_nico_nico_proto_msgTypes[672] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47632,7 +47698,7 @@ func (x *AstraStatus) String() string { func (*AstraStatus) ProtoMessage() {} func (x *AstraStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[671] + mi := &file_nico_nico_proto_msgTypes[672] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47645,7 +47711,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{671} + return file_nico_nico_proto_rawDescGZIP(), []int{672} } func (x *AstraStatus) GetPhase() AstraPhase { @@ -47681,7 +47747,7 @@ type NVLinkGpu struct { func (x *NVLinkGpu) Reset() { *x = NVLinkGpu{} - mi := &file_nico_nico_proto_msgTypes[672] + mi := &file_nico_nico_proto_msgTypes[673] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47693,7 +47759,7 @@ func (x *NVLinkGpu) String() string { func (*NVLinkGpu) ProtoMessage() {} func (x *NVLinkGpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[672] + mi := &file_nico_nico_proto_msgTypes[673] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47706,7 +47772,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{672} + return file_nico_nico_proto_rawDescGZIP(), []int{673} } func (x *NVLinkGpu) GetTrayIndex() int32 { @@ -47746,7 +47812,7 @@ type MachineNVLinkStatusObservation struct { func (x *MachineNVLinkStatusObservation) Reset() { *x = MachineNVLinkStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[673] + mi := &file_nico_nico_proto_msgTypes[674] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47758,7 +47824,7 @@ func (x *MachineNVLinkStatusObservation) String() string { func (*MachineNVLinkStatusObservation) ProtoMessage() {} func (x *MachineNVLinkStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[673] + mi := &file_nico_nico_proto_msgTypes[674] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47771,7 +47837,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{673} + return file_nico_nico_proto_rawDescGZIP(), []int{674} } func (x *MachineNVLinkStatusObservation) GetGpuStatus() []*MachineNVLinkGpuStatusObservation { @@ -47795,7 +47861,7 @@ type MachineNVLinkGpuStatusObservation struct { func (x *MachineNVLinkGpuStatusObservation) Reset() { *x = MachineNVLinkGpuStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[674] + mi := &file_nico_nico_proto_msgTypes[675] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47807,7 +47873,7 @@ func (x *MachineNVLinkGpuStatusObservation) String() string { func (*MachineNVLinkGpuStatusObservation) ProtoMessage() {} func (x *MachineNVLinkGpuStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[674] + mi := &file_nico_nico_proto_msgTypes[675] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47820,7 +47886,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{674} + return file_nico_nico_proto_rawDescGZIP(), []int{675} } func (x *MachineNVLinkGpuStatusObservation) GetGpuId() string { @@ -47878,7 +47944,7 @@ type NmxcBrowseRequest struct { func (x *NmxcBrowseRequest) Reset() { *x = NmxcBrowseRequest{} - mi := &file_nico_nico_proto_msgTypes[675] + mi := &file_nico_nico_proto_msgTypes[676] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47890,7 +47956,7 @@ func (x *NmxcBrowseRequest) String() string { func (*NmxcBrowseRequest) ProtoMessage() {} func (x *NmxcBrowseRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[675] + mi := &file_nico_nico_proto_msgTypes[676] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47903,7 +47969,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{675} + return file_nico_nico_proto_rawDescGZIP(), []int{676} } func (x *NmxcBrowseRequest) GetChassisSerial() string { @@ -47941,7 +48007,7 @@ type NmxcBrowseResponse struct { func (x *NmxcBrowseResponse) Reset() { *x = NmxcBrowseResponse{} - mi := &file_nico_nico_proto_msgTypes[676] + mi := &file_nico_nico_proto_msgTypes[677] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47953,7 +48019,7 @@ func (x *NmxcBrowseResponse) String() string { func (*NmxcBrowseResponse) ProtoMessage() {} func (x *NmxcBrowseResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[676] + mi := &file_nico_nico_proto_msgTypes[677] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47966,7 +48032,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{676} + return file_nico_nico_proto_rawDescGZIP(), []int{677} } func (x *NmxcBrowseResponse) GetBody() string { @@ -48004,7 +48070,7 @@ type NVLinkPartition struct { func (x *NVLinkPartition) Reset() { *x = NVLinkPartition{} - mi := &file_nico_nico_proto_msgTypes[677] + mi := &file_nico_nico_proto_msgTypes[678] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48016,7 +48082,7 @@ func (x *NVLinkPartition) String() string { func (*NVLinkPartition) ProtoMessage() {} func (x *NVLinkPartition) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[677] + mi := &file_nico_nico_proto_msgTypes[678] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48029,7 +48095,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{677} + return file_nico_nico_proto_rawDescGZIP(), []int{678} } func (x *NVLinkPartition) GetId() *NVLinkPartitionId { @@ -48076,7 +48142,7 @@ type NVLinkPartitionList struct { func (x *NVLinkPartitionList) Reset() { *x = NVLinkPartitionList{} - mi := &file_nico_nico_proto_msgTypes[678] + mi := &file_nico_nico_proto_msgTypes[679] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48088,7 +48154,7 @@ func (x *NVLinkPartitionList) String() string { func (*NVLinkPartitionList) ProtoMessage() {} func (x *NVLinkPartitionList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[678] + mi := &file_nico_nico_proto_msgTypes[679] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48101,7 +48167,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{678} + return file_nico_nico_proto_rawDescGZIP(), []int{679} } func (x *NVLinkPartitionList) GetPartitions() []*NVLinkPartition { @@ -48120,7 +48186,7 @@ type NVLinkPartitionSearchConfig struct { func (x *NVLinkPartitionSearchConfig) Reset() { *x = NVLinkPartitionSearchConfig{} - mi := &file_nico_nico_proto_msgTypes[679] + mi := &file_nico_nico_proto_msgTypes[680] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48132,7 +48198,7 @@ func (x *NVLinkPartitionSearchConfig) String() string { func (*NVLinkPartitionSearchConfig) ProtoMessage() {} func (x *NVLinkPartitionSearchConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[679] + mi := &file_nico_nico_proto_msgTypes[680] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48145,7 +48211,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{679} + return file_nico_nico_proto_rawDescGZIP(), []int{680} } func (x *NVLinkPartitionSearchConfig) GetIncludeHistory() bool { @@ -48165,7 +48231,7 @@ type NVLinkPartitionQuery struct { func (x *NVLinkPartitionQuery) Reset() { *x = NVLinkPartitionQuery{} - mi := &file_nico_nico_proto_msgTypes[680] + mi := &file_nico_nico_proto_msgTypes[681] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48177,7 +48243,7 @@ func (x *NVLinkPartitionQuery) String() string { func (*NVLinkPartitionQuery) ProtoMessage() {} func (x *NVLinkPartitionQuery) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[680] + mi := &file_nico_nico_proto_msgTypes[681] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48190,7 +48256,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{680} + return file_nico_nico_proto_rawDescGZIP(), []int{681} } func (x *NVLinkPartitionQuery) GetId() *UUID { @@ -48217,7 +48283,7 @@ type NVLinkPartitionSearchFilter struct { func (x *NVLinkPartitionSearchFilter) Reset() { *x = NVLinkPartitionSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[681] + mi := &file_nico_nico_proto_msgTypes[682] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48229,7 +48295,7 @@ func (x *NVLinkPartitionSearchFilter) String() string { func (*NVLinkPartitionSearchFilter) ProtoMessage() {} func (x *NVLinkPartitionSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[681] + mi := &file_nico_nico_proto_msgTypes[682] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48242,7 +48308,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{681} + return file_nico_nico_proto_rawDescGZIP(), []int{682} } func (x *NVLinkPartitionSearchFilter) GetTenantOrganizationId() string { @@ -48269,7 +48335,7 @@ type NVLinkPartitionsByIdsRequest struct { func (x *NVLinkPartitionsByIdsRequest) Reset() { *x = NVLinkPartitionsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[682] + mi := &file_nico_nico_proto_msgTypes[683] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48281,7 +48347,7 @@ func (x *NVLinkPartitionsByIdsRequest) String() string { func (*NVLinkPartitionsByIdsRequest) ProtoMessage() {} func (x *NVLinkPartitionsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[682] + mi := &file_nico_nico_proto_msgTypes[683] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48294,7 +48360,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{682} + return file_nico_nico_proto_rawDescGZIP(), []int{683} } func (x *NVLinkPartitionsByIdsRequest) GetPartitionIds() []*NVLinkPartitionId { @@ -48320,7 +48386,7 @@ type NVLinkPartitionIdList struct { func (x *NVLinkPartitionIdList) Reset() { *x = NVLinkPartitionIdList{} - mi := &file_nico_nico_proto_msgTypes[683] + mi := &file_nico_nico_proto_msgTypes[684] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48332,7 +48398,7 @@ func (x *NVLinkPartitionIdList) String() string { func (*NVLinkPartitionIdList) ProtoMessage() {} func (x *NVLinkPartitionIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[683] + mi := &file_nico_nico_proto_msgTypes[684] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48345,7 +48411,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{683} + return file_nico_nico_proto_rawDescGZIP(), []int{684} } func (x *NVLinkPartitionIdList) GetPartitionIds() []*NVLinkPartitionId { @@ -48363,7 +48429,7 @@ type NVLinkFabricSearchFilter struct { func (x *NVLinkFabricSearchFilter) Reset() { *x = NVLinkFabricSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[684] + mi := &file_nico_nico_proto_msgTypes[685] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48375,7 +48441,7 @@ func (x *NVLinkFabricSearchFilter) String() string { func (*NVLinkFabricSearchFilter) ProtoMessage() {} func (x *NVLinkFabricSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[684] + mi := &file_nico_nico_proto_msgTypes[685] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48388,7 +48454,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{684} + return file_nico_nico_proto_rawDescGZIP(), []int{685} } // Describe the desired configuration of an Logical Partition @@ -48403,7 +48469,7 @@ type NVLinkLogicalPartitionConfig struct { func (x *NVLinkLogicalPartitionConfig) Reset() { *x = NVLinkLogicalPartitionConfig{} - mi := &file_nico_nico_proto_msgTypes[685] + mi := &file_nico_nico_proto_msgTypes[686] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48415,7 +48481,7 @@ func (x *NVLinkLogicalPartitionConfig) String() string { func (*NVLinkLogicalPartitionConfig) ProtoMessage() {} func (x *NVLinkLogicalPartitionConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[685] + mi := &file_nico_nico_proto_msgTypes[686] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48428,7 +48494,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{685} + return file_nico_nico_proto_rawDescGZIP(), []int{686} } func (x *NVLinkLogicalPartitionConfig) GetMetadata() *Metadata { @@ -48456,7 +48522,7 @@ type NVLinkLogicalPartitionStatus struct { func (x *NVLinkLogicalPartitionStatus) Reset() { *x = NVLinkLogicalPartitionStatus{} - mi := &file_nico_nico_proto_msgTypes[686] + mi := &file_nico_nico_proto_msgTypes[687] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48468,7 +48534,7 @@ func (x *NVLinkLogicalPartitionStatus) String() string { func (*NVLinkLogicalPartitionStatus) ProtoMessage() {} func (x *NVLinkLogicalPartitionStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[686] + mi := &file_nico_nico_proto_msgTypes[687] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48481,7 +48547,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{686} + return file_nico_nico_proto_rawDescGZIP(), []int{687} } func (x *NVLinkLogicalPartitionStatus) GetState() TenantState { @@ -48505,7 +48571,7 @@ type NVLinkLogicalPartition struct { func (x *NVLinkLogicalPartition) Reset() { *x = NVLinkLogicalPartition{} - mi := &file_nico_nico_proto_msgTypes[687] + mi := &file_nico_nico_proto_msgTypes[688] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48517,7 +48583,7 @@ func (x *NVLinkLogicalPartition) String() string { func (*NVLinkLogicalPartition) ProtoMessage() {} func (x *NVLinkLogicalPartition) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[687] + mi := &file_nico_nico_proto_msgTypes[688] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48530,7 +48596,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{687} + return file_nico_nico_proto_rawDescGZIP(), []int{688} } func (x *NVLinkLogicalPartition) GetId() *NVLinkLogicalPartitionId { @@ -48577,7 +48643,7 @@ type NVLinkLogicalPartitionList struct { func (x *NVLinkLogicalPartitionList) Reset() { *x = NVLinkLogicalPartitionList{} - mi := &file_nico_nico_proto_msgTypes[688] + mi := &file_nico_nico_proto_msgTypes[689] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48589,7 +48655,7 @@ func (x *NVLinkLogicalPartitionList) String() string { func (*NVLinkLogicalPartitionList) ProtoMessage() {} func (x *NVLinkLogicalPartitionList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[688] + mi := &file_nico_nico_proto_msgTypes[689] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48602,7 +48668,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{688} + return file_nico_nico_proto_rawDescGZIP(), []int{689} } func (x *NVLinkLogicalPartitionList) GetPartitions() []*NVLinkLogicalPartition { @@ -48625,7 +48691,7 @@ type NVLinkLogicalPartitionCreationRequest struct { func (x *NVLinkLogicalPartitionCreationRequest) Reset() { *x = NVLinkLogicalPartitionCreationRequest{} - mi := &file_nico_nico_proto_msgTypes[689] + mi := &file_nico_nico_proto_msgTypes[690] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48637,7 +48703,7 @@ func (x *NVLinkLogicalPartitionCreationRequest) String() string { func (*NVLinkLogicalPartitionCreationRequest) ProtoMessage() {} func (x *NVLinkLogicalPartitionCreationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[689] + mi := &file_nico_nico_proto_msgTypes[690] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48650,7 +48716,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{689} + return file_nico_nico_proto_rawDescGZIP(), []int{690} } func (x *NVLinkLogicalPartitionCreationRequest) GetConfig() *NVLinkLogicalPartitionConfig { @@ -48676,7 +48742,7 @@ type NVLinkLogicalPartitionDeletionRequest struct { func (x *NVLinkLogicalPartitionDeletionRequest) Reset() { *x = NVLinkLogicalPartitionDeletionRequest{} - mi := &file_nico_nico_proto_msgTypes[690] + mi := &file_nico_nico_proto_msgTypes[691] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48688,7 +48754,7 @@ func (x *NVLinkLogicalPartitionDeletionRequest) String() string { func (*NVLinkLogicalPartitionDeletionRequest) ProtoMessage() {} func (x *NVLinkLogicalPartitionDeletionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[690] + mi := &file_nico_nico_proto_msgTypes[691] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48701,7 +48767,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{690} + return file_nico_nico_proto_rawDescGZIP(), []int{691} } func (x *NVLinkLogicalPartitionDeletionRequest) GetId() *NVLinkLogicalPartitionId { @@ -48719,7 +48785,7 @@ type NVLinkLogicalPartitionDeletionResult struct { func (x *NVLinkLogicalPartitionDeletionResult) Reset() { *x = NVLinkLogicalPartitionDeletionResult{} - mi := &file_nico_nico_proto_msgTypes[691] + mi := &file_nico_nico_proto_msgTypes[692] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48731,7 +48797,7 @@ func (x *NVLinkLogicalPartitionDeletionResult) String() string { func (*NVLinkLogicalPartitionDeletionResult) ProtoMessage() {} func (x *NVLinkLogicalPartitionDeletionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[691] + mi := &file_nico_nico_proto_msgTypes[692] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48744,7 +48810,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{691} + return file_nico_nico_proto_rawDescGZIP(), []int{692} } type NVLinkLogicalPartitionSearchFilter struct { @@ -48756,7 +48822,7 @@ type NVLinkLogicalPartitionSearchFilter struct { func (x *NVLinkLogicalPartitionSearchFilter) Reset() { *x = NVLinkLogicalPartitionSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[692] + mi := &file_nico_nico_proto_msgTypes[693] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48768,7 +48834,7 @@ func (x *NVLinkLogicalPartitionSearchFilter) String() string { func (*NVLinkLogicalPartitionSearchFilter) ProtoMessage() {} func (x *NVLinkLogicalPartitionSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[692] + mi := &file_nico_nico_proto_msgTypes[693] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48781,7 +48847,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{692} + return file_nico_nico_proto_rawDescGZIP(), []int{693} } func (x *NVLinkLogicalPartitionSearchFilter) GetName() string { @@ -48801,7 +48867,7 @@ type NVLinkLogicalPartitionsByIdsRequest struct { func (x *NVLinkLogicalPartitionsByIdsRequest) Reset() { *x = NVLinkLogicalPartitionsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[693] + mi := &file_nico_nico_proto_msgTypes[694] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48813,7 +48879,7 @@ func (x *NVLinkLogicalPartitionsByIdsRequest) String() string { func (*NVLinkLogicalPartitionsByIdsRequest) ProtoMessage() {} func (x *NVLinkLogicalPartitionsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[693] + mi := &file_nico_nico_proto_msgTypes[694] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48826,7 +48892,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{693} + return file_nico_nico_proto_rawDescGZIP(), []int{694} } func (x *NVLinkLogicalPartitionsByIdsRequest) GetPartitionIds() []*NVLinkLogicalPartitionId { @@ -48852,7 +48918,7 @@ type NVLinkLogicalPartitionIdList struct { func (x *NVLinkLogicalPartitionIdList) Reset() { *x = NVLinkLogicalPartitionIdList{} - mi := &file_nico_nico_proto_msgTypes[694] + mi := &file_nico_nico_proto_msgTypes[695] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48864,7 +48930,7 @@ func (x *NVLinkLogicalPartitionIdList) String() string { func (*NVLinkLogicalPartitionIdList) ProtoMessage() {} func (x *NVLinkLogicalPartitionIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[694] + mi := &file_nico_nico_proto_msgTypes[695] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48877,7 +48943,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{694} + return file_nico_nico_proto_rawDescGZIP(), []int{695} } func (x *NVLinkLogicalPartitionIdList) GetPartitionIds() []*NVLinkLogicalPartitionId { @@ -48898,7 +48964,7 @@ type NVLinkLogicalPartitionUpdateRequest struct { func (x *NVLinkLogicalPartitionUpdateRequest) Reset() { *x = NVLinkLogicalPartitionUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[695] + mi := &file_nico_nico_proto_msgTypes[696] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48910,7 +48976,7 @@ func (x *NVLinkLogicalPartitionUpdateRequest) String() string { func (*NVLinkLogicalPartitionUpdateRequest) ProtoMessage() {} func (x *NVLinkLogicalPartitionUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[695] + mi := &file_nico_nico_proto_msgTypes[696] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48923,7 +48989,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{695} + return file_nico_nico_proto_rawDescGZIP(), []int{696} } func (x *NVLinkLogicalPartitionUpdateRequest) GetId() *NVLinkLogicalPartitionId { @@ -48955,7 +49021,7 @@ type NVLinkLogicalPartitionUpdateResult struct { func (x *NVLinkLogicalPartitionUpdateResult) Reset() { *x = NVLinkLogicalPartitionUpdateResult{} - mi := &file_nico_nico_proto_msgTypes[696] + mi := &file_nico_nico_proto_msgTypes[697] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48967,7 +49033,7 @@ func (x *NVLinkLogicalPartitionUpdateResult) String() string { func (*NVLinkLogicalPartitionUpdateResult) ProtoMessage() {} func (x *NVLinkLogicalPartitionUpdateResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[696] + mi := &file_nico_nico_proto_msgTypes[697] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48980,7 +49046,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{696} + return file_nico_nico_proto_rawDescGZIP(), []int{697} } // Must provide either machine_id or ip/mac pair @@ -48997,7 +49063,7 @@ type CreateBmcUserRequest struct { func (x *CreateBmcUserRequest) Reset() { *x = CreateBmcUserRequest{} - mi := &file_nico_nico_proto_msgTypes[697] + mi := &file_nico_nico_proto_msgTypes[698] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49009,7 +49075,7 @@ func (x *CreateBmcUserRequest) String() string { func (*CreateBmcUserRequest) ProtoMessage() {} func (x *CreateBmcUserRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[697] + mi := &file_nico_nico_proto_msgTypes[698] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49022,7 +49088,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{697} + return file_nico_nico_proto_rawDescGZIP(), []int{698} } func (x *CreateBmcUserRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -49068,7 +49134,7 @@ type CreateBmcUserResponse struct { func (x *CreateBmcUserResponse) Reset() { *x = CreateBmcUserResponse{} - mi := &file_nico_nico_proto_msgTypes[698] + mi := &file_nico_nico_proto_msgTypes[699] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49080,7 +49146,7 @@ func (x *CreateBmcUserResponse) String() string { func (*CreateBmcUserResponse) ProtoMessage() {} func (x *CreateBmcUserResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[698] + mi := &file_nico_nico_proto_msgTypes[699] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49093,7 +49159,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{698} + return file_nico_nico_proto_rawDescGZIP(), []int{699} } type DeleteBmcUserRequest struct { @@ -49107,7 +49173,7 @@ type DeleteBmcUserRequest struct { func (x *DeleteBmcUserRequest) Reset() { *x = DeleteBmcUserRequest{} - mi := &file_nico_nico_proto_msgTypes[699] + mi := &file_nico_nico_proto_msgTypes[700] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49119,7 +49185,7 @@ func (x *DeleteBmcUserRequest) String() string { func (*DeleteBmcUserRequest) ProtoMessage() {} func (x *DeleteBmcUserRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[699] + mi := &file_nico_nico_proto_msgTypes[700] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49132,7 +49198,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{699} + return file_nico_nico_proto_rawDescGZIP(), []int{700} } func (x *DeleteBmcUserRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -49164,7 +49230,7 @@ type DeleteBmcUserResponse struct { func (x *DeleteBmcUserResponse) Reset() { *x = DeleteBmcUserResponse{} - mi := &file_nico_nico_proto_msgTypes[700] + mi := &file_nico_nico_proto_msgTypes[701] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49176,7 +49242,7 @@ func (x *DeleteBmcUserResponse) String() string { func (*DeleteBmcUserResponse) ProtoMessage() {} func (x *DeleteBmcUserResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[700] + mi := &file_nico_nico_proto_msgTypes[701] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49189,7 +49255,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{700} + return file_nico_nico_proto_rawDescGZIP(), []int{701} } // Must provide either machine_id or ip/mac pair @@ -49207,7 +49273,7 @@ type SetBmcRootPasswordRequest struct { func (x *SetBmcRootPasswordRequest) Reset() { *x = SetBmcRootPasswordRequest{} - mi := &file_nico_nico_proto_msgTypes[701] + mi := &file_nico_nico_proto_msgTypes[702] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49219,7 +49285,7 @@ func (x *SetBmcRootPasswordRequest) String() string { func (*SetBmcRootPasswordRequest) ProtoMessage() {} func (x *SetBmcRootPasswordRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[701] + mi := &file_nico_nico_proto_msgTypes[702] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49232,7 +49298,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{701} + return file_nico_nico_proto_rawDescGZIP(), []int{702} } func (x *SetBmcRootPasswordRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -49264,7 +49330,7 @@ type SetBmcRootPasswordResponse struct { func (x *SetBmcRootPasswordResponse) Reset() { *x = SetBmcRootPasswordResponse{} - mi := &file_nico_nico_proto_msgTypes[702] + mi := &file_nico_nico_proto_msgTypes[703] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49276,7 +49342,7 @@ func (x *SetBmcRootPasswordResponse) String() string { func (*SetBmcRootPasswordResponse) ProtoMessage() {} func (x *SetBmcRootPasswordResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[702] + mi := &file_nico_nico_proto_msgTypes[703] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49289,7 +49355,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{702} + return file_nico_nico_proto_rawDescGZIP(), []int{703} } // Must provide either machine_id or ip/mac pair @@ -49303,7 +49369,7 @@ type ProbeBmcVendorRequest struct { func (x *ProbeBmcVendorRequest) Reset() { *x = ProbeBmcVendorRequest{} - mi := &file_nico_nico_proto_msgTypes[703] + mi := &file_nico_nico_proto_msgTypes[704] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49315,7 +49381,7 @@ func (x *ProbeBmcVendorRequest) String() string { func (*ProbeBmcVendorRequest) ProtoMessage() {} func (x *ProbeBmcVendorRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[703] + mi := &file_nico_nico_proto_msgTypes[704] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49328,7 +49394,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{703} + return file_nico_nico_proto_rawDescGZIP(), []int{704} } func (x *ProbeBmcVendorRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -49355,7 +49421,7 @@ type ProbeBmcVendorResponse struct { func (x *ProbeBmcVendorResponse) Reset() { *x = ProbeBmcVendorResponse{} - mi := &file_nico_nico_proto_msgTypes[704] + mi := &file_nico_nico_proto_msgTypes[705] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49367,7 +49433,7 @@ func (x *ProbeBmcVendorResponse) String() string { func (*ProbeBmcVendorResponse) ProtoMessage() {} func (x *ProbeBmcVendorResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[704] + mi := &file_nico_nico_proto_msgTypes[705] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49380,7 +49446,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{704} + return file_nico_nico_proto_rawDescGZIP(), []int{705} } func (x *ProbeBmcVendorResponse) GetVendor() string { @@ -49401,7 +49467,7 @@ type SetFirmwareUpdateTimeWindowRequest struct { func (x *SetFirmwareUpdateTimeWindowRequest) Reset() { *x = SetFirmwareUpdateTimeWindowRequest{} - mi := &file_nico_nico_proto_msgTypes[705] + mi := &file_nico_nico_proto_msgTypes[706] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49413,7 +49479,7 @@ func (x *SetFirmwareUpdateTimeWindowRequest) String() string { func (*SetFirmwareUpdateTimeWindowRequest) ProtoMessage() {} func (x *SetFirmwareUpdateTimeWindowRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[705] + mi := &file_nico_nico_proto_msgTypes[706] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49426,7 +49492,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{705} + return file_nico_nico_proto_rawDescGZIP(), []int{706} } func (x *SetFirmwareUpdateTimeWindowRequest) GetMachineIds() []*MachineId { @@ -49458,7 +49524,7 @@ type SetFirmwareUpdateTimeWindowResponse struct { func (x *SetFirmwareUpdateTimeWindowResponse) Reset() { *x = SetFirmwareUpdateTimeWindowResponse{} - mi := &file_nico_nico_proto_msgTypes[706] + mi := &file_nico_nico_proto_msgTypes[707] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49470,7 +49536,7 @@ func (x *SetFirmwareUpdateTimeWindowResponse) String() string { func (*SetFirmwareUpdateTimeWindowResponse) ProtoMessage() {} func (x *SetFirmwareUpdateTimeWindowResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[706] + mi := &file_nico_nico_proto_msgTypes[707] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49483,7 +49549,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{706} + return file_nico_nico_proto_rawDescGZIP(), []int{707} } type UpsertHostFirmwareConfigRequest struct { @@ -49499,7 +49565,7 @@ type UpsertHostFirmwareConfigRequest struct { func (x *UpsertHostFirmwareConfigRequest) Reset() { *x = UpsertHostFirmwareConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[707] + mi := &file_nico_nico_proto_msgTypes[708] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49511,7 +49577,7 @@ func (x *UpsertHostFirmwareConfigRequest) String() string { func (*UpsertHostFirmwareConfigRequest) ProtoMessage() {} func (x *UpsertHostFirmwareConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[707] + mi := &file_nico_nico_proto_msgTypes[708] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49524,7 +49590,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{707} + return file_nico_nico_proto_rawDescGZIP(), []int{708} } func (x *UpsertHostFirmwareConfigRequest) GetVendor() string { @@ -49572,7 +49638,7 @@ type DeleteHostFirmwareConfigRequest struct { func (x *DeleteHostFirmwareConfigRequest) Reset() { *x = DeleteHostFirmwareConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[708] + mi := &file_nico_nico_proto_msgTypes[709] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49584,7 +49650,7 @@ func (x *DeleteHostFirmwareConfigRequest) String() string { func (*DeleteHostFirmwareConfigRequest) ProtoMessage() {} func (x *DeleteHostFirmwareConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[708] + mi := &file_nico_nico_proto_msgTypes[709] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49597,7 +49663,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{708} + return file_nico_nico_proto_rawDescGZIP(), []int{709} } func (x *DeleteHostFirmwareConfigRequest) GetVendor() string { @@ -49625,7 +49691,7 @@ type UpsertHostFirmwareComponentConfig struct { func (x *UpsertHostFirmwareComponentConfig) Reset() { *x = UpsertHostFirmwareComponentConfig{} - mi := &file_nico_nico_proto_msgTypes[709] + mi := &file_nico_nico_proto_msgTypes[710] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49637,7 +49703,7 @@ func (x *UpsertHostFirmwareComponentConfig) String() string { func (*UpsertHostFirmwareComponentConfig) ProtoMessage() {} func (x *UpsertHostFirmwareComponentConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[709] + mi := &file_nico_nico_proto_msgTypes[710] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49650,7 +49716,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{709} + return file_nico_nico_proto_rawDescGZIP(), []int{710} } func (x *UpsertHostFirmwareComponentConfig) GetType() HostFirmwareComponentType { @@ -49686,7 +49752,7 @@ type HostFirmwareComponentConfigResponse struct { func (x *HostFirmwareComponentConfigResponse) Reset() { *x = HostFirmwareComponentConfigResponse{} - mi := &file_nico_nico_proto_msgTypes[710] + mi := &file_nico_nico_proto_msgTypes[711] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49698,7 +49764,7 @@ func (x *HostFirmwareComponentConfigResponse) String() string { func (*HostFirmwareComponentConfigResponse) ProtoMessage() {} func (x *HostFirmwareComponentConfigResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[710] + mi := &file_nico_nico_proto_msgTypes[711] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49711,7 +49777,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{710} + return file_nico_nico_proto_rawDescGZIP(), []int{711} } func (x *HostFirmwareComponentConfigResponse) GetType() HostFirmwareComponentType { @@ -49757,7 +49823,7 @@ type HostFirmwareVersionConfig struct { func (x *HostFirmwareVersionConfig) Reset() { *x = HostFirmwareVersionConfig{} - mi := &file_nico_nico_proto_msgTypes[711] + mi := &file_nico_nico_proto_msgTypes[712] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49769,7 +49835,7 @@ func (x *HostFirmwareVersionConfig) String() string { func (*HostFirmwareVersionConfig) ProtoMessage() {} func (x *HostFirmwareVersionConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[711] + mi := &file_nico_nico_proto_msgTypes[712] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49782,7 +49848,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{711} + return file_nico_nico_proto_rawDescGZIP(), []int{712} } func (x *HostFirmwareVersionConfig) GetVersion() string { @@ -49844,7 +49910,7 @@ type HostFirmwareArtifact struct { func (x *HostFirmwareArtifact) Reset() { *x = HostFirmwareArtifact{} - mi := &file_nico_nico_proto_msgTypes[712] + mi := &file_nico_nico_proto_msgTypes[713] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49856,7 +49922,7 @@ func (x *HostFirmwareArtifact) String() string { func (*HostFirmwareArtifact) ProtoMessage() {} func (x *HostFirmwareArtifact) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[712] + mi := &file_nico_nico_proto_msgTypes[713] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49869,7 +49935,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{712} + return file_nico_nico_proto_rawDescGZIP(), []int{713} } func (x *HostFirmwareArtifact) GetUrl() string { @@ -49901,7 +49967,7 @@ type HostFirmwareConfigResponse struct { func (x *HostFirmwareConfigResponse) Reset() { *x = HostFirmwareConfigResponse{} - mi := &file_nico_nico_proto_msgTypes[713] + mi := &file_nico_nico_proto_msgTypes[714] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49913,7 +49979,7 @@ func (x *HostFirmwareConfigResponse) String() string { func (*HostFirmwareConfigResponse) ProtoMessage() {} func (x *HostFirmwareConfigResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[713] + mi := &file_nico_nico_proto_msgTypes[714] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49926,7 +49992,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{713} + return file_nico_nico_proto_rawDescGZIP(), []int{714} } func (x *HostFirmwareConfigResponse) GetVendor() string { @@ -49986,7 +50052,7 @@ type ListHostFirmwareRequest struct { func (x *ListHostFirmwareRequest) Reset() { *x = ListHostFirmwareRequest{} - mi := &file_nico_nico_proto_msgTypes[714] + mi := &file_nico_nico_proto_msgTypes[715] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49998,7 +50064,7 @@ func (x *ListHostFirmwareRequest) String() string { func (*ListHostFirmwareRequest) ProtoMessage() {} func (x *ListHostFirmwareRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[714] + mi := &file_nico_nico_proto_msgTypes[715] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50011,7 +50077,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{714} + return file_nico_nico_proto_rawDescGZIP(), []int{715} } type ListHostFirmwareResponse struct { @@ -50023,7 +50089,7 @@ type ListHostFirmwareResponse struct { func (x *ListHostFirmwareResponse) Reset() { *x = ListHostFirmwareResponse{} - mi := &file_nico_nico_proto_msgTypes[715] + mi := &file_nico_nico_proto_msgTypes[716] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50035,7 +50101,7 @@ func (x *ListHostFirmwareResponse) String() string { func (*ListHostFirmwareResponse) ProtoMessage() {} func (x *ListHostFirmwareResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[715] + mi := &file_nico_nico_proto_msgTypes[716] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50048,7 +50114,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{715} + return file_nico_nico_proto_rawDescGZIP(), []int{716} } func (x *ListHostFirmwareResponse) GetAvailable() []*AvailableHostFirmware { @@ -50072,7 +50138,7 @@ type AvailableHostFirmware struct { func (x *AvailableHostFirmware) Reset() { *x = AvailableHostFirmware{} - mi := &file_nico_nico_proto_msgTypes[716] + mi := &file_nico_nico_proto_msgTypes[717] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50084,7 +50150,7 @@ func (x *AvailableHostFirmware) String() string { func (*AvailableHostFirmware) ProtoMessage() {} func (x *AvailableHostFirmware) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[716] + mi := &file_nico_nico_proto_msgTypes[717] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50097,7 +50163,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{716} + return file_nico_nico_proto_rawDescGZIP(), []int{717} } func (x *AvailableHostFirmware) GetVendor() string { @@ -50152,7 +50218,7 @@ type TrimTableRequest struct { func (x *TrimTableRequest) Reset() { *x = TrimTableRequest{} - mi := &file_nico_nico_proto_msgTypes[717] + mi := &file_nico_nico_proto_msgTypes[718] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50164,7 +50230,7 @@ func (x *TrimTableRequest) String() string { func (*TrimTableRequest) ProtoMessage() {} func (x *TrimTableRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[717] + mi := &file_nico_nico_proto_msgTypes[718] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50177,7 +50243,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{717} + return file_nico_nico_proto_rawDescGZIP(), []int{718} } func (x *TrimTableRequest) GetTarget() TrimTableTarget { @@ -50203,7 +50269,7 @@ type TrimTableResponse struct { func (x *TrimTableResponse) Reset() { *x = TrimTableResponse{} - mi := &file_nico_nico_proto_msgTypes[718] + mi := &file_nico_nico_proto_msgTypes[719] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50215,7 +50281,7 @@ func (x *TrimTableResponse) String() string { func (*TrimTableResponse) ProtoMessage() {} func (x *TrimTableResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[718] + mi := &file_nico_nico_proto_msgTypes[719] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50228,7 +50294,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{718} + return file_nico_nico_proto_rawDescGZIP(), []int{719} } func (x *TrimTableResponse) GetTotalDeleted() string { @@ -50248,7 +50314,7 @@ type NvlinkNmxcEndpoint struct { func (x *NvlinkNmxcEndpoint) Reset() { *x = NvlinkNmxcEndpoint{} - mi := &file_nico_nico_proto_msgTypes[719] + mi := &file_nico_nico_proto_msgTypes[720] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50260,7 +50326,7 @@ func (x *NvlinkNmxcEndpoint) String() string { func (*NvlinkNmxcEndpoint) ProtoMessage() {} func (x *NvlinkNmxcEndpoint) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[719] + mi := &file_nico_nico_proto_msgTypes[720] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50273,7 +50339,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{719} + return file_nico_nico_proto_rawDescGZIP(), []int{720} } func (x *NvlinkNmxcEndpoint) GetChassisSerial() string { @@ -50299,7 +50365,7 @@ type NvlinkNmxcEndpointList struct { func (x *NvlinkNmxcEndpointList) Reset() { *x = NvlinkNmxcEndpointList{} - mi := &file_nico_nico_proto_msgTypes[720] + mi := &file_nico_nico_proto_msgTypes[721] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50311,7 +50377,7 @@ func (x *NvlinkNmxcEndpointList) String() string { func (*NvlinkNmxcEndpointList) ProtoMessage() {} func (x *NvlinkNmxcEndpointList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[720] + mi := &file_nico_nico_proto_msgTypes[721] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50324,7 +50390,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{720} + return file_nico_nico_proto_rawDescGZIP(), []int{721} } func (x *NvlinkNmxcEndpointList) GetEntries() []*NvlinkNmxcEndpoint { @@ -50343,7 +50409,7 @@ type DeleteNvlinkNmxcEndpointRequest struct { func (x *DeleteNvlinkNmxcEndpointRequest) Reset() { *x = DeleteNvlinkNmxcEndpointRequest{} - mi := &file_nico_nico_proto_msgTypes[721] + mi := &file_nico_nico_proto_msgTypes[722] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50355,7 +50421,7 @@ func (x *DeleteNvlinkNmxcEndpointRequest) String() string { func (*DeleteNvlinkNmxcEndpointRequest) ProtoMessage() {} func (x *DeleteNvlinkNmxcEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[721] + mi := &file_nico_nico_proto_msgTypes[722] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50368,7 +50434,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{721} + return file_nico_nico_proto_rawDescGZIP(), []int{722} } func (x *DeleteNvlinkNmxcEndpointRequest) GetChassisSerial() string { @@ -50390,7 +50456,7 @@ type CreateRemediationRequest struct { func (x *CreateRemediationRequest) Reset() { *x = CreateRemediationRequest{} - mi := &file_nico_nico_proto_msgTypes[722] + mi := &file_nico_nico_proto_msgTypes[723] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50402,7 +50468,7 @@ func (x *CreateRemediationRequest) String() string { func (*CreateRemediationRequest) ProtoMessage() {} func (x *CreateRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[722] + mi := &file_nico_nico_proto_msgTypes[723] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50415,7 +50481,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{722} + return file_nico_nico_proto_rawDescGZIP(), []int{723} } func (x *CreateRemediationRequest) GetScript() string { @@ -50448,7 +50514,7 @@ type CreateRemediationResponse struct { func (x *CreateRemediationResponse) Reset() { *x = CreateRemediationResponse{} - mi := &file_nico_nico_proto_msgTypes[723] + mi := &file_nico_nico_proto_msgTypes[724] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50460,7 +50526,7 @@ func (x *CreateRemediationResponse) String() string { func (*CreateRemediationResponse) ProtoMessage() {} func (x *CreateRemediationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[723] + mi := &file_nico_nico_proto_msgTypes[724] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50473,7 +50539,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{723} + return file_nico_nico_proto_rawDescGZIP(), []int{724} } func (x *CreateRemediationResponse) GetRemediationId() *RemediationId { @@ -50492,7 +50558,7 @@ type RemediationIdList struct { func (x *RemediationIdList) Reset() { *x = RemediationIdList{} - mi := &file_nico_nico_proto_msgTypes[724] + mi := &file_nico_nico_proto_msgTypes[725] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50504,7 +50570,7 @@ func (x *RemediationIdList) String() string { func (*RemediationIdList) ProtoMessage() {} func (x *RemediationIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[724] + mi := &file_nico_nico_proto_msgTypes[725] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50517,7 +50583,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{724} + return file_nico_nico_proto_rawDescGZIP(), []int{725} } func (x *RemediationIdList) GetRemediationIds() []*RemediationId { @@ -50536,7 +50602,7 @@ type RemediationList struct { func (x *RemediationList) Reset() { *x = RemediationList{} - mi := &file_nico_nico_proto_msgTypes[725] + mi := &file_nico_nico_proto_msgTypes[726] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50548,7 +50614,7 @@ func (x *RemediationList) String() string { func (*RemediationList) ProtoMessage() {} func (x *RemediationList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[725] + mi := &file_nico_nico_proto_msgTypes[726] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50561,7 +50627,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{725} + return file_nico_nico_proto_rawDescGZIP(), []int{726} } func (x *RemediationList) GetRemediations() []*Remediation { @@ -50587,7 +50653,7 @@ type Remediation struct { func (x *Remediation) Reset() { *x = Remediation{} - mi := &file_nico_nico_proto_msgTypes[726] + mi := &file_nico_nico_proto_msgTypes[727] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50599,7 +50665,7 @@ func (x *Remediation) String() string { func (*Remediation) ProtoMessage() {} func (x *Remediation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[726] + mi := &file_nico_nico_proto_msgTypes[727] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50612,7 +50678,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{726} + return file_nico_nico_proto_rawDescGZIP(), []int{727} } func (x *Remediation) GetId() *RemediationId { @@ -50680,7 +50746,7 @@ type ApproveRemediationRequest struct { func (x *ApproveRemediationRequest) Reset() { *x = ApproveRemediationRequest{} - mi := &file_nico_nico_proto_msgTypes[727] + mi := &file_nico_nico_proto_msgTypes[728] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50692,7 +50758,7 @@ func (x *ApproveRemediationRequest) String() string { func (*ApproveRemediationRequest) ProtoMessage() {} func (x *ApproveRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[727] + mi := &file_nico_nico_proto_msgTypes[728] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50705,7 +50771,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{727} + return file_nico_nico_proto_rawDescGZIP(), []int{728} } func (x *ApproveRemediationRequest) GetRemediationId() *RemediationId { @@ -50724,7 +50790,7 @@ type RevokeRemediationRequest struct { func (x *RevokeRemediationRequest) Reset() { *x = RevokeRemediationRequest{} - mi := &file_nico_nico_proto_msgTypes[728] + mi := &file_nico_nico_proto_msgTypes[729] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50736,7 +50802,7 @@ func (x *RevokeRemediationRequest) String() string { func (*RevokeRemediationRequest) ProtoMessage() {} func (x *RevokeRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[728] + mi := &file_nico_nico_proto_msgTypes[729] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50749,7 +50815,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{728} + return file_nico_nico_proto_rawDescGZIP(), []int{729} } func (x *RevokeRemediationRequest) GetRemediationId() *RemediationId { @@ -50768,7 +50834,7 @@ type EnableRemediationRequest struct { func (x *EnableRemediationRequest) Reset() { *x = EnableRemediationRequest{} - mi := &file_nico_nico_proto_msgTypes[729] + mi := &file_nico_nico_proto_msgTypes[730] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50780,7 +50846,7 @@ func (x *EnableRemediationRequest) String() string { func (*EnableRemediationRequest) ProtoMessage() {} func (x *EnableRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[729] + mi := &file_nico_nico_proto_msgTypes[730] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50793,7 +50859,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{729} + return file_nico_nico_proto_rawDescGZIP(), []int{730} } func (x *EnableRemediationRequest) GetRemediationId() *RemediationId { @@ -50812,7 +50878,7 @@ type DisableRemediationRequest struct { func (x *DisableRemediationRequest) Reset() { *x = DisableRemediationRequest{} - mi := &file_nico_nico_proto_msgTypes[730] + mi := &file_nico_nico_proto_msgTypes[731] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50824,7 +50890,7 @@ func (x *DisableRemediationRequest) String() string { func (*DisableRemediationRequest) ProtoMessage() {} func (x *DisableRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[730] + mi := &file_nico_nico_proto_msgTypes[731] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50837,7 +50903,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{730} + return file_nico_nico_proto_rawDescGZIP(), []int{731} } func (x *DisableRemediationRequest) GetRemediationId() *RemediationId { @@ -50859,7 +50925,7 @@ type FindAppliedRemediationIdsRequest struct { func (x *FindAppliedRemediationIdsRequest) Reset() { *x = FindAppliedRemediationIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[731] + mi := &file_nico_nico_proto_msgTypes[732] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50871,7 +50937,7 @@ func (x *FindAppliedRemediationIdsRequest) String() string { func (*FindAppliedRemediationIdsRequest) ProtoMessage() {} func (x *FindAppliedRemediationIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[731] + mi := &file_nico_nico_proto_msgTypes[732] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50884,7 +50950,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{731} + return file_nico_nico_proto_rawDescGZIP(), []int{732} } func (x *FindAppliedRemediationIdsRequest) GetRemediationId() *RemediationId { @@ -50911,7 +50977,7 @@ type AppliedRemediationIdList struct { func (x *AppliedRemediationIdList) Reset() { *x = AppliedRemediationIdList{} - mi := &file_nico_nico_proto_msgTypes[732] + mi := &file_nico_nico_proto_msgTypes[733] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50923,7 +50989,7 @@ func (x *AppliedRemediationIdList) String() string { func (*AppliedRemediationIdList) ProtoMessage() {} func (x *AppliedRemediationIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[732] + mi := &file_nico_nico_proto_msgTypes[733] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50936,7 +51002,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{732} + return file_nico_nico_proto_rawDescGZIP(), []int{733} } func (x *AppliedRemediationIdList) GetRemediationIds() []*RemediationId { @@ -50963,7 +51029,7 @@ type FindAppliedRemediationsRequest struct { func (x *FindAppliedRemediationsRequest) Reset() { *x = FindAppliedRemediationsRequest{} - mi := &file_nico_nico_proto_msgTypes[733] + mi := &file_nico_nico_proto_msgTypes[734] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50975,7 +51041,7 @@ func (x *FindAppliedRemediationsRequest) String() string { func (*FindAppliedRemediationsRequest) ProtoMessage() {} func (x *FindAppliedRemediationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[733] + mi := &file_nico_nico_proto_msgTypes[734] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50988,7 +51054,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{733} + return file_nico_nico_proto_rawDescGZIP(), []int{734} } func (x *FindAppliedRemediationsRequest) GetRemediationId() *RemediationId { @@ -51019,7 +51085,7 @@ type AppliedRemediation struct { func (x *AppliedRemediation) Reset() { *x = AppliedRemediation{} - mi := &file_nico_nico_proto_msgTypes[734] + mi := &file_nico_nico_proto_msgTypes[735] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51031,7 +51097,7 @@ func (x *AppliedRemediation) String() string { func (*AppliedRemediation) ProtoMessage() {} func (x *AppliedRemediation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[734] + mi := &file_nico_nico_proto_msgTypes[735] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51044,7 +51110,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{734} + return file_nico_nico_proto_rawDescGZIP(), []int{735} } func (x *AppliedRemediation) GetRemediationId() *RemediationId { @@ -51098,7 +51164,7 @@ type AppliedRemediationList struct { func (x *AppliedRemediationList) Reset() { *x = AppliedRemediationList{} - mi := &file_nico_nico_proto_msgTypes[735] + mi := &file_nico_nico_proto_msgTypes[736] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51110,7 +51176,7 @@ func (x *AppliedRemediationList) String() string { func (*AppliedRemediationList) ProtoMessage() {} func (x *AppliedRemediationList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[735] + mi := &file_nico_nico_proto_msgTypes[736] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51123,7 +51189,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{735} + return file_nico_nico_proto_rawDescGZIP(), []int{736} } func (x *AppliedRemediationList) GetAppliedRemediations() []*AppliedRemediation { @@ -51142,7 +51208,7 @@ type GetNextRemediationForMachineRequest struct { func (x *GetNextRemediationForMachineRequest) Reset() { *x = GetNextRemediationForMachineRequest{} - mi := &file_nico_nico_proto_msgTypes[736] + mi := &file_nico_nico_proto_msgTypes[737] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51154,7 +51220,7 @@ func (x *GetNextRemediationForMachineRequest) String() string { func (*GetNextRemediationForMachineRequest) ProtoMessage() {} func (x *GetNextRemediationForMachineRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[736] + mi := &file_nico_nico_proto_msgTypes[737] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51167,7 +51233,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{736} + return file_nico_nico_proto_rawDescGZIP(), []int{737} } func (x *GetNextRemediationForMachineRequest) GetDpuMachineId() *MachineId { @@ -51187,7 +51253,7 @@ type GetNextRemediationForMachineResponse struct { func (x *GetNextRemediationForMachineResponse) Reset() { *x = GetNextRemediationForMachineResponse{} - mi := &file_nico_nico_proto_msgTypes[737] + mi := &file_nico_nico_proto_msgTypes[738] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51199,7 +51265,7 @@ func (x *GetNextRemediationForMachineResponse) String() string { func (*GetNextRemediationForMachineResponse) ProtoMessage() {} func (x *GetNextRemediationForMachineResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[737] + mi := &file_nico_nico_proto_msgTypes[738] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51212,7 +51278,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{737} + return file_nico_nico_proto_rawDescGZIP(), []int{738} } func (x *GetNextRemediationForMachineResponse) GetRemediationId() *RemediationId { @@ -51240,7 +51306,7 @@ type RemediationAppliedRequest struct { func (x *RemediationAppliedRequest) Reset() { *x = RemediationAppliedRequest{} - mi := &file_nico_nico_proto_msgTypes[738] + mi := &file_nico_nico_proto_msgTypes[739] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51252,7 +51318,7 @@ func (x *RemediationAppliedRequest) String() string { func (*RemediationAppliedRequest) ProtoMessage() {} func (x *RemediationAppliedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[738] + mi := &file_nico_nico_proto_msgTypes[739] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51265,7 +51331,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{738} + return file_nico_nico_proto_rawDescGZIP(), []int{739} } func (x *RemediationAppliedRequest) GetRemediationId() *RemediationId { @@ -51299,7 +51365,7 @@ type RemediationApplicationStatus struct { func (x *RemediationApplicationStatus) Reset() { *x = RemediationApplicationStatus{} - mi := &file_nico_nico_proto_msgTypes[739] + mi := &file_nico_nico_proto_msgTypes[740] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51311,7 +51377,7 @@ func (x *RemediationApplicationStatus) String() string { func (*RemediationApplicationStatus) ProtoMessage() {} func (x *RemediationApplicationStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[739] + mi := &file_nico_nico_proto_msgTypes[740] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51324,7 +51390,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{739} + return file_nico_nico_proto_rawDescGZIP(), []int{740} } func (x *RemediationApplicationStatus) GetSucceeded() bool { @@ -51352,7 +51418,7 @@ type SetPrimaryDpuRequest struct { func (x *SetPrimaryDpuRequest) Reset() { *x = SetPrimaryDpuRequest{} - mi := &file_nico_nico_proto_msgTypes[740] + mi := &file_nico_nico_proto_msgTypes[741] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51364,7 +51430,7 @@ func (x *SetPrimaryDpuRequest) String() string { func (*SetPrimaryDpuRequest) ProtoMessage() {} func (x *SetPrimaryDpuRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[740] + mi := &file_nico_nico_proto_msgTypes[741] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51377,7 +51443,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{740} + return file_nico_nico_proto_rawDescGZIP(), []int{741} } func (x *SetPrimaryDpuRequest) GetHostMachineId() *MachineId { @@ -51412,7 +51478,7 @@ type SetPrimaryInterfaceRequest struct { func (x *SetPrimaryInterfaceRequest) Reset() { *x = SetPrimaryInterfaceRequest{} - mi := &file_nico_nico_proto_msgTypes[741] + mi := &file_nico_nico_proto_msgTypes[742] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51424,7 +51490,7 @@ func (x *SetPrimaryInterfaceRequest) String() string { func (*SetPrimaryInterfaceRequest) ProtoMessage() {} func (x *SetPrimaryInterfaceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[741] + mi := &file_nico_nico_proto_msgTypes[742] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51437,7 +51503,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{741} + return file_nico_nico_proto_rawDescGZIP(), []int{742} } func (x *SetPrimaryInterfaceRequest) GetHostMachineId() *MachineId { @@ -51471,7 +51537,7 @@ type UsernamePassword struct { func (x *UsernamePassword) Reset() { *x = UsernamePassword{} - mi := &file_nico_nico_proto_msgTypes[742] + mi := &file_nico_nico_proto_msgTypes[743] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51483,7 +51549,7 @@ func (x *UsernamePassword) String() string { func (*UsernamePassword) ProtoMessage() {} func (x *UsernamePassword) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[742] + mi := &file_nico_nico_proto_msgTypes[743] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51496,7 +51562,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{742} + return file_nico_nico_proto_rawDescGZIP(), []int{743} } func (x *UsernamePassword) GetUsername() string { @@ -51522,7 +51588,7 @@ type SessionToken struct { func (x *SessionToken) Reset() { *x = SessionToken{} - mi := &file_nico_nico_proto_msgTypes[743] + mi := &file_nico_nico_proto_msgTypes[744] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51534,7 +51600,7 @@ func (x *SessionToken) String() string { func (*SessionToken) ProtoMessage() {} func (x *SessionToken) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[743] + mi := &file_nico_nico_proto_msgTypes[744] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51547,7 +51613,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{743} + return file_nico_nico_proto_rawDescGZIP(), []int{744} } func (x *SessionToken) GetToken() string { @@ -51570,7 +51636,7 @@ type DpuExtensionServiceCredential struct { func (x *DpuExtensionServiceCredential) Reset() { *x = DpuExtensionServiceCredential{} - mi := &file_nico_nico_proto_msgTypes[744] + mi := &file_nico_nico_proto_msgTypes[745] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51582,7 +51648,7 @@ func (x *DpuExtensionServiceCredential) String() string { func (*DpuExtensionServiceCredential) ProtoMessage() {} func (x *DpuExtensionServiceCredential) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[744] + mi := &file_nico_nico_proto_msgTypes[745] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51595,7 +51661,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{744} + return file_nico_nico_proto_rawDescGZIP(), []int{745} } func (x *DpuExtensionServiceCredential) GetRegistryUrl() string { @@ -51644,7 +51710,7 @@ type DpuExtensionServiceVersionInfo struct { func (x *DpuExtensionServiceVersionInfo) Reset() { *x = DpuExtensionServiceVersionInfo{} - mi := &file_nico_nico_proto_msgTypes[745] + mi := &file_nico_nico_proto_msgTypes[746] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51656,7 +51722,7 @@ func (x *DpuExtensionServiceVersionInfo) String() string { func (*DpuExtensionServiceVersionInfo) ProtoMessage() {} func (x *DpuExtensionServiceVersionInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[745] + mi := &file_nico_nico_proto_msgTypes[746] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51669,7 +51735,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{745} + return file_nico_nico_proto_rawDescGZIP(), []int{746} } func (x *DpuExtensionServiceVersionInfo) GetVersion() string { @@ -51730,7 +51796,7 @@ type DpuExtensionService struct { func (x *DpuExtensionService) Reset() { *x = DpuExtensionService{} - mi := &file_nico_nico_proto_msgTypes[746] + mi := &file_nico_nico_proto_msgTypes[747] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51742,7 +51808,7 @@ func (x *DpuExtensionService) String() string { func (*DpuExtensionService) ProtoMessage() {} func (x *DpuExtensionService) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[746] + mi := &file_nico_nico_proto_msgTypes[747] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51755,7 +51821,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{746} + return file_nico_nico_proto_rawDescGZIP(), []int{747} } func (x *DpuExtensionService) GetServiceId() string { @@ -51848,7 +51914,7 @@ type CreateDpuExtensionServiceRequest struct { func (x *CreateDpuExtensionServiceRequest) Reset() { *x = CreateDpuExtensionServiceRequest{} - mi := &file_nico_nico_proto_msgTypes[747] + mi := &file_nico_nico_proto_msgTypes[748] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51860,7 +51926,7 @@ func (x *CreateDpuExtensionServiceRequest) String() string { func (*CreateDpuExtensionServiceRequest) ProtoMessage() {} func (x *CreateDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[747] + mi := &file_nico_nico_proto_msgTypes[748] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51873,7 +51939,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{747} + return file_nico_nico_proto_rawDescGZIP(), []int{748} } func (x *CreateDpuExtensionServiceRequest) GetServiceId() string { @@ -51955,7 +52021,7 @@ type UpdateDpuExtensionServiceRequest struct { func (x *UpdateDpuExtensionServiceRequest) Reset() { *x = UpdateDpuExtensionServiceRequest{} - mi := &file_nico_nico_proto_msgTypes[748] + mi := &file_nico_nico_proto_msgTypes[749] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51967,7 +52033,7 @@ func (x *UpdateDpuExtensionServiceRequest) String() string { func (*UpdateDpuExtensionServiceRequest) ProtoMessage() {} func (x *UpdateDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[748] + mi := &file_nico_nico_proto_msgTypes[749] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51980,7 +52046,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{748} + return file_nico_nico_proto_rawDescGZIP(), []int{749} } func (x *UpdateDpuExtensionServiceRequest) GetServiceId() string { @@ -52045,7 +52111,7 @@ type DeleteDpuExtensionServiceRequest struct { func (x *DeleteDpuExtensionServiceRequest) Reset() { *x = DeleteDpuExtensionServiceRequest{} - mi := &file_nico_nico_proto_msgTypes[749] + mi := &file_nico_nico_proto_msgTypes[750] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52057,7 +52123,7 @@ func (x *DeleteDpuExtensionServiceRequest) String() string { func (*DeleteDpuExtensionServiceRequest) ProtoMessage() {} func (x *DeleteDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[749] + mi := &file_nico_nico_proto_msgTypes[750] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52070,7 +52136,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{749} + return file_nico_nico_proto_rawDescGZIP(), []int{750} } func (x *DeleteDpuExtensionServiceRequest) GetServiceId() string { @@ -52095,7 +52161,7 @@ type DeleteDpuExtensionServiceResponse struct { func (x *DeleteDpuExtensionServiceResponse) Reset() { *x = DeleteDpuExtensionServiceResponse{} - mi := &file_nico_nico_proto_msgTypes[750] + mi := &file_nico_nico_proto_msgTypes[751] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52107,7 +52173,7 @@ func (x *DeleteDpuExtensionServiceResponse) String() string { func (*DeleteDpuExtensionServiceResponse) ProtoMessage() {} func (x *DeleteDpuExtensionServiceResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[750] + mi := &file_nico_nico_proto_msgTypes[751] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52120,7 +52186,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{750} + return file_nico_nico_proto_rawDescGZIP(), []int{751} } type DpuExtensionServiceSearchFilter struct { @@ -52134,7 +52200,7 @@ type DpuExtensionServiceSearchFilter struct { func (x *DpuExtensionServiceSearchFilter) Reset() { *x = DpuExtensionServiceSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[751] + mi := &file_nico_nico_proto_msgTypes[752] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52146,7 +52212,7 @@ func (x *DpuExtensionServiceSearchFilter) String() string { func (*DpuExtensionServiceSearchFilter) ProtoMessage() {} func (x *DpuExtensionServiceSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[751] + mi := &file_nico_nico_proto_msgTypes[752] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52159,7 +52225,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{751} + return file_nico_nico_proto_rawDescGZIP(), []int{752} } func (x *DpuExtensionServiceSearchFilter) GetServiceType() DpuExtensionServiceType { @@ -52192,7 +52258,7 @@ type DpuExtensionServiceIdList struct { func (x *DpuExtensionServiceIdList) Reset() { *x = DpuExtensionServiceIdList{} - mi := &file_nico_nico_proto_msgTypes[752] + mi := &file_nico_nico_proto_msgTypes[753] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52204,7 +52270,7 @@ func (x *DpuExtensionServiceIdList) String() string { func (*DpuExtensionServiceIdList) ProtoMessage() {} func (x *DpuExtensionServiceIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[752] + mi := &file_nico_nico_proto_msgTypes[753] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52217,7 +52283,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{752} + return file_nico_nico_proto_rawDescGZIP(), []int{753} } func (x *DpuExtensionServiceIdList) GetServiceIds() []string { @@ -52236,7 +52302,7 @@ type DpuExtensionServicesByIdsRequest struct { func (x *DpuExtensionServicesByIdsRequest) Reset() { *x = DpuExtensionServicesByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[753] + mi := &file_nico_nico_proto_msgTypes[754] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52248,7 +52314,7 @@ func (x *DpuExtensionServicesByIdsRequest) String() string { func (*DpuExtensionServicesByIdsRequest) ProtoMessage() {} func (x *DpuExtensionServicesByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[753] + mi := &file_nico_nico_proto_msgTypes[754] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52261,7 +52327,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{753} + return file_nico_nico_proto_rawDescGZIP(), []int{754} } func (x *DpuExtensionServicesByIdsRequest) GetServiceIds() []string { @@ -52280,7 +52346,7 @@ type DpuExtensionServiceList struct { func (x *DpuExtensionServiceList) Reset() { *x = DpuExtensionServiceList{} - mi := &file_nico_nico_proto_msgTypes[754] + mi := &file_nico_nico_proto_msgTypes[755] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52292,7 +52358,7 @@ func (x *DpuExtensionServiceList) String() string { func (*DpuExtensionServiceList) ProtoMessage() {} func (x *DpuExtensionServiceList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[754] + mi := &file_nico_nico_proto_msgTypes[755] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52305,7 +52371,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{754} + return file_nico_nico_proto_rawDescGZIP(), []int{755} } func (x *DpuExtensionServiceList) GetServices() []*DpuExtensionService { @@ -52326,7 +52392,7 @@ type GetDpuExtensionServiceVersionsInfoRequest struct { func (x *GetDpuExtensionServiceVersionsInfoRequest) Reset() { *x = GetDpuExtensionServiceVersionsInfoRequest{} - mi := &file_nico_nico_proto_msgTypes[755] + mi := &file_nico_nico_proto_msgTypes[756] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52338,7 +52404,7 @@ func (x *GetDpuExtensionServiceVersionsInfoRequest) String() string { func (*GetDpuExtensionServiceVersionsInfoRequest) ProtoMessage() {} func (x *GetDpuExtensionServiceVersionsInfoRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[755] + mi := &file_nico_nico_proto_msgTypes[756] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52351,7 +52417,7 @@ func (x *GetDpuExtensionServiceVersionsInfoRequest) ProtoReflect() protoreflect. // Deprecated: Use GetDpuExtensionServiceVersionsInfoRequest.ProtoReflect.Descriptor instead. func (*GetDpuExtensionServiceVersionsInfoRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{755} + return file_nico_nico_proto_rawDescGZIP(), []int{756} } func (x *GetDpuExtensionServiceVersionsInfoRequest) GetServiceId() string { @@ -52377,7 +52443,7 @@ type DpuExtensionServiceVersionInfoList struct { func (x *DpuExtensionServiceVersionInfoList) Reset() { *x = DpuExtensionServiceVersionInfoList{} - mi := &file_nico_nico_proto_msgTypes[756] + mi := &file_nico_nico_proto_msgTypes[757] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52389,7 +52455,7 @@ func (x *DpuExtensionServiceVersionInfoList) String() string { func (*DpuExtensionServiceVersionInfoList) ProtoMessage() {} func (x *DpuExtensionServiceVersionInfoList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[756] + mi := &file_nico_nico_proto_msgTypes[757] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52402,7 +52468,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{756} + return file_nico_nico_proto_rawDescGZIP(), []int{757} } func (x *DpuExtensionServiceVersionInfoList) GetVersionInfos() []*DpuExtensionServiceVersionInfo { @@ -52422,7 +52488,7 @@ type FindInstancesByDpuExtensionServiceRequest struct { func (x *FindInstancesByDpuExtensionServiceRequest) Reset() { *x = FindInstancesByDpuExtensionServiceRequest{} - mi := &file_nico_nico_proto_msgTypes[757] + mi := &file_nico_nico_proto_msgTypes[758] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52434,7 +52500,7 @@ func (x *FindInstancesByDpuExtensionServiceRequest) String() string { func (*FindInstancesByDpuExtensionServiceRequest) ProtoMessage() {} func (x *FindInstancesByDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[757] + mi := &file_nico_nico_proto_msgTypes[758] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52447,7 +52513,7 @@ func (x *FindInstancesByDpuExtensionServiceRequest) ProtoReflect() protoreflect. // Deprecated: Use FindInstancesByDpuExtensionServiceRequest.ProtoReflect.Descriptor instead. func (*FindInstancesByDpuExtensionServiceRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{757} + return file_nico_nico_proto_rawDescGZIP(), []int{758} } func (x *FindInstancesByDpuExtensionServiceRequest) GetServiceId() string { @@ -52473,7 +52539,7 @@ type FindInstancesByDpuExtensionServiceResponse struct { func (x *FindInstancesByDpuExtensionServiceResponse) Reset() { *x = FindInstancesByDpuExtensionServiceResponse{} - mi := &file_nico_nico_proto_msgTypes[758] + mi := &file_nico_nico_proto_msgTypes[759] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52485,7 +52551,7 @@ func (x *FindInstancesByDpuExtensionServiceResponse) String() string { func (*FindInstancesByDpuExtensionServiceResponse) ProtoMessage() {} func (x *FindInstancesByDpuExtensionServiceResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[758] + mi := &file_nico_nico_proto_msgTypes[759] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52498,7 +52564,7 @@ func (x *FindInstancesByDpuExtensionServiceResponse) ProtoReflect() protoreflect // Deprecated: Use FindInstancesByDpuExtensionServiceResponse.ProtoReflect.Descriptor instead. func (*FindInstancesByDpuExtensionServiceResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{758} + return file_nico_nico_proto_rawDescGZIP(), []int{759} } func (x *FindInstancesByDpuExtensionServiceResponse) GetInstances() []*InstanceDpuExtensionServiceInfo { @@ -52520,7 +52586,7 @@ type InstanceDpuExtensionServiceInfo struct { func (x *InstanceDpuExtensionServiceInfo) Reset() { *x = InstanceDpuExtensionServiceInfo{} - mi := &file_nico_nico_proto_msgTypes[759] + mi := &file_nico_nico_proto_msgTypes[760] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52532,7 +52598,7 @@ func (x *InstanceDpuExtensionServiceInfo) String() string { func (*InstanceDpuExtensionServiceInfo) ProtoMessage() {} func (x *InstanceDpuExtensionServiceInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[759] + mi := &file_nico_nico_proto_msgTypes[760] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52545,7 +52611,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{759} + return file_nico_nico_proto_rawDescGZIP(), []int{760} } func (x *InstanceDpuExtensionServiceInfo) GetInstanceId() string { @@ -52586,7 +52652,7 @@ type DpuExtensionServiceObservabilityConfigPrometheus struct { func (x *DpuExtensionServiceObservabilityConfigPrometheus) Reset() { *x = DpuExtensionServiceObservabilityConfigPrometheus{} - mi := &file_nico_nico_proto_msgTypes[760] + mi := &file_nico_nico_proto_msgTypes[761] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52598,7 +52664,7 @@ func (x *DpuExtensionServiceObservabilityConfigPrometheus) String() string { func (*DpuExtensionServiceObservabilityConfigPrometheus) ProtoMessage() {} func (x *DpuExtensionServiceObservabilityConfigPrometheus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[760] + mi := &file_nico_nico_proto_msgTypes[761] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52611,7 +52677,7 @@ func (x *DpuExtensionServiceObservabilityConfigPrometheus) ProtoReflect() protor // Deprecated: Use DpuExtensionServiceObservabilityConfigPrometheus.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceObservabilityConfigPrometheus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{760} + return file_nico_nico_proto_rawDescGZIP(), []int{761} } func (x *DpuExtensionServiceObservabilityConfigPrometheus) GetScrapeIntervalSeconds() uint32 { @@ -52637,7 +52703,7 @@ type DpuExtensionServiceObservabilityConfigLogging struct { func (x *DpuExtensionServiceObservabilityConfigLogging) Reset() { *x = DpuExtensionServiceObservabilityConfigLogging{} - mi := &file_nico_nico_proto_msgTypes[761] + mi := &file_nico_nico_proto_msgTypes[762] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52649,7 +52715,7 @@ func (x *DpuExtensionServiceObservabilityConfigLogging) String() string { func (*DpuExtensionServiceObservabilityConfigLogging) ProtoMessage() {} func (x *DpuExtensionServiceObservabilityConfigLogging) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[761] + mi := &file_nico_nico_proto_msgTypes[762] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52662,7 +52728,7 @@ func (x *DpuExtensionServiceObservabilityConfigLogging) ProtoReflect() protorefl // Deprecated: Use DpuExtensionServiceObservabilityConfigLogging.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceObservabilityConfigLogging) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{761} + return file_nico_nico_proto_rawDescGZIP(), []int{762} } func (x *DpuExtensionServiceObservabilityConfigLogging) GetPath() string { @@ -52689,7 +52755,7 @@ type DpuExtensionServiceObservabilityConfig struct { func (x *DpuExtensionServiceObservabilityConfig) Reset() { *x = DpuExtensionServiceObservabilityConfig{} - mi := &file_nico_nico_proto_msgTypes[762] + mi := &file_nico_nico_proto_msgTypes[763] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52701,7 +52767,7 @@ func (x *DpuExtensionServiceObservabilityConfig) String() string { func (*DpuExtensionServiceObservabilityConfig) ProtoMessage() {} func (x *DpuExtensionServiceObservabilityConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[762] + mi := &file_nico_nico_proto_msgTypes[763] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52714,7 +52780,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{762} + return file_nico_nico_proto_rawDescGZIP(), []int{763} } func (x *DpuExtensionServiceObservabilityConfig) GetName() string { @@ -52776,7 +52842,7 @@ type DpuExtensionServiceObservability struct { func (x *DpuExtensionServiceObservability) Reset() { *x = DpuExtensionServiceObservability{} - mi := &file_nico_nico_proto_msgTypes[763] + mi := &file_nico_nico_proto_msgTypes[764] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52788,7 +52854,7 @@ func (x *DpuExtensionServiceObservability) String() string { func (*DpuExtensionServiceObservability) ProtoMessage() {} func (x *DpuExtensionServiceObservability) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[763] + mi := &file_nico_nico_proto_msgTypes[764] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52801,7 +52867,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{763} + return file_nico_nico_proto_rawDescGZIP(), []int{764} } func (x *DpuExtensionServiceObservability) GetConfigs() []*DpuExtensionServiceObservabilityConfig { @@ -52846,7 +52912,7 @@ type ScoutStreamApiBoundMessage struct { func (x *ScoutStreamApiBoundMessage) Reset() { *x = ScoutStreamApiBoundMessage{} - mi := &file_nico_nico_proto_msgTypes[764] + mi := &file_nico_nico_proto_msgTypes[765] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52858,7 +52924,7 @@ func (x *ScoutStreamApiBoundMessage) String() string { func (*ScoutStreamApiBoundMessage) ProtoMessage() {} func (x *ScoutStreamApiBoundMessage) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[764] + mi := &file_nico_nico_proto_msgTypes[765] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52871,7 +52937,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{764} + return file_nico_nico_proto_rawDescGZIP(), []int{765} } func (x *ScoutStreamApiBoundMessage) GetFlowUuid() *UUID { @@ -53141,7 +53207,7 @@ type ScoutStreamScoutBoundMessage struct { func (x *ScoutStreamScoutBoundMessage) Reset() { *x = ScoutStreamScoutBoundMessage{} - mi := &file_nico_nico_proto_msgTypes[765] + mi := &file_nico_nico_proto_msgTypes[766] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53153,7 +53219,7 @@ func (x *ScoutStreamScoutBoundMessage) String() string { func (*ScoutStreamScoutBoundMessage) ProtoMessage() {} func (x *ScoutStreamScoutBoundMessage) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[765] + mi := &file_nico_nico_proto_msgTypes[766] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53166,7 +53232,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{765} + return file_nico_nico_proto_rawDescGZIP(), []int{766} } func (x *ScoutStreamScoutBoundMessage) GetFlowUuid() *UUID { @@ -53422,7 +53488,7 @@ type ScoutStreamInitRequest struct { func (x *ScoutStreamInitRequest) Reset() { *x = ScoutStreamInitRequest{} - mi := &file_nico_nico_proto_msgTypes[766] + mi := &file_nico_nico_proto_msgTypes[767] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53434,7 +53500,7 @@ func (x *ScoutStreamInitRequest) String() string { func (*ScoutStreamInitRequest) ProtoMessage() {} func (x *ScoutStreamInitRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[766] + mi := &file_nico_nico_proto_msgTypes[767] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53447,7 +53513,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{766} + return file_nico_nico_proto_rawDescGZIP(), []int{767} } func (x *ScoutStreamInitRequest) GetMachineId() *MachineId { @@ -53467,7 +53533,7 @@ type ScoutStreamShowConnectionsRequest struct { func (x *ScoutStreamShowConnectionsRequest) Reset() { *x = ScoutStreamShowConnectionsRequest{} - mi := &file_nico_nico_proto_msgTypes[767] + mi := &file_nico_nico_proto_msgTypes[768] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53479,7 +53545,7 @@ func (x *ScoutStreamShowConnectionsRequest) String() string { func (*ScoutStreamShowConnectionsRequest) ProtoMessage() {} func (x *ScoutStreamShowConnectionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[767] + mi := &file_nico_nico_proto_msgTypes[768] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53492,7 +53558,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{767} + return file_nico_nico_proto_rawDescGZIP(), []int{768} } // ShowConnectionsResponse is the response containing active @@ -53506,7 +53572,7 @@ type ScoutStreamShowConnectionsResponse struct { func (x *ScoutStreamShowConnectionsResponse) Reset() { *x = ScoutStreamShowConnectionsResponse{} - mi := &file_nico_nico_proto_msgTypes[768] + mi := &file_nico_nico_proto_msgTypes[769] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53518,7 +53584,7 @@ func (x *ScoutStreamShowConnectionsResponse) String() string { func (*ScoutStreamShowConnectionsResponse) ProtoMessage() {} func (x *ScoutStreamShowConnectionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[768] + mi := &file_nico_nico_proto_msgTypes[769] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53531,7 +53597,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{768} + return file_nico_nico_proto_rawDescGZIP(), []int{769} } func (x *ScoutStreamShowConnectionsResponse) GetScoutStreamConnections() []*ScoutStreamConnectionInfo { @@ -53552,7 +53618,7 @@ type ScoutStreamDisconnectRequest struct { func (x *ScoutStreamDisconnectRequest) Reset() { *x = ScoutStreamDisconnectRequest{} - mi := &file_nico_nico_proto_msgTypes[769] + mi := &file_nico_nico_proto_msgTypes[770] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53564,7 +53630,7 @@ func (x *ScoutStreamDisconnectRequest) String() string { func (*ScoutStreamDisconnectRequest) ProtoMessage() {} func (x *ScoutStreamDisconnectRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[769] + mi := &file_nico_nico_proto_msgTypes[770] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53577,7 +53643,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{769} + return file_nico_nico_proto_rawDescGZIP(), []int{770} } func (x *ScoutStreamDisconnectRequest) GetMachineId() *MachineId { @@ -53599,7 +53665,7 @@ type ScoutStreamDisconnectResponse struct { func (x *ScoutStreamDisconnectResponse) Reset() { *x = ScoutStreamDisconnectResponse{} - mi := &file_nico_nico_proto_msgTypes[770] + mi := &file_nico_nico_proto_msgTypes[771] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53611,7 +53677,7 @@ func (x *ScoutStreamDisconnectResponse) String() string { func (*ScoutStreamDisconnectResponse) ProtoMessage() {} func (x *ScoutStreamDisconnectResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[770] + mi := &file_nico_nico_proto_msgTypes[771] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53624,7 +53690,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{770} + return file_nico_nico_proto_rawDescGZIP(), []int{771} } func (x *ScoutStreamDisconnectResponse) GetMachineId() *MachineId { @@ -53653,7 +53719,7 @@ type ScoutStreamAdminPingRequest struct { func (x *ScoutStreamAdminPingRequest) Reset() { *x = ScoutStreamAdminPingRequest{} - mi := &file_nico_nico_proto_msgTypes[771] + mi := &file_nico_nico_proto_msgTypes[772] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53665,7 +53731,7 @@ func (x *ScoutStreamAdminPingRequest) String() string { func (*ScoutStreamAdminPingRequest) ProtoMessage() {} func (x *ScoutStreamAdminPingRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[771] + mi := &file_nico_nico_proto_msgTypes[772] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53678,7 +53744,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{771} + return file_nico_nico_proto_rawDescGZIP(), []int{772} } func (x *ScoutStreamAdminPingRequest) GetMachineId() *MachineId { @@ -53699,7 +53765,7 @@ type ScoutStreamAdminPingResponse struct { func (x *ScoutStreamAdminPingResponse) Reset() { *x = ScoutStreamAdminPingResponse{} - mi := &file_nico_nico_proto_msgTypes[772] + mi := &file_nico_nico_proto_msgTypes[773] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53711,7 +53777,7 @@ func (x *ScoutStreamAdminPingResponse) String() string { func (*ScoutStreamAdminPingResponse) ProtoMessage() {} func (x *ScoutStreamAdminPingResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[772] + mi := &file_nico_nico_proto_msgTypes[773] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53724,7 +53790,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{772} + return file_nico_nico_proto_rawDescGZIP(), []int{773} } func (x *ScoutStreamAdminPingResponse) GetPong() string { @@ -53745,7 +53811,7 @@ type ScoutStreamAgentPingRequest struct { func (x *ScoutStreamAgentPingRequest) Reset() { *x = ScoutStreamAgentPingRequest{} - mi := &file_nico_nico_proto_msgTypes[773] + mi := &file_nico_nico_proto_msgTypes[774] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53757,7 +53823,7 @@ func (x *ScoutStreamAgentPingRequest) String() string { func (*ScoutStreamAgentPingRequest) ProtoMessage() {} func (x *ScoutStreamAgentPingRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[773] + mi := &file_nico_nico_proto_msgTypes[774] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53770,7 +53836,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{773} + return file_nico_nico_proto_rawDescGZIP(), []int{774} } // ScoutStreamAgentPingResponse is hopefully a response from @@ -53788,7 +53854,7 @@ type ScoutStreamAgentPingResponse struct { func (x *ScoutStreamAgentPingResponse) Reset() { *x = ScoutStreamAgentPingResponse{} - mi := &file_nico_nico_proto_msgTypes[774] + mi := &file_nico_nico_proto_msgTypes[775] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53800,7 +53866,7 @@ func (x *ScoutStreamAgentPingResponse) String() string { func (*ScoutStreamAgentPingResponse) ProtoMessage() {} func (x *ScoutStreamAgentPingResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[774] + mi := &file_nico_nico_proto_msgTypes[775] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53813,7 +53879,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{774} + return file_nico_nico_proto_rawDescGZIP(), []int{775} } func (x *ScoutStreamAgentPingResponse) GetReply() isScoutStreamAgentPingResponse_Reply { @@ -53874,7 +53940,7 @@ type ScoutStreamConnectionInfo struct { func (x *ScoutStreamConnectionInfo) Reset() { *x = ScoutStreamConnectionInfo{} - mi := &file_nico_nico_proto_msgTypes[775] + mi := &file_nico_nico_proto_msgTypes[776] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53886,7 +53952,7 @@ func (x *ScoutStreamConnectionInfo) String() string { func (*ScoutStreamConnectionInfo) ProtoMessage() {} func (x *ScoutStreamConnectionInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[775] + mi := &file_nico_nico_proto_msgTypes[776] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53899,7 +53965,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{775} + return file_nico_nico_proto_rawDescGZIP(), []int{776} } func (x *ScoutStreamConnectionInfo) GetMachineId() *MachineId { @@ -53936,7 +54002,7 @@ type ScoutStreamError struct { func (x *ScoutStreamError) Reset() { *x = ScoutStreamError{} - mi := &file_nico_nico_proto_msgTypes[776] + mi := &file_nico_nico_proto_msgTypes[777] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53948,7 +54014,7 @@ func (x *ScoutStreamError) String() string { func (*ScoutStreamError) ProtoMessage() {} func (x *ScoutStreamError) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[776] + mi := &file_nico_nico_proto_msgTypes[777] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53961,7 +54027,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{776} + return file_nico_nico_proto_rawDescGZIP(), []int{777} } func (x *ScoutStreamError) GetStatus() ScoutStreamErrorStatus { @@ -53991,7 +54057,7 @@ type PrefixFilterPolicyEntry struct { func (x *PrefixFilterPolicyEntry) Reset() { *x = PrefixFilterPolicyEntry{} - mi := &file_nico_nico_proto_msgTypes[777] + mi := &file_nico_nico_proto_msgTypes[778] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54003,7 +54069,7 @@ func (x *PrefixFilterPolicyEntry) String() string { func (*PrefixFilterPolicyEntry) ProtoMessage() {} func (x *PrefixFilterPolicyEntry) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[777] + mi := &file_nico_nico_proto_msgTypes[778] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54016,7 +54082,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{777} + return file_nico_nico_proto_rawDescGZIP(), []int{778} } func (x *PrefixFilterPolicyEntry) GetPrefix() string { @@ -54051,7 +54117,7 @@ type RoutingProfile struct { func (x *RoutingProfile) Reset() { *x = RoutingProfile{} - mi := &file_nico_nico_proto_msgTypes[778] + mi := &file_nico_nico_proto_msgTypes[779] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54063,7 +54129,7 @@ func (x *RoutingProfile) String() string { func (*RoutingProfile) ProtoMessage() {} func (x *RoutingProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[778] + mi := &file_nico_nico_proto_msgTypes[779] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54076,7 +54142,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{778} + return file_nico_nico_proto_rawDescGZIP(), []int{779} } func (x *RoutingProfile) GetRouteTargetImports() []*RouteTarget { @@ -54142,7 +54208,7 @@ type DomainLegacy struct { func (x *DomainLegacy) Reset() { *x = DomainLegacy{} - mi := &file_nico_nico_proto_msgTypes[779] + mi := &file_nico_nico_proto_msgTypes[780] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54154,7 +54220,7 @@ func (x *DomainLegacy) String() string { func (*DomainLegacy) ProtoMessage() {} func (x *DomainLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[779] + mi := &file_nico_nico_proto_msgTypes[780] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54167,7 +54233,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{779} + return file_nico_nico_proto_rawDescGZIP(), []int{780} } func (x *DomainLegacy) GetId() *DomainId { @@ -54215,7 +54281,7 @@ type DomainListLegacy struct { func (x *DomainListLegacy) Reset() { *x = DomainListLegacy{} - mi := &file_nico_nico_proto_msgTypes[780] + mi := &file_nico_nico_proto_msgTypes[781] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54227,7 +54293,7 @@ func (x *DomainListLegacy) String() string { func (*DomainListLegacy) ProtoMessage() {} func (x *DomainListLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[780] + mi := &file_nico_nico_proto_msgTypes[781] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54240,7 +54306,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{780} + return file_nico_nico_proto_rawDescGZIP(), []int{781} } func (x *DomainListLegacy) GetDomains() []*DomainLegacy { @@ -54260,7 +54326,7 @@ type DomainDeletionLegacy struct { func (x *DomainDeletionLegacy) Reset() { *x = DomainDeletionLegacy{} - mi := &file_nico_nico_proto_msgTypes[781] + mi := &file_nico_nico_proto_msgTypes[782] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54272,7 +54338,7 @@ func (x *DomainDeletionLegacy) String() string { func (*DomainDeletionLegacy) ProtoMessage() {} func (x *DomainDeletionLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[781] + mi := &file_nico_nico_proto_msgTypes[782] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54285,7 +54351,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{781} + return file_nico_nico_proto_rawDescGZIP(), []int{782} } func (x *DomainDeletionLegacy) GetId() *DomainId { @@ -54304,7 +54370,7 @@ type DomainDeletionResultLegacy struct { func (x *DomainDeletionResultLegacy) Reset() { *x = DomainDeletionResultLegacy{} - mi := &file_nico_nico_proto_msgTypes[782] + mi := &file_nico_nico_proto_msgTypes[783] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54316,7 +54382,7 @@ func (x *DomainDeletionResultLegacy) String() string { func (*DomainDeletionResultLegacy) ProtoMessage() {} func (x *DomainDeletionResultLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[782] + mi := &file_nico_nico_proto_msgTypes[783] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54329,7 +54395,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{782} + return file_nico_nico_proto_rawDescGZIP(), []int{783} } // DEPRECATED: Use dns.DomainSearchQuery instead @@ -54343,7 +54409,7 @@ type DomainSearchQueryLegacy struct { func (x *DomainSearchQueryLegacy) Reset() { *x = DomainSearchQueryLegacy{} - mi := &file_nico_nico_proto_msgTypes[783] + mi := &file_nico_nico_proto_msgTypes[784] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54355,7 +54421,7 @@ func (x *DomainSearchQueryLegacy) String() string { func (*DomainSearchQueryLegacy) ProtoMessage() {} func (x *DomainSearchQueryLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[783] + mi := &file_nico_nico_proto_msgTypes[784] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54368,7 +54434,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{783} + return file_nico_nico_proto_rawDescGZIP(), []int{784} } func (x *DomainSearchQueryLegacy) GetId() *DomainId { @@ -54400,7 +54466,7 @@ type PxeDomain struct { func (x *PxeDomain) Reset() { *x = PxeDomain{} - mi := &file_nico_nico_proto_msgTypes[784] + mi := &file_nico_nico_proto_msgTypes[785] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54412,7 +54478,7 @@ func (x *PxeDomain) String() string { func (*PxeDomain) ProtoMessage() {} func (x *PxeDomain) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[784] + mi := &file_nico_nico_proto_msgTypes[785] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54425,7 +54491,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{784} + return file_nico_nico_proto_rawDescGZIP(), []int{785} } func (x *PxeDomain) GetDomain() isPxeDomain_Domain { @@ -54479,7 +54545,7 @@ type MachinePositionQuery struct { func (x *MachinePositionQuery) Reset() { *x = MachinePositionQuery{} - mi := &file_nico_nico_proto_msgTypes[785] + mi := &file_nico_nico_proto_msgTypes[786] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54491,7 +54557,7 @@ func (x *MachinePositionQuery) String() string { func (*MachinePositionQuery) ProtoMessage() {} func (x *MachinePositionQuery) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[785] + mi := &file_nico_nico_proto_msgTypes[786] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54504,7 +54570,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{785} + return file_nico_nico_proto_rawDescGZIP(), []int{786} } func (x *MachinePositionQuery) GetMachineIds() []*MachineId { @@ -54523,7 +54589,7 @@ type MachinePositionInfoList struct { func (x *MachinePositionInfoList) Reset() { *x = MachinePositionInfoList{} - mi := &file_nico_nico_proto_msgTypes[786] + mi := &file_nico_nico_proto_msgTypes[787] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54535,7 +54601,7 @@ func (x *MachinePositionInfoList) String() string { func (*MachinePositionInfoList) ProtoMessage() {} func (x *MachinePositionInfoList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[786] + mi := &file_nico_nico_proto_msgTypes[787] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54548,7 +54614,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{786} + return file_nico_nico_proto_rawDescGZIP(), []int{787} } func (x *MachinePositionInfoList) GetMachinePositionInfo() []*MachinePositionInfo { @@ -54573,7 +54639,7 @@ type MachinePositionInfo struct { func (x *MachinePositionInfo) Reset() { *x = MachinePositionInfo{} - mi := &file_nico_nico_proto_msgTypes[787] + mi := &file_nico_nico_proto_msgTypes[788] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54585,7 +54651,7 @@ func (x *MachinePositionInfo) String() string { func (*MachinePositionInfo) ProtoMessage() {} func (x *MachinePositionInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[787] + mi := &file_nico_nico_proto_msgTypes[788] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54598,7 +54664,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{787} + return file_nico_nico_proto_rawDescGZIP(), []int{788} } func (x *MachinePositionInfo) GetMachineId() *MachineId { @@ -54660,7 +54726,7 @@ type ModifyDPFStateRequest struct { func (x *ModifyDPFStateRequest) Reset() { *x = ModifyDPFStateRequest{} - mi := &file_nico_nico_proto_msgTypes[788] + mi := &file_nico_nico_proto_msgTypes[789] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54672,7 +54738,7 @@ func (x *ModifyDPFStateRequest) String() string { func (*ModifyDPFStateRequest) ProtoMessage() {} func (x *ModifyDPFStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[788] + mi := &file_nico_nico_proto_msgTypes[789] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54685,7 +54751,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{788} + return file_nico_nico_proto_rawDescGZIP(), []int{789} } func (x *ModifyDPFStateRequest) GetMachineId() *MachineId { @@ -54711,7 +54777,7 @@ type DPFStateResponse struct { func (x *DPFStateResponse) Reset() { *x = DPFStateResponse{} - mi := &file_nico_nico_proto_msgTypes[789] + mi := &file_nico_nico_proto_msgTypes[790] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54723,7 +54789,7 @@ func (x *DPFStateResponse) String() string { func (*DPFStateResponse) ProtoMessage() {} func (x *DPFStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[789] + mi := &file_nico_nico_proto_msgTypes[790] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54736,7 +54802,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{789} + return file_nico_nico_proto_rawDescGZIP(), []int{790} } func (x *DPFStateResponse) GetDpfStates() []*DPFStateResponse_DPFState { @@ -54755,7 +54821,7 @@ type GetDPFStateRequest struct { func (x *GetDPFStateRequest) Reset() { *x = GetDPFStateRequest{} - mi := &file_nico_nico_proto_msgTypes[790] + mi := &file_nico_nico_proto_msgTypes[791] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54767,7 +54833,7 @@ func (x *GetDPFStateRequest) String() string { func (*GetDPFStateRequest) ProtoMessage() {} func (x *GetDPFStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[790] + mi := &file_nico_nico_proto_msgTypes[791] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54780,7 +54846,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{790} + return file_nico_nico_proto_rawDescGZIP(), []int{791} } func (x *GetDPFStateRequest) GetMachineIds() []*MachineId { @@ -54799,7 +54865,7 @@ type GetDPFHostSnapshotRequest struct { func (x *GetDPFHostSnapshotRequest) Reset() { *x = GetDPFHostSnapshotRequest{} - mi := &file_nico_nico_proto_msgTypes[791] + mi := &file_nico_nico_proto_msgTypes[792] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54811,7 +54877,7 @@ func (x *GetDPFHostSnapshotRequest) String() string { func (*GetDPFHostSnapshotRequest) ProtoMessage() {} func (x *GetDPFHostSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[791] + mi := &file_nico_nico_proto_msgTypes[792] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54824,7 +54890,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{791} + return file_nico_nico_proto_rawDescGZIP(), []int{792} } func (x *GetDPFHostSnapshotRequest) GetHostMachineId() *MachineId { @@ -54846,7 +54912,7 @@ type DPFHostSnapshotResponse struct { func (x *DPFHostSnapshotResponse) Reset() { *x = DPFHostSnapshotResponse{} - mi := &file_nico_nico_proto_msgTypes[792] + mi := &file_nico_nico_proto_msgTypes[793] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54858,7 +54924,7 @@ func (x *DPFHostSnapshotResponse) String() string { func (*DPFHostSnapshotResponse) ProtoMessage() {} func (x *DPFHostSnapshotResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[792] + mi := &file_nico_nico_proto_msgTypes[793] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54871,7 +54937,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{792} + return file_nico_nico_proto_rawDescGZIP(), []int{793} } func (x *DPFHostSnapshotResponse) GetJsonPayload() string { @@ -54889,7 +54955,7 @@ type GetDPFServiceVersionsRequest struct { func (x *GetDPFServiceVersionsRequest) Reset() { *x = GetDPFServiceVersionsRequest{} - mi := &file_nico_nico_proto_msgTypes[793] + mi := &file_nico_nico_proto_msgTypes[794] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54901,7 +54967,7 @@ func (x *GetDPFServiceVersionsRequest) String() string { func (*GetDPFServiceVersionsRequest) ProtoMessage() {} func (x *GetDPFServiceVersionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[793] + mi := &file_nico_nico_proto_msgTypes[794] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54914,7 +54980,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{793} + return file_nico_nico_proto_rawDescGZIP(), []int{794} } type DPFServiceVersion struct { @@ -54938,7 +55004,7 @@ type DPFServiceVersion struct { func (x *DPFServiceVersion) Reset() { *x = DPFServiceVersion{} - mi := &file_nico_nico_proto_msgTypes[794] + mi := &file_nico_nico_proto_msgTypes[795] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54950,7 +55016,7 @@ func (x *DPFServiceVersion) String() string { func (*DPFServiceVersion) ProtoMessage() {} func (x *DPFServiceVersion) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[794] + mi := &file_nico_nico_proto_msgTypes[795] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54963,7 +55029,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{794} + return file_nico_nico_proto_rawDescGZIP(), []int{795} } func (x *DPFServiceVersion) GetService() string { @@ -55010,7 +55076,7 @@ type DPFServiceVersionsResponse struct { func (x *DPFServiceVersionsResponse) Reset() { *x = DPFServiceVersionsResponse{} - mi := &file_nico_nico_proto_msgTypes[795] + mi := &file_nico_nico_proto_msgTypes[796] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55022,7 +55088,7 @@ func (x *DPFServiceVersionsResponse) String() string { func (*DPFServiceVersionsResponse) ProtoMessage() {} func (x *DPFServiceVersionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[795] + mi := &file_nico_nico_proto_msgTypes[796] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55035,7 +55101,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{795} + return file_nico_nico_proto_rawDescGZIP(), []int{796} } func (x *DPFServiceVersionsResponse) GetServices() []*DPFServiceVersion { @@ -55056,7 +55122,7 @@ type ComponentResult struct { func (x *ComponentResult) Reset() { *x = ComponentResult{} - mi := &file_nico_nico_proto_msgTypes[796] + mi := &file_nico_nico_proto_msgTypes[797] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55068,7 +55134,7 @@ func (x *ComponentResult) String() string { func (*ComponentResult) ProtoMessage() {} func (x *ComponentResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[796] + mi := &file_nico_nico_proto_msgTypes[797] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55081,7 +55147,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{796} + return file_nico_nico_proto_rawDescGZIP(), []int{797} } func (x *ComponentResult) GetComponentId() string { @@ -55114,7 +55180,7 @@ type SwitchIdList struct { func (x *SwitchIdList) Reset() { *x = SwitchIdList{} - mi := &file_nico_nico_proto_msgTypes[797] + mi := &file_nico_nico_proto_msgTypes[798] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55126,7 +55192,7 @@ func (x *SwitchIdList) String() string { func (*SwitchIdList) ProtoMessage() {} func (x *SwitchIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[797] + mi := &file_nico_nico_proto_msgTypes[798] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55139,7 +55205,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{797} + return file_nico_nico_proto_rawDescGZIP(), []int{798} } func (x *SwitchIdList) GetIds() []*SwitchId { @@ -55158,7 +55224,7 @@ type PowerShelfIdList struct { func (x *PowerShelfIdList) Reset() { *x = PowerShelfIdList{} - mi := &file_nico_nico_proto_msgTypes[798] + mi := &file_nico_nico_proto_msgTypes[799] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55170,7 +55236,7 @@ func (x *PowerShelfIdList) String() string { func (*PowerShelfIdList) ProtoMessage() {} func (x *PowerShelfIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[798] + mi := &file_nico_nico_proto_msgTypes[799] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55183,7 +55249,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{798} + return file_nico_nico_proto_rawDescGZIP(), []int{799} } func (x *PowerShelfIdList) GetIds() []*PowerShelfId { @@ -55207,7 +55273,7 @@ type GetComponentInventoryRequest struct { func (x *GetComponentInventoryRequest) Reset() { *x = GetComponentInventoryRequest{} - mi := &file_nico_nico_proto_msgTypes[799] + mi := &file_nico_nico_proto_msgTypes[800] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55219,7 +55285,7 @@ func (x *GetComponentInventoryRequest) String() string { func (*GetComponentInventoryRequest) ProtoMessage() {} func (x *GetComponentInventoryRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[799] + mi := &file_nico_nico_proto_msgTypes[800] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55232,7 +55298,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{799} + return file_nico_nico_proto_rawDescGZIP(), []int{800} } func (x *GetComponentInventoryRequest) GetTarget() isGetComponentInventoryRequest_Target { @@ -55301,7 +55367,7 @@ type ComponentInventoryEntry struct { func (x *ComponentInventoryEntry) Reset() { *x = ComponentInventoryEntry{} - mi := &file_nico_nico_proto_msgTypes[800] + mi := &file_nico_nico_proto_msgTypes[801] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55313,7 +55379,7 @@ func (x *ComponentInventoryEntry) String() string { func (*ComponentInventoryEntry) ProtoMessage() {} func (x *ComponentInventoryEntry) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[800] + mi := &file_nico_nico_proto_msgTypes[801] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55326,7 +55392,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{800} + return file_nico_nico_proto_rawDescGZIP(), []int{801} } func (x *ComponentInventoryEntry) GetResult() *ComponentResult { @@ -55352,7 +55418,7 @@ type GetComponentInventoryResponse struct { func (x *GetComponentInventoryResponse) Reset() { *x = GetComponentInventoryResponse{} - mi := &file_nico_nico_proto_msgTypes[801] + mi := &file_nico_nico_proto_msgTypes[802] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55364,7 +55430,7 @@ func (x *GetComponentInventoryResponse) String() string { func (*GetComponentInventoryResponse) ProtoMessage() {} func (x *GetComponentInventoryResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[801] + mi := &file_nico_nico_proto_msgTypes[802] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55377,7 +55443,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{801} + return file_nico_nico_proto_rawDescGZIP(), []int{802} } func (x *GetComponentInventoryResponse) GetEntries() []*ComponentInventoryEntry { @@ -55405,7 +55471,7 @@ type ComponentPowerControlRequest struct { func (x *ComponentPowerControlRequest) Reset() { *x = ComponentPowerControlRequest{} - mi := &file_nico_nico_proto_msgTypes[802] + mi := &file_nico_nico_proto_msgTypes[803] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55417,7 +55483,7 @@ func (x *ComponentPowerControlRequest) String() string { func (*ComponentPowerControlRequest) ProtoMessage() {} func (x *ComponentPowerControlRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[802] + mi := &file_nico_nico_proto_msgTypes[803] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55430,7 +55496,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{802} + return file_nico_nico_proto_rawDescGZIP(), []int{803} } func (x *ComponentPowerControlRequest) GetTarget() isComponentPowerControlRequest_Target { @@ -55512,7 +55578,7 @@ type ComponentPowerControlResponse struct { func (x *ComponentPowerControlResponse) Reset() { *x = ComponentPowerControlResponse{} - mi := &file_nico_nico_proto_msgTypes[803] + mi := &file_nico_nico_proto_msgTypes[804] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55524,7 +55590,7 @@ func (x *ComponentPowerControlResponse) String() string { func (*ComponentPowerControlResponse) ProtoMessage() {} func (x *ComponentPowerControlResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[803] + mi := &file_nico_nico_proto_msgTypes[804] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55537,7 +55603,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{803} + return file_nico_nico_proto_rawDescGZIP(), []int{804} } func (x *ComponentPowerControlResponse) GetResults() []*ComponentResult { @@ -55561,7 +55627,7 @@ type ComponentConfigureSwitchCertificateRequest struct { func (x *ComponentConfigureSwitchCertificateRequest) Reset() { *x = ComponentConfigureSwitchCertificateRequest{} - mi := &file_nico_nico_proto_msgTypes[804] + mi := &file_nico_nico_proto_msgTypes[805] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55573,7 +55639,7 @@ func (x *ComponentConfigureSwitchCertificateRequest) String() string { func (*ComponentConfigureSwitchCertificateRequest) ProtoMessage() {} func (x *ComponentConfigureSwitchCertificateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[804] + mi := &file_nico_nico_proto_msgTypes[805] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55586,7 +55652,7 @@ func (x *ComponentConfigureSwitchCertificateRequest) ProtoReflect() protoreflect // Deprecated: Use ComponentConfigureSwitchCertificateRequest.ProtoReflect.Descriptor instead. func (*ComponentConfigureSwitchCertificateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{804} + return file_nico_nico_proto_rawDescGZIP(), []int{805} } func (x *ComponentConfigureSwitchCertificateRequest) GetSwitchIds() *SwitchIdList { @@ -55619,7 +55685,7 @@ type ComponentConfigureSwitchCertificateResponse struct { func (x *ComponentConfigureSwitchCertificateResponse) Reset() { *x = ComponentConfigureSwitchCertificateResponse{} - mi := &file_nico_nico_proto_msgTypes[805] + mi := &file_nico_nico_proto_msgTypes[806] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55631,7 +55697,7 @@ func (x *ComponentConfigureSwitchCertificateResponse) String() string { func (*ComponentConfigureSwitchCertificateResponse) ProtoMessage() {} func (x *ComponentConfigureSwitchCertificateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[805] + mi := &file_nico_nico_proto_msgTypes[806] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55644,7 +55710,7 @@ func (x *ComponentConfigureSwitchCertificateResponse) ProtoReflect() protoreflec // Deprecated: Use ComponentConfigureSwitchCertificateResponse.ProtoReflect.Descriptor instead. func (*ComponentConfigureSwitchCertificateResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{805} + return file_nico_nico_proto_rawDescGZIP(), []int{806} } func (x *ComponentConfigureSwitchCertificateResponse) GetResults() []*ComponentResult { @@ -55666,7 +55732,7 @@ type FirmwareUpdateStatus struct { func (x *FirmwareUpdateStatus) Reset() { *x = FirmwareUpdateStatus{} - mi := &file_nico_nico_proto_msgTypes[806] + mi := &file_nico_nico_proto_msgTypes[807] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55678,7 +55744,7 @@ func (x *FirmwareUpdateStatus) String() string { func (*FirmwareUpdateStatus) ProtoMessage() {} func (x *FirmwareUpdateStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[806] + mi := &file_nico_nico_proto_msgTypes[807] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55691,7 +55757,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{806} + return file_nico_nico_proto_rawDescGZIP(), []int{807} } func (x *FirmwareUpdateStatus) GetResult() *ComponentResult { @@ -55732,7 +55798,7 @@ type UpdateComputeTrayFirmwareTarget struct { func (x *UpdateComputeTrayFirmwareTarget) Reset() { *x = UpdateComputeTrayFirmwareTarget{} - mi := &file_nico_nico_proto_msgTypes[807] + mi := &file_nico_nico_proto_msgTypes[808] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55744,7 +55810,7 @@ func (x *UpdateComputeTrayFirmwareTarget) String() string { func (*UpdateComputeTrayFirmwareTarget) ProtoMessage() {} func (x *UpdateComputeTrayFirmwareTarget) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[807] + mi := &file_nico_nico_proto_msgTypes[808] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55757,7 +55823,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{807} + return file_nico_nico_proto_rawDescGZIP(), []int{808} } func (x *UpdateComputeTrayFirmwareTarget) GetMachineIds() *MachineIdList { @@ -55784,7 +55850,7 @@ type UpdateSwitchFirmwareTarget struct { func (x *UpdateSwitchFirmwareTarget) Reset() { *x = UpdateSwitchFirmwareTarget{} - mi := &file_nico_nico_proto_msgTypes[808] + mi := &file_nico_nico_proto_msgTypes[809] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55796,7 +55862,7 @@ func (x *UpdateSwitchFirmwareTarget) String() string { func (*UpdateSwitchFirmwareTarget) ProtoMessage() {} func (x *UpdateSwitchFirmwareTarget) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[808] + mi := &file_nico_nico_proto_msgTypes[809] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55809,7 +55875,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{808} + return file_nico_nico_proto_rawDescGZIP(), []int{809} } func (x *UpdateSwitchFirmwareTarget) GetSwitchIds() *SwitchIdList { @@ -55836,7 +55902,7 @@ type UpdatePowerShelfFirmwareTarget struct { func (x *UpdatePowerShelfFirmwareTarget) Reset() { *x = UpdatePowerShelfFirmwareTarget{} - mi := &file_nico_nico_proto_msgTypes[809] + mi := &file_nico_nico_proto_msgTypes[810] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55848,7 +55914,7 @@ func (x *UpdatePowerShelfFirmwareTarget) String() string { func (*UpdatePowerShelfFirmwareTarget) ProtoMessage() {} func (x *UpdatePowerShelfFirmwareTarget) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[809] + mi := &file_nico_nico_proto_msgTypes[810] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55861,7 +55927,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{809} + return file_nico_nico_proto_rawDescGZIP(), []int{810} } func (x *UpdatePowerShelfFirmwareTarget) GetPowerShelfIds() *PowerShelfIdList { @@ -55889,7 +55955,7 @@ type UpdateFirmwareObjectTarget struct { func (x *UpdateFirmwareObjectTarget) Reset() { *x = UpdateFirmwareObjectTarget{} - mi := &file_nico_nico_proto_msgTypes[810] + mi := &file_nico_nico_proto_msgTypes[811] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55901,7 +55967,7 @@ func (x *UpdateFirmwareObjectTarget) String() string { func (*UpdateFirmwareObjectTarget) ProtoMessage() {} func (x *UpdateFirmwareObjectTarget) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[810] + mi := &file_nico_nico_proto_msgTypes[811] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55914,7 +55980,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{810} + return file_nico_nico_proto_rawDescGZIP(), []int{811} } func (x *UpdateFirmwareObjectTarget) GetRackIds() *RackIdList { @@ -55951,7 +56017,7 @@ type UpdateComponentFirmwareRequest struct { func (x *UpdateComponentFirmwareRequest) Reset() { *x = UpdateComponentFirmwareRequest{} - mi := &file_nico_nico_proto_msgTypes[811] + mi := &file_nico_nico_proto_msgTypes[812] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55963,7 +56029,7 @@ func (x *UpdateComponentFirmwareRequest) String() string { func (*UpdateComponentFirmwareRequest) ProtoMessage() {} func (x *UpdateComponentFirmwareRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[811] + mi := &file_nico_nico_proto_msgTypes[812] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55976,7 +56042,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{811} + return file_nico_nico_proto_rawDescGZIP(), []int{812} } func (x *UpdateComponentFirmwareRequest) GetTarget() isUpdateComponentFirmwareRequest_Target { @@ -56088,7 +56154,7 @@ type UpdateComponentFirmwareResponse struct { func (x *UpdateComponentFirmwareResponse) Reset() { *x = UpdateComponentFirmwareResponse{} - mi := &file_nico_nico_proto_msgTypes[812] + mi := &file_nico_nico_proto_msgTypes[813] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56100,7 +56166,7 @@ func (x *UpdateComponentFirmwareResponse) String() string { func (*UpdateComponentFirmwareResponse) ProtoMessage() {} func (x *UpdateComponentFirmwareResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[812] + mi := &file_nico_nico_proto_msgTypes[813] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56113,7 +56179,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{812} + return file_nico_nico_proto_rawDescGZIP(), []int{813} } func (x *UpdateComponentFirmwareResponse) GetResults() []*ComponentResult { @@ -56138,7 +56204,7 @@ type GetComponentFirmwareStatusRequest struct { func (x *GetComponentFirmwareStatusRequest) Reset() { *x = GetComponentFirmwareStatusRequest{} - mi := &file_nico_nico_proto_msgTypes[813] + mi := &file_nico_nico_proto_msgTypes[814] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56150,7 +56216,7 @@ func (x *GetComponentFirmwareStatusRequest) String() string { func (*GetComponentFirmwareStatusRequest) ProtoMessage() {} func (x *GetComponentFirmwareStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[813] + mi := &file_nico_nico_proto_msgTypes[814] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56163,7 +56229,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{813} + return file_nico_nico_proto_rawDescGZIP(), []int{814} } func (x *GetComponentFirmwareStatusRequest) GetTarget() isGetComponentFirmwareStatusRequest_Target { @@ -56247,7 +56313,7 @@ type GetComponentFirmwareStatusResponse struct { func (x *GetComponentFirmwareStatusResponse) Reset() { *x = GetComponentFirmwareStatusResponse{} - mi := &file_nico_nico_proto_msgTypes[814] + mi := &file_nico_nico_proto_msgTypes[815] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56259,7 +56325,7 @@ func (x *GetComponentFirmwareStatusResponse) String() string { func (*GetComponentFirmwareStatusResponse) ProtoMessage() {} func (x *GetComponentFirmwareStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[814] + mi := &file_nico_nico_proto_msgTypes[815] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56272,7 +56338,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{814} + return file_nico_nico_proto_rawDescGZIP(), []int{815} } func (x *GetComponentFirmwareStatusResponse) GetStatuses() []*FirmwareUpdateStatus { @@ -56297,7 +56363,7 @@ type ListComponentFirmwareVersionsRequest struct { func (x *ListComponentFirmwareVersionsRequest) Reset() { *x = ListComponentFirmwareVersionsRequest{} - mi := &file_nico_nico_proto_msgTypes[815] + mi := &file_nico_nico_proto_msgTypes[816] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56309,7 +56375,7 @@ func (x *ListComponentFirmwareVersionsRequest) String() string { func (*ListComponentFirmwareVersionsRequest) ProtoMessage() {} func (x *ListComponentFirmwareVersionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[815] + mi := &file_nico_nico_proto_msgTypes[816] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56322,7 +56388,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{815} + return file_nico_nico_proto_rawDescGZIP(), []int{816} } func (x *ListComponentFirmwareVersionsRequest) GetTarget() isListComponentFirmwareVersionsRequest_Target { @@ -56413,7 +56479,7 @@ type ComputeTrayFirmwareVersions struct { func (x *ComputeTrayFirmwareVersions) Reset() { *x = ComputeTrayFirmwareVersions{} - mi := &file_nico_nico_proto_msgTypes[816] + mi := &file_nico_nico_proto_msgTypes[817] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56425,7 +56491,7 @@ func (x *ComputeTrayFirmwareVersions) String() string { func (*ComputeTrayFirmwareVersions) ProtoMessage() {} func (x *ComputeTrayFirmwareVersions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[816] + mi := &file_nico_nico_proto_msgTypes[817] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56438,7 +56504,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{816} + return file_nico_nico_proto_rawDescGZIP(), []int{817} } func (x *ComputeTrayFirmwareVersions) GetComponent() ComputeTrayComponent { @@ -56468,7 +56534,7 @@ type DeviceFirmwareVersions struct { func (x *DeviceFirmwareVersions) Reset() { *x = DeviceFirmwareVersions{} - mi := &file_nico_nico_proto_msgTypes[817] + mi := &file_nico_nico_proto_msgTypes[818] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56480,7 +56546,7 @@ func (x *DeviceFirmwareVersions) String() string { func (*DeviceFirmwareVersions) ProtoMessage() {} func (x *DeviceFirmwareVersions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[817] + mi := &file_nico_nico_proto_msgTypes[818] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56493,7 +56559,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{817} + return file_nico_nico_proto_rawDescGZIP(), []int{818} } func (x *DeviceFirmwareVersions) GetResult() *ComponentResult { @@ -56526,7 +56592,7 @@ type ListComponentFirmwareVersionsResponse struct { func (x *ListComponentFirmwareVersionsResponse) Reset() { *x = ListComponentFirmwareVersionsResponse{} - mi := &file_nico_nico_proto_msgTypes[818] + mi := &file_nico_nico_proto_msgTypes[819] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56538,7 +56604,7 @@ func (x *ListComponentFirmwareVersionsResponse) String() string { func (*ListComponentFirmwareVersionsResponse) ProtoMessage() {} func (x *ListComponentFirmwareVersionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[818] + mi := &file_nico_nico_proto_msgTypes[819] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56551,7 +56617,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{818} + return file_nico_nico_proto_rawDescGZIP(), []int{819} } func (x *ListComponentFirmwareVersionsResponse) GetDevices() []*DeviceFirmwareVersions { @@ -56573,7 +56639,7 @@ type SpxPartitionCreationRequest struct { func (x *SpxPartitionCreationRequest) Reset() { *x = SpxPartitionCreationRequest{} - mi := &file_nico_nico_proto_msgTypes[819] + mi := &file_nico_nico_proto_msgTypes[820] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56585,7 +56651,7 @@ func (x *SpxPartitionCreationRequest) String() string { func (*SpxPartitionCreationRequest) ProtoMessage() {} func (x *SpxPartitionCreationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[819] + mi := &file_nico_nico_proto_msgTypes[820] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56598,7 +56664,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{819} + return file_nico_nico_proto_rawDescGZIP(), []int{820} } func (x *SpxPartitionCreationRequest) GetMetadata() *Metadata { @@ -56641,7 +56707,7 @@ type SpxPartition struct { func (x *SpxPartition) Reset() { *x = SpxPartition{} - mi := &file_nico_nico_proto_msgTypes[820] + mi := &file_nico_nico_proto_msgTypes[821] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56653,7 +56719,7 @@ func (x *SpxPartition) String() string { func (*SpxPartition) ProtoMessage() {} func (x *SpxPartition) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[820] + mi := &file_nico_nico_proto_msgTypes[821] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56666,7 +56732,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{820} + return file_nico_nico_proto_rawDescGZIP(), []int{821} } func (x *SpxPartition) GetMetadata() *Metadata { @@ -56706,7 +56772,7 @@ type SpxPartitionIdList struct { func (x *SpxPartitionIdList) Reset() { *x = SpxPartitionIdList{} - mi := &file_nico_nico_proto_msgTypes[821] + mi := &file_nico_nico_proto_msgTypes[822] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56718,7 +56784,7 @@ func (x *SpxPartitionIdList) String() string { func (*SpxPartitionIdList) ProtoMessage() {} func (x *SpxPartitionIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[821] + mi := &file_nico_nico_proto_msgTypes[822] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56731,7 +56797,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{821} + return file_nico_nico_proto_rawDescGZIP(), []int{822} } func (x *SpxPartitionIdList) GetSpxPartitionIds() []*SpxPartitionId { @@ -56750,7 +56816,7 @@ type SpxPartitionDeletionRequest struct { func (x *SpxPartitionDeletionRequest) Reset() { *x = SpxPartitionDeletionRequest{} - mi := &file_nico_nico_proto_msgTypes[822] + mi := &file_nico_nico_proto_msgTypes[823] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56762,7 +56828,7 @@ func (x *SpxPartitionDeletionRequest) String() string { func (*SpxPartitionDeletionRequest) ProtoMessage() {} func (x *SpxPartitionDeletionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[822] + mi := &file_nico_nico_proto_msgTypes[823] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56775,7 +56841,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{822} + return file_nico_nico_proto_rawDescGZIP(), []int{823} } func (x *SpxPartitionDeletionRequest) GetId() *SpxPartitionId { @@ -56793,7 +56859,7 @@ type SpxPartitionDeletionResult struct { func (x *SpxPartitionDeletionResult) Reset() { *x = SpxPartitionDeletionResult{} - mi := &file_nico_nico_proto_msgTypes[823] + mi := &file_nico_nico_proto_msgTypes[824] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56805,7 +56871,7 @@ func (x *SpxPartitionDeletionResult) String() string { func (*SpxPartitionDeletionResult) ProtoMessage() {} func (x *SpxPartitionDeletionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[823] + mi := &file_nico_nico_proto_msgTypes[824] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56818,7 +56884,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{823} + return file_nico_nico_proto_rawDescGZIP(), []int{824} } type SpxPartitionSearchFilter struct { @@ -56832,7 +56898,7 @@ type SpxPartitionSearchFilter struct { func (x *SpxPartitionSearchFilter) Reset() { *x = SpxPartitionSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[824] + mi := &file_nico_nico_proto_msgTypes[825] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56844,7 +56910,7 @@ func (x *SpxPartitionSearchFilter) String() string { func (*SpxPartitionSearchFilter) ProtoMessage() {} func (x *SpxPartitionSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[824] + mi := &file_nico_nico_proto_msgTypes[825] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56857,7 +56923,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{824} + return file_nico_nico_proto_rawDescGZIP(), []int{825} } func (x *SpxPartitionSearchFilter) GetName() string { @@ -56890,7 +56956,7 @@ type SpxPartitionList struct { func (x *SpxPartitionList) Reset() { *x = SpxPartitionList{} - mi := &file_nico_nico_proto_msgTypes[825] + mi := &file_nico_nico_proto_msgTypes[826] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56902,7 +56968,7 @@ func (x *SpxPartitionList) String() string { func (*SpxPartitionList) ProtoMessage() {} func (x *SpxPartitionList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[825] + mi := &file_nico_nico_proto_msgTypes[826] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56915,7 +56981,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{825} + return file_nico_nico_proto_rawDescGZIP(), []int{826} } func (x *SpxPartitionList) GetSpxPartitions() []*SpxPartition { @@ -56934,7 +57000,7 @@ type SpxPartitionsByIdsRequest struct { func (x *SpxPartitionsByIdsRequest) Reset() { *x = SpxPartitionsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[826] + mi := &file_nico_nico_proto_msgTypes[827] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56946,7 +57012,7 @@ func (x *SpxPartitionsByIdsRequest) String() string { func (*SpxPartitionsByIdsRequest) ProtoMessage() {} func (x *SpxPartitionsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[826] + mi := &file_nico_nico_proto_msgTypes[827] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56959,7 +57025,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{826} + return file_nico_nico_proto_rawDescGZIP(), []int{827} } func (x *SpxPartitionsByIdsRequest) GetSpxPartitionIds() []*SpxPartitionId { @@ -56982,7 +57048,7 @@ type AdminForceDeleteSwitchRequest struct { func (x *AdminForceDeleteSwitchRequest) Reset() { *x = AdminForceDeleteSwitchRequest{} - mi := &file_nico_nico_proto_msgTypes[827] + mi := &file_nico_nico_proto_msgTypes[828] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56994,7 +57060,7 @@ func (x *AdminForceDeleteSwitchRequest) String() string { func (*AdminForceDeleteSwitchRequest) ProtoMessage() {} func (x *AdminForceDeleteSwitchRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[827] + mi := &file_nico_nico_proto_msgTypes[828] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57007,7 +57073,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{827} + return file_nico_nico_proto_rawDescGZIP(), []int{828} } func (x *AdminForceDeleteSwitchRequest) GetSwitchId() *SwitchId { @@ -57036,7 +57102,7 @@ type AdminForceDeleteSwitchResponse struct { func (x *AdminForceDeleteSwitchResponse) Reset() { *x = AdminForceDeleteSwitchResponse{} - mi := &file_nico_nico_proto_msgTypes[828] + mi := &file_nico_nico_proto_msgTypes[829] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57048,7 +57114,7 @@ func (x *AdminForceDeleteSwitchResponse) String() string { func (*AdminForceDeleteSwitchResponse) ProtoMessage() {} func (x *AdminForceDeleteSwitchResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[828] + mi := &file_nico_nico_proto_msgTypes[829] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57061,7 +57127,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{828} + return file_nico_nico_proto_rawDescGZIP(), []int{829} } func (x *AdminForceDeleteSwitchResponse) GetSwitchId() string { @@ -57091,7 +57157,7 @@ type AdminForceDeletePowerShelfRequest struct { func (x *AdminForceDeletePowerShelfRequest) Reset() { *x = AdminForceDeletePowerShelfRequest{} - mi := &file_nico_nico_proto_msgTypes[829] + mi := &file_nico_nico_proto_msgTypes[830] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57103,7 +57169,7 @@ func (x *AdminForceDeletePowerShelfRequest) String() string { func (*AdminForceDeletePowerShelfRequest) ProtoMessage() {} func (x *AdminForceDeletePowerShelfRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[829] + mi := &file_nico_nico_proto_msgTypes[830] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57116,7 +57182,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{829} + return file_nico_nico_proto_rawDescGZIP(), []int{830} } func (x *AdminForceDeletePowerShelfRequest) GetPowerShelfId() *PowerShelfId { @@ -57145,7 +57211,7 @@ type AdminForceDeletePowerShelfResponse struct { func (x *AdminForceDeletePowerShelfResponse) Reset() { *x = AdminForceDeletePowerShelfResponse{} - mi := &file_nico_nico_proto_msgTypes[830] + mi := &file_nico_nico_proto_msgTypes[831] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57157,7 +57223,7 @@ func (x *AdminForceDeletePowerShelfResponse) String() string { func (*AdminForceDeletePowerShelfResponse) ProtoMessage() {} func (x *AdminForceDeletePowerShelfResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[830] + mi := &file_nico_nico_proto_msgTypes[831] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57170,7 +57236,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{830} + return file_nico_nico_proto_rawDescGZIP(), []int{831} } func (x *AdminForceDeletePowerShelfResponse) GetPowerShelfId() string { @@ -57214,7 +57280,7 @@ type OperatingSystem struct { func (x *OperatingSystem) Reset() { *x = OperatingSystem{} - mi := &file_nico_nico_proto_msgTypes[831] + mi := &file_nico_nico_proto_msgTypes[832] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57226,7 +57292,7 @@ func (x *OperatingSystem) String() string { func (*OperatingSystem) ProtoMessage() {} func (x *OperatingSystem) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[831] + mi := &file_nico_nico_proto_msgTypes[832] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57239,7 +57305,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{831} + return file_nico_nico_proto_rawDescGZIP(), []int{832} } func (x *OperatingSystem) GetId() *OperatingSystemId { @@ -57384,7 +57450,7 @@ type CreateOperatingSystemRequest struct { func (x *CreateOperatingSystemRequest) Reset() { *x = CreateOperatingSystemRequest{} - mi := &file_nico_nico_proto_msgTypes[832] + mi := &file_nico_nico_proto_msgTypes[833] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57396,7 +57462,7 @@ func (x *CreateOperatingSystemRequest) String() string { func (*CreateOperatingSystemRequest) ProtoMessage() {} func (x *CreateOperatingSystemRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[832] + mi := &file_nico_nico_proto_msgTypes[833] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57409,7 +57475,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{832} + return file_nico_nico_proto_rawDescGZIP(), []int{833} } func (x *CreateOperatingSystemRequest) GetName() string { @@ -57507,7 +57573,7 @@ type IpxeTemplateParameters struct { func (x *IpxeTemplateParameters) Reset() { *x = IpxeTemplateParameters{} - mi := &file_nico_nico_proto_msgTypes[833] + mi := &file_nico_nico_proto_msgTypes[834] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57519,7 +57585,7 @@ func (x *IpxeTemplateParameters) String() string { func (*IpxeTemplateParameters) ProtoMessage() {} func (x *IpxeTemplateParameters) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[833] + mi := &file_nico_nico_proto_msgTypes[834] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57532,7 +57598,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{833} + return file_nico_nico_proto_rawDescGZIP(), []int{834} } func (x *IpxeTemplateParameters) GetItems() []*IpxeTemplateParameter { @@ -57552,7 +57618,7 @@ type IpxeTemplateArtifacts struct { func (x *IpxeTemplateArtifacts) Reset() { *x = IpxeTemplateArtifacts{} - mi := &file_nico_nico_proto_msgTypes[834] + mi := &file_nico_nico_proto_msgTypes[835] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57564,7 +57630,7 @@ func (x *IpxeTemplateArtifacts) String() string { func (*IpxeTemplateArtifacts) ProtoMessage() {} func (x *IpxeTemplateArtifacts) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[834] + mi := &file_nico_nico_proto_msgTypes[835] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57577,7 +57643,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{834} + return file_nico_nico_proto_rawDescGZIP(), []int{835} } func (x *IpxeTemplateArtifacts) GetItems() []*IpxeTemplateArtifact { @@ -57607,7 +57673,7 @@ type UpdateOperatingSystemRequest struct { func (x *UpdateOperatingSystemRequest) Reset() { *x = UpdateOperatingSystemRequest{} - mi := &file_nico_nico_proto_msgTypes[835] + mi := &file_nico_nico_proto_msgTypes[836] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57619,7 +57685,7 @@ func (x *UpdateOperatingSystemRequest) String() string { func (*UpdateOperatingSystemRequest) ProtoMessage() {} func (x *UpdateOperatingSystemRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[835] + mi := &file_nico_nico_proto_msgTypes[836] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57632,7 +57698,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{835} + return file_nico_nico_proto_rawDescGZIP(), []int{836} } func (x *UpdateOperatingSystemRequest) GetId() *OperatingSystemId { @@ -57728,7 +57794,7 @@ type DeleteOperatingSystemRequest struct { func (x *DeleteOperatingSystemRequest) Reset() { *x = DeleteOperatingSystemRequest{} - mi := &file_nico_nico_proto_msgTypes[836] + mi := &file_nico_nico_proto_msgTypes[837] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57740,7 +57806,7 @@ func (x *DeleteOperatingSystemRequest) String() string { func (*DeleteOperatingSystemRequest) ProtoMessage() {} func (x *DeleteOperatingSystemRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[836] + mi := &file_nico_nico_proto_msgTypes[837] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57753,7 +57819,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{836} + return file_nico_nico_proto_rawDescGZIP(), []int{837} } func (x *DeleteOperatingSystemRequest) GetId() *OperatingSystemId { @@ -57771,7 +57837,7 @@ type DeleteOperatingSystemResponse struct { func (x *DeleteOperatingSystemResponse) Reset() { *x = DeleteOperatingSystemResponse{} - mi := &file_nico_nico_proto_msgTypes[837] + mi := &file_nico_nico_proto_msgTypes[838] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57783,7 +57849,7 @@ func (x *DeleteOperatingSystemResponse) String() string { func (*DeleteOperatingSystemResponse) ProtoMessage() {} func (x *DeleteOperatingSystemResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[837] + mi := &file_nico_nico_proto_msgTypes[838] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57796,7 +57862,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{837} + return file_nico_nico_proto_rawDescGZIP(), []int{838} } type OperatingSystemSearchFilter struct { @@ -57808,7 +57874,7 @@ type OperatingSystemSearchFilter struct { func (x *OperatingSystemSearchFilter) Reset() { *x = OperatingSystemSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[838] + mi := &file_nico_nico_proto_msgTypes[839] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57820,7 +57886,7 @@ func (x *OperatingSystemSearchFilter) String() string { func (*OperatingSystemSearchFilter) ProtoMessage() {} func (x *OperatingSystemSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[838] + mi := &file_nico_nico_proto_msgTypes[839] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57833,7 +57899,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{838} + return file_nico_nico_proto_rawDescGZIP(), []int{839} } func (x *OperatingSystemSearchFilter) GetTenantOrganizationId() string { @@ -57852,7 +57918,7 @@ type OperatingSystemIdList struct { func (x *OperatingSystemIdList) Reset() { *x = OperatingSystemIdList{} - mi := &file_nico_nico_proto_msgTypes[839] + mi := &file_nico_nico_proto_msgTypes[840] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57864,7 +57930,7 @@ func (x *OperatingSystemIdList) String() string { func (*OperatingSystemIdList) ProtoMessage() {} func (x *OperatingSystemIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[839] + mi := &file_nico_nico_proto_msgTypes[840] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57877,7 +57943,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{839} + return file_nico_nico_proto_rawDescGZIP(), []int{840} } func (x *OperatingSystemIdList) GetIds() []*OperatingSystemId { @@ -57896,7 +57962,7 @@ type OperatingSystemsByIdsRequest struct { func (x *OperatingSystemsByIdsRequest) Reset() { *x = OperatingSystemsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[840] + mi := &file_nico_nico_proto_msgTypes[841] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57908,7 +57974,7 @@ func (x *OperatingSystemsByIdsRequest) String() string { func (*OperatingSystemsByIdsRequest) ProtoMessage() {} func (x *OperatingSystemsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[840] + mi := &file_nico_nico_proto_msgTypes[841] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57921,7 +57987,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{840} + return file_nico_nico_proto_rawDescGZIP(), []int{841} } func (x *OperatingSystemsByIdsRequest) GetIds() []*OperatingSystemId { @@ -57940,7 +58006,7 @@ type OperatingSystemList struct { func (x *OperatingSystemList) Reset() { *x = OperatingSystemList{} - mi := &file_nico_nico_proto_msgTypes[841] + mi := &file_nico_nico_proto_msgTypes[842] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57952,7 +58018,7 @@ func (x *OperatingSystemList) String() string { func (*OperatingSystemList) ProtoMessage() {} func (x *OperatingSystemList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[841] + mi := &file_nico_nico_proto_msgTypes[842] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57965,7 +58031,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{841} + return file_nico_nico_proto_rawDescGZIP(), []int{842} } func (x *OperatingSystemList) GetOperatingSystems() []*OperatingSystem { @@ -57984,7 +58050,7 @@ type GetOperatingSystemCachableIpxeTemplateArtifactsRequest struct { func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) Reset() { *x = GetOperatingSystemCachableIpxeTemplateArtifactsRequest{} - mi := &file_nico_nico_proto_msgTypes[842] + mi := &file_nico_nico_proto_msgTypes[843] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57996,7 +58062,7 @@ func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) String() string func (*GetOperatingSystemCachableIpxeTemplateArtifactsRequest) ProtoMessage() {} func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[842] + mi := &file_nico_nico_proto_msgTypes[843] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58009,7 +58075,7 @@ func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) ProtoReflect() // Deprecated: Use GetOperatingSystemCachableIpxeTemplateArtifactsRequest.ProtoReflect.Descriptor instead. func (*GetOperatingSystemCachableIpxeTemplateArtifactsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{842} + return file_nico_nico_proto_rawDescGZIP(), []int{843} } func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) GetId() *OperatingSystemId { @@ -58028,7 +58094,7 @@ type IpxeTemplateArtifactList struct { func (x *IpxeTemplateArtifactList) Reset() { *x = IpxeTemplateArtifactList{} - mi := &file_nico_nico_proto_msgTypes[843] + mi := &file_nico_nico_proto_msgTypes[844] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58040,7 +58106,7 @@ func (x *IpxeTemplateArtifactList) String() string { func (*IpxeTemplateArtifactList) ProtoMessage() {} func (x *IpxeTemplateArtifactList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[843] + mi := &file_nico_nico_proto_msgTypes[844] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58053,7 +58119,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{843} + return file_nico_nico_proto_rawDescGZIP(), []int{844} } func (x *IpxeTemplateArtifactList) GetArtifacts() []*IpxeTemplateArtifact { @@ -58075,7 +58141,7 @@ type IpxeTemplateArtifactUpdateRequest struct { func (x *IpxeTemplateArtifactUpdateRequest) Reset() { *x = IpxeTemplateArtifactUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[844] + mi := &file_nico_nico_proto_msgTypes[845] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58087,7 +58153,7 @@ func (x *IpxeTemplateArtifactUpdateRequest) String() string { func (*IpxeTemplateArtifactUpdateRequest) ProtoMessage() {} func (x *IpxeTemplateArtifactUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[844] + mi := &file_nico_nico_proto_msgTypes[845] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58100,7 +58166,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{844} + return file_nico_nico_proto_rawDescGZIP(), []int{845} } func (x *IpxeTemplateArtifactUpdateRequest) GetName() string { @@ -58127,7 +58193,7 @@ type UpdateOperatingSystemIpxeTemplateArtifactRequest struct { func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) Reset() { *x = UpdateOperatingSystemIpxeTemplateArtifactRequest{} - mi := &file_nico_nico_proto_msgTypes[845] + mi := &file_nico_nico_proto_msgTypes[846] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58139,7 +58205,7 @@ func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) String() string { func (*UpdateOperatingSystemIpxeTemplateArtifactRequest) ProtoMessage() {} func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[845] + mi := &file_nico_nico_proto_msgTypes[846] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58152,7 +58218,7 @@ func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) ProtoReflect() protor // Deprecated: Use UpdateOperatingSystemIpxeTemplateArtifactRequest.ProtoReflect.Descriptor instead. func (*UpdateOperatingSystemIpxeTemplateArtifactRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{845} + return file_nico_nico_proto_rawDescGZIP(), []int{846} } func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) GetId() *OperatingSystemId { @@ -58179,7 +58245,7 @@ type HostRepresentorInterceptBridging struct { func (x *HostRepresentorInterceptBridging) Reset() { *x = HostRepresentorInterceptBridging{} - mi := &file_nico_nico_proto_msgTypes[846] + mi := &file_nico_nico_proto_msgTypes[847] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58191,7 +58257,7 @@ func (x *HostRepresentorInterceptBridging) String() string { func (*HostRepresentorInterceptBridging) ProtoMessage() {} func (x *HostRepresentorInterceptBridging) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[846] + mi := &file_nico_nico_proto_msgTypes[847] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58204,7 +58270,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{846} + return file_nico_nico_proto_rawDescGZIP(), []int{847} } func (x *HostRepresentorInterceptBridging) GetBridge() string { @@ -58235,7 +58301,7 @@ type ReWrapSecretsRequest struct { func (x *ReWrapSecretsRequest) Reset() { *x = ReWrapSecretsRequest{} - mi := &file_nico_nico_proto_msgTypes[847] + mi := &file_nico_nico_proto_msgTypes[848] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58247,7 +58313,7 @@ func (x *ReWrapSecretsRequest) String() string { func (*ReWrapSecretsRequest) ProtoMessage() {} func (x *ReWrapSecretsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[847] + mi := &file_nico_nico_proto_msgTypes[848] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58260,7 +58326,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{847} + return file_nico_nico_proto_rawDescGZIP(), []int{848} } func (x *ReWrapSecretsRequest) GetBatchSize() uint32 { @@ -58287,7 +58353,7 @@ type ReWrapSecretsResponse struct { func (x *ReWrapSecretsResponse) Reset() { *x = ReWrapSecretsResponse{} - mi := &file_nico_nico_proto_msgTypes[848] + mi := &file_nico_nico_proto_msgTypes[849] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58299,7 +58365,7 @@ func (x *ReWrapSecretsResponse) String() string { func (*ReWrapSecretsResponse) ProtoMessage() {} func (x *ReWrapSecretsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[848] + mi := &file_nico_nico_proto_msgTypes[849] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58312,7 +58378,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{848} + return file_nico_nico_proto_rawDescGZIP(), []int{849} } func (x *ReWrapSecretsResponse) GetReWrapped() uint64 { @@ -58345,7 +58411,7 @@ type GetMachineBootInterfacesRequest struct { func (x *GetMachineBootInterfacesRequest) Reset() { *x = GetMachineBootInterfacesRequest{} - mi := &file_nico_nico_proto_msgTypes[849] + mi := &file_nico_nico_proto_msgTypes[850] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58357,7 +58423,7 @@ func (x *GetMachineBootInterfacesRequest) String() string { func (*GetMachineBootInterfacesRequest) ProtoMessage() {} func (x *GetMachineBootInterfacesRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[849] + mi := &file_nico_nico_proto_msgTypes[850] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58370,7 +58436,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{849} + return file_nico_nico_proto_rawDescGZIP(), []int{850} } func (x *GetMachineBootInterfacesRequest) GetMachineId() *MachineId { @@ -58398,7 +58464,7 @@ type MachineInterfaceBootInterface struct { func (x *MachineInterfaceBootInterface) Reset() { *x = MachineInterfaceBootInterface{} - mi := &file_nico_nico_proto_msgTypes[850] + mi := &file_nico_nico_proto_msgTypes[851] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58410,7 +58476,7 @@ func (x *MachineInterfaceBootInterface) String() string { func (*MachineInterfaceBootInterface) ProtoMessage() {} func (x *MachineInterfaceBootInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[850] + mi := &file_nico_nico_proto_msgTypes[851] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58423,7 +58489,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{850} + return file_nico_nico_proto_rawDescGZIP(), []int{851} } func (x *MachineInterfaceBootInterface) GetMacAddress() string { @@ -58469,7 +58535,7 @@ type PredictedBootInterface struct { func (x *PredictedBootInterface) Reset() { *x = PredictedBootInterface{} - mi := &file_nico_nico_proto_msgTypes[851] + mi := &file_nico_nico_proto_msgTypes[852] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58481,7 +58547,7 @@ func (x *PredictedBootInterface) String() string { func (*PredictedBootInterface) ProtoMessage() {} func (x *PredictedBootInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[851] + mi := &file_nico_nico_proto_msgTypes[852] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58494,7 +58560,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{851} + return file_nico_nico_proto_rawDescGZIP(), []int{852} } func (x *PredictedBootInterface) GetMacAddress() string { @@ -58539,7 +58605,7 @@ type ExploredBootInterface struct { func (x *ExploredBootInterface) Reset() { *x = ExploredBootInterface{} - mi := &file_nico_nico_proto_msgTypes[852] + mi := &file_nico_nico_proto_msgTypes[853] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58551,7 +58617,7 @@ func (x *ExploredBootInterface) String() string { func (*ExploredBootInterface) ProtoMessage() {} func (x *ExploredBootInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[852] + mi := &file_nico_nico_proto_msgTypes[853] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58564,7 +58630,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{852} + return file_nico_nico_proto_rawDescGZIP(), []int{853} } func (x *ExploredBootInterface) GetAddress() string { @@ -58602,7 +58668,7 @@ type RetainedBootInterface struct { func (x *RetainedBootInterface) Reset() { *x = RetainedBootInterface{} - mi := &file_nico_nico_proto_msgTypes[853] + mi := &file_nico_nico_proto_msgTypes[854] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58614,7 +58680,7 @@ func (x *RetainedBootInterface) String() string { func (*RetainedBootInterface) ProtoMessage() {} func (x *RetainedBootInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[853] + mi := &file_nico_nico_proto_msgTypes[854] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58627,7 +58693,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{853} + return file_nico_nico_proto_rawDescGZIP(), []int{854} } func (x *RetainedBootInterface) GetMacAddress() string { @@ -58677,7 +58743,7 @@ type GetMachineBootInterfacesResponse struct { func (x *GetMachineBootInterfacesResponse) Reset() { *x = GetMachineBootInterfacesResponse{} - mi := &file_nico_nico_proto_msgTypes[854] + mi := &file_nico_nico_proto_msgTypes[855] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58689,7 +58755,7 @@ func (x *GetMachineBootInterfacesResponse) String() string { func (*GetMachineBootInterfacesResponse) ProtoMessage() {} func (x *GetMachineBootInterfacesResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[854] + mi := &file_nico_nico_proto_msgTypes[855] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58702,7 +58768,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{854} + return file_nico_nico_proto_rawDescGZIP(), []int{855} } func (x *GetMachineBootInterfacesResponse) GetMachineId() *MachineId { @@ -58772,7 +58838,7 @@ type DNSMessage_DNSQuestion struct { func (x *DNSMessage_DNSQuestion) Reset() { *x = DNSMessage_DNSQuestion{} - mi := &file_nico_nico_proto_msgTypes[856] + mi := &file_nico_nico_proto_msgTypes[857] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58784,7 +58850,7 @@ func (x *DNSMessage_DNSQuestion) String() string { func (*DNSMessage_DNSQuestion) ProtoMessage() {} func (x *DNSMessage_DNSQuestion) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[856] + mi := &file_nico_nico_proto_msgTypes[857] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58830,7 +58896,7 @@ type DNSMessage_DNSResponse struct { func (x *DNSMessage_DNSResponse) Reset() { *x = DNSMessage_DNSResponse{} - mi := &file_nico_nico_proto_msgTypes[857] + mi := &file_nico_nico_proto_msgTypes[858] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58842,7 +58908,7 @@ func (x *DNSMessage_DNSResponse) String() string { func (*DNSMessage_DNSResponse) ProtoMessage() {} func (x *DNSMessage_DNSResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[857] + mi := &file_nico_nico_proto_msgTypes[858] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58874,7 +58940,7 @@ type DNSMessage_DNSResponse_DNSRR struct { func (x *DNSMessage_DNSResponse_DNSRR) Reset() { *x = DNSMessage_DNSResponse_DNSRR{} - mi := &file_nico_nico_proto_msgTypes[858] + mi := &file_nico_nico_proto_msgTypes[859] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58886,7 +58952,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[858] + mi := &file_nico_nico_proto_msgTypes[859] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58920,7 +58986,7 @@ type MachineCredentialsUpdateRequest_Credentials struct { func (x *MachineCredentialsUpdateRequest_Credentials) Reset() { *x = MachineCredentialsUpdateRequest_Credentials{} - mi := &file_nico_nico_proto_msgTypes[864] + mi := &file_nico_nico_proto_msgTypes[865] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58932,7 +58998,7 @@ func (x *MachineCredentialsUpdateRequest_Credentials) String() string { func (*MachineCredentialsUpdateRequest_Credentials) ProtoMessage() {} func (x *MachineCredentialsUpdateRequest_Credentials) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[864] + mi := &file_nico_nico_proto_msgTypes[865] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58945,7 +59011,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{332, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{333, 0} } func (x *MachineCredentialsUpdateRequest_Credentials) GetUser() string { @@ -58979,7 +59045,7 @@ type ForgeAgentControlResponse_ForgeAgentControlExtraInfo struct { func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo) Reset() { *x = ForgeAgentControlResponse_ForgeAgentControlExtraInfo{} - mi := &file_nico_nico_proto_msgTypes[865] + mi := &file_nico_nico_proto_msgTypes[866] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58991,7 +59057,7 @@ func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo) String() string { func (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo) ProtoMessage() {} func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[865] + mi := &file_nico_nico_proto_msgTypes[866] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59004,7 +59070,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{335, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 0} } func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo) GetPair() []*ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair { @@ -59022,7 +59088,7 @@ type ForgeAgentControlResponse_Noop struct { func (x *ForgeAgentControlResponse_Noop) Reset() { *x = ForgeAgentControlResponse_Noop{} - mi := &file_nico_nico_proto_msgTypes[866] + mi := &file_nico_nico_proto_msgTypes[867] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59034,7 +59100,7 @@ func (x *ForgeAgentControlResponse_Noop) String() string { func (*ForgeAgentControlResponse_Noop) ProtoMessage() {} func (x *ForgeAgentControlResponse_Noop) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[866] + mi := &file_nico_nico_proto_msgTypes[867] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59047,7 +59113,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{335, 1} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 1} } type ForgeAgentControlResponse_Reset struct { @@ -59058,7 +59124,7 @@ type ForgeAgentControlResponse_Reset struct { func (x *ForgeAgentControlResponse_Reset) Reset() { *x = ForgeAgentControlResponse_Reset{} - mi := &file_nico_nico_proto_msgTypes[867] + mi := &file_nico_nico_proto_msgTypes[868] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59070,7 +59136,7 @@ func (x *ForgeAgentControlResponse_Reset) String() string { func (*ForgeAgentControlResponse_Reset) ProtoMessage() {} func (x *ForgeAgentControlResponse_Reset) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[867] + mi := &file_nico_nico_proto_msgTypes[868] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59083,7 +59149,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{335, 2} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 2} } type ForgeAgentControlResponse_Discovery struct { @@ -59094,7 +59160,7 @@ type ForgeAgentControlResponse_Discovery struct { func (x *ForgeAgentControlResponse_Discovery) Reset() { *x = ForgeAgentControlResponse_Discovery{} - mi := &file_nico_nico_proto_msgTypes[868] + mi := &file_nico_nico_proto_msgTypes[869] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59106,7 +59172,7 @@ func (x *ForgeAgentControlResponse_Discovery) String() string { func (*ForgeAgentControlResponse_Discovery) ProtoMessage() {} func (x *ForgeAgentControlResponse_Discovery) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[868] + mi := &file_nico_nico_proto_msgTypes[869] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59119,7 +59185,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{335, 3} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 3} } type ForgeAgentControlResponse_Rebuild struct { @@ -59130,7 +59196,7 @@ type ForgeAgentControlResponse_Rebuild struct { func (x *ForgeAgentControlResponse_Rebuild) Reset() { *x = ForgeAgentControlResponse_Rebuild{} - mi := &file_nico_nico_proto_msgTypes[869] + mi := &file_nico_nico_proto_msgTypes[870] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59142,7 +59208,7 @@ func (x *ForgeAgentControlResponse_Rebuild) String() string { func (*ForgeAgentControlResponse_Rebuild) ProtoMessage() {} func (x *ForgeAgentControlResponse_Rebuild) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[869] + mi := &file_nico_nico_proto_msgTypes[870] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59155,7 +59221,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{335, 4} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 4} } type ForgeAgentControlResponse_Retry struct { @@ -59166,7 +59232,7 @@ type ForgeAgentControlResponse_Retry struct { func (x *ForgeAgentControlResponse_Retry) Reset() { *x = ForgeAgentControlResponse_Retry{} - mi := &file_nico_nico_proto_msgTypes[870] + mi := &file_nico_nico_proto_msgTypes[871] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59178,7 +59244,7 @@ func (x *ForgeAgentControlResponse_Retry) String() string { func (*ForgeAgentControlResponse_Retry) ProtoMessage() {} func (x *ForgeAgentControlResponse_Retry) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[870] + mi := &file_nico_nico_proto_msgTypes[871] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59191,7 +59257,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{335, 5} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 5} } type ForgeAgentControlResponse_Measure struct { @@ -59202,7 +59268,7 @@ type ForgeAgentControlResponse_Measure struct { func (x *ForgeAgentControlResponse_Measure) Reset() { *x = ForgeAgentControlResponse_Measure{} - mi := &file_nico_nico_proto_msgTypes[871] + mi := &file_nico_nico_proto_msgTypes[872] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59214,7 +59280,7 @@ func (x *ForgeAgentControlResponse_Measure) String() string { func (*ForgeAgentControlResponse_Measure) ProtoMessage() {} func (x *ForgeAgentControlResponse_Measure) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[871] + mi := &file_nico_nico_proto_msgTypes[872] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59227,7 +59293,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{335, 6} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 6} } type ForgeAgentControlResponse_LogError struct { @@ -59238,7 +59304,7 @@ type ForgeAgentControlResponse_LogError struct { func (x *ForgeAgentControlResponse_LogError) Reset() { *x = ForgeAgentControlResponse_LogError{} - mi := &file_nico_nico_proto_msgTypes[872] + mi := &file_nico_nico_proto_msgTypes[873] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59250,7 +59316,7 @@ func (x *ForgeAgentControlResponse_LogError) String() string { func (*ForgeAgentControlResponse_LogError) ProtoMessage() {} func (x *ForgeAgentControlResponse_LogError) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[872] + mi := &file_nico_nico_proto_msgTypes[873] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59263,7 +59329,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{335, 7} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 7} } type ForgeAgentControlResponse_MachineValidation struct { @@ -59278,7 +59344,7 @@ type ForgeAgentControlResponse_MachineValidation struct { func (x *ForgeAgentControlResponse_MachineValidation) Reset() { *x = ForgeAgentControlResponse_MachineValidation{} - mi := &file_nico_nico_proto_msgTypes[873] + mi := &file_nico_nico_proto_msgTypes[874] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59290,7 +59356,7 @@ func (x *ForgeAgentControlResponse_MachineValidation) String() string { func (*ForgeAgentControlResponse_MachineValidation) ProtoMessage() {} func (x *ForgeAgentControlResponse_MachineValidation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[873] + mi := &file_nico_nico_proto_msgTypes[874] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59303,7 +59369,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{335, 8} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 8} } func (x *ForgeAgentControlResponse_MachineValidation) GetIsEnabled() bool { @@ -59346,7 +59412,7 @@ type ForgeAgentControlResponse_MachineValidationFilter struct { func (x *ForgeAgentControlResponse_MachineValidationFilter) Reset() { *x = ForgeAgentControlResponse_MachineValidationFilter{} - mi := &file_nico_nico_proto_msgTypes[874] + mi := &file_nico_nico_proto_msgTypes[875] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59358,7 +59424,7 @@ func (x *ForgeAgentControlResponse_MachineValidationFilter) String() string { func (*ForgeAgentControlResponse_MachineValidationFilter) ProtoMessage() {} func (x *ForgeAgentControlResponse_MachineValidationFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[874] + mi := &file_nico_nico_proto_msgTypes[875] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59371,7 +59437,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{335, 9} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 9} } func (x *ForgeAgentControlResponse_MachineValidationFilter) GetTags() []string { @@ -59411,7 +59477,7 @@ type ForgeAgentControlResponse_MlxAction struct { func (x *ForgeAgentControlResponse_MlxAction) Reset() { *x = ForgeAgentControlResponse_MlxAction{} - mi := &file_nico_nico_proto_msgTypes[875] + mi := &file_nico_nico_proto_msgTypes[876] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59423,7 +59489,7 @@ func (x *ForgeAgentControlResponse_MlxAction) String() string { func (*ForgeAgentControlResponse_MlxAction) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxAction) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[875] + mi := &file_nico_nico_proto_msgTypes[876] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59436,7 +59502,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{335, 10} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 10} } func (x *ForgeAgentControlResponse_MlxAction) GetDeviceActions() []*ForgeAgentControlResponse_MlxDeviceAction { @@ -59463,7 +59529,7 @@ type ForgeAgentControlResponse_MlxDeviceAction struct { func (x *ForgeAgentControlResponse_MlxDeviceAction) Reset() { *x = ForgeAgentControlResponse_MlxDeviceAction{} - mi := &file_nico_nico_proto_msgTypes[876] + mi := &file_nico_nico_proto_msgTypes[877] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59475,7 +59541,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceAction) String() string { func (*ForgeAgentControlResponse_MlxDeviceAction) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceAction) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[876] + mi := &file_nico_nico_proto_msgTypes[877] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59488,7 +59554,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{335, 11} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 11} } func (x *ForgeAgentControlResponse_MlxDeviceAction) GetPciName() string { @@ -59597,7 +59663,7 @@ type ForgeAgentControlResponse_MlxDeviceNoop struct { func (x *ForgeAgentControlResponse_MlxDeviceNoop) Reset() { *x = ForgeAgentControlResponse_MlxDeviceNoop{} - mi := &file_nico_nico_proto_msgTypes[877] + mi := &file_nico_nico_proto_msgTypes[878] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59609,7 +59675,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceNoop) String() string { func (*ForgeAgentControlResponse_MlxDeviceNoop) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceNoop) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[877] + mi := &file_nico_nico_proto_msgTypes[878] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59622,7 +59688,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{335, 12} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 12} } type ForgeAgentControlResponse_MlxDeviceLock struct { @@ -59634,7 +59700,7 @@ type ForgeAgentControlResponse_MlxDeviceLock struct { func (x *ForgeAgentControlResponse_MlxDeviceLock) Reset() { *x = ForgeAgentControlResponse_MlxDeviceLock{} - mi := &file_nico_nico_proto_msgTypes[878] + mi := &file_nico_nico_proto_msgTypes[879] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59646,7 +59712,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceLock) String() string { func (*ForgeAgentControlResponse_MlxDeviceLock) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceLock) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[878] + mi := &file_nico_nico_proto_msgTypes[879] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59659,7 +59725,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{335, 13} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 13} } func (x *ForgeAgentControlResponse_MlxDeviceLock) GetKey() string { @@ -59678,7 +59744,7 @@ type ForgeAgentControlResponse_MlxDeviceUnlock struct { func (x *ForgeAgentControlResponse_MlxDeviceUnlock) Reset() { *x = ForgeAgentControlResponse_MlxDeviceUnlock{} - mi := &file_nico_nico_proto_msgTypes[879] + mi := &file_nico_nico_proto_msgTypes[880] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59690,7 +59756,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceUnlock) String() string { func (*ForgeAgentControlResponse_MlxDeviceUnlock) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceUnlock) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[879] + mi := &file_nico_nico_proto_msgTypes[880] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59703,7 +59769,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{335, 14} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 14} } func (x *ForgeAgentControlResponse_MlxDeviceUnlock) GetKey() string { @@ -59722,7 +59788,7 @@ type ForgeAgentControlResponse_MlxDeviceApplyProfile struct { func (x *ForgeAgentControlResponse_MlxDeviceApplyProfile) Reset() { *x = ForgeAgentControlResponse_MlxDeviceApplyProfile{} - mi := &file_nico_nico_proto_msgTypes[880] + mi := &file_nico_nico_proto_msgTypes[881] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59734,7 +59800,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceApplyProfile) String() string { func (*ForgeAgentControlResponse_MlxDeviceApplyProfile) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceApplyProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[880] + mi := &file_nico_nico_proto_msgTypes[881] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59747,7 +59813,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{335, 15} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 15} } func (x *ForgeAgentControlResponse_MlxDeviceApplyProfile) GetSerializedProfile() *SerializableMlxConfigProfile { @@ -59766,7 +59832,7 @@ type ForgeAgentControlResponse_MlxDeviceApplyFirmware struct { func (x *ForgeAgentControlResponse_MlxDeviceApplyFirmware) Reset() { *x = ForgeAgentControlResponse_MlxDeviceApplyFirmware{} - mi := &file_nico_nico_proto_msgTypes[881] + mi := &file_nico_nico_proto_msgTypes[882] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59778,7 +59844,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceApplyFirmware) String() string { func (*ForgeAgentControlResponse_MlxDeviceApplyFirmware) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceApplyFirmware) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[881] + mi := &file_nico_nico_proto_msgTypes[882] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59791,7 +59857,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{335, 16} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 16} } func (x *ForgeAgentControlResponse_MlxDeviceApplyFirmware) GetProfile() *FirmwareFlasherProfile { @@ -59810,7 +59876,7 @@ type ForgeAgentControlResponse_FirmwareUpgrade struct { func (x *ForgeAgentControlResponse_FirmwareUpgrade) Reset() { *x = ForgeAgentControlResponse_FirmwareUpgrade{} - mi := &file_nico_nico_proto_msgTypes[882] + mi := &file_nico_nico_proto_msgTypes[883] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59822,7 +59888,7 @@ func (x *ForgeAgentControlResponse_FirmwareUpgrade) String() string { func (*ForgeAgentControlResponse_FirmwareUpgrade) ProtoMessage() {} func (x *ForgeAgentControlResponse_FirmwareUpgrade) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[882] + mi := &file_nico_nico_proto_msgTypes[883] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59835,7 +59901,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{335, 17} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 17} } func (x *ForgeAgentControlResponse_FirmwareUpgrade) GetTask() *ScoutFirmwareUpgradeTask { @@ -59855,7 +59921,7 @@ type ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair struct { func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair) Reset() { *x = ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair{} - mi := &file_nico_nico_proto_msgTypes[883] + mi := &file_nico_nico_proto_msgTypes[884] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59867,7 +59933,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[883] + mi := &file_nico_nico_proto_msgTypes[884] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59880,7 +59946,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{335, 0, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{336, 0, 0} } func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair) GetKey() string { @@ -59908,7 +59974,7 @@ type MachineCleanupInfo_CleanupStepResult struct { func (x *MachineCleanupInfo_CleanupStepResult) Reset() { *x = MachineCleanupInfo_CleanupStepResult{} - mi := &file_nico_nico_proto_msgTypes[884] + mi := &file_nico_nico_proto_msgTypes[885] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59920,7 +59986,7 @@ func (x *MachineCleanupInfo_CleanupStepResult) String() string { func (*MachineCleanupInfo_CleanupStepResult) ProtoMessage() {} func (x *MachineCleanupInfo_CleanupStepResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[884] + mi := &file_nico_nico_proto_msgTypes[885] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59933,7 +59999,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{338, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{339, 0} } func (x *MachineCleanupInfo_CleanupStepResult) GetResult() MachineCleanupInfo_CleanupResult { @@ -59965,7 +60031,7 @@ type DpuReprovisioningListResponse_DpuReprovisioningListItem struct { func (x *DpuReprovisioningListResponse_DpuReprovisioningListItem) Reset() { *x = DpuReprovisioningListResponse_DpuReprovisioningListItem{} - mi := &file_nico_nico_proto_msgTypes[885] + mi := &file_nico_nico_proto_msgTypes[886] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59977,7 +60043,7 @@ func (x *DpuReprovisioningListResponse_DpuReprovisioningListItem) String() strin func (*DpuReprovisioningListResponse_DpuReprovisioningListItem) ProtoMessage() {} func (x *DpuReprovisioningListResponse_DpuReprovisioningListItem) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[885] + mi := &file_nico_nico_proto_msgTypes[886] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59990,7 +60056,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{420, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{421, 0} } func (x *DpuReprovisioningListResponse_DpuReprovisioningListItem) GetId() *MachineId { @@ -60056,7 +60122,7 @@ type HostReprovisioningListResponse_HostReprovisioningListItem struct { func (x *HostReprovisioningListResponse_HostReprovisioningListItem) Reset() { *x = HostReprovisioningListResponse_HostReprovisioningListItem{} - mi := &file_nico_nico_proto_msgTypes[886] + mi := &file_nico_nico_proto_msgTypes[887] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60068,7 +60134,7 @@ func (x *HostReprovisioningListResponse_HostReprovisioningListItem) String() str func (*HostReprovisioningListResponse_HostReprovisioningListItem) ProtoMessage() {} func (x *HostReprovisioningListResponse_HostReprovisioningListItem) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[886] + mi := &file_nico_nico_proto_msgTypes[887] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60081,7 +60147,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{423, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{424, 0} } func (x *HostReprovisioningListResponse_HostReprovisioningListItem) GetId() *MachineId { @@ -60152,7 +60218,7 @@ type MachineValidationTestUpdateRequest_Payload struct { func (x *MachineValidationTestUpdateRequest_Payload) Reset() { *x = MachineValidationTestUpdateRequest_Payload{} - mi := &file_nico_nico_proto_msgTypes[887] + mi := &file_nico_nico_proto_msgTypes[888] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60164,7 +60230,7 @@ func (x *MachineValidationTestUpdateRequest_Payload) String() string { func (*MachineValidationTestUpdateRequest_Payload) ProtoMessage() {} func (x *MachineValidationTestUpdateRequest_Payload) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[887] + mi := &file_nico_nico_proto_msgTypes[888] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60177,7 +60243,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{519, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{520, 0} } func (x *MachineValidationTestUpdateRequest_Payload) GetName() string { @@ -60317,7 +60383,7 @@ type DPFStateResponse_DPFState struct { func (x *DPFStateResponse_DPFState) Reset() { *x = DPFStateResponse_DPFState{} - mi := &file_nico_nico_proto_msgTypes[893] + mi := &file_nico_nico_proto_msgTypes[894] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60329,7 +60395,7 @@ func (x *DPFStateResponse_DPFState) String() string { func (*DPFStateResponse_DPFState) ProtoMessage() {} func (x *DPFStateResponse_DPFState) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[893] + mi := &file_nico_nico_proto_msgTypes[894] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60342,7 +60408,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{789, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{790, 0} } func (x *DPFStateResponse_DPFState) GetMachineId() *MachineId { @@ -61812,7 +61878,7 @@ const file_nico_nico_proto_rawDesc = "" + "\x04port\x18\x03 \x01(\rH\x02R\x04port\x88\x01\x01B\x05\n" + "\x03_ipB\x06\n" + "\x04_macB\a\n" + - "\x05_port\"\xce\x18\n" + + "\x05_port\"\x9b\x19\n" + "\aMachine\x12!\n" + "\x02id\x18\x01 \x01(\v2\x11.common.MachineIdR\x02id\x12\x14\n" + "\x05state\x18\a \x01(\tR\x05state\x12#\n" + @@ -61860,7 +61926,8 @@ const file_nico_nico_proto_rawDesc = "" + "\x11placement_in_rack\x18. \x01(\v2\x16.forge.PlacementInRackH\x15R\x0fplacementInRack\x88\x01\x01\x12]\n" + "\x16spx_status_observation\x18/ \x01(\v2\".forge.MachineSpxStatusObservationH\x16R\x14spxStatusObservation\x88\x01\x01\x12B\n" + "\x1blast_scout_observed_version\x180 \x01(\tH\x17R\x18lastScoutObservedVersion\x88\x01\x01\x12-\n" + - "\x03dpf\x181 \x01(\v2\x16.forge.DpfMachineStateH\x18R\x03dpf\x88\x01\x01B\x0f\n" + + "\x03dpf\x181 \x01(\v2\x16.forge.DpfMachineStateH\x18R\x03dpf\x88\x01\x01\x123\n" + + "\x13bmc_vendor_override\x182 \x01(\tH\x19R\x11bmcVendorOverride\x88\x01\x01B\x0f\n" + "\r_state_reasonB\x11\n" + "\x0f_discovery_infoB\x18\n" + "\x16_maintenance_referenceB\x19\n" + @@ -61888,7 +61955,8 @@ const file_nico_nico_proto_rawDesc = "" + "\x12_placement_in_rackB\x19\n" + "\x17_spx_status_observationB\x1e\n" + "\x1c_last_scout_observed_versionB\x06\n" + - "\x04_dpfJ\x04\b\x04\x10\x05J\x04\b\x05\x10\x06J\x04\b\x06\x10\aJ\x04\b\x0f\x10\x10J\x04\b\x14\x10\x15\"Y\n" + + "\x04_dpfB\x16\n" + + "\x14_bmc_vendor_overrideJ\x04\b\x04\x10\x05J\x04\b\x05\x10\x06J\x04\b\x06\x10\aJ\x04\b\x0f\x10\x10J\x04\b\x14\x10\x15\"Y\n" + "\x0fDpfMachineState\x12\x18\n" + "\aenabled\x18\x01 \x01(\bR\aenabled\x12,\n" + "\x12used_for_ingestion\x18\x02 \x01(\bR\x10usedForIngestion\"\xdb\x01\n" + @@ -61900,7 +61968,12 @@ const file_nico_nico_proto_rawDesc = "" + "machine_id\x18\x01 \x01(\v2\x11.common.MachineIdR\tmachineId\x12-\n" + "\x10if_version_match\x18\x02 \x01(\tH\x00R\x0eifVersionMatch\x88\x01\x01\x12+\n" + "\bmetadata\x18\x03 \x01(\v2\x0f.forge.MetadataR\bmetadataB\x13\n" + - "\x11_if_version_match\"\xb5\x01\n" + + "\x11_if_version_match\"\xa6\x01\n" + + "%MachineBmcVendorOverrideUpdateRequest\x120\n" + + "\n" + + "machine_id\x18\x01 \x01(\v2\x11.common.MachineIdR\tmachineId\x123\n" + + "\x13bmc_vendor_override\x18\x02 \x01(\tH\x00R\x11bmcVendorOverride\x88\x01\x01B\x16\n" + + "\x14_bmc_vendor_override\"\xb5\x01\n" + "\x19RackMetadataUpdateRequest\x12'\n" + "\arack_id\x18\x01 \x01(\v2\x0e.common.RackIdR\x06rackId\x12-\n" + "\x10if_version_match\x18\x02 \x01(\tH\x00R\x0eifVersionMatch\x88\x01\x01\x12+\n" + @@ -65738,7 +65811,7 @@ const file_nico_nico_proto_rawDesc = "" + "\x13OperatingSystemType\x12\x17\n" + "\x13OS_TYPE_UNSPECIFIED\x10\x00\x12\x10\n" + "\fOS_TYPE_IPXE\x10\x01\x12\x1a\n" + - "\x16OS_TYPE_TEMPLATED_IPXE\x10\x022\x82\xd2\x02\n" + + "\x16OS_TYPE_TEMPLATED_IPXE\x10\x022\xea\xd2\x02\n" + "\x05Forge\x122\n" + "\aVersion\x12\x15.forge.VersionRequest\x1a\x10.forge.BuildInfo\x125\n" + "\fCreateDomain\x12\x18.dns.CreateDomainRequest\x1a\v.dns.Domain\x125\n" + @@ -65900,7 +65973,8 @@ const file_nico_nico_proto_rawDesc = "" + "\x17AdminForceDeleteMachine\x12%.forge.AdminForceDeleteMachineRequest\x1a&.forge.AdminForceDeleteMachineResponse\x12O\n" + "\x16AdminListResourcePools\x12\x1f.forge.ListResourcePoolsRequest\x1a\x14.forge.ResourcePools\x12X\n" + "\x15AdminGrowResourcePool\x12\x1e.forge.GrowResourcePoolRequest\x1a\x1f.forge.GrowResourcePoolResponse\x12T\n" + - "\x15UpdateMachineMetadata\x12#.forge.MachineMetadataUpdateRequest\x1a\x16.google.protobuf.Empty\x12N\n" + + "\x15UpdateMachineMetadata\x12#.forge.MachineMetadataUpdateRequest\x1a\x16.google.protobuf.Empty\x12f\n" + + "\x1eUpdateMachineBmcVendorOverride\x12,.forge.MachineBmcVendorOverrideUpdateRequest\x1a\x16.google.protobuf.Empty\x12N\n" + "\x12UpdateRackMetadata\x12 .forge.RackMetadataUpdateRequest\x1a\x16.google.protobuf.Empty\x12R\n" + "\x14UpdateSwitchMetadata\x12\".forge.SwitchMetadataUpdateRequest\x1a\x16.google.protobuf.Empty\x12Z\n" + "\x18UpdatePowerShelfMetadata\x12&.forge.PowerShelfMetadataUpdateRequest\x1a\x16.google.protobuf.Empty\x12X\n" + @@ -66229,7 +66303,7 @@ func file_nico_nico_proto_rawDescGZIP() []byte { } var file_nico_nico_proto_enumTypes = make([]protoimpl.EnumInfo, 91) -var file_nico_nico_proto_msgTypes = make([]protoimpl.MessageInfo, 894) +var file_nico_nico_proto_msgTypes = make([]protoimpl.MessageInfo, 895) var file_nico_nico_proto_goTypes = []any{ (SpdmAttestationStatus)(0), // 0: forge.SpdmAttestationStatus (SpdmListAttestationMachinesRequestSelector)(0), // 1: forge.SpdmListAttestationMachinesRequestSelector @@ -66571,1084 +66645,1085 @@ var file_nico_nico_proto_goTypes = []any{ (*DpfMachineState)(nil), // 337: forge.DpfMachineState (*InstanceNetworkRestrictions)(nil), // 338: forge.InstanceNetworkRestrictions (*MachineMetadataUpdateRequest)(nil), // 339: forge.MachineMetadataUpdateRequest - (*RackMetadataUpdateRequest)(nil), // 340: forge.RackMetadataUpdateRequest - (*SwitchMetadataUpdateRequest)(nil), // 341: forge.SwitchMetadataUpdateRequest - (*PowerShelfMetadataUpdateRequest)(nil), // 342: forge.PowerShelfMetadataUpdateRequest - (*DpuAgentInventoryReport)(nil), // 343: forge.DpuAgentInventoryReport - (*MachineComponentInventory)(nil), // 344: forge.MachineComponentInventory - (*MachineInventorySoftwareComponent)(nil), // 345: forge.MachineInventorySoftwareComponent - (*HealthSourceOrigin)(nil), // 346: forge.HealthSourceOrigin - (*ControllerStateReason)(nil), // 347: forge.ControllerStateReason - (*ControllerStateSourceReference)(nil), // 348: forge.ControllerStateSourceReference - (*StateSla)(nil), // 349: forge.StateSla - (*InstanceTenantStatus)(nil), // 350: forge.InstanceTenantStatus - (*MachineEvent)(nil), // 351: forge.MachineEvent - (*MachineInterface)(nil), // 352: forge.MachineInterface - (*InfinibandStatusObservation)(nil), // 353: forge.InfinibandStatusObservation - (*MachineIbInterface)(nil), // 354: forge.MachineIbInterface - (*DhcpDiscovery)(nil), // 355: forge.DhcpDiscovery - (*ExpireDhcpLeaseRequest)(nil), // 356: forge.ExpireDhcpLeaseRequest - (*ExpireDhcpLeaseResponse)(nil), // 357: forge.ExpireDhcpLeaseResponse - (*DhcpRecord)(nil), // 358: forge.DhcpRecord - (*NetworkSegmentList)(nil), // 359: forge.NetworkSegmentList - (*SSHKeyValidationRequest)(nil), // 360: forge.SSHKeyValidationRequest - (*SSHKeyValidationResponse)(nil), // 361: forge.SSHKeyValidationResponse - (*GetBmcCredentialsRequest)(nil), // 362: forge.GetBmcCredentialsRequest - (*GetSwitchNvosCredentialsRequest)(nil), // 363: forge.GetSwitchNvosCredentialsRequest - (*GetBmcCredentialsResponse)(nil), // 364: forge.GetBmcCredentialsResponse - (*BmcCredentials)(nil), // 365: forge.BmcCredentials - (*GetSiteExplorationRequest)(nil), // 366: forge.GetSiteExplorationRequest - (*ClearSiteExplorationErrorRequest)(nil), // 367: forge.ClearSiteExplorationErrorRequest - (*ReExploreEndpointRequest)(nil), // 368: forge.ReExploreEndpointRequest - (*RefreshEndpointReportRequest)(nil), // 369: forge.RefreshEndpointReportRequest - (*DeleteExploredEndpointRequest)(nil), // 370: forge.DeleteExploredEndpointRequest - (*PauseExploredEndpointRemediationRequest)(nil), // 371: forge.PauseExploredEndpointRemediationRequest - (*DeleteExploredEndpointResponse)(nil), // 372: forge.DeleteExploredEndpointResponse - (*BmcEndpointRequest)(nil), // 373: forge.BmcEndpointRequest - (*SshTimeoutConfig)(nil), // 374: forge.SshTimeoutConfig - (*SshRequest)(nil), // 375: forge.SshRequest - (*CopyBfbToDpuRshimRequest)(nil), // 376: forge.CopyBfbToDpuRshimRequest - (*UpdateMachineHardwareInfoRequest)(nil), // 377: forge.UpdateMachineHardwareInfoRequest - (*MachineHardwareInfo)(nil), // 378: forge.MachineHardwareInfo - (*ManagedHostNetworkConfigRequest)(nil), // 379: forge.ManagedHostNetworkConfigRequest - (*ManagedHostNetworkConfigResponse)(nil), // 380: forge.ManagedHostNetworkConfigResponse - (*TrafficInterceptConfig)(nil), // 381: forge.TrafficInterceptConfig - (*TrafficInterceptBridging)(nil), // 382: forge.TrafficInterceptBridging - (*ManagedHostDpuExtensionServiceConfig)(nil), // 383: forge.ManagedHostDpuExtensionServiceConfig - (*ManagedHostQuarantineState)(nil), // 384: forge.ManagedHostQuarantineState - (*GetManagedHostQuarantineStateRequest)(nil), // 385: forge.GetManagedHostQuarantineStateRequest - (*GetManagedHostQuarantineStateResponse)(nil), // 386: forge.GetManagedHostQuarantineStateResponse - (*SetManagedHostQuarantineStateRequest)(nil), // 387: forge.SetManagedHostQuarantineStateRequest - (*SetManagedHostQuarantineStateResponse)(nil), // 388: forge.SetManagedHostQuarantineStateResponse - (*ClearManagedHostQuarantineStateRequest)(nil), // 389: forge.ClearManagedHostQuarantineStateRequest - (*ClearManagedHostQuarantineStateResponse)(nil), // 390: forge.ClearManagedHostQuarantineStateResponse - (*ManagedHostNetworkConfig)(nil), // 391: forge.ManagedHostNetworkConfig - (*FlatInterfaceConfig)(nil), // 392: forge.FlatInterfaceConfig - (*FlatInterfaceRoutingProfile)(nil), // 393: forge.FlatInterfaceRoutingProfile - (*FlatInterfaceIpv6Config)(nil), // 394: forge.FlatInterfaceIpv6Config - (*FlatInterfaceNetworkSecurityGroupConfig)(nil), // 395: forge.FlatInterfaceNetworkSecurityGroupConfig - (*ManagedHostNetworkStatusRequest)(nil), // 396: forge.ManagedHostNetworkStatusRequest - (*ManagedHostNetworkStatusResponse)(nil), // 397: forge.ManagedHostNetworkStatusResponse - (*DpuAgentUpgradeCheckRequest)(nil), // 398: forge.DpuAgentUpgradeCheckRequest - (*DpuAgentUpgradeCheckResponse)(nil), // 399: forge.DpuAgentUpgradeCheckResponse - (*DpuAgentUpgradePolicyRequest)(nil), // 400: forge.DpuAgentUpgradePolicyRequest - (*DpuAgentUpgradePolicyResponse)(nil), // 401: forge.DpuAgentUpgradePolicyResponse - (*AdminForceDeleteMachineRequest)(nil), // 402: forge.AdminForceDeleteMachineRequest - (*AdminForceDeleteMachineResponse)(nil), // 403: forge.AdminForceDeleteMachineResponse - (*DisableSecureBootResponse)(nil), // 404: forge.DisableSecureBootResponse - (*LockdownRequest)(nil), // 405: forge.LockdownRequest - (*LockdownResponse)(nil), // 406: forge.LockdownResponse - (*LockdownStatusRequest)(nil), // 407: forge.LockdownStatusRequest - (*MachineSetupStatusRequest)(nil), // 408: forge.MachineSetupStatusRequest - (*MachineSetupRequest)(nil), // 409: forge.MachineSetupRequest - (*MachineSetupResponse)(nil), // 410: forge.MachineSetupResponse - (*SetDpuFirstBootOrderRequest)(nil), // 411: forge.SetDpuFirstBootOrderRequest - (*SetDpuFirstBootOrderResponse)(nil), // 412: forge.SetDpuFirstBootOrderResponse - (*AdminRebootRequest)(nil), // 413: forge.AdminRebootRequest - (*AdminRebootResponse)(nil), // 414: forge.AdminRebootResponse - (*AdminBmcResetRequest)(nil), // 415: forge.AdminBmcResetRequest - (*AdminBmcResetResponse)(nil), // 416: forge.AdminBmcResetResponse - (*EnableInfiniteBootRequest)(nil), // 417: forge.EnableInfiniteBootRequest - (*EnableInfiniteBootResponse)(nil), // 418: forge.EnableInfiniteBootResponse - (*IsInfiniteBootEnabledRequest)(nil), // 419: forge.IsInfiniteBootEnabledRequest - (*IsInfiniteBootEnabledResponse)(nil), // 420: forge.IsInfiniteBootEnabledResponse - (*BMCMetaDataGetRequest)(nil), // 421: forge.BMCMetaDataGetRequest - (*BMCMetaDataGetResponse)(nil), // 422: forge.BMCMetaDataGetResponse - (*MachineCredentialsUpdateRequest)(nil), // 423: forge.MachineCredentialsUpdateRequest - (*MachineCredentialsUpdateResponse)(nil), // 424: forge.MachineCredentialsUpdateResponse - (*ForgeAgentControlRequest)(nil), // 425: forge.ForgeAgentControlRequest - (*ForgeAgentControlResponse)(nil), // 426: forge.ForgeAgentControlResponse - (*MachineDiscoveryInfo)(nil), // 427: forge.MachineDiscoveryInfo - (*MachineDiscoveryCompletedRequest)(nil), // 428: forge.MachineDiscoveryCompletedRequest - (*MachineCleanupInfo)(nil), // 429: forge.MachineCleanupInfo - (*MachineCertificate)(nil), // 430: forge.MachineCertificate - (*MachineCertificateRenewRequest)(nil), // 431: forge.MachineCertificateRenewRequest - (*MachineCertificateResult)(nil), // 432: forge.MachineCertificateResult - (*MachineDiscoveryResult)(nil), // 433: forge.MachineDiscoveryResult - (*MachineDiscoveryCompletedResponse)(nil), // 434: forge.MachineDiscoveryCompletedResponse - (*MachineCleanupResult)(nil), // 435: forge.MachineCleanupResult - (*ForgeScoutErrorReport)(nil), // 436: forge.ForgeScoutErrorReport - (*ForgeScoutErrorReportResult)(nil), // 437: forge.ForgeScoutErrorReportResult - (*PxeInstructionRequest)(nil), // 438: forge.PxeInstructionRequest - (*PxeInstructions)(nil), // 439: forge.PxeInstructions - (*CloudInitDiscoveryInstructions)(nil), // 440: forge.CloudInitDiscoveryInstructions - (*CloudInitMetaData)(nil), // 441: forge.CloudInitMetaData - (*CloudInitInstructionsRequest)(nil), // 442: forge.CloudInitInstructionsRequest - (*CloudInitInstructions)(nil), // 443: forge.CloudInitInstructions - (*DpuNetworkStatus)(nil), // 444: forge.DpuNetworkStatus - (*LastDhcpRequest)(nil), // 445: forge.LastDhcpRequest - (*DpuExtensionServiceStatusObservation)(nil), // 446: forge.DpuExtensionServiceStatusObservation - (*DpuExtensionServiceComponent)(nil), // 447: forge.DpuExtensionServiceComponent - (*OptionalHealthReport)(nil), // 448: forge.OptionalHealthReport - (*HealthReportEntry)(nil), // 449: forge.HealthReportEntry - (*InsertMachineHealthReportRequest)(nil), // 450: forge.InsertMachineHealthReportRequest - (*InsertRackHealthReportRequest)(nil), // 451: forge.InsertRackHealthReportRequest - (*RemoveRackHealthReportRequest)(nil), // 452: forge.RemoveRackHealthReportRequest - (*ListRackHealthReportsRequest)(nil), // 453: forge.ListRackHealthReportsRequest - (*InsertSwitchHealthReportRequest)(nil), // 454: forge.InsertSwitchHealthReportRequest - (*RemoveSwitchHealthReportRequest)(nil), // 455: forge.RemoveSwitchHealthReportRequest - (*ListSwitchHealthReportsRequest)(nil), // 456: forge.ListSwitchHealthReportsRequest - (*InsertPowerShelfHealthReportRequest)(nil), // 457: forge.InsertPowerShelfHealthReportRequest - (*RemovePowerShelfHealthReportRequest)(nil), // 458: forge.RemovePowerShelfHealthReportRequest - (*ListPowerShelfHealthReportsRequest)(nil), // 459: forge.ListPowerShelfHealthReportsRequest - (*ListHealthReportResponse)(nil), // 460: forge.ListHealthReportResponse - (*RemoveMachineHealthReportRequest)(nil), // 461: forge.RemoveMachineHealthReportRequest - (*ListNVLinkDomainHealthReportsRequest)(nil), // 462: forge.ListNVLinkDomainHealthReportsRequest - (*InsertNVLinkDomainHealthReportRequest)(nil), // 463: forge.InsertNVLinkDomainHealthReportRequest - (*RemoveNVLinkDomainHealthReportRequest)(nil), // 464: forge.RemoveNVLinkDomainHealthReportRequest - (*InstanceInterfaceStatusObservation)(nil), // 465: forge.InstanceInterfaceStatusObservation - (*FabricInterfaceData)(nil), // 466: forge.FabricInterfaceData - (*LinkData)(nil), // 467: forge.LinkData - (*Tenant)(nil), // 468: forge.Tenant - (*CreateTenantRequest)(nil), // 469: forge.CreateTenantRequest - (*CreateTenantResponse)(nil), // 470: forge.CreateTenantResponse - (*UpdateTenantRequest)(nil), // 471: forge.UpdateTenantRequest - (*UpdateTenantResponse)(nil), // 472: forge.UpdateTenantResponse - (*FindTenantRequest)(nil), // 473: forge.FindTenantRequest - (*FindTenantResponse)(nil), // 474: forge.FindTenantResponse - (*TenantKeysetIdentifier)(nil), // 475: forge.TenantKeysetIdentifier - (*TenantPublicKey)(nil), // 476: forge.TenantPublicKey - (*TenantKeysetContent)(nil), // 477: forge.TenantKeysetContent - (*TenantKeyset)(nil), // 478: forge.TenantKeyset - (*CreateTenantKeysetRequest)(nil), // 479: forge.CreateTenantKeysetRequest - (*CreateTenantKeysetResponse)(nil), // 480: forge.CreateTenantKeysetResponse - (*TenantKeySetList)(nil), // 481: forge.TenantKeySetList - (*UpdateTenantKeysetRequest)(nil), // 482: forge.UpdateTenantKeysetRequest - (*UpdateTenantKeysetResponse)(nil), // 483: forge.UpdateTenantKeysetResponse - (*DeleteTenantKeysetRequest)(nil), // 484: forge.DeleteTenantKeysetRequest - (*DeleteTenantKeysetResponse)(nil), // 485: forge.DeleteTenantKeysetResponse - (*TenantKeysetSearchFilter)(nil), // 486: forge.TenantKeysetSearchFilter - (*TenantKeysetIdList)(nil), // 487: forge.TenantKeysetIdList - (*TenantKeysetsByIdsRequest)(nil), // 488: forge.TenantKeysetsByIdsRequest - (*ValidateTenantPublicKeyRequest)(nil), // 489: forge.ValidateTenantPublicKeyRequest - (*ValidateTenantPublicKeyResponse)(nil), // 490: forge.ValidateTenantPublicKeyResponse - (*ListResourcePoolsRequest)(nil), // 491: forge.ListResourcePoolsRequest - (*ResourcePools)(nil), // 492: forge.ResourcePools - (*ResourcePool)(nil), // 493: forge.ResourcePool - (*GrowResourcePoolRequest)(nil), // 494: forge.GrowResourcePoolRequest - (*GrowResourcePoolResponse)(nil), // 495: forge.GrowResourcePoolResponse - (*Range)(nil), // 496: forge.Range - (*MigrateVpcVniResponse)(nil), // 497: forge.MigrateVpcVniResponse - (*MaintenanceRequest)(nil), // 498: forge.MaintenanceRequest - (*SetDynamicConfigRequest)(nil), // 499: forge.SetDynamicConfigRequest - (*FindIpAddressRequest)(nil), // 500: forge.FindIpAddressRequest - (*FindIpAddressResponse)(nil), // 501: forge.FindIpAddressResponse - (*IdentifyUuidRequest)(nil), // 502: forge.IdentifyUuidRequest - (*IdentifyUuidResponse)(nil), // 503: forge.IdentifyUuidResponse - (*FindBmcIpsRequest)(nil), // 504: forge.FindBmcIpsRequest - (*IdentifyMacRequest)(nil), // 505: forge.IdentifyMacRequest - (*IdentifyMacResponse)(nil), // 506: forge.IdentifyMacResponse - (*IdentifySerialRequest)(nil), // 507: forge.IdentifySerialRequest - (*IdentifySerialResponse)(nil), // 508: forge.IdentifySerialResponse - (*DpuReprovisioningRequest)(nil), // 509: forge.DpuReprovisioningRequest - (*DpuReprovisioningListRequest)(nil), // 510: forge.DpuReprovisioningListRequest - (*DpuReprovisioningListResponse)(nil), // 511: forge.DpuReprovisioningListResponse - (*HostReprovisioningRequest)(nil), // 512: forge.HostReprovisioningRequest - (*HostReprovisioningListRequest)(nil), // 513: forge.HostReprovisioningListRequest - (*HostReprovisioningListResponse)(nil), // 514: forge.HostReprovisioningListResponse - (*DpuOsOperationalState)(nil), // 515: forge.DpuOsOperationalState - (*DpuRepresentorStatus)(nil), // 516: forge.DpuRepresentorStatus - (*DpuInfoStatusObservation)(nil), // 517: forge.DpuInfoStatusObservation - (*DpuInfo)(nil), // 518: forge.DpuInfo - (*GetDpuInfoListRequest)(nil), // 519: forge.GetDpuInfoListRequest - (*GetDpuInfoListResponse)(nil), // 520: forge.GetDpuInfoListResponse - (*IpAddressMatch)(nil), // 521: forge.IpAddressMatch - (*MachineBootOverride)(nil), // 522: forge.MachineBootOverride - (*ConnectedDevice)(nil), // 523: forge.ConnectedDevice - (*ConnectedDeviceList)(nil), // 524: forge.ConnectedDeviceList - (*BmcIpList)(nil), // 525: forge.BmcIpList - (*BmcIp)(nil), // 526: forge.BmcIp - (*MacAddressBmcIp)(nil), // 527: forge.MacAddressBmcIp - (*MachineIdBmcIpPairs)(nil), // 528: forge.MachineIdBmcIpPairs - (*MachineIdBmcIp)(nil), // 529: forge.MachineIdBmcIp - (*NetworkDevice)(nil), // 530: forge.NetworkDevice - (*NetworkTopologyRequest)(nil), // 531: forge.NetworkTopologyRequest - (*NetworkDeviceIdList)(nil), // 532: forge.NetworkDeviceIdList - (*NetworkTopologyData)(nil), // 533: forge.NetworkTopologyData - (*RouteServers)(nil), // 534: forge.RouteServers - (*RouteServerEntries)(nil), // 535: forge.RouteServerEntries - (*RouteServer)(nil), // 536: forge.RouteServer - (*SetHostUefiPasswordRequest)(nil), // 537: forge.SetHostUefiPasswordRequest - (*SetHostUefiPasswordResponse)(nil), // 538: forge.SetHostUefiPasswordResponse - (*ClearHostUefiPasswordRequest)(nil), // 539: forge.ClearHostUefiPasswordRequest - (*ClearHostUefiPasswordResponse)(nil), // 540: forge.ClearHostUefiPasswordResponse - (*OsImageAttributes)(nil), // 541: forge.OsImageAttributes - (*OsImage)(nil), // 542: forge.OsImage - (*ListOsImageRequest)(nil), // 543: forge.ListOsImageRequest - (*ListOsImageResponse)(nil), // 544: forge.ListOsImageResponse - (*DeleteOsImageRequest)(nil), // 545: forge.DeleteOsImageRequest - (*DeleteOsImageResponse)(nil), // 546: forge.DeleteOsImageResponse - (*GetIpxeTemplateRequest)(nil), // 547: forge.GetIpxeTemplateRequest - (*ListIpxeTemplatesRequest)(nil), // 548: forge.ListIpxeTemplatesRequest - (*IpxeTemplateList)(nil), // 549: forge.IpxeTemplateList - (*ExpectedHostNic)(nil), // 550: forge.ExpectedHostNic - (*HostLifecycleProfile)(nil), // 551: forge.HostLifecycleProfile - (*ExpectedMachine)(nil), // 552: forge.ExpectedMachine - (*ExpectedMachineRequest)(nil), // 553: forge.ExpectedMachineRequest - (*ExpectedMachineList)(nil), // 554: forge.ExpectedMachineList - (*LinkedExpectedMachineList)(nil), // 555: forge.LinkedExpectedMachineList - (*LinkedExpectedMachine)(nil), // 556: forge.LinkedExpectedMachine - (*UnexpectedMachineList)(nil), // 557: forge.UnexpectedMachineList - (*UnexpectedMachine)(nil), // 558: forge.UnexpectedMachine - (*BatchExpectedMachineOperationRequest)(nil), // 559: forge.BatchExpectedMachineOperationRequest - (*ExpectedMachineOperationResult)(nil), // 560: forge.ExpectedMachineOperationResult - (*BatchExpectedMachineOperationResponse)(nil), // 561: forge.BatchExpectedMachineOperationResponse - (*MachineRebootCompletedResponse)(nil), // 562: forge.MachineRebootCompletedResponse - (*MachineRebootCompletedRequest)(nil), // 563: forge.MachineRebootCompletedRequest - (*ScoutFirmwareUpgradeStatusRequest)(nil), // 564: forge.ScoutFirmwareUpgradeStatusRequest - (*MachineValidationCompletedRequest)(nil), // 565: forge.MachineValidationCompletedRequest - (*MachineValidationCompletedResponse)(nil), // 566: forge.MachineValidationCompletedResponse - (*MachineValidationResult)(nil), // 567: forge.MachineValidationResult - (*MachineValidationResultPostRequest)(nil), // 568: forge.MachineValidationResultPostRequest - (*MachineValidationResultList)(nil), // 569: forge.MachineValidationResultList - (*MachineValidationGetRequest)(nil), // 570: forge.MachineValidationGetRequest - (*MachineValidationStatus)(nil), // 571: forge.MachineValidationStatus - (*MachineValidationRun)(nil), // 572: forge.MachineValidationRun - (*MachineSetAutoUpdateRequest)(nil), // 573: forge.MachineSetAutoUpdateRequest - (*MachineSetAutoUpdateResponse)(nil), // 574: forge.MachineSetAutoUpdateResponse - (*GetMachineValidationExternalConfigRequest)(nil), // 575: forge.GetMachineValidationExternalConfigRequest - (*MachineValidationExternalConfig)(nil), // 576: forge.MachineValidationExternalConfig - (*GetMachineValidationExternalConfigResponse)(nil), // 577: forge.GetMachineValidationExternalConfigResponse - (*GetMachineValidationExternalConfigsRequest)(nil), // 578: forge.GetMachineValidationExternalConfigsRequest - (*GetMachineValidationExternalConfigsResponse)(nil), // 579: forge.GetMachineValidationExternalConfigsResponse - (*AddUpdateMachineValidationExternalConfigRequest)(nil), // 580: forge.AddUpdateMachineValidationExternalConfigRequest - (*RemoveMachineValidationExternalConfigRequest)(nil), // 581: forge.RemoveMachineValidationExternalConfigRequest - (*MachineValidationOnDemandRequest)(nil), // 582: forge.MachineValidationOnDemandRequest - (*MachineValidationOnDemandResponse)(nil), // 583: forge.MachineValidationOnDemandResponse - (*FirmwareUpgradeActivity)(nil), // 584: forge.FirmwareUpgradeActivity - (*NvosUpdateActivity)(nil), // 585: forge.NvosUpdateActivity - (*ConfigureNmxClusterActivity)(nil), // 586: forge.ConfigureNmxClusterActivity - (*PowerSequenceActivity)(nil), // 587: forge.PowerSequenceActivity - (*MaintenanceActivityConfig)(nil), // 588: forge.MaintenanceActivityConfig - (*RackMaintenanceScope)(nil), // 589: forge.RackMaintenanceScope - (*RackMaintenanceOnDemandRequest)(nil), // 590: forge.RackMaintenanceOnDemandRequest - (*RackMaintenanceOnDemandResponse)(nil), // 591: forge.RackMaintenanceOnDemandResponse - (*AdminPowerControlRequest)(nil), // 592: forge.AdminPowerControlRequest - (*AdminPowerControlResponse)(nil), // 593: forge.AdminPowerControlResponse - (*GetRedfishJobStateRequest)(nil), // 594: forge.GetRedfishJobStateRequest - (*GetRedfishJobStateResponse)(nil), // 595: forge.GetRedfishJobStateResponse - (*MachineValidationRunList)(nil), // 596: forge.MachineValidationRunList - (*MachineValidationRunListGetRequest)(nil), // 597: forge.MachineValidationRunListGetRequest - (*MachineValidationRunItemSearchFilter)(nil), // 598: forge.MachineValidationRunItemSearchFilter - (*MachineValidationRunItemIdList)(nil), // 599: forge.MachineValidationRunItemIdList - (*MachineValidationRunItemsByIdsRequest)(nil), // 600: forge.MachineValidationRunItemsByIdsRequest - (*MachineValidationRunItemList)(nil), // 601: forge.MachineValidationRunItemList - (*MachineValidationRunItem)(nil), // 602: forge.MachineValidationRunItem - (*MachineValidationAttemptGetRequest)(nil), // 603: forge.MachineValidationAttemptGetRequest - (*MachineValidationAttempt)(nil), // 604: forge.MachineValidationAttempt - (*MachineValidationHeartbeatRequest)(nil), // 605: forge.MachineValidationHeartbeatRequest - (*MachineValidationHeartbeatResponse)(nil), // 606: forge.MachineValidationHeartbeatResponse - (*IsBmcInManagedHostResponse)(nil), // 607: forge.IsBmcInManagedHostResponse - (*BmcCredentialStatusResponse)(nil), // 608: forge.BmcCredentialStatusResponse - (*MachineValidationTestsGetRequest)(nil), // 609: forge.MachineValidationTestsGetRequest - (*MachineValidationTestUpdateRequest)(nil), // 610: forge.MachineValidationTestUpdateRequest - (*MachineValidationTestAddRequest)(nil), // 611: forge.MachineValidationTestAddRequest - (*MachineValidationTestAddUpdateResponse)(nil), // 612: forge.MachineValidationTestAddUpdateResponse - (*MachineValidationTestsGetResponse)(nil), // 613: forge.MachineValidationTestsGetResponse - (*MachineValidationTestVerfiedRequest)(nil), // 614: forge.MachineValidationTestVerfiedRequest - (*MachineValidationTestVerfiedResponse)(nil), // 615: forge.MachineValidationTestVerfiedResponse - (*MachineValidationTest)(nil), // 616: forge.MachineValidationTest - (*MachineValidationTestNextVersionResponse)(nil), // 617: forge.MachineValidationTestNextVersionResponse - (*MachineValidationTestNextVersionRequest)(nil), // 618: forge.MachineValidationTestNextVersionRequest - (*MachineValidationTestEnableDisableTestRequest)(nil), // 619: forge.MachineValidationTestEnableDisableTestRequest - (*MachineValidationTestEnableDisableTestResponse)(nil), // 620: forge.MachineValidationTestEnableDisableTestResponse - (*MachineValidationRunRequest)(nil), // 621: forge.MachineValidationRunRequest - (*MachineValidationRunResponse)(nil), // 622: forge.MachineValidationRunResponse - (*MachineCapabilityAttributesCpu)(nil), // 623: forge.MachineCapabilityAttributesCpu - (*MachineCapabilityAttributesGpu)(nil), // 624: forge.MachineCapabilityAttributesGpu - (*MachineCapabilityAttributesMemory)(nil), // 625: forge.MachineCapabilityAttributesMemory - (*MachineCapabilityAttributesStorage)(nil), // 626: forge.MachineCapabilityAttributesStorage - (*MachineCapabilityAttributesNetwork)(nil), // 627: forge.MachineCapabilityAttributesNetwork - (*MachineCapabilityAttributesInfiniband)(nil), // 628: forge.MachineCapabilityAttributesInfiniband - (*MachineCapabilityAttributesDpu)(nil), // 629: forge.MachineCapabilityAttributesDpu - (*MachineCapabilitiesSet)(nil), // 630: forge.MachineCapabilitiesSet - (*InstanceTypeAttributes)(nil), // 631: forge.InstanceTypeAttributes - (*InstanceType)(nil), // 632: forge.InstanceType - (*InstanceTypeMachineCapabilityFilterAttributes)(nil), // 633: forge.InstanceTypeMachineCapabilityFilterAttributes - (*CreateInstanceTypeRequest)(nil), // 634: forge.CreateInstanceTypeRequest - (*CreateInstanceTypeResponse)(nil), // 635: forge.CreateInstanceTypeResponse - (*FindInstanceTypeIdsRequest)(nil), // 636: forge.FindInstanceTypeIdsRequest - (*FindInstanceTypeIdsResponse)(nil), // 637: forge.FindInstanceTypeIdsResponse - (*FindInstanceTypesByIdsRequest)(nil), // 638: forge.FindInstanceTypesByIdsRequest - (*FindInstanceTypesByIdsResponse)(nil), // 639: forge.FindInstanceTypesByIdsResponse - (*DeleteInstanceTypeRequest)(nil), // 640: forge.DeleteInstanceTypeRequest - (*DeleteInstanceTypeResponse)(nil), // 641: forge.DeleteInstanceTypeResponse - (*UpdateInstanceTypeResponse)(nil), // 642: forge.UpdateInstanceTypeResponse - (*UpdateInstanceTypeRequest)(nil), // 643: forge.UpdateInstanceTypeRequest - (*AssociateMachinesWithInstanceTypeRequest)(nil), // 644: forge.AssociateMachinesWithInstanceTypeRequest - (*AssociateMachinesWithInstanceTypeResponse)(nil), // 645: forge.AssociateMachinesWithInstanceTypeResponse - (*RemoveMachineInstanceTypeAssociationRequest)(nil), // 646: forge.RemoveMachineInstanceTypeAssociationRequest - (*RemoveMachineInstanceTypeAssociationResponse)(nil), // 647: forge.RemoveMachineInstanceTypeAssociationResponse - (*RedfishBrowseRequest)(nil), // 648: forge.RedfishBrowseRequest - (*RedfishBrowseResponse)(nil), // 649: forge.RedfishBrowseResponse - (*RedfishListActionsRequest)(nil), // 650: forge.RedfishListActionsRequest - (*RedfishListActionsResponse)(nil), // 651: forge.RedfishListActionsResponse - (*RedfishAction)(nil), // 652: forge.RedfishAction - (*OptionalRedfishActionResult)(nil), // 653: forge.OptionalRedfishActionResult - (*RedfishActionResult)(nil), // 654: forge.RedfishActionResult - (*RedfishCreateActionRequest)(nil), // 655: forge.RedfishCreateActionRequest - (*RedfishCreateActionResponse)(nil), // 656: forge.RedfishCreateActionResponse - (*RedfishActionID)(nil), // 657: forge.RedfishActionID - (*RedfishApproveActionResponse)(nil), // 658: forge.RedfishApproveActionResponse - (*RedfishApplyActionResponse)(nil), // 659: forge.RedfishApplyActionResponse - (*RedfishCancelActionResponse)(nil), // 660: forge.RedfishCancelActionResponse - (*UfmBrowseRequest)(nil), // 661: forge.UfmBrowseRequest - (*UfmBrowseResponse)(nil), // 662: forge.UfmBrowseResponse - (*NetworkSecurityGroupAttributes)(nil), // 663: forge.NetworkSecurityGroupAttributes - (*NetworkSecurityGroup)(nil), // 664: forge.NetworkSecurityGroup - (*CreateNetworkSecurityGroupRequest)(nil), // 665: forge.CreateNetworkSecurityGroupRequest - (*CreateNetworkSecurityGroupResponse)(nil), // 666: forge.CreateNetworkSecurityGroupResponse - (*FindNetworkSecurityGroupIdsRequest)(nil), // 667: forge.FindNetworkSecurityGroupIdsRequest - (*FindNetworkSecurityGroupIdsResponse)(nil), // 668: forge.FindNetworkSecurityGroupIdsResponse - (*FindNetworkSecurityGroupsByIdsRequest)(nil), // 669: forge.FindNetworkSecurityGroupsByIdsRequest - (*FindNetworkSecurityGroupsByIdsResponse)(nil), // 670: forge.FindNetworkSecurityGroupsByIdsResponse - (*UpdateNetworkSecurityGroupResponse)(nil), // 671: forge.UpdateNetworkSecurityGroupResponse - (*UpdateNetworkSecurityGroupRequest)(nil), // 672: forge.UpdateNetworkSecurityGroupRequest - (*DeleteNetworkSecurityGroupRequest)(nil), // 673: forge.DeleteNetworkSecurityGroupRequest - (*DeleteNetworkSecurityGroupResponse)(nil), // 674: forge.DeleteNetworkSecurityGroupResponse - (*NetworkSecurityGroupStatus)(nil), // 675: forge.NetworkSecurityGroupStatus - (*NetworkSecurityGroupPropagationObjectStatus)(nil), // 676: forge.NetworkSecurityGroupPropagationObjectStatus - (*GetNetworkSecurityGroupPropagationStatusResponse)(nil), // 677: forge.GetNetworkSecurityGroupPropagationStatusResponse - (*NetworkSecurityGroupIdList)(nil), // 678: forge.NetworkSecurityGroupIdList - (*GetNetworkSecurityGroupPropagationStatusRequest)(nil), // 679: forge.GetNetworkSecurityGroupPropagationStatusRequest - (*NetworkSecurityGroupRuleAttributes)(nil), // 680: forge.NetworkSecurityGroupRuleAttributes - (*ResolvedNetworkSecurityGroupRule)(nil), // 681: forge.ResolvedNetworkSecurityGroupRule - (*GetNetworkSecurityGroupAttachmentsRequest)(nil), // 682: forge.GetNetworkSecurityGroupAttachmentsRequest - (*NetworkSecurityGroupAttachments)(nil), // 683: forge.NetworkSecurityGroupAttachments - (*GetNetworkSecurityGroupAttachmentsResponse)(nil), // 684: forge.GetNetworkSecurityGroupAttachmentsResponse - (*GetDesiredFirmwareVersionsRequest)(nil), // 685: forge.GetDesiredFirmwareVersionsRequest - (*GetDesiredFirmwareVersionsResponse)(nil), // 686: forge.GetDesiredFirmwareVersionsResponse - (*DesiredFirmwareVersionEntry)(nil), // 687: forge.DesiredFirmwareVersionEntry - (*SkuComponentChassis)(nil), // 688: forge.SkuComponentChassis - (*SkuComponentCpu)(nil), // 689: forge.SkuComponentCpu - (*SkuComponentGpu)(nil), // 690: forge.SkuComponentGpu - (*SkuComponentEthernetDevices)(nil), // 691: forge.SkuComponentEthernetDevices - (*SkuComponentInfinibandDevices)(nil), // 692: forge.SkuComponentInfinibandDevices - (*SkuComponentStorage)(nil), // 693: forge.SkuComponentStorage - (*SkuComponentStorageController)(nil), // 694: forge.SkuComponentStorageController - (*SkuComponentMemory)(nil), // 695: forge.SkuComponentMemory - (*SkuComponentTpm)(nil), // 696: forge.SkuComponentTpm - (*SkuComponents)(nil), // 697: forge.SkuComponents - (*Sku)(nil), // 698: forge.Sku - (*SkuMachinePair)(nil), // 699: forge.SkuMachinePair - (*RemoveSkuRequest)(nil), // 700: forge.RemoveSkuRequest - (*SkuList)(nil), // 701: forge.SkuList - (*SkuIdList)(nil), // 702: forge.SkuIdList - (*SkuStatus)(nil), // 703: forge.SkuStatus - (*SkusByIdsRequest)(nil), // 704: forge.SkusByIdsRequest - (*SkuSearchFilter)(nil), // 705: forge.SkuSearchFilter - (*DpaInterface)(nil), // 706: forge.DpaInterface - (*DpaInterfaceCreationRequest)(nil), // 707: forge.DpaInterfaceCreationRequest - (*DpaInterfaceIdList)(nil), // 708: forge.DpaInterfaceIdList - (*DpaInterfacesByIdsRequest)(nil), // 709: forge.DpaInterfacesByIdsRequest - (*DpaInterfaceList)(nil), // 710: forge.DpaInterfaceList - (*DpaNetworkObservationSetRequest)(nil), // 711: forge.DpaNetworkObservationSetRequest - (*DpaInterfaceDeletionRequest)(nil), // 712: forge.DpaInterfaceDeletionRequest - (*DpaInterfaceDeletionResult)(nil), // 713: forge.DpaInterfaceDeletionResult - (*SkuUpdateMetadataRequest)(nil), // 714: forge.SkuUpdateMetadataRequest - (*PowerOptionRequest)(nil), // 715: forge.PowerOptionRequest - (*PowerOptionUpdateRequest)(nil), // 716: forge.PowerOptionUpdateRequest - (*PowerOptions)(nil), // 717: forge.PowerOptions - (*PowerOptionResponse)(nil), // 718: forge.PowerOptionResponse - (*ComputeAllocationAttributes)(nil), // 719: forge.ComputeAllocationAttributes - (*ComputeAllocation)(nil), // 720: forge.ComputeAllocation - (*CreateComputeAllocationRequest)(nil), // 721: forge.CreateComputeAllocationRequest - (*CreateComputeAllocationResponse)(nil), // 722: forge.CreateComputeAllocationResponse - (*FindComputeAllocationIdsRequest)(nil), // 723: forge.FindComputeAllocationIdsRequest - (*FindComputeAllocationIdsResponse)(nil), // 724: forge.FindComputeAllocationIdsResponse - (*FindComputeAllocationsByIdsRequest)(nil), // 725: forge.FindComputeAllocationsByIdsRequest - (*FindComputeAllocationsByIdsResponse)(nil), // 726: forge.FindComputeAllocationsByIdsResponse - (*UpdateComputeAllocationResponse)(nil), // 727: forge.UpdateComputeAllocationResponse - (*UpdateComputeAllocationRequest)(nil), // 728: forge.UpdateComputeAllocationRequest - (*DeleteComputeAllocationRequest)(nil), // 729: forge.DeleteComputeAllocationRequest - (*DeleteComputeAllocationResponse)(nil), // 730: forge.DeleteComputeAllocationResponse - (*InstanceTypeAllocationStats)(nil), // 731: forge.InstanceTypeAllocationStats - (*GetRackRequest)(nil), // 732: forge.GetRackRequest - (*GetRackResponse)(nil), // 733: forge.GetRackResponse - (*RackList)(nil), // 734: forge.RackList - (*RackSearchFilter)(nil), // 735: forge.RackSearchFilter - (*RackIdList)(nil), // 736: forge.RackIdList - (*RacksByIdsRequest)(nil), // 737: forge.RacksByIdsRequest - (*Rack)(nil), // 738: forge.Rack - (*RackConfig)(nil), // 739: forge.RackConfig - (*RackStatus)(nil), // 740: forge.RackStatus - (*RackStateHistoriesRequest)(nil), // 741: forge.RackStateHistoriesRequest - (*DeleteRackRequest)(nil), // 742: forge.DeleteRackRequest - (*AdminForceDeleteRackRequest)(nil), // 743: forge.AdminForceDeleteRackRequest - (*AdminForceDeleteRackResponse)(nil), // 744: forge.AdminForceDeleteRackResponse - (*RackCapabilityCompute)(nil), // 745: forge.RackCapabilityCompute - (*RackCapabilitySwitch)(nil), // 746: forge.RackCapabilitySwitch - (*RackCapabilityPowerShelf)(nil), // 747: forge.RackCapabilityPowerShelf - (*RackCapabilitiesSet)(nil), // 748: forge.RackCapabilitiesSet - (*RackProfile)(nil), // 749: forge.RackProfile - (*GetRackProfileRequest)(nil), // 750: forge.GetRackProfileRequest - (*GetRackProfileResponse)(nil), // 751: forge.GetRackProfileResponse - (*RackManagerForgeRequest)(nil), // 752: forge.RackManagerForgeRequest - (*RackManagerForgeResponse)(nil), // 753: forge.RackManagerForgeResponse - (*MachineNVLinkInfo)(nil), // 754: forge.MachineNVLinkInfo - (*UpdateMachineNvLinkInfoRequest)(nil), // 755: forge.UpdateMachineNvLinkInfoRequest - (*MachineSpxStatusObservation)(nil), // 756: forge.MachineSpxStatusObservation - (*MachineSpxAttachmentStatusObservation)(nil), // 757: forge.MachineSpxAttachmentStatusObservation - (*AstraConfig)(nil), // 758: forge.AstraConfig - (*AstraAttachment)(nil), // 759: forge.AstraAttachment - (*AstraConfigStatus)(nil), // 760: forge.AstraConfigStatus - (*AstraAttachmentStatus)(nil), // 761: forge.AstraAttachmentStatus - (*AstraStatus)(nil), // 762: forge.AstraStatus - (*NVLinkGpu)(nil), // 763: forge.NVLinkGpu - (*MachineNVLinkStatusObservation)(nil), // 764: forge.MachineNVLinkStatusObservation - (*MachineNVLinkGpuStatusObservation)(nil), // 765: forge.MachineNVLinkGpuStatusObservation - (*NmxcBrowseRequest)(nil), // 766: forge.NmxcBrowseRequest - (*NmxcBrowseResponse)(nil), // 767: forge.NmxcBrowseResponse - (*NVLinkPartition)(nil), // 768: forge.NVLinkPartition - (*NVLinkPartitionList)(nil), // 769: forge.NVLinkPartitionList - (*NVLinkPartitionSearchConfig)(nil), // 770: forge.NVLinkPartitionSearchConfig - (*NVLinkPartitionQuery)(nil), // 771: forge.NVLinkPartitionQuery - (*NVLinkPartitionSearchFilter)(nil), // 772: forge.NVLinkPartitionSearchFilter - (*NVLinkPartitionsByIdsRequest)(nil), // 773: forge.NVLinkPartitionsByIdsRequest - (*NVLinkPartitionIdList)(nil), // 774: forge.NVLinkPartitionIdList - (*NVLinkFabricSearchFilter)(nil), // 775: forge.NVLinkFabricSearchFilter - (*NVLinkLogicalPartitionConfig)(nil), // 776: forge.NVLinkLogicalPartitionConfig - (*NVLinkLogicalPartitionStatus)(nil), // 777: forge.NVLinkLogicalPartitionStatus - (*NVLinkLogicalPartition)(nil), // 778: forge.NVLinkLogicalPartition - (*NVLinkLogicalPartitionList)(nil), // 779: forge.NVLinkLogicalPartitionList - (*NVLinkLogicalPartitionCreationRequest)(nil), // 780: forge.NVLinkLogicalPartitionCreationRequest - (*NVLinkLogicalPartitionDeletionRequest)(nil), // 781: forge.NVLinkLogicalPartitionDeletionRequest - (*NVLinkLogicalPartitionDeletionResult)(nil), // 782: forge.NVLinkLogicalPartitionDeletionResult - (*NVLinkLogicalPartitionSearchFilter)(nil), // 783: forge.NVLinkLogicalPartitionSearchFilter - (*NVLinkLogicalPartitionsByIdsRequest)(nil), // 784: forge.NVLinkLogicalPartitionsByIdsRequest - (*NVLinkLogicalPartitionIdList)(nil), // 785: forge.NVLinkLogicalPartitionIdList - (*NVLinkLogicalPartitionUpdateRequest)(nil), // 786: forge.NVLinkLogicalPartitionUpdateRequest - (*NVLinkLogicalPartitionUpdateResult)(nil), // 787: forge.NVLinkLogicalPartitionUpdateResult - (*CreateBmcUserRequest)(nil), // 788: forge.CreateBmcUserRequest - (*CreateBmcUserResponse)(nil), // 789: forge.CreateBmcUserResponse - (*DeleteBmcUserRequest)(nil), // 790: forge.DeleteBmcUserRequest - (*DeleteBmcUserResponse)(nil), // 791: forge.DeleteBmcUserResponse - (*SetBmcRootPasswordRequest)(nil), // 792: forge.SetBmcRootPasswordRequest - (*SetBmcRootPasswordResponse)(nil), // 793: forge.SetBmcRootPasswordResponse - (*ProbeBmcVendorRequest)(nil), // 794: forge.ProbeBmcVendorRequest - (*ProbeBmcVendorResponse)(nil), // 795: forge.ProbeBmcVendorResponse - (*SetFirmwareUpdateTimeWindowRequest)(nil), // 796: forge.SetFirmwareUpdateTimeWindowRequest - (*SetFirmwareUpdateTimeWindowResponse)(nil), // 797: forge.SetFirmwareUpdateTimeWindowResponse - (*UpsertHostFirmwareConfigRequest)(nil), // 798: forge.UpsertHostFirmwareConfigRequest - (*DeleteHostFirmwareConfigRequest)(nil), // 799: forge.DeleteHostFirmwareConfigRequest - (*UpsertHostFirmwareComponentConfig)(nil), // 800: forge.UpsertHostFirmwareComponentConfig - (*HostFirmwareComponentConfigResponse)(nil), // 801: forge.HostFirmwareComponentConfigResponse - (*HostFirmwareVersionConfig)(nil), // 802: forge.HostFirmwareVersionConfig - (*HostFirmwareArtifact)(nil), // 803: forge.HostFirmwareArtifact - (*HostFirmwareConfigResponse)(nil), // 804: forge.HostFirmwareConfigResponse - (*ListHostFirmwareRequest)(nil), // 805: forge.ListHostFirmwareRequest - (*ListHostFirmwareResponse)(nil), // 806: forge.ListHostFirmwareResponse - (*AvailableHostFirmware)(nil), // 807: forge.AvailableHostFirmware - (*TrimTableRequest)(nil), // 808: forge.TrimTableRequest - (*TrimTableResponse)(nil), // 809: forge.TrimTableResponse - (*NvlinkNmxcEndpoint)(nil), // 810: forge.NvlinkNmxcEndpoint - (*NvlinkNmxcEndpointList)(nil), // 811: forge.NvlinkNmxcEndpointList - (*DeleteNvlinkNmxcEndpointRequest)(nil), // 812: forge.DeleteNvlinkNmxcEndpointRequest - (*CreateRemediationRequest)(nil), // 813: forge.CreateRemediationRequest - (*CreateRemediationResponse)(nil), // 814: forge.CreateRemediationResponse - (*RemediationIdList)(nil), // 815: forge.RemediationIdList - (*RemediationList)(nil), // 816: forge.RemediationList - (*Remediation)(nil), // 817: forge.Remediation - (*ApproveRemediationRequest)(nil), // 818: forge.ApproveRemediationRequest - (*RevokeRemediationRequest)(nil), // 819: forge.RevokeRemediationRequest - (*EnableRemediationRequest)(nil), // 820: forge.EnableRemediationRequest - (*DisableRemediationRequest)(nil), // 821: forge.DisableRemediationRequest - (*FindAppliedRemediationIdsRequest)(nil), // 822: forge.FindAppliedRemediationIdsRequest - (*AppliedRemediationIdList)(nil), // 823: forge.AppliedRemediationIdList - (*FindAppliedRemediationsRequest)(nil), // 824: forge.FindAppliedRemediationsRequest - (*AppliedRemediation)(nil), // 825: forge.AppliedRemediation - (*AppliedRemediationList)(nil), // 826: forge.AppliedRemediationList - (*GetNextRemediationForMachineRequest)(nil), // 827: forge.GetNextRemediationForMachineRequest - (*GetNextRemediationForMachineResponse)(nil), // 828: forge.GetNextRemediationForMachineResponse - (*RemediationAppliedRequest)(nil), // 829: forge.RemediationAppliedRequest - (*RemediationApplicationStatus)(nil), // 830: forge.RemediationApplicationStatus - (*SetPrimaryDpuRequest)(nil), // 831: forge.SetPrimaryDpuRequest - (*SetPrimaryInterfaceRequest)(nil), // 832: forge.SetPrimaryInterfaceRequest - (*UsernamePassword)(nil), // 833: forge.UsernamePassword - (*SessionToken)(nil), // 834: forge.SessionToken - (*DpuExtensionServiceCredential)(nil), // 835: forge.DpuExtensionServiceCredential - (*DpuExtensionServiceVersionInfo)(nil), // 836: forge.DpuExtensionServiceVersionInfo - (*DpuExtensionService)(nil), // 837: forge.DpuExtensionService - (*CreateDpuExtensionServiceRequest)(nil), // 838: forge.CreateDpuExtensionServiceRequest - (*UpdateDpuExtensionServiceRequest)(nil), // 839: forge.UpdateDpuExtensionServiceRequest - (*DeleteDpuExtensionServiceRequest)(nil), // 840: forge.DeleteDpuExtensionServiceRequest - (*DeleteDpuExtensionServiceResponse)(nil), // 841: forge.DeleteDpuExtensionServiceResponse - (*DpuExtensionServiceSearchFilter)(nil), // 842: forge.DpuExtensionServiceSearchFilter - (*DpuExtensionServiceIdList)(nil), // 843: forge.DpuExtensionServiceIdList - (*DpuExtensionServicesByIdsRequest)(nil), // 844: forge.DpuExtensionServicesByIdsRequest - (*DpuExtensionServiceList)(nil), // 845: forge.DpuExtensionServiceList - (*GetDpuExtensionServiceVersionsInfoRequest)(nil), // 846: forge.GetDpuExtensionServiceVersionsInfoRequest - (*DpuExtensionServiceVersionInfoList)(nil), // 847: forge.DpuExtensionServiceVersionInfoList - (*FindInstancesByDpuExtensionServiceRequest)(nil), // 848: forge.FindInstancesByDpuExtensionServiceRequest - (*FindInstancesByDpuExtensionServiceResponse)(nil), // 849: forge.FindInstancesByDpuExtensionServiceResponse - (*InstanceDpuExtensionServiceInfo)(nil), // 850: forge.InstanceDpuExtensionServiceInfo - (*DpuExtensionServiceObservabilityConfigPrometheus)(nil), // 851: forge.DpuExtensionServiceObservabilityConfigPrometheus - (*DpuExtensionServiceObservabilityConfigLogging)(nil), // 852: forge.DpuExtensionServiceObservabilityConfigLogging - (*DpuExtensionServiceObservabilityConfig)(nil), // 853: forge.DpuExtensionServiceObservabilityConfig - (*DpuExtensionServiceObservability)(nil), // 854: forge.DpuExtensionServiceObservability - (*ScoutStreamApiBoundMessage)(nil), // 855: forge.ScoutStreamApiBoundMessage - (*ScoutStreamScoutBoundMessage)(nil), // 856: forge.ScoutStreamScoutBoundMessage - (*ScoutStreamInitRequest)(nil), // 857: forge.ScoutStreamInitRequest - (*ScoutStreamShowConnectionsRequest)(nil), // 858: forge.ScoutStreamShowConnectionsRequest - (*ScoutStreamShowConnectionsResponse)(nil), // 859: forge.ScoutStreamShowConnectionsResponse - (*ScoutStreamDisconnectRequest)(nil), // 860: forge.ScoutStreamDisconnectRequest - (*ScoutStreamDisconnectResponse)(nil), // 861: forge.ScoutStreamDisconnectResponse - (*ScoutStreamAdminPingRequest)(nil), // 862: forge.ScoutStreamAdminPingRequest - (*ScoutStreamAdminPingResponse)(nil), // 863: forge.ScoutStreamAdminPingResponse - (*ScoutStreamAgentPingRequest)(nil), // 864: forge.ScoutStreamAgentPingRequest - (*ScoutStreamAgentPingResponse)(nil), // 865: forge.ScoutStreamAgentPingResponse - (*ScoutStreamConnectionInfo)(nil), // 866: forge.ScoutStreamConnectionInfo - (*ScoutStreamError)(nil), // 867: forge.ScoutStreamError - (*PrefixFilterPolicyEntry)(nil), // 868: forge.PrefixFilterPolicyEntry - (*RoutingProfile)(nil), // 869: forge.RoutingProfile - (*DomainLegacy)(nil), // 870: forge.DomainLegacy - (*DomainListLegacy)(nil), // 871: forge.DomainListLegacy - (*DomainDeletionLegacy)(nil), // 872: forge.DomainDeletionLegacy - (*DomainDeletionResultLegacy)(nil), // 873: forge.DomainDeletionResultLegacy - (*DomainSearchQueryLegacy)(nil), // 874: forge.DomainSearchQueryLegacy - (*PxeDomain)(nil), // 875: forge.PxeDomain - (*MachinePositionQuery)(nil), // 876: forge.MachinePositionQuery - (*MachinePositionInfoList)(nil), // 877: forge.MachinePositionInfoList - (*MachinePositionInfo)(nil), // 878: forge.MachinePositionInfo - (*ModifyDPFStateRequest)(nil), // 879: forge.ModifyDPFStateRequest - (*DPFStateResponse)(nil), // 880: forge.DPFStateResponse - (*GetDPFStateRequest)(nil), // 881: forge.GetDPFStateRequest - (*GetDPFHostSnapshotRequest)(nil), // 882: forge.GetDPFHostSnapshotRequest - (*DPFHostSnapshotResponse)(nil), // 883: forge.DPFHostSnapshotResponse - (*GetDPFServiceVersionsRequest)(nil), // 884: forge.GetDPFServiceVersionsRequest - (*DPFServiceVersion)(nil), // 885: forge.DPFServiceVersion - (*DPFServiceVersionsResponse)(nil), // 886: forge.DPFServiceVersionsResponse - (*ComponentResult)(nil), // 887: forge.ComponentResult - (*SwitchIdList)(nil), // 888: forge.SwitchIdList - (*PowerShelfIdList)(nil), // 889: forge.PowerShelfIdList - (*GetComponentInventoryRequest)(nil), // 890: forge.GetComponentInventoryRequest - (*ComponentInventoryEntry)(nil), // 891: forge.ComponentInventoryEntry - (*GetComponentInventoryResponse)(nil), // 892: forge.GetComponentInventoryResponse - (*ComponentPowerControlRequest)(nil), // 893: forge.ComponentPowerControlRequest - (*ComponentPowerControlResponse)(nil), // 894: forge.ComponentPowerControlResponse - (*ComponentConfigureSwitchCertificateRequest)(nil), // 895: forge.ComponentConfigureSwitchCertificateRequest - (*ComponentConfigureSwitchCertificateResponse)(nil), // 896: forge.ComponentConfigureSwitchCertificateResponse - (*FirmwareUpdateStatus)(nil), // 897: forge.FirmwareUpdateStatus - (*UpdateComputeTrayFirmwareTarget)(nil), // 898: forge.UpdateComputeTrayFirmwareTarget - (*UpdateSwitchFirmwareTarget)(nil), // 899: forge.UpdateSwitchFirmwareTarget - (*UpdatePowerShelfFirmwareTarget)(nil), // 900: forge.UpdatePowerShelfFirmwareTarget - (*UpdateFirmwareObjectTarget)(nil), // 901: forge.UpdateFirmwareObjectTarget - (*UpdateComponentFirmwareRequest)(nil), // 902: forge.UpdateComponentFirmwareRequest - (*UpdateComponentFirmwareResponse)(nil), // 903: forge.UpdateComponentFirmwareResponse - (*GetComponentFirmwareStatusRequest)(nil), // 904: forge.GetComponentFirmwareStatusRequest - (*GetComponentFirmwareStatusResponse)(nil), // 905: forge.GetComponentFirmwareStatusResponse - (*ListComponentFirmwareVersionsRequest)(nil), // 906: forge.ListComponentFirmwareVersionsRequest - (*ComputeTrayFirmwareVersions)(nil), // 907: forge.ComputeTrayFirmwareVersions - (*DeviceFirmwareVersions)(nil), // 908: forge.DeviceFirmwareVersions - (*ListComponentFirmwareVersionsResponse)(nil), // 909: forge.ListComponentFirmwareVersionsResponse - (*SpxPartitionCreationRequest)(nil), // 910: forge.SpxPartitionCreationRequest - (*SpxPartition)(nil), // 911: forge.SpxPartition - (*SpxPartitionIdList)(nil), // 912: forge.SpxPartitionIdList - (*SpxPartitionDeletionRequest)(nil), // 913: forge.SpxPartitionDeletionRequest - (*SpxPartitionDeletionResult)(nil), // 914: forge.SpxPartitionDeletionResult - (*SpxPartitionSearchFilter)(nil), // 915: forge.SpxPartitionSearchFilter - (*SpxPartitionList)(nil), // 916: forge.SpxPartitionList - (*SpxPartitionsByIdsRequest)(nil), // 917: forge.SpxPartitionsByIdsRequest - (*AdminForceDeleteSwitchRequest)(nil), // 918: forge.AdminForceDeleteSwitchRequest - (*AdminForceDeleteSwitchResponse)(nil), // 919: forge.AdminForceDeleteSwitchResponse - (*AdminForceDeletePowerShelfRequest)(nil), // 920: forge.AdminForceDeletePowerShelfRequest - (*AdminForceDeletePowerShelfResponse)(nil), // 921: forge.AdminForceDeletePowerShelfResponse - (*OperatingSystem)(nil), // 922: forge.OperatingSystem - (*CreateOperatingSystemRequest)(nil), // 923: forge.CreateOperatingSystemRequest - (*IpxeTemplateParameters)(nil), // 924: forge.IpxeTemplateParameters - (*IpxeTemplateArtifacts)(nil), // 925: forge.IpxeTemplateArtifacts - (*UpdateOperatingSystemRequest)(nil), // 926: forge.UpdateOperatingSystemRequest - (*DeleteOperatingSystemRequest)(nil), // 927: forge.DeleteOperatingSystemRequest - (*DeleteOperatingSystemResponse)(nil), // 928: forge.DeleteOperatingSystemResponse - (*OperatingSystemSearchFilter)(nil), // 929: forge.OperatingSystemSearchFilter - (*OperatingSystemIdList)(nil), // 930: forge.OperatingSystemIdList - (*OperatingSystemsByIdsRequest)(nil), // 931: forge.OperatingSystemsByIdsRequest - (*OperatingSystemList)(nil), // 932: forge.OperatingSystemList - (*GetOperatingSystemCachableIpxeTemplateArtifactsRequest)(nil), // 933: forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest - (*IpxeTemplateArtifactList)(nil), // 934: forge.IpxeTemplateArtifactList - (*IpxeTemplateArtifactUpdateRequest)(nil), // 935: forge.IpxeTemplateArtifactUpdateRequest - (*UpdateOperatingSystemIpxeTemplateArtifactRequest)(nil), // 936: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest - (*HostRepresentorInterceptBridging)(nil), // 937: forge.HostRepresentorInterceptBridging - (*ReWrapSecretsRequest)(nil), // 938: forge.ReWrapSecretsRequest - (*ReWrapSecretsResponse)(nil), // 939: forge.ReWrapSecretsResponse - (*GetMachineBootInterfacesRequest)(nil), // 940: forge.GetMachineBootInterfacesRequest - (*MachineInterfaceBootInterface)(nil), // 941: forge.MachineInterfaceBootInterface - (*PredictedBootInterface)(nil), // 942: forge.PredictedBootInterface - (*ExploredBootInterface)(nil), // 943: forge.ExploredBootInterface - (*RetainedBootInterface)(nil), // 944: forge.RetainedBootInterface - (*GetMachineBootInterfacesResponse)(nil), // 945: forge.GetMachineBootInterfacesResponse - nil, // 946: forge.RuntimeConfig.DpuNicFirmwareUpdateVersionEntry - (*DNSMessage_DNSQuestion)(nil), // 947: forge.DNSMessage.DNSQuestion - (*DNSMessage_DNSResponse)(nil), // 948: forge.DNSMessage.DNSResponse - (*DNSMessage_DNSResponse_DNSRR)(nil), // 949: forge.DNSMessage.DNSResponse.DNSRR - nil, // 950: forge.FabricManagerConfig.ConfigMapEntry - nil, // 951: forge.StateHistories.HistoriesEntry - nil, // 952: forge.MachineStateHistories.HistoriesEntry - nil, // 953: forge.HealthHistories.HistoriesEntry - nil, // 954: forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry - (*MachineCredentialsUpdateRequest_Credentials)(nil), // 955: forge.MachineCredentialsUpdateRequest.Credentials - (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo)(nil), // 956: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo - (*ForgeAgentControlResponse_Noop)(nil), // 957: forge.ForgeAgentControlResponse.Noop - (*ForgeAgentControlResponse_Reset)(nil), // 958: forge.ForgeAgentControlResponse.Reset - (*ForgeAgentControlResponse_Discovery)(nil), // 959: forge.ForgeAgentControlResponse.Discovery - (*ForgeAgentControlResponse_Rebuild)(nil), // 960: forge.ForgeAgentControlResponse.Rebuild - (*ForgeAgentControlResponse_Retry)(nil), // 961: forge.ForgeAgentControlResponse.Retry - (*ForgeAgentControlResponse_Measure)(nil), // 962: forge.ForgeAgentControlResponse.Measure - (*ForgeAgentControlResponse_LogError)(nil), // 963: forge.ForgeAgentControlResponse.LogError - (*ForgeAgentControlResponse_MachineValidation)(nil), // 964: forge.ForgeAgentControlResponse.MachineValidation - (*ForgeAgentControlResponse_MachineValidationFilter)(nil), // 965: forge.ForgeAgentControlResponse.MachineValidationFilter - (*ForgeAgentControlResponse_MlxAction)(nil), // 966: forge.ForgeAgentControlResponse.MlxAction - (*ForgeAgentControlResponse_MlxDeviceAction)(nil), // 967: forge.ForgeAgentControlResponse.MlxDeviceAction - (*ForgeAgentControlResponse_MlxDeviceNoop)(nil), // 968: forge.ForgeAgentControlResponse.MlxDeviceNoop - (*ForgeAgentControlResponse_MlxDeviceLock)(nil), // 969: forge.ForgeAgentControlResponse.MlxDeviceLock - (*ForgeAgentControlResponse_MlxDeviceUnlock)(nil), // 970: forge.ForgeAgentControlResponse.MlxDeviceUnlock - (*ForgeAgentControlResponse_MlxDeviceApplyProfile)(nil), // 971: forge.ForgeAgentControlResponse.MlxDeviceApplyProfile - (*ForgeAgentControlResponse_MlxDeviceApplyFirmware)(nil), // 972: forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware - (*ForgeAgentControlResponse_FirmwareUpgrade)(nil), // 973: forge.ForgeAgentControlResponse.FirmwareUpgrade - (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair)(nil), // 974: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.KeyValuePair - (*MachineCleanupInfo_CleanupStepResult)(nil), // 975: forge.MachineCleanupInfo.CleanupStepResult - (*DpuReprovisioningListResponse_DpuReprovisioningListItem)(nil), // 976: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem - (*HostReprovisioningListResponse_HostReprovisioningListItem)(nil), // 977: forge.HostReprovisioningListResponse.HostReprovisioningListItem - (*MachineValidationTestUpdateRequest_Payload)(nil), // 978: forge.MachineValidationTestUpdateRequest.Payload - nil, // 979: forge.RedfishBrowseResponse.HeadersEntry - nil, // 980: forge.RedfishActionResult.HeadersEntry - nil, // 981: forge.UfmBrowseResponse.HeadersEntry - nil, // 982: forge.DesiredFirmwareVersionEntry.ComponentVersionsEntry - nil, // 983: forge.NmxcBrowseResponse.HeadersEntry - (*DPFStateResponse_DPFState)(nil), // 984: forge.DPFStateResponse.DPFState - (*MachineId)(nil), // 985: common.MachineId - (*timestamppb.Timestamp)(nil), // 986: google.protobuf.Timestamp - (*VpcId)(nil), // 987: common.VpcId - (*NVLinkLogicalPartitionId)(nil), // 988: common.NVLinkLogicalPartitionId - (*VpcPrefixId)(nil), // 989: common.VpcPrefixId - (*VpcPeeringId)(nil), // 990: common.VpcPeeringId - (*IBPartitionId)(nil), // 991: common.IBPartitionId - (*HealthReport)(nil), // 992: health.HealthReport - (*PowerShelfId)(nil), // 993: common.PowerShelfId - (*RackId)(nil), // 994: common.RackId - (*UUID)(nil), // 995: common.UUID - (*SwitchId)(nil), // 996: common.SwitchId - (*RackProfileId)(nil), // 997: common.RackProfileId - (*DomainId)(nil), // 998: common.DomainId - (*NetworkSegmentId)(nil), // 999: common.NetworkSegmentId - (*NetworkPrefixId)(nil), // 1000: common.NetworkPrefixId - (*InstanceId)(nil), // 1001: common.InstanceId - (*IpxeTemplateId)(nil), // 1002: common.IpxeTemplateId - (*OperatingSystemId)(nil), // 1003: common.OperatingSystemId - (*SpxPartitionId)(nil), // 1004: common.SpxPartitionId - (*NVLinkDomainId)(nil), // 1005: common.NVLinkDomainId - (*MachineInterfaceId)(nil), // 1006: common.MachineInterfaceId - (*DiscoveryInfo)(nil), // 1007: machine_discovery.DiscoveryInfo - (*durationpb.Duration)(nil), // 1008: google.protobuf.Duration - (*StringList)(nil), // 1009: common.StringList - (*Gpu)(nil), // 1010: machine_discovery.Gpu - (*RouteTarget)(nil), // 1011: common.RouteTarget - (*MachineValidationId)(nil), // 1012: common.MachineValidationId - (*Uint32List)(nil), // 1013: common.Uint32List - (*DpaInterfaceId)(nil), // 1014: common.DpaInterfaceId - (*ComputeAllocationId)(nil), // 1015: common.ComputeAllocationId - (*RackHardwareType)(nil), // 1016: common.RackHardwareType - (*NVLinkPartitionId)(nil), // 1017: common.NVLinkPartitionId - (*RemediationId)(nil), // 1018: common.RemediationId - (*MlxDeviceLockdownResponse)(nil), // 1019: mlx_device.MlxDeviceLockdownResponse - (*MlxDeviceProfileSyncResponse)(nil), // 1020: mlx_device.MlxDeviceProfileSyncResponse - (*MlxDeviceProfileCompareResponse)(nil), // 1021: mlx_device.MlxDeviceProfileCompareResponse - (*MlxDeviceInfoDeviceResponse)(nil), // 1022: mlx_device.MlxDeviceInfoDeviceResponse - (*MlxDeviceInfoReportResponse)(nil), // 1023: mlx_device.MlxDeviceInfoReportResponse - (*MlxDeviceRegistryListResponse)(nil), // 1024: mlx_device.MlxDeviceRegistryListResponse - (*MlxDeviceRegistryShowResponse)(nil), // 1025: mlx_device.MlxDeviceRegistryShowResponse - (*MlxDeviceConfigQueryResponse)(nil), // 1026: mlx_device.MlxDeviceConfigQueryResponse - (*MlxDeviceConfigSetResponse)(nil), // 1027: mlx_device.MlxDeviceConfigSetResponse - (*MlxDeviceConfigSyncResponse)(nil), // 1028: mlx_device.MlxDeviceConfigSyncResponse - (*MlxDeviceConfigCompareResponse)(nil), // 1029: mlx_device.MlxDeviceConfigCompareResponse - (*MlxDeviceLockdownLockRequest)(nil), // 1030: mlx_device.MlxDeviceLockdownLockRequest - (*MlxDeviceLockdownUnlockRequest)(nil), // 1031: mlx_device.MlxDeviceLockdownUnlockRequest - (*MlxDeviceLockdownStatusRequest)(nil), // 1032: mlx_device.MlxDeviceLockdownStatusRequest - (*MlxDeviceProfileSyncRequest)(nil), // 1033: mlx_device.MlxDeviceProfileSyncRequest - (*MlxDeviceProfileCompareRequest)(nil), // 1034: mlx_device.MlxDeviceProfileCompareRequest - (*MlxDeviceInfoDeviceRequest)(nil), // 1035: mlx_device.MlxDeviceInfoDeviceRequest - (*MlxDeviceInfoReportRequest)(nil), // 1036: mlx_device.MlxDeviceInfoReportRequest - (*MlxDeviceRegistryListRequest)(nil), // 1037: mlx_device.MlxDeviceRegistryListRequest - (*MlxDeviceRegistryShowRequest)(nil), // 1038: mlx_device.MlxDeviceRegistryShowRequest - (*MlxDeviceConfigQueryRequest)(nil), // 1039: mlx_device.MlxDeviceConfigQueryRequest - (*MlxDeviceConfigSetRequest)(nil), // 1040: mlx_device.MlxDeviceConfigSetRequest - (*MlxDeviceConfigSyncRequest)(nil), // 1041: mlx_device.MlxDeviceConfigSyncRequest - (*MlxDeviceConfigCompareRequest)(nil), // 1042: mlx_device.MlxDeviceConfigCompareRequest - (*Domain)(nil), // 1043: dns.Domain - (*MachineIdList)(nil), // 1044: common.MachineIdList - (*EndpointExplorationReport)(nil), // 1045: site_explorer.EndpointExplorationReport - (SystemPowerControl)(0), // 1046: common.SystemPowerControl - (*SerializableMlxConfigProfile)(nil), // 1047: mlx_device.SerializableMlxConfigProfile - (*FirmwareFlasherProfile)(nil), // 1048: mlx_device.FirmwareFlasherProfile - (*ScoutFirmwareUpgradeTask)(nil), // 1049: scout_firmware_upgrade.ScoutFirmwareUpgradeTask - (*CreateDomainRequest)(nil), // 1050: dns.CreateDomainRequest - (*UpdateDomainRequest)(nil), // 1051: dns.UpdateDomainRequest - (*DomainDeletionRequest)(nil), // 1052: dns.DomainDeletionRequest - (*DomainSearchQuery)(nil), // 1053: dns.DomainSearchQuery - (*DnsResourceRecordLookupRequest)(nil), // 1054: dns.DnsResourceRecordLookupRequest - (*GetAllDomainsRequest)(nil), // 1055: dns.GetAllDomainsRequest - (*DomainMetadataRequest)(nil), // 1056: dns.DomainMetadataRequest - (*emptypb.Empty)(nil), // 1057: google.protobuf.Empty - (*ExploredEndpointSearchFilter)(nil), // 1058: site_explorer.ExploredEndpointSearchFilter - (*ExploredEndpointsByIdsRequest)(nil), // 1059: site_explorer.ExploredEndpointsByIdsRequest - (*ExploredManagedHostSearchFilter)(nil), // 1060: site_explorer.ExploredManagedHostSearchFilter - (*ExploredManagedHostsByIdsRequest)(nil), // 1061: site_explorer.ExploredManagedHostsByIdsRequest - (*ExploredMlxDeviceHostSearchFilter)(nil), // 1062: site_explorer.ExploredMlxDeviceHostSearchFilter - (*ExploredMlxDevicesByIdsRequest)(nil), // 1063: site_explorer.ExploredMlxDevicesByIdsRequest - (*CreateMeasurementBundleRequest)(nil), // 1064: measured_boot.CreateMeasurementBundleRequest - (*DeleteMeasurementBundleRequest)(nil), // 1065: measured_boot.DeleteMeasurementBundleRequest - (*RenameMeasurementBundleRequest)(nil), // 1066: measured_boot.RenameMeasurementBundleRequest - (*UpdateMeasurementBundleRequest)(nil), // 1067: measured_boot.UpdateMeasurementBundleRequest - (*ShowMeasurementBundleRequest)(nil), // 1068: measured_boot.ShowMeasurementBundleRequest - (*ShowMeasurementBundlesRequest)(nil), // 1069: measured_boot.ShowMeasurementBundlesRequest - (*ListMeasurementBundlesRequest)(nil), // 1070: measured_boot.ListMeasurementBundlesRequest - (*ListMeasurementBundleMachinesRequest)(nil), // 1071: measured_boot.ListMeasurementBundleMachinesRequest - (*FindClosestBundleMatchRequest)(nil), // 1072: measured_boot.FindClosestBundleMatchRequest - (*DeleteMeasurementJournalRequest)(nil), // 1073: measured_boot.DeleteMeasurementJournalRequest - (*ShowMeasurementJournalRequest)(nil), // 1074: measured_boot.ShowMeasurementJournalRequest - (*ShowMeasurementJournalsRequest)(nil), // 1075: measured_boot.ShowMeasurementJournalsRequest - (*ListMeasurementJournalRequest)(nil), // 1076: measured_boot.ListMeasurementJournalRequest - (*AttestCandidateMachineRequest)(nil), // 1077: measured_boot.AttestCandidateMachineRequest - (*ShowCandidateMachineRequest)(nil), // 1078: measured_boot.ShowCandidateMachineRequest - (*ShowCandidateMachinesRequest)(nil), // 1079: measured_boot.ShowCandidateMachinesRequest - (*ListCandidateMachinesRequest)(nil), // 1080: measured_boot.ListCandidateMachinesRequest - (*CreateMeasurementSystemProfileRequest)(nil), // 1081: measured_boot.CreateMeasurementSystemProfileRequest - (*DeleteMeasurementSystemProfileRequest)(nil), // 1082: measured_boot.DeleteMeasurementSystemProfileRequest - (*RenameMeasurementSystemProfileRequest)(nil), // 1083: measured_boot.RenameMeasurementSystemProfileRequest - (*ShowMeasurementSystemProfileRequest)(nil), // 1084: measured_boot.ShowMeasurementSystemProfileRequest - (*ShowMeasurementSystemProfilesRequest)(nil), // 1085: measured_boot.ShowMeasurementSystemProfilesRequest - (*ListMeasurementSystemProfilesRequest)(nil), // 1086: measured_boot.ListMeasurementSystemProfilesRequest - (*ListMeasurementSystemProfileBundlesRequest)(nil), // 1087: measured_boot.ListMeasurementSystemProfileBundlesRequest - (*ListMeasurementSystemProfileMachinesRequest)(nil), // 1088: measured_boot.ListMeasurementSystemProfileMachinesRequest - (*CreateMeasurementReportRequest)(nil), // 1089: measured_boot.CreateMeasurementReportRequest - (*DeleteMeasurementReportRequest)(nil), // 1090: measured_boot.DeleteMeasurementReportRequest - (*PromoteMeasurementReportRequest)(nil), // 1091: measured_boot.PromoteMeasurementReportRequest - (*RevokeMeasurementReportRequest)(nil), // 1092: measured_boot.RevokeMeasurementReportRequest - (*ShowMeasurementReportForIdRequest)(nil), // 1093: measured_boot.ShowMeasurementReportForIdRequest - (*ShowMeasurementReportsForMachineRequest)(nil), // 1094: measured_boot.ShowMeasurementReportsForMachineRequest - (*ShowMeasurementReportsRequest)(nil), // 1095: measured_boot.ShowMeasurementReportsRequest - (*ListMeasurementReportRequest)(nil), // 1096: measured_boot.ListMeasurementReportRequest - (*MatchMeasurementReportRequest)(nil), // 1097: measured_boot.MatchMeasurementReportRequest - (*ImportSiteMeasurementsRequest)(nil), // 1098: measured_boot.ImportSiteMeasurementsRequest - (*ExportSiteMeasurementsRequest)(nil), // 1099: measured_boot.ExportSiteMeasurementsRequest - (*AddMeasurementTrustedMachineRequest)(nil), // 1100: measured_boot.AddMeasurementTrustedMachineRequest - (*RemoveMeasurementTrustedMachineRequest)(nil), // 1101: measured_boot.RemoveMeasurementTrustedMachineRequest - (*AddMeasurementTrustedProfileRequest)(nil), // 1102: measured_boot.AddMeasurementTrustedProfileRequest - (*RemoveMeasurementTrustedProfileRequest)(nil), // 1103: measured_boot.RemoveMeasurementTrustedProfileRequest - (*ListMeasurementTrustedMachinesRequest)(nil), // 1104: measured_boot.ListMeasurementTrustedMachinesRequest - (*ListMeasurementTrustedProfilesRequest)(nil), // 1105: measured_boot.ListMeasurementTrustedProfilesRequest - (*ListAttestationSummaryRequest)(nil), // 1106: measured_boot.ListAttestationSummaryRequest - (*PublishMlxDeviceReportRequest)(nil), // 1107: mlx_device.PublishMlxDeviceReportRequest - (*PublishMlxObservationReportRequest)(nil), // 1108: mlx_device.PublishMlxObservationReportRequest - (*MlxAdminProfileSyncRequest)(nil), // 1109: mlx_device.MlxAdminProfileSyncRequest - (*MlxAdminProfileShowRequest)(nil), // 1110: mlx_device.MlxAdminProfileShowRequest - (*MlxAdminProfileCompareRequest)(nil), // 1111: mlx_device.MlxAdminProfileCompareRequest - (*MlxAdminProfileListRequest)(nil), // 1112: mlx_device.MlxAdminProfileListRequest - (*MlxAdminLockdownLockRequest)(nil), // 1113: mlx_device.MlxAdminLockdownLockRequest - (*MlxAdminLockdownUnlockRequest)(nil), // 1114: mlx_device.MlxAdminLockdownUnlockRequest - (*MlxAdminLockdownStatusRequest)(nil), // 1115: mlx_device.MlxAdminLockdownStatusRequest - (*MlxAdminDeviceInfoRequest)(nil), // 1116: mlx_device.MlxAdminDeviceInfoRequest - (*MlxAdminDeviceReportRequest)(nil), // 1117: mlx_device.MlxAdminDeviceReportRequest - (*MlxAdminRegistryListRequest)(nil), // 1118: mlx_device.MlxAdminRegistryListRequest - (*MlxAdminRegistryShowRequest)(nil), // 1119: mlx_device.MlxAdminRegistryShowRequest - (*MlxAdminConfigQueryRequest)(nil), // 1120: mlx_device.MlxAdminConfigQueryRequest - (*MlxAdminConfigSetRequest)(nil), // 1121: mlx_device.MlxAdminConfigSetRequest - (*MlxAdminConfigSyncRequest)(nil), // 1122: mlx_device.MlxAdminConfigSyncRequest - (*MlxAdminConfigCompareRequest)(nil), // 1123: mlx_device.MlxAdminConfigCompareRequest - (*DomainDeletionResult)(nil), // 1124: dns.DomainDeletionResult - (*DomainList)(nil), // 1125: dns.DomainList - (*DnsResourceRecordLookupResponse)(nil), // 1126: dns.DnsResourceRecordLookupResponse - (*GetAllDomainsResponse)(nil), // 1127: dns.GetAllDomainsResponse - (*DomainMetadataResponse)(nil), // 1128: dns.DomainMetadataResponse - (*SiteExplorationReport)(nil), // 1129: site_explorer.SiteExplorationReport - (*SiteExplorerLastRunResponse)(nil), // 1130: site_explorer.SiteExplorerLastRunResponse - (*ExploredEndpoint)(nil), // 1131: site_explorer.ExploredEndpoint - (*ExploredEndpointIdList)(nil), // 1132: site_explorer.ExploredEndpointIdList - (*ExploredEndpointList)(nil), // 1133: site_explorer.ExploredEndpointList - (*ExploredManagedHostIdList)(nil), // 1134: site_explorer.ExploredManagedHostIdList - (*ExploredManagedHostList)(nil), // 1135: site_explorer.ExploredManagedHostList - (*ExploredMlxDeviceHostIdList)(nil), // 1136: site_explorer.ExploredMlxDeviceHostIdList - (*ExploredMlxDeviceList)(nil), // 1137: site_explorer.ExploredMlxDeviceList - (*CreateMeasurementBundleResponse)(nil), // 1138: measured_boot.CreateMeasurementBundleResponse - (*DeleteMeasurementBundleResponse)(nil), // 1139: measured_boot.DeleteMeasurementBundleResponse - (*RenameMeasurementBundleResponse)(nil), // 1140: measured_boot.RenameMeasurementBundleResponse - (*UpdateMeasurementBundleResponse)(nil), // 1141: measured_boot.UpdateMeasurementBundleResponse - (*ShowMeasurementBundleResponse)(nil), // 1142: measured_boot.ShowMeasurementBundleResponse - (*ShowMeasurementBundlesResponse)(nil), // 1143: measured_boot.ShowMeasurementBundlesResponse - (*ListMeasurementBundlesResponse)(nil), // 1144: measured_boot.ListMeasurementBundlesResponse - (*ListMeasurementBundleMachinesResponse)(nil), // 1145: measured_boot.ListMeasurementBundleMachinesResponse - (*DeleteMeasurementJournalResponse)(nil), // 1146: measured_boot.DeleteMeasurementJournalResponse - (*ShowMeasurementJournalResponse)(nil), // 1147: measured_boot.ShowMeasurementJournalResponse - (*ShowMeasurementJournalsResponse)(nil), // 1148: measured_boot.ShowMeasurementJournalsResponse - (*ListMeasurementJournalResponse)(nil), // 1149: measured_boot.ListMeasurementJournalResponse - (*AttestCandidateMachineResponse)(nil), // 1150: measured_boot.AttestCandidateMachineResponse - (*ShowCandidateMachineResponse)(nil), // 1151: measured_boot.ShowCandidateMachineResponse - (*ShowCandidateMachinesResponse)(nil), // 1152: measured_boot.ShowCandidateMachinesResponse - (*ListCandidateMachinesResponse)(nil), // 1153: measured_boot.ListCandidateMachinesResponse - (*CreateMeasurementSystemProfileResponse)(nil), // 1154: measured_boot.CreateMeasurementSystemProfileResponse - (*DeleteMeasurementSystemProfileResponse)(nil), // 1155: measured_boot.DeleteMeasurementSystemProfileResponse - (*RenameMeasurementSystemProfileResponse)(nil), // 1156: measured_boot.RenameMeasurementSystemProfileResponse - (*ShowMeasurementSystemProfileResponse)(nil), // 1157: measured_boot.ShowMeasurementSystemProfileResponse - (*ShowMeasurementSystemProfilesResponse)(nil), // 1158: measured_boot.ShowMeasurementSystemProfilesResponse - (*ListMeasurementSystemProfilesResponse)(nil), // 1159: measured_boot.ListMeasurementSystemProfilesResponse - (*ListMeasurementSystemProfileBundlesResponse)(nil), // 1160: measured_boot.ListMeasurementSystemProfileBundlesResponse - (*ListMeasurementSystemProfileMachinesResponse)(nil), // 1161: measured_boot.ListMeasurementSystemProfileMachinesResponse - (*CreateMeasurementReportResponse)(nil), // 1162: measured_boot.CreateMeasurementReportResponse - (*DeleteMeasurementReportResponse)(nil), // 1163: measured_boot.DeleteMeasurementReportResponse - (*PromoteMeasurementReportResponse)(nil), // 1164: measured_boot.PromoteMeasurementReportResponse - (*RevokeMeasurementReportResponse)(nil), // 1165: measured_boot.RevokeMeasurementReportResponse - (*ShowMeasurementReportForIdResponse)(nil), // 1166: measured_boot.ShowMeasurementReportForIdResponse - (*ShowMeasurementReportsForMachineResponse)(nil), // 1167: measured_boot.ShowMeasurementReportsForMachineResponse - (*ShowMeasurementReportsResponse)(nil), // 1168: measured_boot.ShowMeasurementReportsResponse - (*ListMeasurementReportResponse)(nil), // 1169: measured_boot.ListMeasurementReportResponse - (*MatchMeasurementReportResponse)(nil), // 1170: measured_boot.MatchMeasurementReportResponse - (*ImportSiteMeasurementsResponse)(nil), // 1171: measured_boot.ImportSiteMeasurementsResponse - (*ExportSiteMeasurementsResponse)(nil), // 1172: measured_boot.ExportSiteMeasurementsResponse - (*AddMeasurementTrustedMachineResponse)(nil), // 1173: measured_boot.AddMeasurementTrustedMachineResponse - (*RemoveMeasurementTrustedMachineResponse)(nil), // 1174: measured_boot.RemoveMeasurementTrustedMachineResponse - (*AddMeasurementTrustedProfileResponse)(nil), // 1175: measured_boot.AddMeasurementTrustedProfileResponse - (*RemoveMeasurementTrustedProfileResponse)(nil), // 1176: measured_boot.RemoveMeasurementTrustedProfileResponse - (*ListMeasurementTrustedMachinesResponse)(nil), // 1177: measured_boot.ListMeasurementTrustedMachinesResponse - (*ListMeasurementTrustedProfilesResponse)(nil), // 1178: measured_boot.ListMeasurementTrustedProfilesResponse - (*ListAttestationSummaryResponse)(nil), // 1179: measured_boot.ListAttestationSummaryResponse - (*LockdownStatus)(nil), // 1180: site_explorer.LockdownStatus - (*PublishMlxDeviceReportResponse)(nil), // 1181: mlx_device.PublishMlxDeviceReportResponse - (*PublishMlxObservationReportResponse)(nil), // 1182: mlx_device.PublishMlxObservationReportResponse - (*MlxAdminProfileSyncResponse)(nil), // 1183: mlx_device.MlxAdminProfileSyncResponse - (*MlxAdminProfileShowResponse)(nil), // 1184: mlx_device.MlxAdminProfileShowResponse - (*MlxAdminProfileCompareResponse)(nil), // 1185: mlx_device.MlxAdminProfileCompareResponse - (*MlxAdminProfileListResponse)(nil), // 1186: mlx_device.MlxAdminProfileListResponse - (*MlxAdminLockdownLockResponse)(nil), // 1187: mlx_device.MlxAdminLockdownLockResponse - (*MlxAdminLockdownUnlockResponse)(nil), // 1188: mlx_device.MlxAdminLockdownUnlockResponse - (*MlxAdminLockdownStatusResponse)(nil), // 1189: mlx_device.MlxAdminLockdownStatusResponse - (*MlxAdminDeviceInfoResponse)(nil), // 1190: mlx_device.MlxAdminDeviceInfoResponse - (*MlxAdminDeviceReportResponse)(nil), // 1191: mlx_device.MlxAdminDeviceReportResponse - (*MlxAdminRegistryListResponse)(nil), // 1192: mlx_device.MlxAdminRegistryListResponse - (*MlxAdminRegistryShowResponse)(nil), // 1193: mlx_device.MlxAdminRegistryShowResponse - (*MlxAdminConfigQueryResponse)(nil), // 1194: mlx_device.MlxAdminConfigQueryResponse - (*MlxAdminConfigSetResponse)(nil), // 1195: mlx_device.MlxAdminConfigSetResponse - (*MlxAdminConfigSyncResponse)(nil), // 1196: mlx_device.MlxAdminConfigSyncResponse - (*MlxAdminConfigCompareResponse)(nil), // 1197: mlx_device.MlxAdminConfigCompareResponse + (*MachineBmcVendorOverrideUpdateRequest)(nil), // 340: forge.MachineBmcVendorOverrideUpdateRequest + (*RackMetadataUpdateRequest)(nil), // 341: forge.RackMetadataUpdateRequest + (*SwitchMetadataUpdateRequest)(nil), // 342: forge.SwitchMetadataUpdateRequest + (*PowerShelfMetadataUpdateRequest)(nil), // 343: forge.PowerShelfMetadataUpdateRequest + (*DpuAgentInventoryReport)(nil), // 344: forge.DpuAgentInventoryReport + (*MachineComponentInventory)(nil), // 345: forge.MachineComponentInventory + (*MachineInventorySoftwareComponent)(nil), // 346: forge.MachineInventorySoftwareComponent + (*HealthSourceOrigin)(nil), // 347: forge.HealthSourceOrigin + (*ControllerStateReason)(nil), // 348: forge.ControllerStateReason + (*ControllerStateSourceReference)(nil), // 349: forge.ControllerStateSourceReference + (*StateSla)(nil), // 350: forge.StateSla + (*InstanceTenantStatus)(nil), // 351: forge.InstanceTenantStatus + (*MachineEvent)(nil), // 352: forge.MachineEvent + (*MachineInterface)(nil), // 353: forge.MachineInterface + (*InfinibandStatusObservation)(nil), // 354: forge.InfinibandStatusObservation + (*MachineIbInterface)(nil), // 355: forge.MachineIbInterface + (*DhcpDiscovery)(nil), // 356: forge.DhcpDiscovery + (*ExpireDhcpLeaseRequest)(nil), // 357: forge.ExpireDhcpLeaseRequest + (*ExpireDhcpLeaseResponse)(nil), // 358: forge.ExpireDhcpLeaseResponse + (*DhcpRecord)(nil), // 359: forge.DhcpRecord + (*NetworkSegmentList)(nil), // 360: forge.NetworkSegmentList + (*SSHKeyValidationRequest)(nil), // 361: forge.SSHKeyValidationRequest + (*SSHKeyValidationResponse)(nil), // 362: forge.SSHKeyValidationResponse + (*GetBmcCredentialsRequest)(nil), // 363: forge.GetBmcCredentialsRequest + (*GetSwitchNvosCredentialsRequest)(nil), // 364: forge.GetSwitchNvosCredentialsRequest + (*GetBmcCredentialsResponse)(nil), // 365: forge.GetBmcCredentialsResponse + (*BmcCredentials)(nil), // 366: forge.BmcCredentials + (*GetSiteExplorationRequest)(nil), // 367: forge.GetSiteExplorationRequest + (*ClearSiteExplorationErrorRequest)(nil), // 368: forge.ClearSiteExplorationErrorRequest + (*ReExploreEndpointRequest)(nil), // 369: forge.ReExploreEndpointRequest + (*RefreshEndpointReportRequest)(nil), // 370: forge.RefreshEndpointReportRequest + (*DeleteExploredEndpointRequest)(nil), // 371: forge.DeleteExploredEndpointRequest + (*PauseExploredEndpointRemediationRequest)(nil), // 372: forge.PauseExploredEndpointRemediationRequest + (*DeleteExploredEndpointResponse)(nil), // 373: forge.DeleteExploredEndpointResponse + (*BmcEndpointRequest)(nil), // 374: forge.BmcEndpointRequest + (*SshTimeoutConfig)(nil), // 375: forge.SshTimeoutConfig + (*SshRequest)(nil), // 376: forge.SshRequest + (*CopyBfbToDpuRshimRequest)(nil), // 377: forge.CopyBfbToDpuRshimRequest + (*UpdateMachineHardwareInfoRequest)(nil), // 378: forge.UpdateMachineHardwareInfoRequest + (*MachineHardwareInfo)(nil), // 379: forge.MachineHardwareInfo + (*ManagedHostNetworkConfigRequest)(nil), // 380: forge.ManagedHostNetworkConfigRequest + (*ManagedHostNetworkConfigResponse)(nil), // 381: forge.ManagedHostNetworkConfigResponse + (*TrafficInterceptConfig)(nil), // 382: forge.TrafficInterceptConfig + (*TrafficInterceptBridging)(nil), // 383: forge.TrafficInterceptBridging + (*ManagedHostDpuExtensionServiceConfig)(nil), // 384: forge.ManagedHostDpuExtensionServiceConfig + (*ManagedHostQuarantineState)(nil), // 385: forge.ManagedHostQuarantineState + (*GetManagedHostQuarantineStateRequest)(nil), // 386: forge.GetManagedHostQuarantineStateRequest + (*GetManagedHostQuarantineStateResponse)(nil), // 387: forge.GetManagedHostQuarantineStateResponse + (*SetManagedHostQuarantineStateRequest)(nil), // 388: forge.SetManagedHostQuarantineStateRequest + (*SetManagedHostQuarantineStateResponse)(nil), // 389: forge.SetManagedHostQuarantineStateResponse + (*ClearManagedHostQuarantineStateRequest)(nil), // 390: forge.ClearManagedHostQuarantineStateRequest + (*ClearManagedHostQuarantineStateResponse)(nil), // 391: forge.ClearManagedHostQuarantineStateResponse + (*ManagedHostNetworkConfig)(nil), // 392: forge.ManagedHostNetworkConfig + (*FlatInterfaceConfig)(nil), // 393: forge.FlatInterfaceConfig + (*FlatInterfaceRoutingProfile)(nil), // 394: forge.FlatInterfaceRoutingProfile + (*FlatInterfaceIpv6Config)(nil), // 395: forge.FlatInterfaceIpv6Config + (*FlatInterfaceNetworkSecurityGroupConfig)(nil), // 396: forge.FlatInterfaceNetworkSecurityGroupConfig + (*ManagedHostNetworkStatusRequest)(nil), // 397: forge.ManagedHostNetworkStatusRequest + (*ManagedHostNetworkStatusResponse)(nil), // 398: forge.ManagedHostNetworkStatusResponse + (*DpuAgentUpgradeCheckRequest)(nil), // 399: forge.DpuAgentUpgradeCheckRequest + (*DpuAgentUpgradeCheckResponse)(nil), // 400: forge.DpuAgentUpgradeCheckResponse + (*DpuAgentUpgradePolicyRequest)(nil), // 401: forge.DpuAgentUpgradePolicyRequest + (*DpuAgentUpgradePolicyResponse)(nil), // 402: forge.DpuAgentUpgradePolicyResponse + (*AdminForceDeleteMachineRequest)(nil), // 403: forge.AdminForceDeleteMachineRequest + (*AdminForceDeleteMachineResponse)(nil), // 404: forge.AdminForceDeleteMachineResponse + (*DisableSecureBootResponse)(nil), // 405: forge.DisableSecureBootResponse + (*LockdownRequest)(nil), // 406: forge.LockdownRequest + (*LockdownResponse)(nil), // 407: forge.LockdownResponse + (*LockdownStatusRequest)(nil), // 408: forge.LockdownStatusRequest + (*MachineSetupStatusRequest)(nil), // 409: forge.MachineSetupStatusRequest + (*MachineSetupRequest)(nil), // 410: forge.MachineSetupRequest + (*MachineSetupResponse)(nil), // 411: forge.MachineSetupResponse + (*SetDpuFirstBootOrderRequest)(nil), // 412: forge.SetDpuFirstBootOrderRequest + (*SetDpuFirstBootOrderResponse)(nil), // 413: forge.SetDpuFirstBootOrderResponse + (*AdminRebootRequest)(nil), // 414: forge.AdminRebootRequest + (*AdminRebootResponse)(nil), // 415: forge.AdminRebootResponse + (*AdminBmcResetRequest)(nil), // 416: forge.AdminBmcResetRequest + (*AdminBmcResetResponse)(nil), // 417: forge.AdminBmcResetResponse + (*EnableInfiniteBootRequest)(nil), // 418: forge.EnableInfiniteBootRequest + (*EnableInfiniteBootResponse)(nil), // 419: forge.EnableInfiniteBootResponse + (*IsInfiniteBootEnabledRequest)(nil), // 420: forge.IsInfiniteBootEnabledRequest + (*IsInfiniteBootEnabledResponse)(nil), // 421: forge.IsInfiniteBootEnabledResponse + (*BMCMetaDataGetRequest)(nil), // 422: forge.BMCMetaDataGetRequest + (*BMCMetaDataGetResponse)(nil), // 423: forge.BMCMetaDataGetResponse + (*MachineCredentialsUpdateRequest)(nil), // 424: forge.MachineCredentialsUpdateRequest + (*MachineCredentialsUpdateResponse)(nil), // 425: forge.MachineCredentialsUpdateResponse + (*ForgeAgentControlRequest)(nil), // 426: forge.ForgeAgentControlRequest + (*ForgeAgentControlResponse)(nil), // 427: forge.ForgeAgentControlResponse + (*MachineDiscoveryInfo)(nil), // 428: forge.MachineDiscoveryInfo + (*MachineDiscoveryCompletedRequest)(nil), // 429: forge.MachineDiscoveryCompletedRequest + (*MachineCleanupInfo)(nil), // 430: forge.MachineCleanupInfo + (*MachineCertificate)(nil), // 431: forge.MachineCertificate + (*MachineCertificateRenewRequest)(nil), // 432: forge.MachineCertificateRenewRequest + (*MachineCertificateResult)(nil), // 433: forge.MachineCertificateResult + (*MachineDiscoveryResult)(nil), // 434: forge.MachineDiscoveryResult + (*MachineDiscoveryCompletedResponse)(nil), // 435: forge.MachineDiscoveryCompletedResponse + (*MachineCleanupResult)(nil), // 436: forge.MachineCleanupResult + (*ForgeScoutErrorReport)(nil), // 437: forge.ForgeScoutErrorReport + (*ForgeScoutErrorReportResult)(nil), // 438: forge.ForgeScoutErrorReportResult + (*PxeInstructionRequest)(nil), // 439: forge.PxeInstructionRequest + (*PxeInstructions)(nil), // 440: forge.PxeInstructions + (*CloudInitDiscoveryInstructions)(nil), // 441: forge.CloudInitDiscoveryInstructions + (*CloudInitMetaData)(nil), // 442: forge.CloudInitMetaData + (*CloudInitInstructionsRequest)(nil), // 443: forge.CloudInitInstructionsRequest + (*CloudInitInstructions)(nil), // 444: forge.CloudInitInstructions + (*DpuNetworkStatus)(nil), // 445: forge.DpuNetworkStatus + (*LastDhcpRequest)(nil), // 446: forge.LastDhcpRequest + (*DpuExtensionServiceStatusObservation)(nil), // 447: forge.DpuExtensionServiceStatusObservation + (*DpuExtensionServiceComponent)(nil), // 448: forge.DpuExtensionServiceComponent + (*OptionalHealthReport)(nil), // 449: forge.OptionalHealthReport + (*HealthReportEntry)(nil), // 450: forge.HealthReportEntry + (*InsertMachineHealthReportRequest)(nil), // 451: forge.InsertMachineHealthReportRequest + (*InsertRackHealthReportRequest)(nil), // 452: forge.InsertRackHealthReportRequest + (*RemoveRackHealthReportRequest)(nil), // 453: forge.RemoveRackHealthReportRequest + (*ListRackHealthReportsRequest)(nil), // 454: forge.ListRackHealthReportsRequest + (*InsertSwitchHealthReportRequest)(nil), // 455: forge.InsertSwitchHealthReportRequest + (*RemoveSwitchHealthReportRequest)(nil), // 456: forge.RemoveSwitchHealthReportRequest + (*ListSwitchHealthReportsRequest)(nil), // 457: forge.ListSwitchHealthReportsRequest + (*InsertPowerShelfHealthReportRequest)(nil), // 458: forge.InsertPowerShelfHealthReportRequest + (*RemovePowerShelfHealthReportRequest)(nil), // 459: forge.RemovePowerShelfHealthReportRequest + (*ListPowerShelfHealthReportsRequest)(nil), // 460: forge.ListPowerShelfHealthReportsRequest + (*ListHealthReportResponse)(nil), // 461: forge.ListHealthReportResponse + (*RemoveMachineHealthReportRequest)(nil), // 462: forge.RemoveMachineHealthReportRequest + (*ListNVLinkDomainHealthReportsRequest)(nil), // 463: forge.ListNVLinkDomainHealthReportsRequest + (*InsertNVLinkDomainHealthReportRequest)(nil), // 464: forge.InsertNVLinkDomainHealthReportRequest + (*RemoveNVLinkDomainHealthReportRequest)(nil), // 465: forge.RemoveNVLinkDomainHealthReportRequest + (*InstanceInterfaceStatusObservation)(nil), // 466: forge.InstanceInterfaceStatusObservation + (*FabricInterfaceData)(nil), // 467: forge.FabricInterfaceData + (*LinkData)(nil), // 468: forge.LinkData + (*Tenant)(nil), // 469: forge.Tenant + (*CreateTenantRequest)(nil), // 470: forge.CreateTenantRequest + (*CreateTenantResponse)(nil), // 471: forge.CreateTenantResponse + (*UpdateTenantRequest)(nil), // 472: forge.UpdateTenantRequest + (*UpdateTenantResponse)(nil), // 473: forge.UpdateTenantResponse + (*FindTenantRequest)(nil), // 474: forge.FindTenantRequest + (*FindTenantResponse)(nil), // 475: forge.FindTenantResponse + (*TenantKeysetIdentifier)(nil), // 476: forge.TenantKeysetIdentifier + (*TenantPublicKey)(nil), // 477: forge.TenantPublicKey + (*TenantKeysetContent)(nil), // 478: forge.TenantKeysetContent + (*TenantKeyset)(nil), // 479: forge.TenantKeyset + (*CreateTenantKeysetRequest)(nil), // 480: forge.CreateTenantKeysetRequest + (*CreateTenantKeysetResponse)(nil), // 481: forge.CreateTenantKeysetResponse + (*TenantKeySetList)(nil), // 482: forge.TenantKeySetList + (*UpdateTenantKeysetRequest)(nil), // 483: forge.UpdateTenantKeysetRequest + (*UpdateTenantKeysetResponse)(nil), // 484: forge.UpdateTenantKeysetResponse + (*DeleteTenantKeysetRequest)(nil), // 485: forge.DeleteTenantKeysetRequest + (*DeleteTenantKeysetResponse)(nil), // 486: forge.DeleteTenantKeysetResponse + (*TenantKeysetSearchFilter)(nil), // 487: forge.TenantKeysetSearchFilter + (*TenantKeysetIdList)(nil), // 488: forge.TenantKeysetIdList + (*TenantKeysetsByIdsRequest)(nil), // 489: forge.TenantKeysetsByIdsRequest + (*ValidateTenantPublicKeyRequest)(nil), // 490: forge.ValidateTenantPublicKeyRequest + (*ValidateTenantPublicKeyResponse)(nil), // 491: forge.ValidateTenantPublicKeyResponse + (*ListResourcePoolsRequest)(nil), // 492: forge.ListResourcePoolsRequest + (*ResourcePools)(nil), // 493: forge.ResourcePools + (*ResourcePool)(nil), // 494: forge.ResourcePool + (*GrowResourcePoolRequest)(nil), // 495: forge.GrowResourcePoolRequest + (*GrowResourcePoolResponse)(nil), // 496: forge.GrowResourcePoolResponse + (*Range)(nil), // 497: forge.Range + (*MigrateVpcVniResponse)(nil), // 498: forge.MigrateVpcVniResponse + (*MaintenanceRequest)(nil), // 499: forge.MaintenanceRequest + (*SetDynamicConfigRequest)(nil), // 500: forge.SetDynamicConfigRequest + (*FindIpAddressRequest)(nil), // 501: forge.FindIpAddressRequest + (*FindIpAddressResponse)(nil), // 502: forge.FindIpAddressResponse + (*IdentifyUuidRequest)(nil), // 503: forge.IdentifyUuidRequest + (*IdentifyUuidResponse)(nil), // 504: forge.IdentifyUuidResponse + (*FindBmcIpsRequest)(nil), // 505: forge.FindBmcIpsRequest + (*IdentifyMacRequest)(nil), // 506: forge.IdentifyMacRequest + (*IdentifyMacResponse)(nil), // 507: forge.IdentifyMacResponse + (*IdentifySerialRequest)(nil), // 508: forge.IdentifySerialRequest + (*IdentifySerialResponse)(nil), // 509: forge.IdentifySerialResponse + (*DpuReprovisioningRequest)(nil), // 510: forge.DpuReprovisioningRequest + (*DpuReprovisioningListRequest)(nil), // 511: forge.DpuReprovisioningListRequest + (*DpuReprovisioningListResponse)(nil), // 512: forge.DpuReprovisioningListResponse + (*HostReprovisioningRequest)(nil), // 513: forge.HostReprovisioningRequest + (*HostReprovisioningListRequest)(nil), // 514: forge.HostReprovisioningListRequest + (*HostReprovisioningListResponse)(nil), // 515: forge.HostReprovisioningListResponse + (*DpuOsOperationalState)(nil), // 516: forge.DpuOsOperationalState + (*DpuRepresentorStatus)(nil), // 517: forge.DpuRepresentorStatus + (*DpuInfoStatusObservation)(nil), // 518: forge.DpuInfoStatusObservation + (*DpuInfo)(nil), // 519: forge.DpuInfo + (*GetDpuInfoListRequest)(nil), // 520: forge.GetDpuInfoListRequest + (*GetDpuInfoListResponse)(nil), // 521: forge.GetDpuInfoListResponse + (*IpAddressMatch)(nil), // 522: forge.IpAddressMatch + (*MachineBootOverride)(nil), // 523: forge.MachineBootOverride + (*ConnectedDevice)(nil), // 524: forge.ConnectedDevice + (*ConnectedDeviceList)(nil), // 525: forge.ConnectedDeviceList + (*BmcIpList)(nil), // 526: forge.BmcIpList + (*BmcIp)(nil), // 527: forge.BmcIp + (*MacAddressBmcIp)(nil), // 528: forge.MacAddressBmcIp + (*MachineIdBmcIpPairs)(nil), // 529: forge.MachineIdBmcIpPairs + (*MachineIdBmcIp)(nil), // 530: forge.MachineIdBmcIp + (*NetworkDevice)(nil), // 531: forge.NetworkDevice + (*NetworkTopologyRequest)(nil), // 532: forge.NetworkTopologyRequest + (*NetworkDeviceIdList)(nil), // 533: forge.NetworkDeviceIdList + (*NetworkTopologyData)(nil), // 534: forge.NetworkTopologyData + (*RouteServers)(nil), // 535: forge.RouteServers + (*RouteServerEntries)(nil), // 536: forge.RouteServerEntries + (*RouteServer)(nil), // 537: forge.RouteServer + (*SetHostUefiPasswordRequest)(nil), // 538: forge.SetHostUefiPasswordRequest + (*SetHostUefiPasswordResponse)(nil), // 539: forge.SetHostUefiPasswordResponse + (*ClearHostUefiPasswordRequest)(nil), // 540: forge.ClearHostUefiPasswordRequest + (*ClearHostUefiPasswordResponse)(nil), // 541: forge.ClearHostUefiPasswordResponse + (*OsImageAttributes)(nil), // 542: forge.OsImageAttributes + (*OsImage)(nil), // 543: forge.OsImage + (*ListOsImageRequest)(nil), // 544: forge.ListOsImageRequest + (*ListOsImageResponse)(nil), // 545: forge.ListOsImageResponse + (*DeleteOsImageRequest)(nil), // 546: forge.DeleteOsImageRequest + (*DeleteOsImageResponse)(nil), // 547: forge.DeleteOsImageResponse + (*GetIpxeTemplateRequest)(nil), // 548: forge.GetIpxeTemplateRequest + (*ListIpxeTemplatesRequest)(nil), // 549: forge.ListIpxeTemplatesRequest + (*IpxeTemplateList)(nil), // 550: forge.IpxeTemplateList + (*ExpectedHostNic)(nil), // 551: forge.ExpectedHostNic + (*HostLifecycleProfile)(nil), // 552: forge.HostLifecycleProfile + (*ExpectedMachine)(nil), // 553: forge.ExpectedMachine + (*ExpectedMachineRequest)(nil), // 554: forge.ExpectedMachineRequest + (*ExpectedMachineList)(nil), // 555: forge.ExpectedMachineList + (*LinkedExpectedMachineList)(nil), // 556: forge.LinkedExpectedMachineList + (*LinkedExpectedMachine)(nil), // 557: forge.LinkedExpectedMachine + (*UnexpectedMachineList)(nil), // 558: forge.UnexpectedMachineList + (*UnexpectedMachine)(nil), // 559: forge.UnexpectedMachine + (*BatchExpectedMachineOperationRequest)(nil), // 560: forge.BatchExpectedMachineOperationRequest + (*ExpectedMachineOperationResult)(nil), // 561: forge.ExpectedMachineOperationResult + (*BatchExpectedMachineOperationResponse)(nil), // 562: forge.BatchExpectedMachineOperationResponse + (*MachineRebootCompletedResponse)(nil), // 563: forge.MachineRebootCompletedResponse + (*MachineRebootCompletedRequest)(nil), // 564: forge.MachineRebootCompletedRequest + (*ScoutFirmwareUpgradeStatusRequest)(nil), // 565: forge.ScoutFirmwareUpgradeStatusRequest + (*MachineValidationCompletedRequest)(nil), // 566: forge.MachineValidationCompletedRequest + (*MachineValidationCompletedResponse)(nil), // 567: forge.MachineValidationCompletedResponse + (*MachineValidationResult)(nil), // 568: forge.MachineValidationResult + (*MachineValidationResultPostRequest)(nil), // 569: forge.MachineValidationResultPostRequest + (*MachineValidationResultList)(nil), // 570: forge.MachineValidationResultList + (*MachineValidationGetRequest)(nil), // 571: forge.MachineValidationGetRequest + (*MachineValidationStatus)(nil), // 572: forge.MachineValidationStatus + (*MachineValidationRun)(nil), // 573: forge.MachineValidationRun + (*MachineSetAutoUpdateRequest)(nil), // 574: forge.MachineSetAutoUpdateRequest + (*MachineSetAutoUpdateResponse)(nil), // 575: forge.MachineSetAutoUpdateResponse + (*GetMachineValidationExternalConfigRequest)(nil), // 576: forge.GetMachineValidationExternalConfigRequest + (*MachineValidationExternalConfig)(nil), // 577: forge.MachineValidationExternalConfig + (*GetMachineValidationExternalConfigResponse)(nil), // 578: forge.GetMachineValidationExternalConfigResponse + (*GetMachineValidationExternalConfigsRequest)(nil), // 579: forge.GetMachineValidationExternalConfigsRequest + (*GetMachineValidationExternalConfigsResponse)(nil), // 580: forge.GetMachineValidationExternalConfigsResponse + (*AddUpdateMachineValidationExternalConfigRequest)(nil), // 581: forge.AddUpdateMachineValidationExternalConfigRequest + (*RemoveMachineValidationExternalConfigRequest)(nil), // 582: forge.RemoveMachineValidationExternalConfigRequest + (*MachineValidationOnDemandRequest)(nil), // 583: forge.MachineValidationOnDemandRequest + (*MachineValidationOnDemandResponse)(nil), // 584: forge.MachineValidationOnDemandResponse + (*FirmwareUpgradeActivity)(nil), // 585: forge.FirmwareUpgradeActivity + (*NvosUpdateActivity)(nil), // 586: forge.NvosUpdateActivity + (*ConfigureNmxClusterActivity)(nil), // 587: forge.ConfigureNmxClusterActivity + (*PowerSequenceActivity)(nil), // 588: forge.PowerSequenceActivity + (*MaintenanceActivityConfig)(nil), // 589: forge.MaintenanceActivityConfig + (*RackMaintenanceScope)(nil), // 590: forge.RackMaintenanceScope + (*RackMaintenanceOnDemandRequest)(nil), // 591: forge.RackMaintenanceOnDemandRequest + (*RackMaintenanceOnDemandResponse)(nil), // 592: forge.RackMaintenanceOnDemandResponse + (*AdminPowerControlRequest)(nil), // 593: forge.AdminPowerControlRequest + (*AdminPowerControlResponse)(nil), // 594: forge.AdminPowerControlResponse + (*GetRedfishJobStateRequest)(nil), // 595: forge.GetRedfishJobStateRequest + (*GetRedfishJobStateResponse)(nil), // 596: forge.GetRedfishJobStateResponse + (*MachineValidationRunList)(nil), // 597: forge.MachineValidationRunList + (*MachineValidationRunListGetRequest)(nil), // 598: forge.MachineValidationRunListGetRequest + (*MachineValidationRunItemSearchFilter)(nil), // 599: forge.MachineValidationRunItemSearchFilter + (*MachineValidationRunItemIdList)(nil), // 600: forge.MachineValidationRunItemIdList + (*MachineValidationRunItemsByIdsRequest)(nil), // 601: forge.MachineValidationRunItemsByIdsRequest + (*MachineValidationRunItemList)(nil), // 602: forge.MachineValidationRunItemList + (*MachineValidationRunItem)(nil), // 603: forge.MachineValidationRunItem + (*MachineValidationAttemptGetRequest)(nil), // 604: forge.MachineValidationAttemptGetRequest + (*MachineValidationAttempt)(nil), // 605: forge.MachineValidationAttempt + (*MachineValidationHeartbeatRequest)(nil), // 606: forge.MachineValidationHeartbeatRequest + (*MachineValidationHeartbeatResponse)(nil), // 607: forge.MachineValidationHeartbeatResponse + (*IsBmcInManagedHostResponse)(nil), // 608: forge.IsBmcInManagedHostResponse + (*BmcCredentialStatusResponse)(nil), // 609: forge.BmcCredentialStatusResponse + (*MachineValidationTestsGetRequest)(nil), // 610: forge.MachineValidationTestsGetRequest + (*MachineValidationTestUpdateRequest)(nil), // 611: forge.MachineValidationTestUpdateRequest + (*MachineValidationTestAddRequest)(nil), // 612: forge.MachineValidationTestAddRequest + (*MachineValidationTestAddUpdateResponse)(nil), // 613: forge.MachineValidationTestAddUpdateResponse + (*MachineValidationTestsGetResponse)(nil), // 614: forge.MachineValidationTestsGetResponse + (*MachineValidationTestVerfiedRequest)(nil), // 615: forge.MachineValidationTestVerfiedRequest + (*MachineValidationTestVerfiedResponse)(nil), // 616: forge.MachineValidationTestVerfiedResponse + (*MachineValidationTest)(nil), // 617: forge.MachineValidationTest + (*MachineValidationTestNextVersionResponse)(nil), // 618: forge.MachineValidationTestNextVersionResponse + (*MachineValidationTestNextVersionRequest)(nil), // 619: forge.MachineValidationTestNextVersionRequest + (*MachineValidationTestEnableDisableTestRequest)(nil), // 620: forge.MachineValidationTestEnableDisableTestRequest + (*MachineValidationTestEnableDisableTestResponse)(nil), // 621: forge.MachineValidationTestEnableDisableTestResponse + (*MachineValidationRunRequest)(nil), // 622: forge.MachineValidationRunRequest + (*MachineValidationRunResponse)(nil), // 623: forge.MachineValidationRunResponse + (*MachineCapabilityAttributesCpu)(nil), // 624: forge.MachineCapabilityAttributesCpu + (*MachineCapabilityAttributesGpu)(nil), // 625: forge.MachineCapabilityAttributesGpu + (*MachineCapabilityAttributesMemory)(nil), // 626: forge.MachineCapabilityAttributesMemory + (*MachineCapabilityAttributesStorage)(nil), // 627: forge.MachineCapabilityAttributesStorage + (*MachineCapabilityAttributesNetwork)(nil), // 628: forge.MachineCapabilityAttributesNetwork + (*MachineCapabilityAttributesInfiniband)(nil), // 629: forge.MachineCapabilityAttributesInfiniband + (*MachineCapabilityAttributesDpu)(nil), // 630: forge.MachineCapabilityAttributesDpu + (*MachineCapabilitiesSet)(nil), // 631: forge.MachineCapabilitiesSet + (*InstanceTypeAttributes)(nil), // 632: forge.InstanceTypeAttributes + (*InstanceType)(nil), // 633: forge.InstanceType + (*InstanceTypeMachineCapabilityFilterAttributes)(nil), // 634: forge.InstanceTypeMachineCapabilityFilterAttributes + (*CreateInstanceTypeRequest)(nil), // 635: forge.CreateInstanceTypeRequest + (*CreateInstanceTypeResponse)(nil), // 636: forge.CreateInstanceTypeResponse + (*FindInstanceTypeIdsRequest)(nil), // 637: forge.FindInstanceTypeIdsRequest + (*FindInstanceTypeIdsResponse)(nil), // 638: forge.FindInstanceTypeIdsResponse + (*FindInstanceTypesByIdsRequest)(nil), // 639: forge.FindInstanceTypesByIdsRequest + (*FindInstanceTypesByIdsResponse)(nil), // 640: forge.FindInstanceTypesByIdsResponse + (*DeleteInstanceTypeRequest)(nil), // 641: forge.DeleteInstanceTypeRequest + (*DeleteInstanceTypeResponse)(nil), // 642: forge.DeleteInstanceTypeResponse + (*UpdateInstanceTypeResponse)(nil), // 643: forge.UpdateInstanceTypeResponse + (*UpdateInstanceTypeRequest)(nil), // 644: forge.UpdateInstanceTypeRequest + (*AssociateMachinesWithInstanceTypeRequest)(nil), // 645: forge.AssociateMachinesWithInstanceTypeRequest + (*AssociateMachinesWithInstanceTypeResponse)(nil), // 646: forge.AssociateMachinesWithInstanceTypeResponse + (*RemoveMachineInstanceTypeAssociationRequest)(nil), // 647: forge.RemoveMachineInstanceTypeAssociationRequest + (*RemoveMachineInstanceTypeAssociationResponse)(nil), // 648: forge.RemoveMachineInstanceTypeAssociationResponse + (*RedfishBrowseRequest)(nil), // 649: forge.RedfishBrowseRequest + (*RedfishBrowseResponse)(nil), // 650: forge.RedfishBrowseResponse + (*RedfishListActionsRequest)(nil), // 651: forge.RedfishListActionsRequest + (*RedfishListActionsResponse)(nil), // 652: forge.RedfishListActionsResponse + (*RedfishAction)(nil), // 653: forge.RedfishAction + (*OptionalRedfishActionResult)(nil), // 654: forge.OptionalRedfishActionResult + (*RedfishActionResult)(nil), // 655: forge.RedfishActionResult + (*RedfishCreateActionRequest)(nil), // 656: forge.RedfishCreateActionRequest + (*RedfishCreateActionResponse)(nil), // 657: forge.RedfishCreateActionResponse + (*RedfishActionID)(nil), // 658: forge.RedfishActionID + (*RedfishApproveActionResponse)(nil), // 659: forge.RedfishApproveActionResponse + (*RedfishApplyActionResponse)(nil), // 660: forge.RedfishApplyActionResponse + (*RedfishCancelActionResponse)(nil), // 661: forge.RedfishCancelActionResponse + (*UfmBrowseRequest)(nil), // 662: forge.UfmBrowseRequest + (*UfmBrowseResponse)(nil), // 663: forge.UfmBrowseResponse + (*NetworkSecurityGroupAttributes)(nil), // 664: forge.NetworkSecurityGroupAttributes + (*NetworkSecurityGroup)(nil), // 665: forge.NetworkSecurityGroup + (*CreateNetworkSecurityGroupRequest)(nil), // 666: forge.CreateNetworkSecurityGroupRequest + (*CreateNetworkSecurityGroupResponse)(nil), // 667: forge.CreateNetworkSecurityGroupResponse + (*FindNetworkSecurityGroupIdsRequest)(nil), // 668: forge.FindNetworkSecurityGroupIdsRequest + (*FindNetworkSecurityGroupIdsResponse)(nil), // 669: forge.FindNetworkSecurityGroupIdsResponse + (*FindNetworkSecurityGroupsByIdsRequest)(nil), // 670: forge.FindNetworkSecurityGroupsByIdsRequest + (*FindNetworkSecurityGroupsByIdsResponse)(nil), // 671: forge.FindNetworkSecurityGroupsByIdsResponse + (*UpdateNetworkSecurityGroupResponse)(nil), // 672: forge.UpdateNetworkSecurityGroupResponse + (*UpdateNetworkSecurityGroupRequest)(nil), // 673: forge.UpdateNetworkSecurityGroupRequest + (*DeleteNetworkSecurityGroupRequest)(nil), // 674: forge.DeleteNetworkSecurityGroupRequest + (*DeleteNetworkSecurityGroupResponse)(nil), // 675: forge.DeleteNetworkSecurityGroupResponse + (*NetworkSecurityGroupStatus)(nil), // 676: forge.NetworkSecurityGroupStatus + (*NetworkSecurityGroupPropagationObjectStatus)(nil), // 677: forge.NetworkSecurityGroupPropagationObjectStatus + (*GetNetworkSecurityGroupPropagationStatusResponse)(nil), // 678: forge.GetNetworkSecurityGroupPropagationStatusResponse + (*NetworkSecurityGroupIdList)(nil), // 679: forge.NetworkSecurityGroupIdList + (*GetNetworkSecurityGroupPropagationStatusRequest)(nil), // 680: forge.GetNetworkSecurityGroupPropagationStatusRequest + (*NetworkSecurityGroupRuleAttributes)(nil), // 681: forge.NetworkSecurityGroupRuleAttributes + (*ResolvedNetworkSecurityGroupRule)(nil), // 682: forge.ResolvedNetworkSecurityGroupRule + (*GetNetworkSecurityGroupAttachmentsRequest)(nil), // 683: forge.GetNetworkSecurityGroupAttachmentsRequest + (*NetworkSecurityGroupAttachments)(nil), // 684: forge.NetworkSecurityGroupAttachments + (*GetNetworkSecurityGroupAttachmentsResponse)(nil), // 685: forge.GetNetworkSecurityGroupAttachmentsResponse + (*GetDesiredFirmwareVersionsRequest)(nil), // 686: forge.GetDesiredFirmwareVersionsRequest + (*GetDesiredFirmwareVersionsResponse)(nil), // 687: forge.GetDesiredFirmwareVersionsResponse + (*DesiredFirmwareVersionEntry)(nil), // 688: forge.DesiredFirmwareVersionEntry + (*SkuComponentChassis)(nil), // 689: forge.SkuComponentChassis + (*SkuComponentCpu)(nil), // 690: forge.SkuComponentCpu + (*SkuComponentGpu)(nil), // 691: forge.SkuComponentGpu + (*SkuComponentEthernetDevices)(nil), // 692: forge.SkuComponentEthernetDevices + (*SkuComponentInfinibandDevices)(nil), // 693: forge.SkuComponentInfinibandDevices + (*SkuComponentStorage)(nil), // 694: forge.SkuComponentStorage + (*SkuComponentStorageController)(nil), // 695: forge.SkuComponentStorageController + (*SkuComponentMemory)(nil), // 696: forge.SkuComponentMemory + (*SkuComponentTpm)(nil), // 697: forge.SkuComponentTpm + (*SkuComponents)(nil), // 698: forge.SkuComponents + (*Sku)(nil), // 699: forge.Sku + (*SkuMachinePair)(nil), // 700: forge.SkuMachinePair + (*RemoveSkuRequest)(nil), // 701: forge.RemoveSkuRequest + (*SkuList)(nil), // 702: forge.SkuList + (*SkuIdList)(nil), // 703: forge.SkuIdList + (*SkuStatus)(nil), // 704: forge.SkuStatus + (*SkusByIdsRequest)(nil), // 705: forge.SkusByIdsRequest + (*SkuSearchFilter)(nil), // 706: forge.SkuSearchFilter + (*DpaInterface)(nil), // 707: forge.DpaInterface + (*DpaInterfaceCreationRequest)(nil), // 708: forge.DpaInterfaceCreationRequest + (*DpaInterfaceIdList)(nil), // 709: forge.DpaInterfaceIdList + (*DpaInterfacesByIdsRequest)(nil), // 710: forge.DpaInterfacesByIdsRequest + (*DpaInterfaceList)(nil), // 711: forge.DpaInterfaceList + (*DpaNetworkObservationSetRequest)(nil), // 712: forge.DpaNetworkObservationSetRequest + (*DpaInterfaceDeletionRequest)(nil), // 713: forge.DpaInterfaceDeletionRequest + (*DpaInterfaceDeletionResult)(nil), // 714: forge.DpaInterfaceDeletionResult + (*SkuUpdateMetadataRequest)(nil), // 715: forge.SkuUpdateMetadataRequest + (*PowerOptionRequest)(nil), // 716: forge.PowerOptionRequest + (*PowerOptionUpdateRequest)(nil), // 717: forge.PowerOptionUpdateRequest + (*PowerOptions)(nil), // 718: forge.PowerOptions + (*PowerOptionResponse)(nil), // 719: forge.PowerOptionResponse + (*ComputeAllocationAttributes)(nil), // 720: forge.ComputeAllocationAttributes + (*ComputeAllocation)(nil), // 721: forge.ComputeAllocation + (*CreateComputeAllocationRequest)(nil), // 722: forge.CreateComputeAllocationRequest + (*CreateComputeAllocationResponse)(nil), // 723: forge.CreateComputeAllocationResponse + (*FindComputeAllocationIdsRequest)(nil), // 724: forge.FindComputeAllocationIdsRequest + (*FindComputeAllocationIdsResponse)(nil), // 725: forge.FindComputeAllocationIdsResponse + (*FindComputeAllocationsByIdsRequest)(nil), // 726: forge.FindComputeAllocationsByIdsRequest + (*FindComputeAllocationsByIdsResponse)(nil), // 727: forge.FindComputeAllocationsByIdsResponse + (*UpdateComputeAllocationResponse)(nil), // 728: forge.UpdateComputeAllocationResponse + (*UpdateComputeAllocationRequest)(nil), // 729: forge.UpdateComputeAllocationRequest + (*DeleteComputeAllocationRequest)(nil), // 730: forge.DeleteComputeAllocationRequest + (*DeleteComputeAllocationResponse)(nil), // 731: forge.DeleteComputeAllocationResponse + (*InstanceTypeAllocationStats)(nil), // 732: forge.InstanceTypeAllocationStats + (*GetRackRequest)(nil), // 733: forge.GetRackRequest + (*GetRackResponse)(nil), // 734: forge.GetRackResponse + (*RackList)(nil), // 735: forge.RackList + (*RackSearchFilter)(nil), // 736: forge.RackSearchFilter + (*RackIdList)(nil), // 737: forge.RackIdList + (*RacksByIdsRequest)(nil), // 738: forge.RacksByIdsRequest + (*Rack)(nil), // 739: forge.Rack + (*RackConfig)(nil), // 740: forge.RackConfig + (*RackStatus)(nil), // 741: forge.RackStatus + (*RackStateHistoriesRequest)(nil), // 742: forge.RackStateHistoriesRequest + (*DeleteRackRequest)(nil), // 743: forge.DeleteRackRequest + (*AdminForceDeleteRackRequest)(nil), // 744: forge.AdminForceDeleteRackRequest + (*AdminForceDeleteRackResponse)(nil), // 745: forge.AdminForceDeleteRackResponse + (*RackCapabilityCompute)(nil), // 746: forge.RackCapabilityCompute + (*RackCapabilitySwitch)(nil), // 747: forge.RackCapabilitySwitch + (*RackCapabilityPowerShelf)(nil), // 748: forge.RackCapabilityPowerShelf + (*RackCapabilitiesSet)(nil), // 749: forge.RackCapabilitiesSet + (*RackProfile)(nil), // 750: forge.RackProfile + (*GetRackProfileRequest)(nil), // 751: forge.GetRackProfileRequest + (*GetRackProfileResponse)(nil), // 752: forge.GetRackProfileResponse + (*RackManagerForgeRequest)(nil), // 753: forge.RackManagerForgeRequest + (*RackManagerForgeResponse)(nil), // 754: forge.RackManagerForgeResponse + (*MachineNVLinkInfo)(nil), // 755: forge.MachineNVLinkInfo + (*UpdateMachineNvLinkInfoRequest)(nil), // 756: forge.UpdateMachineNvLinkInfoRequest + (*MachineSpxStatusObservation)(nil), // 757: forge.MachineSpxStatusObservation + (*MachineSpxAttachmentStatusObservation)(nil), // 758: forge.MachineSpxAttachmentStatusObservation + (*AstraConfig)(nil), // 759: forge.AstraConfig + (*AstraAttachment)(nil), // 760: forge.AstraAttachment + (*AstraConfigStatus)(nil), // 761: forge.AstraConfigStatus + (*AstraAttachmentStatus)(nil), // 762: forge.AstraAttachmentStatus + (*AstraStatus)(nil), // 763: forge.AstraStatus + (*NVLinkGpu)(nil), // 764: forge.NVLinkGpu + (*MachineNVLinkStatusObservation)(nil), // 765: forge.MachineNVLinkStatusObservation + (*MachineNVLinkGpuStatusObservation)(nil), // 766: forge.MachineNVLinkGpuStatusObservation + (*NmxcBrowseRequest)(nil), // 767: forge.NmxcBrowseRequest + (*NmxcBrowseResponse)(nil), // 768: forge.NmxcBrowseResponse + (*NVLinkPartition)(nil), // 769: forge.NVLinkPartition + (*NVLinkPartitionList)(nil), // 770: forge.NVLinkPartitionList + (*NVLinkPartitionSearchConfig)(nil), // 771: forge.NVLinkPartitionSearchConfig + (*NVLinkPartitionQuery)(nil), // 772: forge.NVLinkPartitionQuery + (*NVLinkPartitionSearchFilter)(nil), // 773: forge.NVLinkPartitionSearchFilter + (*NVLinkPartitionsByIdsRequest)(nil), // 774: forge.NVLinkPartitionsByIdsRequest + (*NVLinkPartitionIdList)(nil), // 775: forge.NVLinkPartitionIdList + (*NVLinkFabricSearchFilter)(nil), // 776: forge.NVLinkFabricSearchFilter + (*NVLinkLogicalPartitionConfig)(nil), // 777: forge.NVLinkLogicalPartitionConfig + (*NVLinkLogicalPartitionStatus)(nil), // 778: forge.NVLinkLogicalPartitionStatus + (*NVLinkLogicalPartition)(nil), // 779: forge.NVLinkLogicalPartition + (*NVLinkLogicalPartitionList)(nil), // 780: forge.NVLinkLogicalPartitionList + (*NVLinkLogicalPartitionCreationRequest)(nil), // 781: forge.NVLinkLogicalPartitionCreationRequest + (*NVLinkLogicalPartitionDeletionRequest)(nil), // 782: forge.NVLinkLogicalPartitionDeletionRequest + (*NVLinkLogicalPartitionDeletionResult)(nil), // 783: forge.NVLinkLogicalPartitionDeletionResult + (*NVLinkLogicalPartitionSearchFilter)(nil), // 784: forge.NVLinkLogicalPartitionSearchFilter + (*NVLinkLogicalPartitionsByIdsRequest)(nil), // 785: forge.NVLinkLogicalPartitionsByIdsRequest + (*NVLinkLogicalPartitionIdList)(nil), // 786: forge.NVLinkLogicalPartitionIdList + (*NVLinkLogicalPartitionUpdateRequest)(nil), // 787: forge.NVLinkLogicalPartitionUpdateRequest + (*NVLinkLogicalPartitionUpdateResult)(nil), // 788: forge.NVLinkLogicalPartitionUpdateResult + (*CreateBmcUserRequest)(nil), // 789: forge.CreateBmcUserRequest + (*CreateBmcUserResponse)(nil), // 790: forge.CreateBmcUserResponse + (*DeleteBmcUserRequest)(nil), // 791: forge.DeleteBmcUserRequest + (*DeleteBmcUserResponse)(nil), // 792: forge.DeleteBmcUserResponse + (*SetBmcRootPasswordRequest)(nil), // 793: forge.SetBmcRootPasswordRequest + (*SetBmcRootPasswordResponse)(nil), // 794: forge.SetBmcRootPasswordResponse + (*ProbeBmcVendorRequest)(nil), // 795: forge.ProbeBmcVendorRequest + (*ProbeBmcVendorResponse)(nil), // 796: forge.ProbeBmcVendorResponse + (*SetFirmwareUpdateTimeWindowRequest)(nil), // 797: forge.SetFirmwareUpdateTimeWindowRequest + (*SetFirmwareUpdateTimeWindowResponse)(nil), // 798: forge.SetFirmwareUpdateTimeWindowResponse + (*UpsertHostFirmwareConfigRequest)(nil), // 799: forge.UpsertHostFirmwareConfigRequest + (*DeleteHostFirmwareConfigRequest)(nil), // 800: forge.DeleteHostFirmwareConfigRequest + (*UpsertHostFirmwareComponentConfig)(nil), // 801: forge.UpsertHostFirmwareComponentConfig + (*HostFirmwareComponentConfigResponse)(nil), // 802: forge.HostFirmwareComponentConfigResponse + (*HostFirmwareVersionConfig)(nil), // 803: forge.HostFirmwareVersionConfig + (*HostFirmwareArtifact)(nil), // 804: forge.HostFirmwareArtifact + (*HostFirmwareConfigResponse)(nil), // 805: forge.HostFirmwareConfigResponse + (*ListHostFirmwareRequest)(nil), // 806: forge.ListHostFirmwareRequest + (*ListHostFirmwareResponse)(nil), // 807: forge.ListHostFirmwareResponse + (*AvailableHostFirmware)(nil), // 808: forge.AvailableHostFirmware + (*TrimTableRequest)(nil), // 809: forge.TrimTableRequest + (*TrimTableResponse)(nil), // 810: forge.TrimTableResponse + (*NvlinkNmxcEndpoint)(nil), // 811: forge.NvlinkNmxcEndpoint + (*NvlinkNmxcEndpointList)(nil), // 812: forge.NvlinkNmxcEndpointList + (*DeleteNvlinkNmxcEndpointRequest)(nil), // 813: forge.DeleteNvlinkNmxcEndpointRequest + (*CreateRemediationRequest)(nil), // 814: forge.CreateRemediationRequest + (*CreateRemediationResponse)(nil), // 815: forge.CreateRemediationResponse + (*RemediationIdList)(nil), // 816: forge.RemediationIdList + (*RemediationList)(nil), // 817: forge.RemediationList + (*Remediation)(nil), // 818: forge.Remediation + (*ApproveRemediationRequest)(nil), // 819: forge.ApproveRemediationRequest + (*RevokeRemediationRequest)(nil), // 820: forge.RevokeRemediationRequest + (*EnableRemediationRequest)(nil), // 821: forge.EnableRemediationRequest + (*DisableRemediationRequest)(nil), // 822: forge.DisableRemediationRequest + (*FindAppliedRemediationIdsRequest)(nil), // 823: forge.FindAppliedRemediationIdsRequest + (*AppliedRemediationIdList)(nil), // 824: forge.AppliedRemediationIdList + (*FindAppliedRemediationsRequest)(nil), // 825: forge.FindAppliedRemediationsRequest + (*AppliedRemediation)(nil), // 826: forge.AppliedRemediation + (*AppliedRemediationList)(nil), // 827: forge.AppliedRemediationList + (*GetNextRemediationForMachineRequest)(nil), // 828: forge.GetNextRemediationForMachineRequest + (*GetNextRemediationForMachineResponse)(nil), // 829: forge.GetNextRemediationForMachineResponse + (*RemediationAppliedRequest)(nil), // 830: forge.RemediationAppliedRequest + (*RemediationApplicationStatus)(nil), // 831: forge.RemediationApplicationStatus + (*SetPrimaryDpuRequest)(nil), // 832: forge.SetPrimaryDpuRequest + (*SetPrimaryInterfaceRequest)(nil), // 833: forge.SetPrimaryInterfaceRequest + (*UsernamePassword)(nil), // 834: forge.UsernamePassword + (*SessionToken)(nil), // 835: forge.SessionToken + (*DpuExtensionServiceCredential)(nil), // 836: forge.DpuExtensionServiceCredential + (*DpuExtensionServiceVersionInfo)(nil), // 837: forge.DpuExtensionServiceVersionInfo + (*DpuExtensionService)(nil), // 838: forge.DpuExtensionService + (*CreateDpuExtensionServiceRequest)(nil), // 839: forge.CreateDpuExtensionServiceRequest + (*UpdateDpuExtensionServiceRequest)(nil), // 840: forge.UpdateDpuExtensionServiceRequest + (*DeleteDpuExtensionServiceRequest)(nil), // 841: forge.DeleteDpuExtensionServiceRequest + (*DeleteDpuExtensionServiceResponse)(nil), // 842: forge.DeleteDpuExtensionServiceResponse + (*DpuExtensionServiceSearchFilter)(nil), // 843: forge.DpuExtensionServiceSearchFilter + (*DpuExtensionServiceIdList)(nil), // 844: forge.DpuExtensionServiceIdList + (*DpuExtensionServicesByIdsRequest)(nil), // 845: forge.DpuExtensionServicesByIdsRequest + (*DpuExtensionServiceList)(nil), // 846: forge.DpuExtensionServiceList + (*GetDpuExtensionServiceVersionsInfoRequest)(nil), // 847: forge.GetDpuExtensionServiceVersionsInfoRequest + (*DpuExtensionServiceVersionInfoList)(nil), // 848: forge.DpuExtensionServiceVersionInfoList + (*FindInstancesByDpuExtensionServiceRequest)(nil), // 849: forge.FindInstancesByDpuExtensionServiceRequest + (*FindInstancesByDpuExtensionServiceResponse)(nil), // 850: forge.FindInstancesByDpuExtensionServiceResponse + (*InstanceDpuExtensionServiceInfo)(nil), // 851: forge.InstanceDpuExtensionServiceInfo + (*DpuExtensionServiceObservabilityConfigPrometheus)(nil), // 852: forge.DpuExtensionServiceObservabilityConfigPrometheus + (*DpuExtensionServiceObservabilityConfigLogging)(nil), // 853: forge.DpuExtensionServiceObservabilityConfigLogging + (*DpuExtensionServiceObservabilityConfig)(nil), // 854: forge.DpuExtensionServiceObservabilityConfig + (*DpuExtensionServiceObservability)(nil), // 855: forge.DpuExtensionServiceObservability + (*ScoutStreamApiBoundMessage)(nil), // 856: forge.ScoutStreamApiBoundMessage + (*ScoutStreamScoutBoundMessage)(nil), // 857: forge.ScoutStreamScoutBoundMessage + (*ScoutStreamInitRequest)(nil), // 858: forge.ScoutStreamInitRequest + (*ScoutStreamShowConnectionsRequest)(nil), // 859: forge.ScoutStreamShowConnectionsRequest + (*ScoutStreamShowConnectionsResponse)(nil), // 860: forge.ScoutStreamShowConnectionsResponse + (*ScoutStreamDisconnectRequest)(nil), // 861: forge.ScoutStreamDisconnectRequest + (*ScoutStreamDisconnectResponse)(nil), // 862: forge.ScoutStreamDisconnectResponse + (*ScoutStreamAdminPingRequest)(nil), // 863: forge.ScoutStreamAdminPingRequest + (*ScoutStreamAdminPingResponse)(nil), // 864: forge.ScoutStreamAdminPingResponse + (*ScoutStreamAgentPingRequest)(nil), // 865: forge.ScoutStreamAgentPingRequest + (*ScoutStreamAgentPingResponse)(nil), // 866: forge.ScoutStreamAgentPingResponse + (*ScoutStreamConnectionInfo)(nil), // 867: forge.ScoutStreamConnectionInfo + (*ScoutStreamError)(nil), // 868: forge.ScoutStreamError + (*PrefixFilterPolicyEntry)(nil), // 869: forge.PrefixFilterPolicyEntry + (*RoutingProfile)(nil), // 870: forge.RoutingProfile + (*DomainLegacy)(nil), // 871: forge.DomainLegacy + (*DomainListLegacy)(nil), // 872: forge.DomainListLegacy + (*DomainDeletionLegacy)(nil), // 873: forge.DomainDeletionLegacy + (*DomainDeletionResultLegacy)(nil), // 874: forge.DomainDeletionResultLegacy + (*DomainSearchQueryLegacy)(nil), // 875: forge.DomainSearchQueryLegacy + (*PxeDomain)(nil), // 876: forge.PxeDomain + (*MachinePositionQuery)(nil), // 877: forge.MachinePositionQuery + (*MachinePositionInfoList)(nil), // 878: forge.MachinePositionInfoList + (*MachinePositionInfo)(nil), // 879: forge.MachinePositionInfo + (*ModifyDPFStateRequest)(nil), // 880: forge.ModifyDPFStateRequest + (*DPFStateResponse)(nil), // 881: forge.DPFStateResponse + (*GetDPFStateRequest)(nil), // 882: forge.GetDPFStateRequest + (*GetDPFHostSnapshotRequest)(nil), // 883: forge.GetDPFHostSnapshotRequest + (*DPFHostSnapshotResponse)(nil), // 884: forge.DPFHostSnapshotResponse + (*GetDPFServiceVersionsRequest)(nil), // 885: forge.GetDPFServiceVersionsRequest + (*DPFServiceVersion)(nil), // 886: forge.DPFServiceVersion + (*DPFServiceVersionsResponse)(nil), // 887: forge.DPFServiceVersionsResponse + (*ComponentResult)(nil), // 888: forge.ComponentResult + (*SwitchIdList)(nil), // 889: forge.SwitchIdList + (*PowerShelfIdList)(nil), // 890: forge.PowerShelfIdList + (*GetComponentInventoryRequest)(nil), // 891: forge.GetComponentInventoryRequest + (*ComponentInventoryEntry)(nil), // 892: forge.ComponentInventoryEntry + (*GetComponentInventoryResponse)(nil), // 893: forge.GetComponentInventoryResponse + (*ComponentPowerControlRequest)(nil), // 894: forge.ComponentPowerControlRequest + (*ComponentPowerControlResponse)(nil), // 895: forge.ComponentPowerControlResponse + (*ComponentConfigureSwitchCertificateRequest)(nil), // 896: forge.ComponentConfigureSwitchCertificateRequest + (*ComponentConfigureSwitchCertificateResponse)(nil), // 897: forge.ComponentConfigureSwitchCertificateResponse + (*FirmwareUpdateStatus)(nil), // 898: forge.FirmwareUpdateStatus + (*UpdateComputeTrayFirmwareTarget)(nil), // 899: forge.UpdateComputeTrayFirmwareTarget + (*UpdateSwitchFirmwareTarget)(nil), // 900: forge.UpdateSwitchFirmwareTarget + (*UpdatePowerShelfFirmwareTarget)(nil), // 901: forge.UpdatePowerShelfFirmwareTarget + (*UpdateFirmwareObjectTarget)(nil), // 902: forge.UpdateFirmwareObjectTarget + (*UpdateComponentFirmwareRequest)(nil), // 903: forge.UpdateComponentFirmwareRequest + (*UpdateComponentFirmwareResponse)(nil), // 904: forge.UpdateComponentFirmwareResponse + (*GetComponentFirmwareStatusRequest)(nil), // 905: forge.GetComponentFirmwareStatusRequest + (*GetComponentFirmwareStatusResponse)(nil), // 906: forge.GetComponentFirmwareStatusResponse + (*ListComponentFirmwareVersionsRequest)(nil), // 907: forge.ListComponentFirmwareVersionsRequest + (*ComputeTrayFirmwareVersions)(nil), // 908: forge.ComputeTrayFirmwareVersions + (*DeviceFirmwareVersions)(nil), // 909: forge.DeviceFirmwareVersions + (*ListComponentFirmwareVersionsResponse)(nil), // 910: forge.ListComponentFirmwareVersionsResponse + (*SpxPartitionCreationRequest)(nil), // 911: forge.SpxPartitionCreationRequest + (*SpxPartition)(nil), // 912: forge.SpxPartition + (*SpxPartitionIdList)(nil), // 913: forge.SpxPartitionIdList + (*SpxPartitionDeletionRequest)(nil), // 914: forge.SpxPartitionDeletionRequest + (*SpxPartitionDeletionResult)(nil), // 915: forge.SpxPartitionDeletionResult + (*SpxPartitionSearchFilter)(nil), // 916: forge.SpxPartitionSearchFilter + (*SpxPartitionList)(nil), // 917: forge.SpxPartitionList + (*SpxPartitionsByIdsRequest)(nil), // 918: forge.SpxPartitionsByIdsRequest + (*AdminForceDeleteSwitchRequest)(nil), // 919: forge.AdminForceDeleteSwitchRequest + (*AdminForceDeleteSwitchResponse)(nil), // 920: forge.AdminForceDeleteSwitchResponse + (*AdminForceDeletePowerShelfRequest)(nil), // 921: forge.AdminForceDeletePowerShelfRequest + (*AdminForceDeletePowerShelfResponse)(nil), // 922: forge.AdminForceDeletePowerShelfResponse + (*OperatingSystem)(nil), // 923: forge.OperatingSystem + (*CreateOperatingSystemRequest)(nil), // 924: forge.CreateOperatingSystemRequest + (*IpxeTemplateParameters)(nil), // 925: forge.IpxeTemplateParameters + (*IpxeTemplateArtifacts)(nil), // 926: forge.IpxeTemplateArtifacts + (*UpdateOperatingSystemRequest)(nil), // 927: forge.UpdateOperatingSystemRequest + (*DeleteOperatingSystemRequest)(nil), // 928: forge.DeleteOperatingSystemRequest + (*DeleteOperatingSystemResponse)(nil), // 929: forge.DeleteOperatingSystemResponse + (*OperatingSystemSearchFilter)(nil), // 930: forge.OperatingSystemSearchFilter + (*OperatingSystemIdList)(nil), // 931: forge.OperatingSystemIdList + (*OperatingSystemsByIdsRequest)(nil), // 932: forge.OperatingSystemsByIdsRequest + (*OperatingSystemList)(nil), // 933: forge.OperatingSystemList + (*GetOperatingSystemCachableIpxeTemplateArtifactsRequest)(nil), // 934: forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest + (*IpxeTemplateArtifactList)(nil), // 935: forge.IpxeTemplateArtifactList + (*IpxeTemplateArtifactUpdateRequest)(nil), // 936: forge.IpxeTemplateArtifactUpdateRequest + (*UpdateOperatingSystemIpxeTemplateArtifactRequest)(nil), // 937: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest + (*HostRepresentorInterceptBridging)(nil), // 938: forge.HostRepresentorInterceptBridging + (*ReWrapSecretsRequest)(nil), // 939: forge.ReWrapSecretsRequest + (*ReWrapSecretsResponse)(nil), // 940: forge.ReWrapSecretsResponse + (*GetMachineBootInterfacesRequest)(nil), // 941: forge.GetMachineBootInterfacesRequest + (*MachineInterfaceBootInterface)(nil), // 942: forge.MachineInterfaceBootInterface + (*PredictedBootInterface)(nil), // 943: forge.PredictedBootInterface + (*ExploredBootInterface)(nil), // 944: forge.ExploredBootInterface + (*RetainedBootInterface)(nil), // 945: forge.RetainedBootInterface + (*GetMachineBootInterfacesResponse)(nil), // 946: forge.GetMachineBootInterfacesResponse + nil, // 947: forge.RuntimeConfig.DpuNicFirmwareUpdateVersionEntry + (*DNSMessage_DNSQuestion)(nil), // 948: forge.DNSMessage.DNSQuestion + (*DNSMessage_DNSResponse)(nil), // 949: forge.DNSMessage.DNSResponse + (*DNSMessage_DNSResponse_DNSRR)(nil), // 950: forge.DNSMessage.DNSResponse.DNSRR + nil, // 951: forge.FabricManagerConfig.ConfigMapEntry + nil, // 952: forge.StateHistories.HistoriesEntry + nil, // 953: forge.MachineStateHistories.HistoriesEntry + nil, // 954: forge.HealthHistories.HistoriesEntry + nil, // 955: forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry + (*MachineCredentialsUpdateRequest_Credentials)(nil), // 956: forge.MachineCredentialsUpdateRequest.Credentials + (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo)(nil), // 957: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo + (*ForgeAgentControlResponse_Noop)(nil), // 958: forge.ForgeAgentControlResponse.Noop + (*ForgeAgentControlResponse_Reset)(nil), // 959: forge.ForgeAgentControlResponse.Reset + (*ForgeAgentControlResponse_Discovery)(nil), // 960: forge.ForgeAgentControlResponse.Discovery + (*ForgeAgentControlResponse_Rebuild)(nil), // 961: forge.ForgeAgentControlResponse.Rebuild + (*ForgeAgentControlResponse_Retry)(nil), // 962: forge.ForgeAgentControlResponse.Retry + (*ForgeAgentControlResponse_Measure)(nil), // 963: forge.ForgeAgentControlResponse.Measure + (*ForgeAgentControlResponse_LogError)(nil), // 964: forge.ForgeAgentControlResponse.LogError + (*ForgeAgentControlResponse_MachineValidation)(nil), // 965: forge.ForgeAgentControlResponse.MachineValidation + (*ForgeAgentControlResponse_MachineValidationFilter)(nil), // 966: forge.ForgeAgentControlResponse.MachineValidationFilter + (*ForgeAgentControlResponse_MlxAction)(nil), // 967: forge.ForgeAgentControlResponse.MlxAction + (*ForgeAgentControlResponse_MlxDeviceAction)(nil), // 968: forge.ForgeAgentControlResponse.MlxDeviceAction + (*ForgeAgentControlResponse_MlxDeviceNoop)(nil), // 969: forge.ForgeAgentControlResponse.MlxDeviceNoop + (*ForgeAgentControlResponse_MlxDeviceLock)(nil), // 970: forge.ForgeAgentControlResponse.MlxDeviceLock + (*ForgeAgentControlResponse_MlxDeviceUnlock)(nil), // 971: forge.ForgeAgentControlResponse.MlxDeviceUnlock + (*ForgeAgentControlResponse_MlxDeviceApplyProfile)(nil), // 972: forge.ForgeAgentControlResponse.MlxDeviceApplyProfile + (*ForgeAgentControlResponse_MlxDeviceApplyFirmware)(nil), // 973: forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware + (*ForgeAgentControlResponse_FirmwareUpgrade)(nil), // 974: forge.ForgeAgentControlResponse.FirmwareUpgrade + (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair)(nil), // 975: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.KeyValuePair + (*MachineCleanupInfo_CleanupStepResult)(nil), // 976: forge.MachineCleanupInfo.CleanupStepResult + (*DpuReprovisioningListResponse_DpuReprovisioningListItem)(nil), // 977: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem + (*HostReprovisioningListResponse_HostReprovisioningListItem)(nil), // 978: forge.HostReprovisioningListResponse.HostReprovisioningListItem + (*MachineValidationTestUpdateRequest_Payload)(nil), // 979: forge.MachineValidationTestUpdateRequest.Payload + nil, // 980: forge.RedfishBrowseResponse.HeadersEntry + nil, // 981: forge.RedfishActionResult.HeadersEntry + nil, // 982: forge.UfmBrowseResponse.HeadersEntry + nil, // 983: forge.DesiredFirmwareVersionEntry.ComponentVersionsEntry + nil, // 984: forge.NmxcBrowseResponse.HeadersEntry + (*DPFStateResponse_DPFState)(nil), // 985: forge.DPFStateResponse.DPFState + (*MachineId)(nil), // 986: common.MachineId + (*timestamppb.Timestamp)(nil), // 987: google.protobuf.Timestamp + (*VpcId)(nil), // 988: common.VpcId + (*NVLinkLogicalPartitionId)(nil), // 989: common.NVLinkLogicalPartitionId + (*VpcPrefixId)(nil), // 990: common.VpcPrefixId + (*VpcPeeringId)(nil), // 991: common.VpcPeeringId + (*IBPartitionId)(nil), // 992: common.IBPartitionId + (*HealthReport)(nil), // 993: health.HealthReport + (*PowerShelfId)(nil), // 994: common.PowerShelfId + (*RackId)(nil), // 995: common.RackId + (*UUID)(nil), // 996: common.UUID + (*SwitchId)(nil), // 997: common.SwitchId + (*RackProfileId)(nil), // 998: common.RackProfileId + (*DomainId)(nil), // 999: common.DomainId + (*NetworkSegmentId)(nil), // 1000: common.NetworkSegmentId + (*NetworkPrefixId)(nil), // 1001: common.NetworkPrefixId + (*InstanceId)(nil), // 1002: common.InstanceId + (*IpxeTemplateId)(nil), // 1003: common.IpxeTemplateId + (*OperatingSystemId)(nil), // 1004: common.OperatingSystemId + (*SpxPartitionId)(nil), // 1005: common.SpxPartitionId + (*NVLinkDomainId)(nil), // 1006: common.NVLinkDomainId + (*MachineInterfaceId)(nil), // 1007: common.MachineInterfaceId + (*DiscoveryInfo)(nil), // 1008: machine_discovery.DiscoveryInfo + (*durationpb.Duration)(nil), // 1009: google.protobuf.Duration + (*StringList)(nil), // 1010: common.StringList + (*Gpu)(nil), // 1011: machine_discovery.Gpu + (*RouteTarget)(nil), // 1012: common.RouteTarget + (*MachineValidationId)(nil), // 1013: common.MachineValidationId + (*Uint32List)(nil), // 1014: common.Uint32List + (*DpaInterfaceId)(nil), // 1015: common.DpaInterfaceId + (*ComputeAllocationId)(nil), // 1016: common.ComputeAllocationId + (*RackHardwareType)(nil), // 1017: common.RackHardwareType + (*NVLinkPartitionId)(nil), // 1018: common.NVLinkPartitionId + (*RemediationId)(nil), // 1019: common.RemediationId + (*MlxDeviceLockdownResponse)(nil), // 1020: mlx_device.MlxDeviceLockdownResponse + (*MlxDeviceProfileSyncResponse)(nil), // 1021: mlx_device.MlxDeviceProfileSyncResponse + (*MlxDeviceProfileCompareResponse)(nil), // 1022: mlx_device.MlxDeviceProfileCompareResponse + (*MlxDeviceInfoDeviceResponse)(nil), // 1023: mlx_device.MlxDeviceInfoDeviceResponse + (*MlxDeviceInfoReportResponse)(nil), // 1024: mlx_device.MlxDeviceInfoReportResponse + (*MlxDeviceRegistryListResponse)(nil), // 1025: mlx_device.MlxDeviceRegistryListResponse + (*MlxDeviceRegistryShowResponse)(nil), // 1026: mlx_device.MlxDeviceRegistryShowResponse + (*MlxDeviceConfigQueryResponse)(nil), // 1027: mlx_device.MlxDeviceConfigQueryResponse + (*MlxDeviceConfigSetResponse)(nil), // 1028: mlx_device.MlxDeviceConfigSetResponse + (*MlxDeviceConfigSyncResponse)(nil), // 1029: mlx_device.MlxDeviceConfigSyncResponse + (*MlxDeviceConfigCompareResponse)(nil), // 1030: mlx_device.MlxDeviceConfigCompareResponse + (*MlxDeviceLockdownLockRequest)(nil), // 1031: mlx_device.MlxDeviceLockdownLockRequest + (*MlxDeviceLockdownUnlockRequest)(nil), // 1032: mlx_device.MlxDeviceLockdownUnlockRequest + (*MlxDeviceLockdownStatusRequest)(nil), // 1033: mlx_device.MlxDeviceLockdownStatusRequest + (*MlxDeviceProfileSyncRequest)(nil), // 1034: mlx_device.MlxDeviceProfileSyncRequest + (*MlxDeviceProfileCompareRequest)(nil), // 1035: mlx_device.MlxDeviceProfileCompareRequest + (*MlxDeviceInfoDeviceRequest)(nil), // 1036: mlx_device.MlxDeviceInfoDeviceRequest + (*MlxDeviceInfoReportRequest)(nil), // 1037: mlx_device.MlxDeviceInfoReportRequest + (*MlxDeviceRegistryListRequest)(nil), // 1038: mlx_device.MlxDeviceRegistryListRequest + (*MlxDeviceRegistryShowRequest)(nil), // 1039: mlx_device.MlxDeviceRegistryShowRequest + (*MlxDeviceConfigQueryRequest)(nil), // 1040: mlx_device.MlxDeviceConfigQueryRequest + (*MlxDeviceConfigSetRequest)(nil), // 1041: mlx_device.MlxDeviceConfigSetRequest + (*MlxDeviceConfigSyncRequest)(nil), // 1042: mlx_device.MlxDeviceConfigSyncRequest + (*MlxDeviceConfigCompareRequest)(nil), // 1043: mlx_device.MlxDeviceConfigCompareRequest + (*Domain)(nil), // 1044: dns.Domain + (*MachineIdList)(nil), // 1045: common.MachineIdList + (*EndpointExplorationReport)(nil), // 1046: site_explorer.EndpointExplorationReport + (SystemPowerControl)(0), // 1047: common.SystemPowerControl + (*SerializableMlxConfigProfile)(nil), // 1048: mlx_device.SerializableMlxConfigProfile + (*FirmwareFlasherProfile)(nil), // 1049: mlx_device.FirmwareFlasherProfile + (*ScoutFirmwareUpgradeTask)(nil), // 1050: scout_firmware_upgrade.ScoutFirmwareUpgradeTask + (*CreateDomainRequest)(nil), // 1051: dns.CreateDomainRequest + (*UpdateDomainRequest)(nil), // 1052: dns.UpdateDomainRequest + (*DomainDeletionRequest)(nil), // 1053: dns.DomainDeletionRequest + (*DomainSearchQuery)(nil), // 1054: dns.DomainSearchQuery + (*DnsResourceRecordLookupRequest)(nil), // 1055: dns.DnsResourceRecordLookupRequest + (*GetAllDomainsRequest)(nil), // 1056: dns.GetAllDomainsRequest + (*DomainMetadataRequest)(nil), // 1057: dns.DomainMetadataRequest + (*emptypb.Empty)(nil), // 1058: google.protobuf.Empty + (*ExploredEndpointSearchFilter)(nil), // 1059: site_explorer.ExploredEndpointSearchFilter + (*ExploredEndpointsByIdsRequest)(nil), // 1060: site_explorer.ExploredEndpointsByIdsRequest + (*ExploredManagedHostSearchFilter)(nil), // 1061: site_explorer.ExploredManagedHostSearchFilter + (*ExploredManagedHostsByIdsRequest)(nil), // 1062: site_explorer.ExploredManagedHostsByIdsRequest + (*ExploredMlxDeviceHostSearchFilter)(nil), // 1063: site_explorer.ExploredMlxDeviceHostSearchFilter + (*ExploredMlxDevicesByIdsRequest)(nil), // 1064: site_explorer.ExploredMlxDevicesByIdsRequest + (*CreateMeasurementBundleRequest)(nil), // 1065: measured_boot.CreateMeasurementBundleRequest + (*DeleteMeasurementBundleRequest)(nil), // 1066: measured_boot.DeleteMeasurementBundleRequest + (*RenameMeasurementBundleRequest)(nil), // 1067: measured_boot.RenameMeasurementBundleRequest + (*UpdateMeasurementBundleRequest)(nil), // 1068: measured_boot.UpdateMeasurementBundleRequest + (*ShowMeasurementBundleRequest)(nil), // 1069: measured_boot.ShowMeasurementBundleRequest + (*ShowMeasurementBundlesRequest)(nil), // 1070: measured_boot.ShowMeasurementBundlesRequest + (*ListMeasurementBundlesRequest)(nil), // 1071: measured_boot.ListMeasurementBundlesRequest + (*ListMeasurementBundleMachinesRequest)(nil), // 1072: measured_boot.ListMeasurementBundleMachinesRequest + (*FindClosestBundleMatchRequest)(nil), // 1073: measured_boot.FindClosestBundleMatchRequest + (*DeleteMeasurementJournalRequest)(nil), // 1074: measured_boot.DeleteMeasurementJournalRequest + (*ShowMeasurementJournalRequest)(nil), // 1075: measured_boot.ShowMeasurementJournalRequest + (*ShowMeasurementJournalsRequest)(nil), // 1076: measured_boot.ShowMeasurementJournalsRequest + (*ListMeasurementJournalRequest)(nil), // 1077: measured_boot.ListMeasurementJournalRequest + (*AttestCandidateMachineRequest)(nil), // 1078: measured_boot.AttestCandidateMachineRequest + (*ShowCandidateMachineRequest)(nil), // 1079: measured_boot.ShowCandidateMachineRequest + (*ShowCandidateMachinesRequest)(nil), // 1080: measured_boot.ShowCandidateMachinesRequest + (*ListCandidateMachinesRequest)(nil), // 1081: measured_boot.ListCandidateMachinesRequest + (*CreateMeasurementSystemProfileRequest)(nil), // 1082: measured_boot.CreateMeasurementSystemProfileRequest + (*DeleteMeasurementSystemProfileRequest)(nil), // 1083: measured_boot.DeleteMeasurementSystemProfileRequest + (*RenameMeasurementSystemProfileRequest)(nil), // 1084: measured_boot.RenameMeasurementSystemProfileRequest + (*ShowMeasurementSystemProfileRequest)(nil), // 1085: measured_boot.ShowMeasurementSystemProfileRequest + (*ShowMeasurementSystemProfilesRequest)(nil), // 1086: measured_boot.ShowMeasurementSystemProfilesRequest + (*ListMeasurementSystemProfilesRequest)(nil), // 1087: measured_boot.ListMeasurementSystemProfilesRequest + (*ListMeasurementSystemProfileBundlesRequest)(nil), // 1088: measured_boot.ListMeasurementSystemProfileBundlesRequest + (*ListMeasurementSystemProfileMachinesRequest)(nil), // 1089: measured_boot.ListMeasurementSystemProfileMachinesRequest + (*CreateMeasurementReportRequest)(nil), // 1090: measured_boot.CreateMeasurementReportRequest + (*DeleteMeasurementReportRequest)(nil), // 1091: measured_boot.DeleteMeasurementReportRequest + (*PromoteMeasurementReportRequest)(nil), // 1092: measured_boot.PromoteMeasurementReportRequest + (*RevokeMeasurementReportRequest)(nil), // 1093: measured_boot.RevokeMeasurementReportRequest + (*ShowMeasurementReportForIdRequest)(nil), // 1094: measured_boot.ShowMeasurementReportForIdRequest + (*ShowMeasurementReportsForMachineRequest)(nil), // 1095: measured_boot.ShowMeasurementReportsForMachineRequest + (*ShowMeasurementReportsRequest)(nil), // 1096: measured_boot.ShowMeasurementReportsRequest + (*ListMeasurementReportRequest)(nil), // 1097: measured_boot.ListMeasurementReportRequest + (*MatchMeasurementReportRequest)(nil), // 1098: measured_boot.MatchMeasurementReportRequest + (*ImportSiteMeasurementsRequest)(nil), // 1099: measured_boot.ImportSiteMeasurementsRequest + (*ExportSiteMeasurementsRequest)(nil), // 1100: measured_boot.ExportSiteMeasurementsRequest + (*AddMeasurementTrustedMachineRequest)(nil), // 1101: measured_boot.AddMeasurementTrustedMachineRequest + (*RemoveMeasurementTrustedMachineRequest)(nil), // 1102: measured_boot.RemoveMeasurementTrustedMachineRequest + (*AddMeasurementTrustedProfileRequest)(nil), // 1103: measured_boot.AddMeasurementTrustedProfileRequest + (*RemoveMeasurementTrustedProfileRequest)(nil), // 1104: measured_boot.RemoveMeasurementTrustedProfileRequest + (*ListMeasurementTrustedMachinesRequest)(nil), // 1105: measured_boot.ListMeasurementTrustedMachinesRequest + (*ListMeasurementTrustedProfilesRequest)(nil), // 1106: measured_boot.ListMeasurementTrustedProfilesRequest + (*ListAttestationSummaryRequest)(nil), // 1107: measured_boot.ListAttestationSummaryRequest + (*PublishMlxDeviceReportRequest)(nil), // 1108: mlx_device.PublishMlxDeviceReportRequest + (*PublishMlxObservationReportRequest)(nil), // 1109: mlx_device.PublishMlxObservationReportRequest + (*MlxAdminProfileSyncRequest)(nil), // 1110: mlx_device.MlxAdminProfileSyncRequest + (*MlxAdminProfileShowRequest)(nil), // 1111: mlx_device.MlxAdminProfileShowRequest + (*MlxAdminProfileCompareRequest)(nil), // 1112: mlx_device.MlxAdminProfileCompareRequest + (*MlxAdminProfileListRequest)(nil), // 1113: mlx_device.MlxAdminProfileListRequest + (*MlxAdminLockdownLockRequest)(nil), // 1114: mlx_device.MlxAdminLockdownLockRequest + (*MlxAdminLockdownUnlockRequest)(nil), // 1115: mlx_device.MlxAdminLockdownUnlockRequest + (*MlxAdminLockdownStatusRequest)(nil), // 1116: mlx_device.MlxAdminLockdownStatusRequest + (*MlxAdminDeviceInfoRequest)(nil), // 1117: mlx_device.MlxAdminDeviceInfoRequest + (*MlxAdminDeviceReportRequest)(nil), // 1118: mlx_device.MlxAdminDeviceReportRequest + (*MlxAdminRegistryListRequest)(nil), // 1119: mlx_device.MlxAdminRegistryListRequest + (*MlxAdminRegistryShowRequest)(nil), // 1120: mlx_device.MlxAdminRegistryShowRequest + (*MlxAdminConfigQueryRequest)(nil), // 1121: mlx_device.MlxAdminConfigQueryRequest + (*MlxAdminConfigSetRequest)(nil), // 1122: mlx_device.MlxAdminConfigSetRequest + (*MlxAdminConfigSyncRequest)(nil), // 1123: mlx_device.MlxAdminConfigSyncRequest + (*MlxAdminConfigCompareRequest)(nil), // 1124: mlx_device.MlxAdminConfigCompareRequest + (*DomainDeletionResult)(nil), // 1125: dns.DomainDeletionResult + (*DomainList)(nil), // 1126: dns.DomainList + (*DnsResourceRecordLookupResponse)(nil), // 1127: dns.DnsResourceRecordLookupResponse + (*GetAllDomainsResponse)(nil), // 1128: dns.GetAllDomainsResponse + (*DomainMetadataResponse)(nil), // 1129: dns.DomainMetadataResponse + (*SiteExplorationReport)(nil), // 1130: site_explorer.SiteExplorationReport + (*SiteExplorerLastRunResponse)(nil), // 1131: site_explorer.SiteExplorerLastRunResponse + (*ExploredEndpoint)(nil), // 1132: site_explorer.ExploredEndpoint + (*ExploredEndpointIdList)(nil), // 1133: site_explorer.ExploredEndpointIdList + (*ExploredEndpointList)(nil), // 1134: site_explorer.ExploredEndpointList + (*ExploredManagedHostIdList)(nil), // 1135: site_explorer.ExploredManagedHostIdList + (*ExploredManagedHostList)(nil), // 1136: site_explorer.ExploredManagedHostList + (*ExploredMlxDeviceHostIdList)(nil), // 1137: site_explorer.ExploredMlxDeviceHostIdList + (*ExploredMlxDeviceList)(nil), // 1138: site_explorer.ExploredMlxDeviceList + (*CreateMeasurementBundleResponse)(nil), // 1139: measured_boot.CreateMeasurementBundleResponse + (*DeleteMeasurementBundleResponse)(nil), // 1140: measured_boot.DeleteMeasurementBundleResponse + (*RenameMeasurementBundleResponse)(nil), // 1141: measured_boot.RenameMeasurementBundleResponse + (*UpdateMeasurementBundleResponse)(nil), // 1142: measured_boot.UpdateMeasurementBundleResponse + (*ShowMeasurementBundleResponse)(nil), // 1143: measured_boot.ShowMeasurementBundleResponse + (*ShowMeasurementBundlesResponse)(nil), // 1144: measured_boot.ShowMeasurementBundlesResponse + (*ListMeasurementBundlesResponse)(nil), // 1145: measured_boot.ListMeasurementBundlesResponse + (*ListMeasurementBundleMachinesResponse)(nil), // 1146: measured_boot.ListMeasurementBundleMachinesResponse + (*DeleteMeasurementJournalResponse)(nil), // 1147: measured_boot.DeleteMeasurementJournalResponse + (*ShowMeasurementJournalResponse)(nil), // 1148: measured_boot.ShowMeasurementJournalResponse + (*ShowMeasurementJournalsResponse)(nil), // 1149: measured_boot.ShowMeasurementJournalsResponse + (*ListMeasurementJournalResponse)(nil), // 1150: measured_boot.ListMeasurementJournalResponse + (*AttestCandidateMachineResponse)(nil), // 1151: measured_boot.AttestCandidateMachineResponse + (*ShowCandidateMachineResponse)(nil), // 1152: measured_boot.ShowCandidateMachineResponse + (*ShowCandidateMachinesResponse)(nil), // 1153: measured_boot.ShowCandidateMachinesResponse + (*ListCandidateMachinesResponse)(nil), // 1154: measured_boot.ListCandidateMachinesResponse + (*CreateMeasurementSystemProfileResponse)(nil), // 1155: measured_boot.CreateMeasurementSystemProfileResponse + (*DeleteMeasurementSystemProfileResponse)(nil), // 1156: measured_boot.DeleteMeasurementSystemProfileResponse + (*RenameMeasurementSystemProfileResponse)(nil), // 1157: measured_boot.RenameMeasurementSystemProfileResponse + (*ShowMeasurementSystemProfileResponse)(nil), // 1158: measured_boot.ShowMeasurementSystemProfileResponse + (*ShowMeasurementSystemProfilesResponse)(nil), // 1159: measured_boot.ShowMeasurementSystemProfilesResponse + (*ListMeasurementSystemProfilesResponse)(nil), // 1160: measured_boot.ListMeasurementSystemProfilesResponse + (*ListMeasurementSystemProfileBundlesResponse)(nil), // 1161: measured_boot.ListMeasurementSystemProfileBundlesResponse + (*ListMeasurementSystemProfileMachinesResponse)(nil), // 1162: measured_boot.ListMeasurementSystemProfileMachinesResponse + (*CreateMeasurementReportResponse)(nil), // 1163: measured_boot.CreateMeasurementReportResponse + (*DeleteMeasurementReportResponse)(nil), // 1164: measured_boot.DeleteMeasurementReportResponse + (*PromoteMeasurementReportResponse)(nil), // 1165: measured_boot.PromoteMeasurementReportResponse + (*RevokeMeasurementReportResponse)(nil), // 1166: measured_boot.RevokeMeasurementReportResponse + (*ShowMeasurementReportForIdResponse)(nil), // 1167: measured_boot.ShowMeasurementReportForIdResponse + (*ShowMeasurementReportsForMachineResponse)(nil), // 1168: measured_boot.ShowMeasurementReportsForMachineResponse + (*ShowMeasurementReportsResponse)(nil), // 1169: measured_boot.ShowMeasurementReportsResponse + (*ListMeasurementReportResponse)(nil), // 1170: measured_boot.ListMeasurementReportResponse + (*MatchMeasurementReportResponse)(nil), // 1171: measured_boot.MatchMeasurementReportResponse + (*ImportSiteMeasurementsResponse)(nil), // 1172: measured_boot.ImportSiteMeasurementsResponse + (*ExportSiteMeasurementsResponse)(nil), // 1173: measured_boot.ExportSiteMeasurementsResponse + (*AddMeasurementTrustedMachineResponse)(nil), // 1174: measured_boot.AddMeasurementTrustedMachineResponse + (*RemoveMeasurementTrustedMachineResponse)(nil), // 1175: measured_boot.RemoveMeasurementTrustedMachineResponse + (*AddMeasurementTrustedProfileResponse)(nil), // 1176: measured_boot.AddMeasurementTrustedProfileResponse + (*RemoveMeasurementTrustedProfileResponse)(nil), // 1177: measured_boot.RemoveMeasurementTrustedProfileResponse + (*ListMeasurementTrustedMachinesResponse)(nil), // 1178: measured_boot.ListMeasurementTrustedMachinesResponse + (*ListMeasurementTrustedProfilesResponse)(nil), // 1179: measured_boot.ListMeasurementTrustedProfilesResponse + (*ListAttestationSummaryResponse)(nil), // 1180: measured_boot.ListAttestationSummaryResponse + (*LockdownStatus)(nil), // 1181: site_explorer.LockdownStatus + (*PublishMlxDeviceReportResponse)(nil), // 1182: mlx_device.PublishMlxDeviceReportResponse + (*PublishMlxObservationReportResponse)(nil), // 1183: mlx_device.PublishMlxObservationReportResponse + (*MlxAdminProfileSyncResponse)(nil), // 1184: mlx_device.MlxAdminProfileSyncResponse + (*MlxAdminProfileShowResponse)(nil), // 1185: mlx_device.MlxAdminProfileShowResponse + (*MlxAdminProfileCompareResponse)(nil), // 1186: mlx_device.MlxAdminProfileCompareResponse + (*MlxAdminProfileListResponse)(nil), // 1187: mlx_device.MlxAdminProfileListResponse + (*MlxAdminLockdownLockResponse)(nil), // 1188: mlx_device.MlxAdminLockdownLockResponse + (*MlxAdminLockdownUnlockResponse)(nil), // 1189: mlx_device.MlxAdminLockdownUnlockResponse + (*MlxAdminLockdownStatusResponse)(nil), // 1190: mlx_device.MlxAdminLockdownStatusResponse + (*MlxAdminDeviceInfoResponse)(nil), // 1191: mlx_device.MlxAdminDeviceInfoResponse + (*MlxAdminDeviceReportResponse)(nil), // 1192: mlx_device.MlxAdminDeviceReportResponse + (*MlxAdminRegistryListResponse)(nil), // 1193: mlx_device.MlxAdminRegistryListResponse + (*MlxAdminRegistryShowResponse)(nil), // 1194: mlx_device.MlxAdminRegistryShowResponse + (*MlxAdminConfigQueryResponse)(nil), // 1195: mlx_device.MlxAdminConfigQueryResponse + (*MlxAdminConfigSetResponse)(nil), // 1196: mlx_device.MlxAdminConfigSetResponse + (*MlxAdminConfigSyncResponse)(nil), // 1197: mlx_device.MlxAdminConfigSyncResponse + (*MlxAdminConfigCompareResponse)(nil), // 1198: mlx_device.MlxAdminConfigCompareResponse } var file_nico_nico_proto_depIdxs = []int32{ - 347, // 0: forge.LifecycleStatus.state_reason:type_name -> forge.ControllerStateReason - 349, // 1: forge.LifecycleStatus.sla:type_name -> forge.StateSla - 985, // 2: forge.SpdmMachineAttestationStatus.machine_id:type_name -> common.MachineId + 348, // 0: forge.LifecycleStatus.state_reason:type_name -> forge.ControllerStateReason + 350, // 1: forge.LifecycleStatus.sla:type_name -> forge.StateSla + 986, // 2: forge.SpdmMachineAttestationStatus.machine_id:type_name -> common.MachineId 0, // 3: forge.SpdmMachineAttestationStatus.attestation_status:type_name -> forge.SpdmAttestationStatus - 985, // 4: forge.SpdmMachineAttestationTriggerResponse.machine_id:type_name -> common.MachineId - 985, // 5: forge.SpdmAttestationDetails.machine_id:type_name -> common.MachineId - 986, // 6: forge.SpdmAttestationDetails.started_at:type_name -> google.protobuf.Timestamp - 986, // 7: forge.SpdmAttestationDetails.cancelled_at:type_name -> google.protobuf.Timestamp - 986, // 8: forge.SpdmAttestationDetails.completed_at:type_name -> google.protobuf.Timestamp + 986, // 4: forge.SpdmMachineAttestationTriggerResponse.machine_id:type_name -> common.MachineId + 986, // 5: forge.SpdmAttestationDetails.machine_id:type_name -> common.MachineId + 987, // 6: forge.SpdmAttestationDetails.started_at:type_name -> google.protobuf.Timestamp + 987, // 7: forge.SpdmAttestationDetails.cancelled_at:type_name -> google.protobuf.Timestamp + 987, // 8: forge.SpdmAttestationDetails.completed_at:type_name -> google.protobuf.Timestamp 94, // 9: forge.SpdmGetAttestationMachineResponse.attestations_details:type_name -> forge.SpdmAttestationDetails - 985, // 10: forge.SpdmMachineAttestationTriggerRequest.machine_id:type_name -> common.MachineId - 985, // 11: forge.SpdmListAttestationMachinesRequest.machine_id:type_name -> common.MachineId + 986, // 10: forge.SpdmMachineAttestationTriggerRequest.machine_id:type_name -> common.MachineId + 986, // 11: forge.SpdmListAttestationMachinesRequest.machine_id:type_name -> common.MachineId 1, // 12: forge.SpdmListAttestationMachinesRequest.selector:type_name -> forge.SpdmListAttestationMachinesRequestSelector 92, // 13: forge.SpdmListAttestationMachinesResponse.statuses:type_name -> forge.SpdmMachineAttestationStatus - 986, // 14: forge.TenantIdentitySigningKey.expire_at:type_name -> google.protobuf.Timestamp + 987, // 14: forge.TenantIdentitySigningKey.expire_at:type_name -> google.protobuf.Timestamp 103, // 15: forge.SetTenantIdentityConfigRequest.config:type_name -> forge.TenantIdentityConfig 103, // 16: forge.TenantIdentityConfigResponse.config:type_name -> forge.TenantIdentityConfig - 986, // 17: forge.TenantIdentityConfigResponse.created_at:type_name -> google.protobuf.Timestamp - 986, // 18: forge.TenantIdentityConfigResponse.updated_at:type_name -> google.protobuf.Timestamp + 987, // 17: forge.TenantIdentityConfigResponse.created_at:type_name -> google.protobuf.Timestamp + 987, // 18: forge.TenantIdentityConfigResponse.updated_at:type_name -> google.protobuf.Timestamp 102, // 19: forge.TenantIdentityConfigResponse.signing_keys:type_name -> forge.TenantIdentitySigningKey 107, // 20: forge.TokenDelegationResponse.client_secret_basic:type_name -> forge.ClientSecretBasicResponse - 986, // 21: forge.TokenDelegationResponse.created_at:type_name -> google.protobuf.Timestamp - 986, // 22: forge.TokenDelegationResponse.updated_at:type_name -> google.protobuf.Timestamp + 987, // 21: forge.TokenDelegationResponse.created_at:type_name -> google.protobuf.Timestamp + 987, // 22: forge.TokenDelegationResponse.updated_at:type_name -> google.protobuf.Timestamp 106, // 23: forge.TokenDelegation.client_secret_basic:type_name -> forge.ClientSecretBasic 110, // 24: forge.TokenDelegationRequest.config:type_name -> forge.TokenDelegation 113, // 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 121, // 28: forge.TpmCaAddedCaStatus.id:type_name -> forge.TpmCaCertId - 985, // 29: forge.TpmEkCertStatus.machine_id:type_name -> common.MachineId + 986, // 29: forge.TpmEkCertStatus.machine_id:type_name -> common.MachineId 122, // 30: forge.TpmEkCertStatusCollection.tpm_ek_cert_statuses:type_name -> forge.TpmEkCertStatus 125, // 31: forge.TpmCaCertDetailCollection.tpm_ca_cert_details:type_name -> forge.TpmCaCertDetail - 985, // 32: forge.AttestQuoteRequest.machine_id:type_name -> common.MachineId - 430, // 33: forge.AttestQuoteResponse.machine_certificate:type_name -> forge.MachineCertificate + 986, // 32: forge.AttestQuoteRequest.machine_id:type_name -> common.MachineId + 431, // 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 - 986, // 38: forge.RotateCredentialResult.started_at:type_name -> google.protobuf.Timestamp + 987, // 38: forge.RotateCredentialResult.started_at:type_name -> google.protobuf.Timestamp 5, // 39: forge.CredentialRotationStatusRequest.credential_type:type_name -> forge.RotationCredentialType - 986, // 40: forge.DeviceCredentialRotationStatus.quarantined_until:type_name -> google.protobuf.Timestamp - 986, // 41: forge.DeviceCredentialRotationStatus.last_attempt_at:type_name -> google.protobuf.Timestamp - 986, // 42: forge.CredentialRotationStatusResult.started_at:type_name -> google.protobuf.Timestamp + 987, // 40: forge.DeviceCredentialRotationStatus.quarantined_until:type_name -> google.protobuf.Timestamp + 987, // 41: forge.DeviceCredentialRotationStatus.last_attempt_at:type_name -> google.protobuf.Timestamp + 987, // 42: forge.CredentialRotationStatusResult.started_at:type_name -> google.protobuf.Timestamp 137, // 43: forge.CredentialRotationStatusResult.device:type_name -> forge.DeviceCredentialRotationStatus 141, // 44: forge.BuildInfo.runtime_config:type_name -> forge.RuntimeConfig - 946, // 45: forge.RuntimeConfig.dpu_nic_firmware_update_version:type_name -> forge.RuntimeConfig.DpuNicFirmwareUpdateVersionEntry - 947, // 46: forge.DNSMessage.question:type_name -> forge.DNSMessage.DNSQuestion - 948, // 47: forge.DNSMessage.response:type_name -> forge.DNSMessage.DNSResponse - 987, // 48: forge.VpcSearchQuery.id:type_name -> common.VpcId + 947, // 45: forge.RuntimeConfig.dpu_nic_firmware_update_version:type_name -> forge.RuntimeConfig.DpuNicFirmwareUpdateVersionEntry + 948, // 46: forge.DNSMessage.question:type_name -> forge.DNSMessage.DNSQuestion + 949, // 47: forge.DNSMessage.response:type_name -> forge.DNSMessage.DNSResponse + 988, // 48: forge.VpcSearchQuery.id:type_name -> common.VpcId 259, // 49: forge.VpcSearchFilter.label:type_name -> forge.Label - 987, // 50: forge.VpcIdList.vpc_ids:type_name -> common.VpcId - 987, // 51: forge.VpcsByIdsRequest.vpc_ids:type_name -> common.VpcId + 988, // 50: forge.VpcIdList.vpc_ids:type_name -> common.VpcId + 988, // 51: forge.VpcsByIdsRequest.vpc_ids:type_name -> common.VpcId 6, // 52: forge.VpcConfig.network_virtualization_type:type_name -> forge.VpcVirtualizationType - 988, // 53: forge.VpcConfig.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 987, // 54: forge.Vpc.id:type_name -> common.VpcId - 986, // 55: forge.Vpc.created:type_name -> google.protobuf.Timestamp - 986, // 56: forge.Vpc.updated:type_name -> google.protobuf.Timestamp - 986, // 57: forge.Vpc.deleted:type_name -> google.protobuf.Timestamp + 989, // 53: forge.VpcConfig.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 988, // 54: forge.Vpc.id:type_name -> common.VpcId + 987, // 55: forge.Vpc.created:type_name -> google.protobuf.Timestamp + 987, // 56: forge.Vpc.updated:type_name -> google.protobuf.Timestamp + 987, // 57: forge.Vpc.deleted:type_name -> google.protobuf.Timestamp 6, // 58: forge.Vpc.network_virtualization_type:type_name -> forge.VpcVirtualizationType 260, // 59: forge.Vpc.metadata:type_name -> forge.Metadata - 988, // 60: forge.Vpc.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 989, // 60: forge.Vpc.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId 156, // 61: forge.Vpc.status:type_name -> forge.VpcStatus 155, // 62: forge.Vpc.config:type_name -> forge.VpcConfig 6, // 63: forge.VpcCreationRequest.network_virtualization_type:type_name -> forge.VpcVirtualizationType - 987, // 64: forge.VpcCreationRequest.id:type_name -> common.VpcId + 988, // 64: forge.VpcCreationRequest.id:type_name -> common.VpcId 260, // 65: forge.VpcCreationRequest.metadata:type_name -> forge.Metadata - 988, // 66: forge.VpcCreationRequest.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 987, // 67: forge.VpcUpdateRequest.id:type_name -> common.VpcId + 989, // 66: forge.VpcCreationRequest.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 988, // 67: forge.VpcUpdateRequest.id:type_name -> common.VpcId 260, // 68: forge.VpcUpdateRequest.metadata:type_name -> forge.Metadata - 988, // 69: forge.VpcUpdateRequest.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 989, // 69: forge.VpcUpdateRequest.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId 157, // 70: forge.VpcUpdateResult.vpc:type_name -> forge.Vpc - 987, // 71: forge.VpcUpdateVirtualizationRequest.id:type_name -> common.VpcId + 988, // 71: forge.VpcUpdateVirtualizationRequest.id:type_name -> common.VpcId 6, // 72: forge.VpcUpdateVirtualizationRequest.network_virtualization_type:type_name -> forge.VpcVirtualizationType - 987, // 73: forge.VpcDeletionRequest.id:type_name -> common.VpcId + 988, // 73: forge.VpcDeletionRequest.id:type_name -> common.VpcId 157, // 74: forge.VpcList.vpcs:type_name -> forge.Vpc - 989, // 75: forge.VpcPrefix.id:type_name -> common.VpcPrefixId - 987, // 76: forge.VpcPrefix.vpc_id:type_name -> common.VpcId + 990, // 75: forge.VpcPrefix.id:type_name -> common.VpcPrefixId + 988, // 76: forge.VpcPrefix.vpc_id:type_name -> common.VpcId 167, // 77: forge.VpcPrefix.config:type_name -> forge.VpcPrefixConfig 168, // 78: forge.VpcPrefix.status:type_name -> forge.VpcPrefixStatus 260, // 79: forge.VpcPrefix.metadata:type_name -> forge.Metadata 91, // 80: forge.VpcPrefixStatus.lifecycle:type_name -> forge.LifecycleStatus 8, // 81: forge.VpcPrefixStatus.tenant_state:type_name -> forge.TenantState - 989, // 82: forge.VpcPrefixCreationRequest.id:type_name -> common.VpcPrefixId - 987, // 83: forge.VpcPrefixCreationRequest.vpc_id:type_name -> common.VpcId + 990, // 82: forge.VpcPrefixCreationRequest.id:type_name -> common.VpcPrefixId + 988, // 83: forge.VpcPrefixCreationRequest.vpc_id:type_name -> common.VpcId 167, // 84: forge.VpcPrefixCreationRequest.config:type_name -> forge.VpcPrefixConfig 260, // 85: forge.VpcPrefixCreationRequest.metadata:type_name -> forge.Metadata - 987, // 86: forge.VpcPrefixSearchQuery.vpc_id:type_name -> common.VpcId - 989, // 87: forge.VpcPrefixSearchQuery.tenant_prefix_id:type_name -> common.VpcPrefixId + 988, // 86: forge.VpcPrefixSearchQuery.vpc_id:type_name -> common.VpcId + 990, // 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 - 989, // 90: forge.VpcPrefixGetRequest.vpc_prefix_ids:type_name -> common.VpcPrefixId + 990, // 90: forge.VpcPrefixGetRequest.vpc_prefix_ids:type_name -> common.VpcPrefixId 10, // 91: forge.VpcPrefixGetRequest.deleted:type_name -> forge.DeletedFilter - 989, // 92: forge.VpcPrefixIdList.vpc_prefix_ids:type_name -> common.VpcPrefixId + 990, // 92: forge.VpcPrefixIdList.vpc_prefix_ids:type_name -> common.VpcPrefixId 166, // 93: forge.VpcPrefixList.vpc_prefixes:type_name -> forge.VpcPrefix - 989, // 94: forge.VpcPrefixUpdateRequest.id:type_name -> common.VpcPrefixId + 990, // 94: forge.VpcPrefixUpdateRequest.id:type_name -> common.VpcPrefixId 167, // 95: forge.VpcPrefixUpdateRequest.config:type_name -> forge.VpcPrefixConfig 260, // 96: forge.VpcPrefixUpdateRequest.metadata:type_name -> forge.Metadata - 989, // 97: forge.VpcPrefixDeletionRequest.id:type_name -> common.VpcPrefixId - 989, // 98: forge.VpcPrefixStateHistoriesRequest.vpc_prefix_ids:type_name -> common.VpcPrefixId - 990, // 99: forge.VpcPeering.id:type_name -> common.VpcPeeringId - 987, // 100: forge.VpcPeering.vpc_id:type_name -> common.VpcId - 987, // 101: forge.VpcPeering.peer_vpc_id:type_name -> common.VpcId - 990, // 102: forge.VpcPeeringIdList.vpc_peering_ids:type_name -> common.VpcPeeringId + 990, // 97: forge.VpcPrefixDeletionRequest.id:type_name -> common.VpcPrefixId + 990, // 98: forge.VpcPrefixStateHistoriesRequest.vpc_prefix_ids:type_name -> common.VpcPrefixId + 991, // 99: forge.VpcPeering.id:type_name -> common.VpcPeeringId + 988, // 100: forge.VpcPeering.vpc_id:type_name -> common.VpcId + 988, // 101: forge.VpcPeering.peer_vpc_id:type_name -> common.VpcId + 991, // 102: forge.VpcPeeringIdList.vpc_peering_ids:type_name -> common.VpcPeeringId 178, // 103: forge.VpcPeeringList.vpc_peerings:type_name -> forge.VpcPeering - 987, // 104: forge.VpcPeeringCreationRequest.vpc_id:type_name -> common.VpcId - 987, // 105: forge.VpcPeeringCreationRequest.peer_vpc_id:type_name -> common.VpcId - 990, // 106: forge.VpcPeeringCreationRequest.id:type_name -> common.VpcPeeringId - 987, // 107: forge.VpcPeeringSearchFilter.vpc_id:type_name -> common.VpcId - 990, // 108: forge.VpcPeeringsByIdsRequest.vpc_peering_ids:type_name -> common.VpcPeeringId - 990, // 109: forge.VpcPeeringDeletionRequest.id:type_name -> common.VpcPeeringId + 988, // 104: forge.VpcPeeringCreationRequest.vpc_id:type_name -> common.VpcId + 988, // 105: forge.VpcPeeringCreationRequest.peer_vpc_id:type_name -> common.VpcId + 991, // 106: forge.VpcPeeringCreationRequest.id:type_name -> common.VpcPeeringId + 988, // 107: forge.VpcPeeringSearchFilter.vpc_id:type_name -> common.VpcId + 991, // 108: forge.VpcPeeringsByIdsRequest.vpc_peering_ids:type_name -> common.VpcPeeringId + 991, // 109: forge.VpcPeeringDeletionRequest.id:type_name -> common.VpcPeeringId 8, // 110: forge.IBPartitionStatus.state:type_name -> forge.TenantState - 347, // 111: forge.IBPartitionStatus.state_reason:type_name -> forge.ControllerStateReason - 349, // 112: forge.IBPartitionStatus.state_sla:type_name -> forge.StateSla - 991, // 113: forge.IBPartition.id:type_name -> common.IBPartitionId + 348, // 111: forge.IBPartitionStatus.state_reason:type_name -> forge.ControllerStateReason + 350, // 112: forge.IBPartitionStatus.state_sla:type_name -> forge.StateSla + 992, // 113: forge.IBPartition.id:type_name -> common.IBPartitionId 186, // 114: forge.IBPartition.config:type_name -> forge.IBPartitionConfig 187, // 115: forge.IBPartition.status:type_name -> forge.IBPartitionStatus 260, // 116: forge.IBPartition.metadata:type_name -> forge.Metadata 188, // 117: forge.IBPartitionList.ib_partitions:type_name -> forge.IBPartition 186, // 118: forge.IBPartitionCreationRequest.config:type_name -> forge.IBPartitionConfig - 991, // 119: forge.IBPartitionCreationRequest.id:type_name -> common.IBPartitionId + 992, // 119: forge.IBPartitionCreationRequest.id:type_name -> common.IBPartitionId 260, // 120: forge.IBPartitionCreationRequest.metadata:type_name -> forge.Metadata - 991, // 121: forge.IBPartitionUpdateRequest.id:type_name -> common.IBPartitionId + 992, // 121: forge.IBPartitionUpdateRequest.id:type_name -> common.IBPartitionId 186, // 122: forge.IBPartitionUpdateRequest.config:type_name -> forge.IBPartitionConfig 260, // 123: forge.IBPartitionUpdateRequest.metadata:type_name -> forge.Metadata - 991, // 124: forge.IBPartitionDeletionRequest.id:type_name -> common.IBPartitionId - 991, // 125: forge.IBPartitionsByIdsRequest.ib_partition_ids:type_name -> common.IBPartitionId - 991, // 126: forge.IBPartitionIdList.ib_partition_ids:type_name -> common.IBPartitionId - 347, // 127: forge.PowerShelfStatus.state_reason:type_name -> forge.ControllerStateReason - 349, // 128: forge.PowerShelfStatus.state_sla:type_name -> forge.StateSla - 992, // 129: forge.PowerShelfStatus.health:type_name -> health.HealthReport - 346, // 130: forge.PowerShelfStatus.health_sources:type_name -> forge.HealthSourceOrigin + 992, // 124: forge.IBPartitionDeletionRequest.id:type_name -> common.IBPartitionId + 992, // 125: forge.IBPartitionsByIdsRequest.ib_partition_ids:type_name -> common.IBPartitionId + 992, // 126: forge.IBPartitionIdList.ib_partition_ids:type_name -> common.IBPartitionId + 348, // 127: forge.PowerShelfStatus.state_reason:type_name -> forge.ControllerStateReason + 350, // 128: forge.PowerShelfStatus.state_sla:type_name -> forge.StateSla + 993, // 129: forge.PowerShelfStatus.health:type_name -> health.HealthReport + 347, // 130: forge.PowerShelfStatus.health_sources:type_name -> forge.HealthSourceOrigin 91, // 131: forge.PowerShelfStatus.lifecycle:type_name -> forge.LifecycleStatus - 993, // 132: forge.PowerShelf.id:type_name -> common.PowerShelfId + 994, // 132: forge.PowerShelf.id:type_name -> common.PowerShelfId 197, // 133: forge.PowerShelf.config:type_name -> forge.PowerShelfConfig 198, // 134: forge.PowerShelf.status:type_name -> forge.PowerShelfStatus - 986, // 135: forge.PowerShelf.deleted:type_name -> google.protobuf.Timestamp + 987, // 135: forge.PowerShelf.deleted:type_name -> google.protobuf.Timestamp 260, // 136: forge.PowerShelf.metadata:type_name -> forge.Metadata 334, // 137: forge.PowerShelf.bmc_info:type_name -> forge.BmcInfo - 994, // 138: forge.PowerShelf.rack_id:type_name -> common.RackId + 995, // 138: forge.PowerShelf.rack_id:type_name -> common.RackId 199, // 139: forge.PowerShelfList.power_shelves:type_name -> forge.PowerShelf 197, // 140: forge.PowerShelfCreationRequest.config:type_name -> forge.PowerShelfConfig - 993, // 141: forge.PowerShelfCreationRequest.id:type_name -> common.PowerShelfId - 993, // 142: forge.PowerShelfDeletionRequest.id:type_name -> common.PowerShelfId - 993, // 143: forge.PowerShelfMaintenanceRequest.power_shelf_ids:type_name -> common.PowerShelfId + 994, // 141: forge.PowerShelfCreationRequest.id:type_name -> common.PowerShelfId + 994, // 142: forge.PowerShelfDeletionRequest.id:type_name -> common.PowerShelfId + 994, // 143: forge.PowerShelfMaintenanceRequest.power_shelf_ids:type_name -> common.PowerShelfId 9, // 144: forge.PowerShelfMaintenanceRequest.operation:type_name -> forge.PowerShelfMaintenanceOperation - 993, // 145: forge.PowerShelfStateHistoriesRequest.power_shelf_ids:type_name -> common.PowerShelfId - 993, // 146: forge.PowerShelfQuery.power_shelf_id:type_name -> common.PowerShelfId - 994, // 147: forge.PowerShelfSearchFilter.rack_id:type_name -> common.RackId + 994, // 145: forge.PowerShelfStateHistoriesRequest.power_shelf_ids:type_name -> common.PowerShelfId + 994, // 146: forge.PowerShelfQuery.power_shelf_id:type_name -> common.PowerShelfId + 995, // 147: forge.PowerShelfSearchFilter.rack_id:type_name -> common.RackId 10, // 148: forge.PowerShelfSearchFilter.deleted:type_name -> forge.DeletedFilter - 993, // 149: forge.PowerShelvesByIdsRequest.power_shelf_ids:type_name -> common.PowerShelfId + 994, // 149: forge.PowerShelvesByIdsRequest.power_shelf_ids:type_name -> common.PowerShelfId 260, // 150: forge.ExpectedPowerShelf.metadata:type_name -> forge.Metadata - 994, // 151: forge.ExpectedPowerShelf.rack_id:type_name -> common.RackId - 995, // 152: forge.ExpectedPowerShelf.expected_power_shelf_id:type_name -> common.UUID - 995, // 153: forge.ExpectedPowerShelfRequest.expected_power_shelf_id:type_name -> common.UUID + 995, // 151: forge.ExpectedPowerShelf.rack_id:type_name -> common.RackId + 996, // 152: forge.ExpectedPowerShelf.expected_power_shelf_id:type_name -> common.UUID + 996, // 153: forge.ExpectedPowerShelfRequest.expected_power_shelf_id:type_name -> common.UUID 209, // 154: forge.ExpectedPowerShelfList.expected_power_shelves:type_name -> forge.ExpectedPowerShelf 213, // 155: forge.LinkedExpectedPowerShelfList.expected_power_shelves:type_name -> forge.LinkedExpectedPowerShelf - 993, // 156: forge.LinkedExpectedPowerShelf.power_shelf_id:type_name -> common.PowerShelfId - 995, // 157: forge.LinkedExpectedPowerShelf.expected_power_shelf_id:type_name -> common.UUID - 994, // 158: forge.LinkedExpectedPowerShelf.rack_id:type_name -> common.RackId + 994, // 156: forge.LinkedExpectedPowerShelf.power_shelf_id:type_name -> common.PowerShelfId + 996, // 157: forge.LinkedExpectedPowerShelf.expected_power_shelf_id:type_name -> common.UUID + 995, // 158: forge.LinkedExpectedPowerShelf.rack_id:type_name -> common.RackId 215, // 159: forge.SwitchConfig.fabric_manager_config:type_name -> forge.FabricManagerConfig - 950, // 160: forge.FabricManagerConfig.config_map:type_name -> forge.FabricManagerConfig.ConfigMapEntry + 951, // 160: forge.FabricManagerConfig.config_map:type_name -> forge.FabricManagerConfig.ConfigMapEntry 11, // 161: forge.FabricManagerStatus.fabric_manager_state:type_name -> forge.FabricManagerState - 347, // 162: forge.SwitchStatus.state_reason:type_name -> forge.ControllerStateReason - 349, // 163: forge.SwitchStatus.state_sla:type_name -> forge.StateSla - 992, // 164: forge.SwitchStatus.health:type_name -> health.HealthReport - 346, // 165: forge.SwitchStatus.health_sources:type_name -> forge.HealthSourceOrigin + 348, // 162: forge.SwitchStatus.state_reason:type_name -> forge.ControllerStateReason + 350, // 163: forge.SwitchStatus.state_sla:type_name -> forge.StateSla + 993, // 164: forge.SwitchStatus.health:type_name -> health.HealthReport + 347, // 165: forge.SwitchStatus.health_sources:type_name -> forge.HealthSourceOrigin 91, // 166: forge.SwitchStatus.lifecycle:type_name -> forge.LifecycleStatus 216, // 167: forge.SwitchStatus.fabric_manager_status_details:type_name -> forge.FabricManagerStatus - 996, // 168: forge.Switch.id:type_name -> common.SwitchId + 997, // 168: forge.Switch.id:type_name -> common.SwitchId 214, // 169: forge.Switch.config:type_name -> forge.SwitchConfig 217, // 170: forge.Switch.status:type_name -> forge.SwitchStatus - 986, // 171: forge.Switch.deleted:type_name -> google.protobuf.Timestamp + 987, // 171: forge.Switch.deleted:type_name -> google.protobuf.Timestamp 334, // 172: forge.Switch.bmc_info:type_name -> forge.BmcInfo 260, // 173: forge.Switch.metadata:type_name -> forge.Metadata - 994, // 174: forge.Switch.rack_id:type_name -> common.RackId + 995, // 174: forge.Switch.rack_id:type_name -> common.RackId 218, // 175: forge.Switch.placement_in_rack:type_name -> forge.PlacementInRack 335, // 176: forge.Switch.nvos_info:type_name -> forge.SwitchNvosInfo 219, // 177: forge.SwitchList.switches:type_name -> forge.Switch 214, // 178: forge.SwitchCreationRequest.config:type_name -> forge.SwitchConfig - 995, // 179: forge.SwitchCreationRequest.id:type_name -> common.UUID + 996, // 179: forge.SwitchCreationRequest.id:type_name -> common.UUID 218, // 180: forge.SwitchCreationRequest.placement_in_rack:type_name -> forge.PlacementInRack - 996, // 181: forge.SwitchDeletionRequest.id:type_name -> common.SwitchId - 986, // 182: forge.StateHistoryRecord.time:type_name -> google.protobuf.Timestamp + 997, // 181: forge.SwitchDeletionRequest.id:type_name -> common.SwitchId + 987, // 182: forge.StateHistoryRecord.time:type_name -> google.protobuf.Timestamp 224, // 183: forge.StateHistoryRecords.records:type_name -> forge.StateHistoryRecord - 996, // 184: forge.SwitchStateHistoriesRequest.switch_ids:type_name -> common.SwitchId - 951, // 185: forge.StateHistories.histories:type_name -> forge.StateHistories.HistoriesEntry - 996, // 186: forge.SwitchQuery.switch_id:type_name -> common.SwitchId - 994, // 187: forge.SwitchSearchFilter.rack_id:type_name -> common.RackId + 997, // 184: forge.SwitchStateHistoriesRequest.switch_ids:type_name -> common.SwitchId + 952, // 185: forge.StateHistories.histories:type_name -> forge.StateHistories.HistoriesEntry + 997, // 186: forge.SwitchQuery.switch_id:type_name -> common.SwitchId + 995, // 187: forge.SwitchSearchFilter.rack_id:type_name -> common.RackId 10, // 188: forge.SwitchSearchFilter.deleted:type_name -> forge.DeletedFilter - 996, // 189: forge.SwitchesByIdsRequest.switch_ids:type_name -> common.SwitchId + 997, // 189: forge.SwitchesByIdsRequest.switch_ids:type_name -> common.SwitchId 260, // 190: forge.ExpectedSwitch.metadata:type_name -> forge.Metadata - 994, // 191: forge.ExpectedSwitch.rack_id:type_name -> common.RackId - 995, // 192: forge.ExpectedSwitch.expected_switch_id:type_name -> common.UUID - 995, // 193: forge.ExpectedSwitchRequest.expected_switch_id:type_name -> common.UUID + 995, // 191: forge.ExpectedSwitch.rack_id:type_name -> common.RackId + 996, // 192: forge.ExpectedSwitch.expected_switch_id:type_name -> common.UUID + 996, // 193: forge.ExpectedSwitchRequest.expected_switch_id:type_name -> common.UUID 231, // 194: forge.ExpectedSwitchList.expected_switches:type_name -> forge.ExpectedSwitch 235, // 195: forge.LinkedExpectedSwitchList.expected_switches:type_name -> forge.LinkedExpectedSwitch - 996, // 196: forge.LinkedExpectedSwitch.switch_id:type_name -> common.SwitchId - 995, // 197: forge.LinkedExpectedSwitch.expected_switch_id:type_name -> common.UUID - 994, // 198: forge.LinkedExpectedSwitch.rack_id:type_name -> common.RackId - 994, // 199: forge.ExpectedRack.rack_id:type_name -> common.RackId - 997, // 200: forge.ExpectedRack.rack_profile_id:type_name -> common.RackProfileId + 997, // 196: forge.LinkedExpectedSwitch.switch_id:type_name -> common.SwitchId + 996, // 197: forge.LinkedExpectedSwitch.expected_switch_id:type_name -> common.UUID + 995, // 198: forge.LinkedExpectedSwitch.rack_id:type_name -> common.RackId + 995, // 199: forge.ExpectedRack.rack_id:type_name -> common.RackId + 998, // 200: forge.ExpectedRack.rack_profile_id:type_name -> common.RackProfileId 260, // 201: forge.ExpectedRack.metadata:type_name -> forge.Metadata 236, // 202: forge.ExpectedRackList.expected_racks:type_name -> forge.ExpectedRack - 986, // 203: forge.NetworkSegmentStateHistory.time:type_name -> google.protobuf.Timestamp - 987, // 204: forge.NetworkSegmentConfig.vpc_id:type_name -> common.VpcId - 998, // 205: forge.NetworkSegmentConfig.subdomain_id:type_name -> common.DomainId + 987, // 203: forge.NetworkSegmentStateHistory.time:type_name -> google.protobuf.Timestamp + 988, // 204: forge.NetworkSegmentConfig.vpc_id:type_name -> common.VpcId + 999, // 205: forge.NetworkSegmentConfig.subdomain_id:type_name -> common.DomainId 12, // 206: forge.NetworkSegmentConfig.segment_type:type_name -> forge.NetworkSegmentType 254, // 207: forge.NetworkSegmentConfig.prefixes:type_name -> forge.NetworkPrefix 13, // 208: forge.NetworkSegmentStatus.flags:type_name -> forge.NetworkSegmentFlag 91, // 209: forge.NetworkSegmentStatus.lifecycle:type_name -> forge.LifecycleStatus 8, // 210: forge.NetworkSegmentStatus.tenant_state:type_name -> forge.TenantState - 999, // 211: forge.NetworkSegment.id:type_name -> common.NetworkSegmentId - 987, // 212: forge.NetworkSegment.vpc_id:type_name -> common.VpcId - 998, // 213: forge.NetworkSegment.subdomain_id:type_name -> common.DomainId + 1000, // 211: forge.NetworkSegment.id:type_name -> common.NetworkSegmentId + 988, // 212: forge.NetworkSegment.vpc_id:type_name -> common.VpcId + 999, // 213: forge.NetworkSegment.subdomain_id:type_name -> common.DomainId 254, // 214: forge.NetworkSegment.prefixes:type_name -> forge.NetworkPrefix - 986, // 215: forge.NetworkSegment.created:type_name -> google.protobuf.Timestamp - 986, // 216: forge.NetworkSegment.updated:type_name -> google.protobuf.Timestamp - 986, // 217: forge.NetworkSegment.deleted:type_name -> google.protobuf.Timestamp + 987, // 215: forge.NetworkSegment.created:type_name -> google.protobuf.Timestamp + 987, // 216: forge.NetworkSegment.updated:type_name -> google.protobuf.Timestamp + 987, // 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 242, // 220: forge.NetworkSegment.config:type_name -> forge.NetworkSegmentConfig @@ -67656,39 +67731,39 @@ var file_nico_nico_proto_depIdxs = []int32{ 260, // 222: forge.NetworkSegment.metadata:type_name -> forge.Metadata 8, // 223: forge.NetworkSegment.state:type_name -> forge.TenantState 241, // 224: forge.NetworkSegment.history:type_name -> forge.NetworkSegmentStateHistory - 347, // 225: forge.NetworkSegment.state_reason:type_name -> forge.ControllerStateReason - 349, // 226: forge.NetworkSegment.state_sla:type_name -> forge.StateSla - 987, // 227: forge.NetworkSegmentCreationRequest.vpc_id:type_name -> common.VpcId - 998, // 228: forge.NetworkSegmentCreationRequest.subdomain_id:type_name -> common.DomainId + 348, // 225: forge.NetworkSegment.state_reason:type_name -> forge.ControllerStateReason + 350, // 226: forge.NetworkSegment.state_sla:type_name -> forge.StateSla + 988, // 227: forge.NetworkSegmentCreationRequest.vpc_id:type_name -> common.VpcId + 999, // 228: forge.NetworkSegmentCreationRequest.subdomain_id:type_name -> common.DomainId 254, // 229: forge.NetworkSegmentCreationRequest.prefixes:type_name -> forge.NetworkPrefix 12, // 230: forge.NetworkSegmentCreationRequest.segment_type:type_name -> forge.NetworkSegmentType - 999, // 231: forge.NetworkSegmentCreationRequest.id:type_name -> common.NetworkSegmentId - 999, // 232: forge.NetworkSegmentDeletionRequest.id:type_name -> common.NetworkSegmentId - 999, // 233: forge.AttachNetworkSegmentToVpcRequest.network_segment_id:type_name -> common.NetworkSegmentId - 987, // 234: forge.AttachNetworkSegmentToVpcRequest.vpc_id:type_name -> common.VpcId - 999, // 235: forge.NetworkSegmentStateHistoriesRequest.network_segment_ids:type_name -> common.NetworkSegmentId - 999, // 236: forge.NetworkSegmentIdList.network_segments_ids:type_name -> common.NetworkSegmentId - 999, // 237: forge.NetworkSegmentsByIdsRequest.network_segments_ids:type_name -> common.NetworkSegmentId - 1000, // 238: forge.NetworkPrefix.id:type_name -> common.NetworkPrefixId + 1000, // 231: forge.NetworkSegmentCreationRequest.id:type_name -> common.NetworkSegmentId + 1000, // 232: forge.NetworkSegmentDeletionRequest.id:type_name -> common.NetworkSegmentId + 1000, // 233: forge.AttachNetworkSegmentToVpcRequest.network_segment_id:type_name -> common.NetworkSegmentId + 988, // 234: forge.AttachNetworkSegmentToVpcRequest.vpc_id:type_name -> common.VpcId + 1000, // 235: forge.NetworkSegmentStateHistoriesRequest.network_segment_ids:type_name -> common.NetworkSegmentId + 1000, // 236: forge.NetworkSegmentIdList.network_segments_ids:type_name -> common.NetworkSegmentId + 1000, // 237: forge.NetworkSegmentsByIdsRequest.network_segments_ids:type_name -> common.NetworkSegmentId + 1001, // 238: forge.NetworkPrefix.id:type_name -> common.NetworkPrefixId 80, // 239: forge.InstancePowerRequest.operation:type_name -> forge.InstancePowerRequest.Operation - 1001, // 240: forge.InstancePowerRequest.instance_id:type_name -> common.InstanceId + 1002, // 240: forge.InstancePowerRequest.instance_id:type_name -> common.InstanceId 293, // 241: forge.InstanceList.instances:type_name -> forge.Instance 259, // 242: forge.Metadata.labels:type_name -> forge.Label 259, // 243: forge.InstanceSearchFilter.label:type_name -> forge.Label - 1001, // 244: forge.InstanceIdList.instance_ids:type_name -> common.InstanceId - 1001, // 245: forge.InstancesByIdsRequest.instance_ids:type_name -> common.InstanceId - 985, // 246: forge.InstanceAllocationRequest.machine_id:type_name -> common.MachineId + 1002, // 244: forge.InstanceIdList.instance_ids:type_name -> common.InstanceId + 1002, // 245: forge.InstancesByIdsRequest.instance_ids:type_name -> common.InstanceId + 986, // 246: forge.InstanceAllocationRequest.machine_id:type_name -> common.MachineId 273, // 247: forge.InstanceAllocationRequest.config:type_name -> forge.InstanceConfig - 1001, // 248: forge.InstanceAllocationRequest.instance_id:type_name -> common.InstanceId + 1002, // 248: forge.InstanceAllocationRequest.instance_id:type_name -> common.InstanceId 260, // 249: forge.InstanceAllocationRequest.metadata:type_name -> forge.Metadata 264, // 250: forge.BatchInstanceAllocationRequest.instance_requests:type_name -> forge.InstanceAllocationRequest 293, // 251: forge.BatchInstanceAllocationResponse.instances:type_name -> forge.Instance 14, // 252: forge.IpxeTemplateArtifact.cache_strategy:type_name -> forge.IpxeTemplateArtifactCacheStrategy 15, // 253: forge.IpxeTemplate.scope:type_name -> forge.IpxeTemplateScope - 1002, // 254: forge.IpxeTemplate.id:type_name -> common.IpxeTemplateId + 1003, // 254: forge.IpxeTemplate.id:type_name -> common.IpxeTemplateId 272, // 255: forge.InstanceOperatingSystemConfig.ipxe:type_name -> forge.InlineIpxe - 995, // 256: forge.InstanceOperatingSystemConfig.os_image_id:type_name -> common.UUID - 1003, // 257: forge.InstanceOperatingSystemConfig.operating_system_id:type_name -> common.OperatingSystemId + 996, // 256: forge.InstanceOperatingSystemConfig.os_image_id:type_name -> common.UUID + 1004, // 257: forge.InstanceOperatingSystemConfig.operating_system_id:type_name -> common.OperatingSystemId 270, // 258: forge.InstanceConfig.tenant:type_name -> forge.TenantConfig 271, // 259: forge.InstanceConfig.os:type_name -> forge.InstanceOperatingSystemConfig 274, // 260: forge.InstanceConfig.network:type_name -> forge.InstanceNetworkConfig @@ -67698,19 +67773,19 @@ var file_nico_nico_proto_depIdxs = []int32{ 280, // 264: forge.InstanceConfig.spxconfig:type_name -> forge.InstanceSpxConfig 295, // 265: forge.InstanceNetworkConfig.interfaces:type_name -> forge.InstanceInterfaceConfig 275, // 266: forge.InstanceNetworkConfig.auto_config:type_name -> forge.InstanceNetworkAutoConfig - 987, // 267: forge.InstanceNetworkAutoConfig.vpc_id:type_name -> common.VpcId + 988, // 267: forge.InstanceNetworkAutoConfig.vpc_id:type_name -> common.VpcId 298, // 268: forge.InstanceInfinibandConfig.ib_interfaces:type_name -> forge.InstanceIBInterfaceConfig 277, // 269: forge.InstanceDpuExtensionServicesConfig.service_configs:type_name -> forge.InstanceDpuExtensionServiceConfig 302, // 270: forge.InstanceNVLinkConfig.gpu_configs:type_name -> forge.InstanceNVLinkGpuConfig 281, // 271: forge.InstanceSpxConfig.spx_attachments:type_name -> forge.InstanceSpxAttachment - 1004, // 272: forge.InstanceSpxAttachment.spx_partition_id:type_name -> common.SpxPartitionId + 1005, // 272: forge.InstanceSpxAttachment.spx_partition_id:type_name -> common.SpxPartitionId 16, // 273: forge.InstanceSpxAttachment.attachment_type:type_name -> forge.SpxAttachmentType - 1001, // 274: forge.InstanceOperatingSystemUpdateRequest.instance_id:type_name -> common.InstanceId + 1002, // 274: forge.InstanceOperatingSystemUpdateRequest.instance_id:type_name -> common.InstanceId 271, // 275: forge.InstanceOperatingSystemUpdateRequest.os:type_name -> forge.InstanceOperatingSystemConfig - 1001, // 276: forge.InstanceConfigUpdateRequest.instance_id:type_name -> common.InstanceId + 1002, // 276: forge.InstanceConfigUpdateRequest.instance_id:type_name -> common.InstanceId 273, // 277: forge.InstanceConfigUpdateRequest.config:type_name -> forge.InstanceConfig 260, // 278: forge.InstanceConfigUpdateRequest.metadata:type_name -> forge.Metadata - 350, // 279: forge.InstanceStatus.tenant:type_name -> forge.InstanceTenantStatus + 351, // 279: forge.InstanceStatus.tenant:type_name -> forge.InstanceTenantStatus 287, // 280: forge.InstanceStatus.network:type_name -> forge.InstanceNetworkStatus 288, // 281: forge.InstanceStatus.infiniband:type_name -> forge.InstanceInfinibandStatus 291, // 282: forge.InstanceStatus.dpu_extension_services:type_name -> forge.InstanceDpuExtensionServicesStatus @@ -67721,1803 +67796,1806 @@ var file_nico_nico_proto_depIdxs = []int32{ 286, // 287: forge.InstanceSpxStatus.attachment_statuses:type_name -> forge.InstanceSpxAttachmentStatus 23, // 288: forge.InstanceSpxStatus.configs_synced:type_name -> forge.SyncState 16, // 289: forge.InstanceSpxAttachmentStatus.attachment_type:type_name -> forge.SpxAttachmentType - 1004, // 290: forge.InstanceSpxAttachmentStatus.spx_partition_id:type_name -> common.SpxPartitionId + 1005, // 290: forge.InstanceSpxAttachmentStatus.spx_partition_id:type_name -> common.SpxPartitionId 299, // 291: forge.InstanceNetworkStatus.interfaces:type_name -> forge.InstanceInterfaceStatus 23, // 292: forge.InstanceNetworkStatus.configs_synced:type_name -> forge.SyncState 300, // 293: forge.InstanceInfinibandStatus.ib_interfaces:type_name -> forge.InstanceIBInterfaceStatus 23, // 294: forge.InstanceInfinibandStatus.configs_synced:type_name -> forge.SyncState - 985, // 295: forge.DpuExtensionServiceStatus.dpu_machine_id:type_name -> common.MachineId + 986, // 295: forge.DpuExtensionServiceStatus.dpu_machine_id:type_name -> common.MachineId 72, // 296: forge.DpuExtensionServiceStatus.status:type_name -> forge.DpuExtensionServiceDeploymentStatus - 447, // 297: forge.DpuExtensionServiceStatus.components:type_name -> forge.DpuExtensionServiceComponent + 448, // 297: forge.DpuExtensionServiceStatus.components:type_name -> forge.DpuExtensionServiceComponent 72, // 298: forge.InstanceDpuExtensionServiceStatus.deployment_status:type_name -> forge.DpuExtensionServiceDeploymentStatus 289, // 299: forge.InstanceDpuExtensionServiceStatus.dpu_statuses:type_name -> forge.DpuExtensionServiceStatus 290, // 300: forge.InstanceDpuExtensionServicesStatus.dpu_extension_services:type_name -> forge.InstanceDpuExtensionServiceStatus 23, // 301: forge.InstanceDpuExtensionServicesStatus.configs_synced:type_name -> forge.SyncState 301, // 302: forge.InstanceNVLinkStatus.gpu_statuses:type_name -> forge.InstanceNVLinkGpuStatus 23, // 303: forge.InstanceNVLinkStatus.configs_synced:type_name -> forge.SyncState - 1001, // 304: forge.Instance.id:type_name -> common.InstanceId - 985, // 305: forge.Instance.machine_id:type_name -> common.MachineId + 1002, // 304: forge.Instance.id:type_name -> common.InstanceId + 986, // 305: forge.Instance.machine_id:type_name -> common.MachineId 260, // 306: forge.Instance.metadata:type_name -> forge.Metadata 273, // 307: forge.Instance.config:type_name -> forge.InstanceConfig 284, // 308: forge.Instance.status:type_name -> forge.InstanceStatus 81, // 309: forge.InstanceUpdateStatus.module:type_name -> forge.InstanceUpdateStatus.Module - 986, // 310: forge.InstanceUpdateStatus.trigger_received_at:type_name -> google.protobuf.Timestamp - 986, // 311: forge.InstanceUpdateStatus.update_triggered_at:type_name -> google.protobuf.Timestamp + 987, // 310: forge.InstanceUpdateStatus.trigger_received_at:type_name -> google.protobuf.Timestamp + 987, // 311: forge.InstanceUpdateStatus.update_triggered_at:type_name -> google.protobuf.Timestamp 38, // 312: forge.InstanceInterfaceConfig.function_type:type_name -> forge.InterfaceFunctionType - 999, // 313: forge.InstanceInterfaceConfig.network_segment_id:type_name -> common.NetworkSegmentId - 999, // 314: forge.InstanceInterfaceConfig.segment_id:type_name -> common.NetworkSegmentId - 989, // 315: forge.InstanceInterfaceConfig.vpc_prefix_id:type_name -> common.VpcPrefixId + 1000, // 313: forge.InstanceInterfaceConfig.network_segment_id:type_name -> common.NetworkSegmentId + 1000, // 314: forge.InstanceInterfaceConfig.segment_id:type_name -> common.NetworkSegmentId + 990, // 315: forge.InstanceInterfaceConfig.vpc_prefix_id:type_name -> common.VpcPrefixId 296, // 316: forge.InstanceInterfaceConfig.ipv6_interface_config:type_name -> forge.InstanceInterfaceIpv6Config 297, // 317: forge.InstanceInterfaceConfig.routing_profile:type_name -> forge.InstanceInterfaceRoutingProfile - 989, // 318: forge.InstanceInterfaceIpv6Config.vpc_prefix_id:type_name -> common.VpcPrefixId - 868, // 319: forge.InstanceInterfaceRoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry + 990, // 318: forge.InstanceInterfaceIpv6Config.vpc_prefix_id:type_name -> common.VpcPrefixId + 869, // 319: forge.InstanceInterfaceRoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry 38, // 320: forge.InstanceIBInterfaceConfig.function_type:type_name -> forge.InterfaceFunctionType - 991, // 321: forge.InstanceIBInterfaceConfig.ib_partition_id:type_name -> common.IBPartitionId - 987, // 322: forge.InstanceInterfaceStatus.vpc_id:type_name -> common.VpcId - 1005, // 323: forge.InstanceNVLinkGpuStatus.domain_id:type_name -> common.NVLinkDomainId - 988, // 324: forge.InstanceNVLinkGpuStatus.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 988, // 325: forge.InstanceNVLinkGpuConfig.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 1001, // 326: forge.InstancePhoneHomeLastContactRequest.instance_id:type_name -> common.InstanceId - 986, // 327: forge.InstancePhoneHomeLastContactResponse.timestamp:type_name -> google.protobuf.Timestamp + 992, // 321: forge.InstanceIBInterfaceConfig.ib_partition_id:type_name -> common.IBPartitionId + 988, // 322: forge.InstanceInterfaceStatus.vpc_id:type_name -> common.VpcId + 1006, // 323: forge.InstanceNVLinkGpuStatus.domain_id:type_name -> common.NVLinkDomainId + 989, // 324: forge.InstanceNVLinkGpuStatus.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 989, // 325: forge.InstanceNVLinkGpuConfig.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 1002, // 326: forge.InstancePhoneHomeLastContactRequest.instance_id:type_name -> common.InstanceId + 987, // 327: forge.InstancePhoneHomeLastContactResponse.timestamp:type_name -> google.protobuf.Timestamp 17, // 328: forge.Issue.category:type_name -> forge.IssueCategory 306, // 329: forge.DeleteAttribution.initiated_by:type_name -> forge.DeleteInitiatedBy - 1001, // 330: forge.InstanceReleaseRequest.id:type_name -> common.InstanceId + 1002, // 330: forge.InstanceReleaseRequest.id:type_name -> common.InstanceId 305, // 331: forge.InstanceReleaseRequest.issue:type_name -> forge.Issue 307, // 332: forge.InstanceReleaseRequest.delete_attribution:type_name -> forge.DeleteAttribution - 985, // 333: forge.MachinesByIdsRequest.machine_ids:type_name -> common.MachineId - 994, // 334: forge.MachineSearchConfig.rack_id:type_name -> common.RackId - 985, // 335: forge.MachineStateHistoriesRequest.machine_ids:type_name -> common.MachineId - 952, // 336: forge.MachineStateHistories.histories:type_name -> forge.MachineStateHistories.HistoriesEntry - 351, // 337: forge.MachineStateHistoryRecords.records:type_name -> forge.MachineEvent - 985, // 338: forge.MachineHealthHistoriesRequest.machine_ids:type_name -> common.MachineId - 986, // 339: forge.MachineHealthHistoriesRequest.start_time:type_name -> google.protobuf.Timestamp - 986, // 340: forge.MachineHealthHistoriesRequest.end_time:type_name -> google.protobuf.Timestamp - 953, // 341: forge.HealthHistories.histories:type_name -> forge.HealthHistories.HistoriesEntry + 986, // 333: forge.MachinesByIdsRequest.machine_ids:type_name -> common.MachineId + 995, // 334: forge.MachineSearchConfig.rack_id:type_name -> common.RackId + 986, // 335: forge.MachineStateHistoriesRequest.machine_ids:type_name -> common.MachineId + 953, // 336: forge.MachineStateHistories.histories:type_name -> forge.MachineStateHistories.HistoriesEntry + 352, // 337: forge.MachineStateHistoryRecords.records:type_name -> forge.MachineEvent + 986, // 338: forge.MachineHealthHistoriesRequest.machine_ids:type_name -> common.MachineId + 987, // 339: forge.MachineHealthHistoriesRequest.start_time:type_name -> google.protobuf.Timestamp + 987, // 340: forge.MachineHealthHistoriesRequest.end_time:type_name -> google.protobuf.Timestamp + 954, // 341: forge.HealthHistories.histories:type_name -> forge.HealthHistories.HistoriesEntry 318, // 342: forge.HealthHistoryRecords.records:type_name -> forge.HealthHistoryRecord - 992, // 343: forge.HealthHistoryRecord.health:type_name -> health.HealthReport - 986, // 344: forge.HealthHistoryRecord.time:type_name -> google.protobuf.Timestamp - 468, // 345: forge.TenantList.tenants:type_name -> forge.Tenant - 352, // 346: forge.InterfaceList.interfaces:type_name -> forge.MachineInterface + 993, // 343: forge.HealthHistoryRecord.health:type_name -> health.HealthReport + 987, // 344: forge.HealthHistoryRecord.time:type_name -> google.protobuf.Timestamp + 469, // 345: forge.TenantList.tenants:type_name -> forge.Tenant + 353, // 346: forge.InterfaceList.interfaces:type_name -> forge.MachineInterface 336, // 347: forge.MachineList.machines:type_name -> forge.Machine - 1006, // 348: forge.InterfaceDeleteQuery.id:type_name -> common.MachineInterfaceId - 1006, // 349: forge.InterfaceSearchQuery.id:type_name -> common.MachineInterfaceId - 1006, // 350: forge.AssignStaticAddressRequest.interface_id:type_name -> common.MachineInterfaceId - 1006, // 351: forge.AssignStaticAddressResponse.interface_id:type_name -> common.MachineInterfaceId + 1007, // 348: forge.InterfaceDeleteQuery.id:type_name -> common.MachineInterfaceId + 1007, // 349: forge.InterfaceSearchQuery.id:type_name -> common.MachineInterfaceId + 1007, // 350: forge.AssignStaticAddressRequest.interface_id:type_name -> common.MachineInterfaceId + 1007, // 351: forge.AssignStaticAddressResponse.interface_id:type_name -> common.MachineInterfaceId 18, // 352: forge.AssignStaticAddressResponse.status:type_name -> forge.AssignStaticAddressStatus - 1006, // 353: forge.RemoveStaticAddressRequest.interface_id:type_name -> common.MachineInterfaceId - 1006, // 354: forge.RemoveStaticAddressResponse.interface_id:type_name -> common.MachineInterfaceId + 1007, // 353: forge.RemoveStaticAddressRequest.interface_id:type_name -> common.MachineInterfaceId + 1007, // 354: forge.RemoveStaticAddressResponse.interface_id:type_name -> common.MachineInterfaceId 19, // 355: forge.RemoveStaticAddressResponse.status:type_name -> forge.RemoveStaticAddressStatus - 1006, // 356: forge.FindInterfaceAddressesRequest.interface_id:type_name -> common.MachineInterfaceId - 1006, // 357: forge.FindInterfaceAddressesResponse.interface_id:type_name -> common.MachineInterfaceId + 1007, // 356: forge.FindInterfaceAddressesRequest.interface_id:type_name -> common.MachineInterfaceId + 1007, // 357: forge.FindInterfaceAddressesResponse.interface_id:type_name -> common.MachineInterfaceId 332, // 358: forge.FindInterfaceAddressesResponse.addresses:type_name -> forge.InterfaceAddress - 1006, // 359: forge.BmcInfo.machine_interface_id:type_name -> common.MachineInterfaceId - 985, // 360: forge.Machine.id:type_name -> common.MachineId - 347, // 361: forge.Machine.state_reason:type_name -> forge.ControllerStateReason - 349, // 362: forge.Machine.state_sla:type_name -> forge.StateSla - 351, // 363: forge.Machine.events:type_name -> forge.MachineEvent - 352, // 364: forge.Machine.interfaces:type_name -> forge.MachineInterface - 1007, // 365: forge.Machine.discovery_info:type_name -> machine_discovery.DiscoveryInfo + 1007, // 359: forge.BmcInfo.machine_interface_id:type_name -> common.MachineInterfaceId + 986, // 360: forge.Machine.id:type_name -> common.MachineId + 348, // 361: forge.Machine.state_reason:type_name -> forge.ControllerStateReason + 350, // 362: forge.Machine.state_sla:type_name -> forge.StateSla + 352, // 363: forge.Machine.events:type_name -> forge.MachineEvent + 353, // 364: forge.Machine.interfaces:type_name -> forge.MachineInterface + 1008, // 365: forge.Machine.discovery_info:type_name -> machine_discovery.DiscoveryInfo 20, // 366: forge.Machine.machine_type:type_name -> forge.MachineType 334, // 367: forge.Machine.bmc_info:type_name -> forge.BmcInfo - 986, // 368: forge.Machine.last_reboot_time:type_name -> google.protobuf.Timestamp - 986, // 369: forge.Machine.last_observation_time:type_name -> google.protobuf.Timestamp - 986, // 370: forge.Machine.maintenance_start_time:type_name -> google.protobuf.Timestamp - 985, // 371: forge.Machine.associated_host_machine_id:type_name -> common.MachineId - 344, // 372: forge.Machine.inventory:type_name -> forge.MachineComponentInventory - 986, // 373: forge.Machine.last_reboot_requested_time:type_name -> google.protobuf.Timestamp - 985, // 374: forge.Machine.associated_dpu_machine_ids:type_name -> common.MachineId - 992, // 375: forge.Machine.health:type_name -> health.HealthReport - 346, // 376: forge.Machine.health_sources:type_name -> forge.HealthSourceOrigin - 353, // 377: forge.Machine.ib_status:type_name -> forge.InfinibandStatusObservation + 987, // 368: forge.Machine.last_reboot_time:type_name -> google.protobuf.Timestamp + 987, // 369: forge.Machine.last_observation_time:type_name -> google.protobuf.Timestamp + 987, // 370: forge.Machine.maintenance_start_time:type_name -> google.protobuf.Timestamp + 986, // 371: forge.Machine.associated_host_machine_id:type_name -> common.MachineId + 345, // 372: forge.Machine.inventory:type_name -> forge.MachineComponentInventory + 987, // 373: forge.Machine.last_reboot_requested_time:type_name -> google.protobuf.Timestamp + 986, // 374: forge.Machine.associated_dpu_machine_ids:type_name -> common.MachineId + 993, // 375: forge.Machine.health:type_name -> health.HealthReport + 347, // 376: forge.Machine.health_sources:type_name -> forge.HealthSourceOrigin + 354, // 377: forge.Machine.ib_status:type_name -> forge.InfinibandStatusObservation 260, // 378: forge.Machine.metadata:type_name -> forge.Metadata 338, // 379: forge.Machine.instance_network_restrictions:type_name -> forge.InstanceNetworkRestrictions - 630, // 380: forge.Machine.capabilities:type_name -> forge.MachineCapabilitiesSet - 703, // 381: forge.Machine.hw_sku_status:type_name -> forge.SkuStatus - 384, // 382: forge.Machine.quarantine_state:type_name -> forge.ManagedHostQuarantineState - 754, // 383: forge.Machine.nvlink_info:type_name -> forge.MachineNVLinkInfo - 764, // 384: forge.Machine.nvlink_status_observation:type_name -> forge.MachineNVLinkStatusObservation - 994, // 385: forge.Machine.rack_id:type_name -> common.RackId + 631, // 380: forge.Machine.capabilities:type_name -> forge.MachineCapabilitiesSet + 704, // 381: forge.Machine.hw_sku_status:type_name -> forge.SkuStatus + 385, // 382: forge.Machine.quarantine_state:type_name -> forge.ManagedHostQuarantineState + 755, // 383: forge.Machine.nvlink_info:type_name -> forge.MachineNVLinkInfo + 765, // 384: forge.Machine.nvlink_status_observation:type_name -> forge.MachineNVLinkStatusObservation + 995, // 385: forge.Machine.rack_id:type_name -> common.RackId 218, // 386: forge.Machine.placement_in_rack:type_name -> forge.PlacementInRack - 756, // 387: forge.Machine.spx_status_observation:type_name -> forge.MachineSpxStatusObservation + 757, // 387: forge.Machine.spx_status_observation:type_name -> forge.MachineSpxStatusObservation 337, // 388: forge.Machine.dpf:type_name -> forge.DpfMachineState 21, // 389: forge.InstanceNetworkRestrictions.network_segment_membership_type:type_name -> forge.InstanceNetworkSegmentMembershipType - 999, // 390: forge.InstanceNetworkRestrictions.network_segment_ids:type_name -> common.NetworkSegmentId - 985, // 391: forge.MachineMetadataUpdateRequest.machine_id:type_name -> common.MachineId + 1000, // 390: forge.InstanceNetworkRestrictions.network_segment_ids:type_name -> common.NetworkSegmentId + 986, // 391: forge.MachineMetadataUpdateRequest.machine_id:type_name -> common.MachineId 260, // 392: forge.MachineMetadataUpdateRequest.metadata:type_name -> forge.Metadata - 994, // 393: forge.RackMetadataUpdateRequest.rack_id:type_name -> common.RackId - 260, // 394: forge.RackMetadataUpdateRequest.metadata:type_name -> forge.Metadata - 996, // 395: forge.SwitchMetadataUpdateRequest.switch_id:type_name -> common.SwitchId - 260, // 396: forge.SwitchMetadataUpdateRequest.metadata:type_name -> forge.Metadata - 993, // 397: forge.PowerShelfMetadataUpdateRequest.power_shelf_id:type_name -> common.PowerShelfId - 260, // 398: forge.PowerShelfMetadataUpdateRequest.metadata:type_name -> forge.Metadata - 985, // 399: forge.DpuAgentInventoryReport.machine_id:type_name -> common.MachineId - 344, // 400: forge.DpuAgentInventoryReport.inventory:type_name -> forge.MachineComponentInventory - 345, // 401: forge.MachineComponentInventory.components:type_name -> forge.MachineInventorySoftwareComponent - 39, // 402: forge.HealthSourceOrigin.mode:type_name -> forge.HealthReportApplyMode - 22, // 403: forge.ControllerStateReason.outcome:type_name -> forge.ControllerStateOutcome - 348, // 404: forge.ControllerStateReason.source_ref:type_name -> forge.ControllerStateSourceReference - 1008, // 405: forge.StateSla.sla:type_name -> google.protobuf.Duration - 8, // 406: forge.InstanceTenantStatus.state:type_name -> forge.TenantState - 986, // 407: forge.MachineEvent.time:type_name -> google.protobuf.Timestamp - 1006, // 408: forge.MachineInterface.id:type_name -> common.MachineInterfaceId - 985, // 409: forge.MachineInterface.attached_dpu_machine_id:type_name -> common.MachineId - 985, // 410: forge.MachineInterface.machine_id:type_name -> common.MachineId - 999, // 411: forge.MachineInterface.segment_id:type_name -> common.NetworkSegmentId - 998, // 412: forge.MachineInterface.domain_id:type_name -> common.DomainId - 986, // 413: forge.MachineInterface.created:type_name -> google.protobuf.Timestamp - 986, // 414: forge.MachineInterface.last_dhcp:type_name -> google.protobuf.Timestamp - 993, // 415: forge.MachineInterface.power_shelf_id:type_name -> common.PowerShelfId - 996, // 416: forge.MachineInterface.switch_id:type_name -> common.SwitchId - 25, // 417: forge.MachineInterface.association_type:type_name -> forge.InterfaceAssociationType - 26, // 418: forge.MachineInterface.interface_type:type_name -> forge.InterfaceType - 354, // 419: forge.InfinibandStatusObservation.ib_interfaces:type_name -> forge.MachineIbInterface - 986, // 420: forge.InfinibandStatusObservation.observed_at:type_name -> google.protobuf.Timestamp - 1009, // 421: forge.MachineIbInterface.associated_pkeys:type_name -> common.StringList - 1009, // 422: forge.MachineIbInterface.associated_partition_ids:type_name -> common.StringList - 27, // 423: forge.DhcpDiscovery.address_family:type_name -> forge.AddressFamily - 28, // 424: forge.DhcpDiscovery.message_kind:type_name -> forge.MessageKind - 29, // 425: forge.ExpireDhcpLeaseResponse.status:type_name -> forge.ExpireDhcpLeaseStatus - 985, // 426: forge.DhcpRecord.machine_id:type_name -> common.MachineId - 1006, // 427: forge.DhcpRecord.machine_interface_id:type_name -> common.MachineInterfaceId - 999, // 428: forge.DhcpRecord.segment_id:type_name -> common.NetworkSegmentId - 998, // 429: forge.DhcpRecord.subdomain_id:type_name -> common.DomainId - 986, // 430: forge.DhcpRecord.last_invalidation_time:type_name -> google.protobuf.Timestamp - 244, // 431: forge.NetworkSegmentList.network_segments:type_name -> forge.NetworkSegment - 30, // 432: forge.SSHKeyValidationResponse.role:type_name -> forge.UserRoles - 996, // 433: forge.GetSwitchNvosCredentialsRequest.switch_id:type_name -> common.SwitchId - 365, // 434: forge.GetBmcCredentialsResponse.credentials:type_name -> forge.BmcCredentials - 833, // 435: forge.BmcCredentials.username_password:type_name -> forge.UsernamePassword - 834, // 436: forge.BmcCredentials.session_token:type_name -> forge.SessionToken - 373, // 437: forge.SshRequest.endpoint_request:type_name -> forge.BmcEndpointRequest - 375, // 438: forge.CopyBfbToDpuRshimRequest.ssh_request:type_name -> forge.SshRequest - 985, // 439: forge.UpdateMachineHardwareInfoRequest.machine_id:type_name -> common.MachineId - 378, // 440: forge.UpdateMachineHardwareInfoRequest.info:type_name -> forge.MachineHardwareInfo - 31, // 441: forge.UpdateMachineHardwareInfoRequest.update_type:type_name -> forge.MachineHardwareInfoUpdateType - 1010, // 442: forge.MachineHardwareInfo.gpus:type_name -> machine_discovery.Gpu - 985, // 443: forge.ManagedHostNetworkConfigRequest.dpu_machine_id:type_name -> common.MachineId - 391, // 444: forge.ManagedHostNetworkConfigResponse.managed_host_config:type_name -> forge.ManagedHostNetworkConfig - 392, // 445: forge.ManagedHostNetworkConfigResponse.admin_interface:type_name -> forge.FlatInterfaceConfig - 392, // 446: forge.ManagedHostNetworkConfigResponse.tenant_interfaces:type_name -> forge.FlatInterfaceConfig - 1001, // 447: forge.ManagedHostNetworkConfigResponse.instance_id:type_name -> common.InstanceId - 6, // 448: forge.ManagedHostNetworkConfigResponse.network_virtualization_type:type_name -> forge.VpcVirtualizationType - 33, // 449: forge.ManagedHostNetworkConfigResponse.vpc_isolation_behavior:type_name -> forge.VpcIsolationBehaviorType - 293, // 450: forge.ManagedHostNetworkConfigResponse.instance:type_name -> forge.Instance - 1011, // 451: forge.ManagedHostNetworkConfigResponse.common_internal_route_target:type_name -> common.RouteTarget - 1011, // 452: forge.ManagedHostNetworkConfigResponse.additional_route_target_imports:type_name -> common.RouteTarget - 681, // 453: forge.ManagedHostNetworkConfigResponse.network_security_policy_overrides:type_name -> forge.ResolvedNetworkSecurityGroupRule - 383, // 454: forge.ManagedHostNetworkConfigResponse.dpu_extension_services:type_name -> forge.ManagedHostDpuExtensionServiceConfig - 381, // 455: forge.ManagedHostNetworkConfigResponse.traffic_intercept_config:type_name -> forge.TrafficInterceptConfig - 869, // 456: forge.ManagedHostNetworkConfigResponse.routing_profile:type_name -> forge.RoutingProfile - 758, // 457: forge.ManagedHostNetworkConfigResponse.astra_config:type_name -> forge.AstraConfig - 382, // 458: forge.TrafficInterceptConfig.bridging:type_name -> forge.TrafficInterceptBridging - 954, // 459: forge.TrafficInterceptBridging.host_representor_intercept_bridging:type_name -> forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry - 71, // 460: forge.ManagedHostDpuExtensionServiceConfig.service_type:type_name -> forge.DpuExtensionServiceType - 835, // 461: forge.ManagedHostDpuExtensionServiceConfig.credential:type_name -> forge.DpuExtensionServiceCredential - 854, // 462: forge.ManagedHostDpuExtensionServiceConfig.observability:type_name -> forge.DpuExtensionServiceObservability - 32, // 463: forge.ManagedHostQuarantineState.mode:type_name -> forge.ManagedHostQuarantineMode - 985, // 464: forge.GetManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId - 384, // 465: forge.GetManagedHostQuarantineStateResponse.quarantine_state:type_name -> forge.ManagedHostQuarantineState - 985, // 466: forge.SetManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId - 384, // 467: forge.SetManagedHostQuarantineStateRequest.quarantine_state:type_name -> forge.ManagedHostQuarantineState - 384, // 468: forge.SetManagedHostQuarantineStateResponse.prior_quarantine_state:type_name -> forge.ManagedHostQuarantineState - 985, // 469: forge.ClearManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId - 384, // 470: forge.ClearManagedHostQuarantineStateResponse.prior_quarantine_state:type_name -> forge.ManagedHostQuarantineState - 384, // 471: forge.ManagedHostNetworkConfig.quarantine_state:type_name -> forge.ManagedHostQuarantineState - 38, // 472: forge.FlatInterfaceConfig.function_type:type_name -> forge.InterfaceFunctionType - 394, // 473: forge.FlatInterfaceConfig.ipv6_interface_config:type_name -> forge.FlatInterfaceIpv6Config - 869, // 474: forge.FlatInterfaceConfig.vpc_routing_profile:type_name -> forge.RoutingProfile - 393, // 475: forge.FlatInterfaceConfig.interface_routing_profile:type_name -> forge.FlatInterfaceRoutingProfile - 395, // 476: forge.FlatInterfaceConfig.network_security_group:type_name -> forge.FlatInterfaceNetworkSecurityGroupConfig - 995, // 477: forge.FlatInterfaceConfig.internal_uuid:type_name -> common.UUID - 868, // 478: forge.FlatInterfaceRoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry - 56, // 479: forge.FlatInterfaceNetworkSecurityGroupConfig.source:type_name -> forge.NetworkSecurityGroupSource - 681, // 480: forge.FlatInterfaceNetworkSecurityGroupConfig.rules:type_name -> forge.ResolvedNetworkSecurityGroupRule - 444, // 481: forge.ManagedHostNetworkStatusResponse.all:type_name -> forge.DpuNetworkStatus - 986, // 482: forge.DpuAgentUpgradeCheckRequest.binary_mtime:type_name -> google.protobuf.Timestamp - 34, // 483: forge.DpuAgentUpgradePolicyRequest.new_policy:type_name -> forge.AgentUpgradePolicy - 34, // 484: forge.DpuAgentUpgradePolicyResponse.active_policy:type_name -> forge.AgentUpgradePolicy - 373, // 485: forge.LockdownRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 985, // 486: forge.LockdownRequest.machine_id:type_name -> common.MachineId - 35, // 487: forge.LockdownRequest.action:type_name -> forge.LockdownAction - 373, // 488: forge.LockdownStatusRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 985, // 489: forge.LockdownStatusRequest.machine_id:type_name -> common.MachineId - 373, // 490: forge.MachineSetupStatusRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 373, // 491: forge.MachineSetupRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 373, // 492: forge.SetDpuFirstBootOrderRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 373, // 493: forge.AdminRebootRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 373, // 494: forge.AdminBmcResetRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 373, // 495: forge.EnableInfiniteBootRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 373, // 496: forge.IsInfiniteBootEnabledRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 985, // 497: forge.BMCMetaDataGetRequest.machine_id:type_name -> common.MachineId - 30, // 498: forge.BMCMetaDataGetRequest.role:type_name -> forge.UserRoles - 36, // 499: forge.BMCMetaDataGetRequest.request_type:type_name -> forge.BMCRequestType - 373, // 500: forge.BMCMetaDataGetRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 985, // 501: forge.MachineCredentialsUpdateRequest.machine_id:type_name -> common.MachineId - 955, // 502: forge.MachineCredentialsUpdateRequest.credentials:type_name -> forge.MachineCredentialsUpdateRequest.Credentials - 985, // 503: forge.ForgeAgentControlRequest.machine_id:type_name -> common.MachineId - 83, // 504: forge.ForgeAgentControlResponse.legacy_action:type_name -> forge.ForgeAgentControlResponse.LegacyAction - 956, // 505: forge.ForgeAgentControlResponse.data:type_name -> forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo - 957, // 506: forge.ForgeAgentControlResponse.noop:type_name -> forge.ForgeAgentControlResponse.Noop - 958, // 507: forge.ForgeAgentControlResponse.reset:type_name -> forge.ForgeAgentControlResponse.Reset - 959, // 508: forge.ForgeAgentControlResponse.discovery:type_name -> forge.ForgeAgentControlResponse.Discovery - 960, // 509: forge.ForgeAgentControlResponse.rebuild:type_name -> forge.ForgeAgentControlResponse.Rebuild - 961, // 510: forge.ForgeAgentControlResponse.retry:type_name -> forge.ForgeAgentControlResponse.Retry - 962, // 511: forge.ForgeAgentControlResponse.measure:type_name -> forge.ForgeAgentControlResponse.Measure - 963, // 512: forge.ForgeAgentControlResponse.log_error:type_name -> forge.ForgeAgentControlResponse.LogError - 964, // 513: forge.ForgeAgentControlResponse.machine_validation:type_name -> forge.ForgeAgentControlResponse.MachineValidation - 966, // 514: forge.ForgeAgentControlResponse.mlx_action:type_name -> forge.ForgeAgentControlResponse.MlxAction - 973, // 515: forge.ForgeAgentControlResponse.firmware_upgrade:type_name -> forge.ForgeAgentControlResponse.FirmwareUpgrade - 1006, // 516: forge.MachineDiscoveryInfo.machine_interface_id:type_name -> common.MachineInterfaceId - 1007, // 517: forge.MachineDiscoveryInfo.info:type_name -> machine_discovery.DiscoveryInfo - 37, // 518: forge.MachineDiscoveryInfo.discovery_reporter:type_name -> forge.MachineDiscoveryReporter - 985, // 519: forge.MachineDiscoveryCompletedRequest.machine_id:type_name -> common.MachineId - 985, // 520: forge.MachineCleanupInfo.machine_id:type_name -> common.MachineId - 975, // 521: forge.MachineCleanupInfo.nvme:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 975, // 522: forge.MachineCleanupInfo.ram:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 975, // 523: forge.MachineCleanupInfo.mem_overwrite:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 975, // 524: forge.MachineCleanupInfo.ib:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 975, // 525: forge.MachineCleanupInfo.hdd:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 84, // 526: forge.MachineCleanupInfo.result:type_name -> forge.MachineCleanupInfo.CleanupResult - 430, // 527: forge.MachineCertificateResult.machine_certificate:type_name -> forge.MachineCertificate - 985, // 528: forge.MachineDiscoveryResult.machine_id:type_name -> common.MachineId - 430, // 529: forge.MachineDiscoveryResult.machine_certificate:type_name -> forge.MachineCertificate - 127, // 530: forge.MachineDiscoveryResult.attest_key_challenge:type_name -> forge.AttestKeyBindChallenge - 1006, // 531: forge.MachineDiscoveryResult.machine_interface_id:type_name -> common.MachineInterfaceId - 985, // 532: forge.ForgeScoutErrorReport.machine_id:type_name -> common.MachineId - 1006, // 533: forge.ForgeScoutErrorReport.machine_interface_id:type_name -> common.MachineInterfaceId - 24, // 534: forge.PxeInstructionRequest.arch:type_name -> forge.MachineArchitecture - 1006, // 535: forge.PxeInstructionRequest.interface_id:type_name -> common.MachineInterfaceId - 352, // 536: forge.CloudInitDiscoveryInstructions.machine_interface:type_name -> forge.MachineInterface - 875, // 537: forge.CloudInitDiscoveryInstructions.domain:type_name -> forge.PxeDomain - 440, // 538: forge.CloudInitInstructions.discovery_instructions:type_name -> forge.CloudInitDiscoveryInstructions - 441, // 539: forge.CloudInitInstructions.metadata:type_name -> forge.CloudInitMetaData - 985, // 540: forge.DpuNetworkStatus.dpu_machine_id:type_name -> common.MachineId - 986, // 541: forge.DpuNetworkStatus.observed_at:type_name -> google.protobuf.Timestamp - 465, // 542: forge.DpuNetworkStatus.interfaces:type_name -> forge.InstanceInterfaceStatusObservation - 1001, // 543: forge.DpuNetworkStatus.instance_id:type_name -> common.InstanceId - 992, // 544: forge.DpuNetworkStatus.dpu_health:type_name -> health.HealthReport - 466, // 545: forge.DpuNetworkStatus.fabric_interfaces:type_name -> forge.FabricInterfaceData - 445, // 546: forge.DpuNetworkStatus.last_dhcp_requests:type_name -> forge.LastDhcpRequest - 446, // 547: forge.DpuNetworkStatus.dpu_extension_services:type_name -> forge.DpuExtensionServiceStatusObservation - 760, // 548: forge.DpuNetworkStatus.astra_config_status:type_name -> forge.AstraConfigStatus - 1006, // 549: forge.LastDhcpRequest.host_interface_id:type_name -> common.MachineInterfaceId - 71, // 550: forge.DpuExtensionServiceStatusObservation.service_type:type_name -> forge.DpuExtensionServiceType - 72, // 551: forge.DpuExtensionServiceStatusObservation.state:type_name -> forge.DpuExtensionServiceDeploymentStatus - 447, // 552: forge.DpuExtensionServiceStatusObservation.components:type_name -> forge.DpuExtensionServiceComponent - 992, // 553: forge.OptionalHealthReport.report:type_name -> health.HealthReport - 992, // 554: forge.HealthReportEntry.report:type_name -> health.HealthReport - 39, // 555: forge.HealthReportEntry.mode:type_name -> forge.HealthReportApplyMode - 985, // 556: forge.InsertMachineHealthReportRequest.machine_id:type_name -> common.MachineId - 449, // 557: forge.InsertMachineHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 994, // 558: forge.InsertRackHealthReportRequest.rack_id:type_name -> common.RackId - 449, // 559: forge.InsertRackHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 994, // 560: forge.RemoveRackHealthReportRequest.rack_id:type_name -> common.RackId - 994, // 561: forge.ListRackHealthReportsRequest.rack_id:type_name -> common.RackId - 996, // 562: forge.InsertSwitchHealthReportRequest.switch_id:type_name -> common.SwitchId - 449, // 563: forge.InsertSwitchHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 996, // 564: forge.RemoveSwitchHealthReportRequest.switch_id:type_name -> common.SwitchId - 996, // 565: forge.ListSwitchHealthReportsRequest.switch_id:type_name -> common.SwitchId - 993, // 566: forge.InsertPowerShelfHealthReportRequest.power_shelf_id:type_name -> common.PowerShelfId - 449, // 567: forge.InsertPowerShelfHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 993, // 568: forge.RemovePowerShelfHealthReportRequest.power_shelf_id:type_name -> common.PowerShelfId - 993, // 569: forge.ListPowerShelfHealthReportsRequest.power_shelf_id:type_name -> common.PowerShelfId - 449, // 570: forge.ListHealthReportResponse.health_report_entries:type_name -> forge.HealthReportEntry - 985, // 571: forge.RemoveMachineHealthReportRequest.machine_id:type_name -> common.MachineId - 1005, // 572: forge.ListNVLinkDomainHealthReportsRequest.domain_id:type_name -> common.NVLinkDomainId - 1005, // 573: forge.InsertNVLinkDomainHealthReportRequest.domain_id:type_name -> common.NVLinkDomainId - 449, // 574: forge.InsertNVLinkDomainHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 1005, // 575: forge.RemoveNVLinkDomainHealthReportRequest.domain_id:type_name -> common.NVLinkDomainId - 38, // 576: forge.InstanceInterfaceStatusObservation.function_type:type_name -> forge.InterfaceFunctionType - 675, // 577: forge.InstanceInterfaceStatusObservation.network_security_group:type_name -> forge.NetworkSecurityGroupStatus - 995, // 578: forge.InstanceInterfaceStatusObservation.internal_uuid:type_name -> common.UUID - 467, // 579: forge.FabricInterfaceData.link_data:type_name -> forge.LinkData - 260, // 580: forge.Tenant.metadata:type_name -> forge.Metadata - 260, // 581: forge.CreateTenantRequest.metadata:type_name -> forge.Metadata - 468, // 582: forge.CreateTenantResponse.tenant:type_name -> forge.Tenant - 260, // 583: forge.UpdateTenantRequest.metadata:type_name -> forge.Metadata - 468, // 584: forge.UpdateTenantResponse.tenant:type_name -> forge.Tenant - 468, // 585: forge.FindTenantResponse.tenant:type_name -> forge.Tenant - 476, // 586: forge.TenantKeysetContent.public_keys:type_name -> forge.TenantPublicKey - 475, // 587: forge.TenantKeyset.keyset_identifier:type_name -> forge.TenantKeysetIdentifier - 477, // 588: forge.TenantKeyset.keyset_content:type_name -> forge.TenantKeysetContent - 475, // 589: forge.CreateTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier - 477, // 590: forge.CreateTenantKeysetRequest.keyset_content:type_name -> forge.TenantKeysetContent - 478, // 591: forge.CreateTenantKeysetResponse.keyset:type_name -> forge.TenantKeyset - 478, // 592: forge.TenantKeySetList.keyset:type_name -> forge.TenantKeyset - 475, // 593: forge.UpdateTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier - 477, // 594: forge.UpdateTenantKeysetRequest.keyset_content:type_name -> forge.TenantKeysetContent - 475, // 595: forge.DeleteTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier - 475, // 596: forge.TenantKeysetIdList.keyset_ids:type_name -> forge.TenantKeysetIdentifier - 475, // 597: forge.TenantKeysetsByIdsRequest.keyset_ids:type_name -> forge.TenantKeysetIdentifier - 493, // 598: forge.ResourcePools.pools:type_name -> forge.ResourcePool - 41, // 599: forge.MaintenanceRequest.operation:type_name -> forge.MaintenanceOperation - 985, // 600: forge.MaintenanceRequest.host_id:type_name -> common.MachineId - 42, // 601: forge.SetDynamicConfigRequest.setting:type_name -> forge.ConfigSetting - 521, // 602: forge.FindIpAddressResponse.matches:type_name -> forge.IpAddressMatch - 995, // 603: forge.IdentifyUuidRequest.uuid:type_name -> common.UUID - 995, // 604: forge.IdentifyUuidResponse.uuid:type_name -> common.UUID - 43, // 605: forge.IdentifyUuidResponse.object_type:type_name -> forge.UuidType - 44, // 606: forge.IdentifyMacResponse.object_type:type_name -> forge.MacOwner - 985, // 607: forge.IdentifySerialResponse.machine_id:type_name -> common.MachineId - 985, // 608: forge.DpuReprovisioningRequest.dpu_id:type_name -> common.MachineId - 85, // 609: forge.DpuReprovisioningRequest.mode:type_name -> forge.DpuReprovisioningRequest.Mode - 45, // 610: forge.DpuReprovisioningRequest.initiator:type_name -> forge.UpdateInitiator - 985, // 611: forge.DpuReprovisioningRequest.machine_id:type_name -> common.MachineId - 976, // 612: forge.DpuReprovisioningListResponse.dpus:type_name -> forge.DpuReprovisioningListResponse.DpuReprovisioningListItem - 985, // 613: forge.HostReprovisioningRequest.machine_id:type_name -> common.MachineId - 86, // 614: forge.HostReprovisioningRequest.mode:type_name -> forge.HostReprovisioningRequest.Mode - 45, // 615: forge.HostReprovisioningRequest.initiator:type_name -> forge.UpdateInitiator - 977, // 616: forge.HostReprovisioningListResponse.hosts:type_name -> forge.HostReprovisioningListResponse.HostReprovisioningListItem - 515, // 617: forge.DpuInfoStatusObservation.os_operational_state:type_name -> forge.DpuOsOperationalState - 516, // 618: forge.DpuInfoStatusObservation.representors:type_name -> forge.DpuRepresentorStatus - 986, // 619: forge.DpuInfoStatusObservation.last_heartbeat:type_name -> google.protobuf.Timestamp - 517, // 620: forge.DpuInfo.observed_status:type_name -> forge.DpuInfoStatusObservation - 518, // 621: forge.GetDpuInfoListResponse.dpu_list:type_name -> forge.DpuInfo - 46, // 622: forge.IpAddressMatch.ip_type:type_name -> forge.IpType - 1006, // 623: forge.MachineBootOverride.machine_interface_id:type_name -> common.MachineInterfaceId - 985, // 624: forge.ConnectedDevice.id:type_name -> common.MachineId - 523, // 625: forge.ConnectedDeviceList.connected_devices:type_name -> forge.ConnectedDevice - 529, // 626: forge.MachineIdBmcIpPairs.pairs:type_name -> forge.MachineIdBmcIp - 985, // 627: forge.MachineIdBmcIp.machine_id:type_name -> common.MachineId - 523, // 628: forge.NetworkDevice.devices:type_name -> forge.ConnectedDevice - 530, // 629: forge.NetworkTopologyData.network_devices:type_name -> forge.NetworkDevice - 47, // 630: forge.RouteServers.source_type:type_name -> forge.RouteServerSourceType - 536, // 631: forge.RouteServerEntries.route_servers:type_name -> forge.RouteServer - 47, // 632: forge.RouteServer.source_type:type_name -> forge.RouteServerSourceType - 985, // 633: forge.SetHostUefiPasswordRequest.host_id:type_name -> common.MachineId - 985, // 634: forge.ClearHostUefiPasswordRequest.host_id:type_name -> common.MachineId - 995, // 635: forge.OsImageAttributes.id:type_name -> common.UUID - 541, // 636: forge.OsImage.attributes:type_name -> forge.OsImageAttributes - 48, // 637: forge.OsImage.status:type_name -> forge.OsImageStatus - 542, // 638: forge.ListOsImageResponse.images:type_name -> forge.OsImage - 995, // 639: forge.DeleteOsImageRequest.id:type_name -> common.UUID - 1002, // 640: forge.GetIpxeTemplateRequest.id:type_name -> common.IpxeTemplateId - 269, // 641: forge.IpxeTemplateList.templates:type_name -> forge.IpxeTemplate - 12, // 642: forge.ExpectedHostNic.network_segment_type:type_name -> forge.NetworkSegmentType - 260, // 643: forge.ExpectedMachine.metadata:type_name -> forge.Metadata - 995, // 644: forge.ExpectedMachine.id:type_name -> common.UUID - 550, // 645: forge.ExpectedMachine.host_nics:type_name -> forge.ExpectedHostNic - 994, // 646: forge.ExpectedMachine.rack_id:type_name -> common.RackId - 49, // 647: forge.ExpectedMachine.dpu_mode:type_name -> forge.DpuMode - 551, // 648: forge.ExpectedMachine.host_lifecycle_profile:type_name -> forge.HostLifecycleProfile - 50, // 649: forge.ExpectedMachine.bmc_ip_allocation:type_name -> forge.BmcIpAllocationType - 995, // 650: forge.ExpectedMachineRequest.id:type_name -> common.UUID - 552, // 651: forge.ExpectedMachineList.expected_machines:type_name -> forge.ExpectedMachine - 556, // 652: forge.LinkedExpectedMachineList.expected_machines:type_name -> forge.LinkedExpectedMachine - 985, // 653: forge.LinkedExpectedMachine.machine_id:type_name -> common.MachineId - 995, // 654: forge.LinkedExpectedMachine.expected_machine_id:type_name -> common.UUID - 558, // 655: forge.UnexpectedMachineList.unexpected_machines:type_name -> forge.UnexpectedMachine - 985, // 656: forge.UnexpectedMachine.machine_id:type_name -> common.MachineId - 554, // 657: forge.BatchExpectedMachineOperationRequest.expected_machines:type_name -> forge.ExpectedMachineList - 995, // 658: forge.ExpectedMachineOperationResult.id:type_name -> common.UUID - 552, // 659: forge.ExpectedMachineOperationResult.expected_machine:type_name -> forge.ExpectedMachine - 560, // 660: forge.BatchExpectedMachineOperationResponse.results:type_name -> forge.ExpectedMachineOperationResult - 985, // 661: forge.MachineRebootCompletedRequest.machine_id:type_name -> common.MachineId - 985, // 662: forge.ScoutFirmwareUpgradeStatusRequest.machine_id:type_name -> common.MachineId - 985, // 663: forge.MachineValidationCompletedRequest.machine_id:type_name -> common.MachineId - 1012, // 664: forge.MachineValidationCompletedRequest.validation_id:type_name -> common.MachineValidationId - 986, // 665: forge.MachineValidationResult.start_time:type_name -> google.protobuf.Timestamp - 986, // 666: forge.MachineValidationResult.end_time:type_name -> google.protobuf.Timestamp - 1012, // 667: forge.MachineValidationResult.validation_id:type_name -> common.MachineValidationId - 567, // 668: forge.MachineValidationResultPostRequest.result:type_name -> forge.MachineValidationResult - 567, // 669: forge.MachineValidationResultList.results:type_name -> forge.MachineValidationResult - 985, // 670: forge.MachineValidationGetRequest.machine_id:type_name -> common.MachineId - 1012, // 671: forge.MachineValidationGetRequest.validation_id:type_name -> common.MachineValidationId - 51, // 672: forge.MachineValidationStatus.started:type_name -> forge.MachineValidationStarted - 52, // 673: forge.MachineValidationStatus.in_progress:type_name -> forge.MachineValidationInProgress - 53, // 674: forge.MachineValidationStatus.completed:type_name -> forge.MachineValidationCompleted - 1012, // 675: forge.MachineValidationRun.validation_id:type_name -> common.MachineValidationId - 985, // 676: forge.MachineValidationRun.machine_id:type_name -> common.MachineId - 986, // 677: forge.MachineValidationRun.start_time:type_name -> google.protobuf.Timestamp - 986, // 678: forge.MachineValidationRun.end_time:type_name -> google.protobuf.Timestamp - 571, // 679: forge.MachineValidationRun.status:type_name -> forge.MachineValidationStatus - 1008, // 680: forge.MachineValidationRun.duration_to_complete:type_name -> google.protobuf.Duration - 986, // 681: forge.MachineValidationRun.last_heartbeat_at:type_name -> google.protobuf.Timestamp - 985, // 682: forge.MachineSetAutoUpdateRequest.machine_id:type_name -> common.MachineId - 87, // 683: forge.MachineSetAutoUpdateRequest.action:type_name -> forge.MachineSetAutoUpdateRequest.SetAutoupdateAction - 986, // 684: forge.MachineValidationExternalConfig.timestamp:type_name -> google.protobuf.Timestamp - 576, // 685: forge.GetMachineValidationExternalConfigResponse.config:type_name -> forge.MachineValidationExternalConfig - 576, // 686: forge.GetMachineValidationExternalConfigsResponse.configs:type_name -> forge.MachineValidationExternalConfig - 985, // 687: forge.MachineValidationOnDemandRequest.machine_id:type_name -> common.MachineId - 88, // 688: forge.MachineValidationOnDemandRequest.action:type_name -> forge.MachineValidationOnDemandRequest.Action - 1012, // 689: forge.MachineValidationOnDemandResponse.validation_id:type_name -> common.MachineValidationId - 584, // 690: forge.MaintenanceActivityConfig.firmware_upgrade:type_name -> forge.FirmwareUpgradeActivity - 586, // 691: forge.MaintenanceActivityConfig.configure_nmx_cluster:type_name -> forge.ConfigureNmxClusterActivity - 587, // 692: forge.MaintenanceActivityConfig.power_sequence:type_name -> forge.PowerSequenceActivity - 585, // 693: forge.MaintenanceActivityConfig.nvos_update:type_name -> forge.NvosUpdateActivity - 588, // 694: forge.RackMaintenanceScope.activities:type_name -> forge.MaintenanceActivityConfig - 994, // 695: forge.RackMaintenanceOnDemandRequest.rack_id:type_name -> common.RackId - 589, // 696: forge.RackMaintenanceOnDemandRequest.scope:type_name -> forge.RackMaintenanceScope - 373, // 697: forge.AdminPowerControlRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 89, // 698: forge.AdminPowerControlRequest.action:type_name -> forge.AdminPowerControlRequest.SystemPowerControl - 985, // 699: forge.GetRedfishJobStateRequest.machine_id:type_name -> common.MachineId - 90, // 700: forge.GetRedfishJobStateResponse.job_state:type_name -> forge.GetRedfishJobStateResponse.RedfishJobState - 572, // 701: forge.MachineValidationRunList.runs:type_name -> forge.MachineValidationRun - 985, // 702: forge.MachineValidationRunListGetRequest.machine_id:type_name -> common.MachineId - 1012, // 703: forge.MachineValidationRunItemSearchFilter.validation_id:type_name -> common.MachineValidationId - 995, // 704: forge.MachineValidationRunItemIdList.run_item_ids:type_name -> common.UUID - 995, // 705: forge.MachineValidationRunItemsByIdsRequest.run_item_ids:type_name -> common.UUID - 602, // 706: forge.MachineValidationRunItemList.run_items:type_name -> forge.MachineValidationRunItem - 995, // 707: forge.MachineValidationRunItem.run_item_id:type_name -> common.UUID - 1012, // 708: forge.MachineValidationRunItem.validation_id:type_name -> common.MachineValidationId - 1008, // 709: forge.MachineValidationRunItem.timeout:type_name -> google.protobuf.Duration - 986, // 710: forge.MachineValidationRunItem.started_at:type_name -> google.protobuf.Timestamp - 986, // 711: forge.MachineValidationRunItem.ended_at:type_name -> google.protobuf.Timestamp - 986, // 712: forge.MachineValidationRunItem.last_heartbeat_at:type_name -> google.protobuf.Timestamp - 995, // 713: forge.MachineValidationRunItem.current_attempt_id:type_name -> common.UUID - 995, // 714: forge.MachineValidationAttemptGetRequest.attempt_id:type_name -> common.UUID - 995, // 715: forge.MachineValidationAttempt.attempt_id:type_name -> common.UUID - 995, // 716: forge.MachineValidationAttempt.run_item_id:type_name -> common.UUID - 986, // 717: forge.MachineValidationAttempt.started_at:type_name -> google.protobuf.Timestamp - 986, // 718: forge.MachineValidationAttempt.ended_at:type_name -> google.protobuf.Timestamp - 986, // 719: forge.MachineValidationAttempt.last_heartbeat_at:type_name -> google.protobuf.Timestamp - 1012, // 720: forge.MachineValidationHeartbeatRequest.validation_id:type_name -> common.MachineValidationId - 995, // 721: forge.MachineValidationHeartbeatRequest.run_item_id:type_name -> common.UUID - 995, // 722: forge.MachineValidationHeartbeatRequest.attempt_id:type_name -> common.UUID - 978, // 723: forge.MachineValidationTestUpdateRequest.payload:type_name -> forge.MachineValidationTestUpdateRequest.Payload - 616, // 724: forge.MachineValidationTestsGetResponse.tests:type_name -> forge.MachineValidationTest - 1012, // 725: forge.MachineValidationRunRequest.validation_id:type_name -> common.MachineValidationId - 1008, // 726: forge.MachineValidationRunRequest.duration_to_complete:type_name -> google.protobuf.Duration - 616, // 727: forge.MachineValidationRunRequest.selected_tests:type_name -> forge.MachineValidationTest - 54, // 728: forge.MachineCapabilityAttributesGpu.device_type:type_name -> forge.MachineCapabilityDeviceType - 54, // 729: forge.MachineCapabilityAttributesNetwork.device_type:type_name -> forge.MachineCapabilityDeviceType - 623, // 730: forge.MachineCapabilitiesSet.cpu:type_name -> forge.MachineCapabilityAttributesCpu - 624, // 731: forge.MachineCapabilitiesSet.gpu:type_name -> forge.MachineCapabilityAttributesGpu - 625, // 732: forge.MachineCapabilitiesSet.memory:type_name -> forge.MachineCapabilityAttributesMemory - 626, // 733: forge.MachineCapabilitiesSet.storage:type_name -> forge.MachineCapabilityAttributesStorage - 627, // 734: forge.MachineCapabilitiesSet.network:type_name -> forge.MachineCapabilityAttributesNetwork - 628, // 735: forge.MachineCapabilitiesSet.infiniband:type_name -> forge.MachineCapabilityAttributesInfiniband - 629, // 736: forge.MachineCapabilitiesSet.dpu:type_name -> forge.MachineCapabilityAttributesDpu - 633, // 737: forge.InstanceTypeAttributes.desired_capabilities:type_name -> forge.InstanceTypeMachineCapabilityFilterAttributes - 631, // 738: forge.InstanceType.attributes:type_name -> forge.InstanceTypeAttributes - 260, // 739: forge.InstanceType.metadata:type_name -> forge.Metadata - 731, // 740: forge.InstanceType.allocation_stats:type_name -> forge.InstanceTypeAllocationStats - 55, // 741: forge.InstanceTypeMachineCapabilityFilterAttributes.capability_type:type_name -> forge.MachineCapabilityType - 1013, // 742: forge.InstanceTypeMachineCapabilityFilterAttributes.inactive_devices:type_name -> common.Uint32List - 54, // 743: forge.InstanceTypeMachineCapabilityFilterAttributes.device_type:type_name -> forge.MachineCapabilityDeviceType - 260, // 744: forge.CreateInstanceTypeRequest.metadata:type_name -> forge.Metadata - 631, // 745: forge.CreateInstanceTypeRequest.instance_type_attributes:type_name -> forge.InstanceTypeAttributes - 632, // 746: forge.CreateInstanceTypeResponse.instance_type:type_name -> forge.InstanceType - 632, // 747: forge.FindInstanceTypesByIdsResponse.instance_types:type_name -> forge.InstanceType - 632, // 748: forge.UpdateInstanceTypeResponse.instance_type:type_name -> forge.InstanceType - 260, // 749: forge.UpdateInstanceTypeRequest.metadata:type_name -> forge.Metadata - 631, // 750: forge.UpdateInstanceTypeRequest.instance_type_attributes:type_name -> forge.InstanceTypeAttributes - 979, // 751: forge.RedfishBrowseResponse.headers:type_name -> forge.RedfishBrowseResponse.HeadersEntry - 652, // 752: forge.RedfishListActionsResponse.actions:type_name -> forge.RedfishAction - 986, // 753: forge.RedfishAction.approver_dates:type_name -> google.protobuf.Timestamp - 986, // 754: forge.RedfishAction.applied_at:type_name -> google.protobuf.Timestamp - 653, // 755: forge.RedfishAction.results:type_name -> forge.OptionalRedfishActionResult - 654, // 756: forge.OptionalRedfishActionResult.result:type_name -> forge.RedfishActionResult - 980, // 757: forge.RedfishActionResult.headers:type_name -> forge.RedfishActionResult.HeadersEntry - 986, // 758: forge.RedfishActionResult.completed_at:type_name -> google.protobuf.Timestamp - 981, // 759: forge.UfmBrowseResponse.headers:type_name -> forge.UfmBrowseResponse.HeadersEntry - 680, // 760: forge.NetworkSecurityGroupAttributes.rules:type_name -> forge.NetworkSecurityGroupRuleAttributes - 260, // 761: forge.NetworkSecurityGroup.metadata:type_name -> forge.Metadata - 663, // 762: forge.NetworkSecurityGroup.attributes:type_name -> forge.NetworkSecurityGroupAttributes - 260, // 763: forge.CreateNetworkSecurityGroupRequest.metadata:type_name -> forge.Metadata - 663, // 764: forge.CreateNetworkSecurityGroupRequest.network_security_group_attributes:type_name -> forge.NetworkSecurityGroupAttributes - 664, // 765: forge.CreateNetworkSecurityGroupResponse.network_security_group:type_name -> forge.NetworkSecurityGroup - 664, // 766: forge.FindNetworkSecurityGroupsByIdsResponse.network_security_groups:type_name -> forge.NetworkSecurityGroup - 664, // 767: forge.UpdateNetworkSecurityGroupResponse.network_security_group:type_name -> forge.NetworkSecurityGroup - 260, // 768: forge.UpdateNetworkSecurityGroupRequest.metadata:type_name -> forge.Metadata - 663, // 769: forge.UpdateNetworkSecurityGroupRequest.network_security_group_attributes:type_name -> forge.NetworkSecurityGroupAttributes - 56, // 770: forge.NetworkSecurityGroupStatus.source:type_name -> forge.NetworkSecurityGroupSource - 57, // 771: forge.NetworkSecurityGroupPropagationObjectStatus.status:type_name -> forge.NetworkSecurityGroupPropagationStatus - 676, // 772: forge.GetNetworkSecurityGroupPropagationStatusResponse.vpcs:type_name -> forge.NetworkSecurityGroupPropagationObjectStatus - 676, // 773: forge.GetNetworkSecurityGroupPropagationStatusResponse.instances:type_name -> forge.NetworkSecurityGroupPropagationObjectStatus - 678, // 774: forge.GetNetworkSecurityGroupPropagationStatusRequest.network_security_group_ids:type_name -> forge.NetworkSecurityGroupIdList - 58, // 775: forge.NetworkSecurityGroupRuleAttributes.direction:type_name -> forge.NetworkSecurityGroupRuleDirection - 59, // 776: forge.NetworkSecurityGroupRuleAttributes.protocol:type_name -> forge.NetworkSecurityGroupRuleProtocol - 60, // 777: forge.NetworkSecurityGroupRuleAttributes.action:type_name -> forge.NetworkSecurityGroupRuleAction - 680, // 778: forge.ResolvedNetworkSecurityGroupRule.rule:type_name -> forge.NetworkSecurityGroupRuleAttributes - 683, // 779: forge.GetNetworkSecurityGroupAttachmentsResponse.attachments:type_name -> forge.NetworkSecurityGroupAttachments - 687, // 780: forge.GetDesiredFirmwareVersionsResponse.entries:type_name -> forge.DesiredFirmwareVersionEntry - 982, // 781: forge.DesiredFirmwareVersionEntry.component_versions:type_name -> forge.DesiredFirmwareVersionEntry.ComponentVersionsEntry - 688, // 782: forge.SkuComponents.chassis:type_name -> forge.SkuComponentChassis - 689, // 783: forge.SkuComponents.cpus:type_name -> forge.SkuComponentCpu - 690, // 784: forge.SkuComponents.gpus:type_name -> forge.SkuComponentGpu - 691, // 785: forge.SkuComponents.ethernet_devices:type_name -> forge.SkuComponentEthernetDevices - 692, // 786: forge.SkuComponents.infiniband_devices:type_name -> forge.SkuComponentInfinibandDevices - 693, // 787: forge.SkuComponents.storage:type_name -> forge.SkuComponentStorage - 695, // 788: forge.SkuComponents.memory:type_name -> forge.SkuComponentMemory - 696, // 789: forge.SkuComponents.tpm:type_name -> forge.SkuComponentTpm - 986, // 790: forge.Sku.created:type_name -> google.protobuf.Timestamp - 697, // 791: forge.Sku.components:type_name -> forge.SkuComponents - 985, // 792: forge.Sku.associated_machine_ids:type_name -> common.MachineId - 985, // 793: forge.SkuMachinePair.machine_id:type_name -> common.MachineId - 985, // 794: forge.RemoveSkuRequest.machine_id:type_name -> common.MachineId - 698, // 795: forge.SkuList.skus:type_name -> forge.Sku - 986, // 796: forge.SkuStatus.verify_request_time:type_name -> google.protobuf.Timestamp - 986, // 797: forge.SkuStatus.last_match_attempt:type_name -> google.protobuf.Timestamp - 986, // 798: forge.SkuStatus.last_generate_attempt:type_name -> google.protobuf.Timestamp - 1014, // 799: forge.DpaInterface.id:type_name -> common.DpaInterfaceId - 985, // 800: forge.DpaInterface.machine_id:type_name -> common.MachineId - 986, // 801: forge.DpaInterface.created:type_name -> google.protobuf.Timestamp - 986, // 802: forge.DpaInterface.updated:type_name -> google.protobuf.Timestamp - 986, // 803: forge.DpaInterface.deleted:type_name -> google.protobuf.Timestamp - 224, // 804: forge.DpaInterface.history:type_name -> forge.StateHistoryRecord - 986, // 805: forge.DpaInterface.last_hb_time:type_name -> google.protobuf.Timestamp - 61, // 806: forge.DpaInterface.interface_type:type_name -> forge.DpaInterfaceType - 985, // 807: forge.DpaInterfaceCreationRequest.machine_id:type_name -> common.MachineId - 61, // 808: forge.DpaInterfaceCreationRequest.interface_type:type_name -> forge.DpaInterfaceType - 1014, // 809: forge.DpaInterfaceIdList.ids:type_name -> common.DpaInterfaceId - 1014, // 810: forge.DpaInterfacesByIdsRequest.ids:type_name -> common.DpaInterfaceId - 706, // 811: forge.DpaInterfaceList.interfaces:type_name -> forge.DpaInterface - 1014, // 812: forge.DpaNetworkObservationSetRequest.id:type_name -> common.DpaInterfaceId - 1014, // 813: forge.DpaInterfaceDeletionRequest.id:type_name -> common.DpaInterfaceId - 985, // 814: forge.PowerOptionRequest.machine_id:type_name -> common.MachineId - 985, // 815: forge.PowerOptionUpdateRequest.machine_id:type_name -> common.MachineId - 62, // 816: forge.PowerOptionUpdateRequest.power_state:type_name -> forge.PowerState - 62, // 817: forge.PowerOptions.desired_state:type_name -> forge.PowerState - 986, // 818: forge.PowerOptions.desired_state_updated_at:type_name -> google.protobuf.Timestamp - 62, // 819: forge.PowerOptions.actual_state:type_name -> forge.PowerState - 986, // 820: forge.PowerOptions.actual_state_updated_at:type_name -> google.protobuf.Timestamp - 985, // 821: forge.PowerOptions.host_id:type_name -> common.MachineId - 986, // 822: forge.PowerOptions.next_power_state_fetch_at:type_name -> google.protobuf.Timestamp - 986, // 823: forge.PowerOptions.tried_triggering_on_at:type_name -> google.protobuf.Timestamp - 986, // 824: forge.PowerOptions.wait_until_time_before_performing_next_power_action:type_name -> google.protobuf.Timestamp - 717, // 825: forge.PowerOptionResponse.response:type_name -> forge.PowerOptions - 1015, // 826: forge.ComputeAllocation.id:type_name -> common.ComputeAllocationId - 719, // 827: forge.ComputeAllocation.attributes:type_name -> forge.ComputeAllocationAttributes - 260, // 828: forge.ComputeAllocation.metadata:type_name -> forge.Metadata - 1015, // 829: forge.CreateComputeAllocationRequest.id:type_name -> common.ComputeAllocationId - 260, // 830: forge.CreateComputeAllocationRequest.metadata:type_name -> forge.Metadata - 719, // 831: forge.CreateComputeAllocationRequest.attributes:type_name -> forge.ComputeAllocationAttributes - 720, // 832: forge.CreateComputeAllocationResponse.allocation:type_name -> forge.ComputeAllocation - 1015, // 833: forge.FindComputeAllocationIdsResponse.ids:type_name -> common.ComputeAllocationId - 1015, // 834: forge.FindComputeAllocationsByIdsRequest.ids:type_name -> common.ComputeAllocationId - 720, // 835: forge.FindComputeAllocationsByIdsResponse.allocations:type_name -> forge.ComputeAllocation - 720, // 836: forge.UpdateComputeAllocationResponse.allocation:type_name -> forge.ComputeAllocation - 1015, // 837: forge.UpdateComputeAllocationRequest.id:type_name -> common.ComputeAllocationId - 260, // 838: forge.UpdateComputeAllocationRequest.metadata:type_name -> forge.Metadata - 719, // 839: forge.UpdateComputeAllocationRequest.attributes:type_name -> forge.ComputeAllocationAttributes - 1015, // 840: forge.DeleteComputeAllocationRequest.id:type_name -> common.ComputeAllocationId - 738, // 841: forge.GetRackResponse.rack:type_name -> forge.Rack - 738, // 842: forge.RackList.racks:type_name -> forge.Rack - 259, // 843: forge.RackSearchFilter.label:type_name -> forge.Label - 994, // 844: forge.RackIdList.rack_ids:type_name -> common.RackId - 994, // 845: forge.RacksByIdsRequest.rack_ids:type_name -> common.RackId - 994, // 846: forge.Rack.id:type_name -> common.RackId - 986, // 847: forge.Rack.created:type_name -> google.protobuf.Timestamp - 986, // 848: forge.Rack.updated:type_name -> google.protobuf.Timestamp - 986, // 849: forge.Rack.deleted:type_name -> google.protobuf.Timestamp - 260, // 850: forge.Rack.metadata:type_name -> forge.Metadata - 739, // 851: forge.Rack.config:type_name -> forge.RackConfig - 740, // 852: forge.Rack.status:type_name -> forge.RackStatus - 992, // 853: forge.RackStatus.health:type_name -> health.HealthReport - 346, // 854: forge.RackStatus.health_sources:type_name -> forge.HealthSourceOrigin - 91, // 855: forge.RackStatus.lifecycle:type_name -> forge.LifecycleStatus - 994, // 856: forge.RackStateHistoriesRequest.rack_ids:type_name -> common.RackId - 994, // 857: forge.AdminForceDeleteRackRequest.rack_id:type_name -> common.RackId - 745, // 858: forge.RackCapabilitiesSet.compute:type_name -> forge.RackCapabilityCompute - 746, // 859: forge.RackCapabilitiesSet.switch:type_name -> forge.RackCapabilitySwitch - 747, // 860: forge.RackCapabilitiesSet.power_shelf:type_name -> forge.RackCapabilityPowerShelf - 1016, // 861: forge.RackProfile.rack_hardware_type:type_name -> common.RackHardwareType - 63, // 862: forge.RackProfile.rack_hardware_topology:type_name -> forge.RackHardwareTopology - 65, // 863: forge.RackProfile.rack_hardware_class:type_name -> forge.RackHardwareClass - 748, // 864: forge.RackProfile.capabilities:type_name -> forge.RackCapabilitiesSet - 64, // 865: forge.RackProfile.product_family:type_name -> forge.RackProductFamily - 994, // 866: forge.GetRackProfileRequest.rack_id:type_name -> common.RackId - 994, // 867: forge.GetRackProfileResponse.rack_id:type_name -> common.RackId - 997, // 868: forge.GetRackProfileResponse.rack_profile_id:type_name -> common.RackProfileId - 749, // 869: forge.GetRackProfileResponse.profile:type_name -> forge.RackProfile - 66, // 870: forge.RackManagerForgeRequest.cmd:type_name -> forge.RackManagerForgeCmd - 1005, // 871: forge.MachineNVLinkInfo.domain_uuid:type_name -> common.NVLinkDomainId - 763, // 872: forge.MachineNVLinkInfo.gpus:type_name -> forge.NVLinkGpu - 985, // 873: forge.UpdateMachineNvLinkInfoRequest.machine_id:type_name -> common.MachineId - 754, // 874: forge.UpdateMachineNvLinkInfoRequest.nvlink_info:type_name -> forge.MachineNVLinkInfo - 757, // 875: forge.MachineSpxStatusObservation.attachment_status:type_name -> forge.MachineSpxAttachmentStatusObservation - 986, // 876: forge.MachineSpxStatusObservation.observed_at:type_name -> google.protobuf.Timestamp - 1004, // 877: forge.MachineSpxAttachmentStatusObservation.partition_id:type_name -> common.SpxPartitionId - 16, // 878: forge.MachineSpxAttachmentStatusObservation.attachment_type:type_name -> forge.SpxAttachmentType - 986, // 879: forge.MachineSpxAttachmentStatusObservation.observed_at:type_name -> google.protobuf.Timestamp - 759, // 880: forge.AstraConfig.astra_attachments:type_name -> forge.AstraAttachment - 16, // 881: forge.AstraAttachment.attachment_type:type_name -> forge.SpxAttachmentType - 761, // 882: forge.AstraConfigStatus.astra_attachments_status:type_name -> forge.AstraAttachmentStatus - 16, // 883: forge.AstraAttachmentStatus.attachment_type:type_name -> forge.SpxAttachmentType - 762, // 884: forge.AstraAttachmentStatus.status:type_name -> forge.AstraStatus - 67, // 885: forge.AstraStatus.phase:type_name -> forge.AstraPhase - 765, // 886: forge.MachineNVLinkStatusObservation.gpu_status:type_name -> forge.MachineNVLinkGpuStatusObservation - 1017, // 887: forge.MachineNVLinkGpuStatusObservation.partition_id:type_name -> common.NVLinkPartitionId - 988, // 888: forge.MachineNVLinkGpuStatusObservation.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 1005, // 889: forge.MachineNVLinkGpuStatusObservation.domain_id:type_name -> common.NVLinkDomainId - 68, // 890: forge.NmxcBrowseRequest.operation:type_name -> forge.NmxcBrowseOperation - 983, // 891: forge.NmxcBrowseResponse.headers:type_name -> forge.NmxcBrowseResponse.HeadersEntry - 1017, // 892: forge.NVLinkPartition.id:type_name -> common.NVLinkPartitionId - 1005, // 893: forge.NVLinkPartition.domain_uuid:type_name -> common.NVLinkDomainId - 988, // 894: forge.NVLinkPartition.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 768, // 895: forge.NVLinkPartitionList.partitions:type_name -> forge.NVLinkPartition - 995, // 896: forge.NVLinkPartitionQuery.id:type_name -> common.UUID - 770, // 897: forge.NVLinkPartitionQuery.search_config:type_name -> forge.NVLinkPartitionSearchConfig - 1017, // 898: forge.NVLinkPartitionsByIdsRequest.partition_ids:type_name -> common.NVLinkPartitionId - 1017, // 899: forge.NVLinkPartitionIdList.partition_ids:type_name -> common.NVLinkPartitionId - 260, // 900: forge.NVLinkLogicalPartitionConfig.metadata:type_name -> forge.Metadata - 8, // 901: forge.NVLinkLogicalPartitionStatus.state:type_name -> forge.TenantState - 988, // 902: forge.NVLinkLogicalPartition.id:type_name -> common.NVLinkLogicalPartitionId - 776, // 903: forge.NVLinkLogicalPartition.config:type_name -> forge.NVLinkLogicalPartitionConfig - 777, // 904: forge.NVLinkLogicalPartition.status:type_name -> forge.NVLinkLogicalPartitionStatus - 986, // 905: forge.NVLinkLogicalPartition.created:type_name -> google.protobuf.Timestamp - 778, // 906: forge.NVLinkLogicalPartitionList.partitions:type_name -> forge.NVLinkLogicalPartition - 776, // 907: forge.NVLinkLogicalPartitionCreationRequest.config:type_name -> forge.NVLinkLogicalPartitionConfig - 988, // 908: forge.NVLinkLogicalPartitionCreationRequest.id:type_name -> common.NVLinkLogicalPartitionId - 988, // 909: forge.NVLinkLogicalPartitionDeletionRequest.id:type_name -> common.NVLinkLogicalPartitionId - 988, // 910: forge.NVLinkLogicalPartitionsByIdsRequest.partition_ids:type_name -> common.NVLinkLogicalPartitionId - 988, // 911: forge.NVLinkLogicalPartitionIdList.partition_ids:type_name -> common.NVLinkLogicalPartitionId - 988, // 912: forge.NVLinkLogicalPartitionUpdateRequest.id:type_name -> common.NVLinkLogicalPartitionId - 776, // 913: forge.NVLinkLogicalPartitionUpdateRequest.config:type_name -> forge.NVLinkLogicalPartitionConfig - 373, // 914: forge.CreateBmcUserRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 373, // 915: forge.DeleteBmcUserRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 373, // 916: forge.SetBmcRootPasswordRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 373, // 917: forge.ProbeBmcVendorRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 985, // 918: forge.SetFirmwareUpdateTimeWindowRequest.machine_ids:type_name -> common.MachineId - 986, // 919: forge.SetFirmwareUpdateTimeWindowRequest.start_timestamp:type_name -> google.protobuf.Timestamp - 986, // 920: forge.SetFirmwareUpdateTimeWindowRequest.end_timestamp:type_name -> google.protobuf.Timestamp - 800, // 921: forge.UpsertHostFirmwareConfigRequest.components:type_name -> forge.UpsertHostFirmwareComponentConfig - 69, // 922: forge.UpsertHostFirmwareConfigRequest.ordering:type_name -> forge.HostFirmwareComponentType - 69, // 923: forge.UpsertHostFirmwareComponentConfig.type:type_name -> forge.HostFirmwareComponentType - 802, // 924: forge.UpsertHostFirmwareComponentConfig.firmware:type_name -> forge.HostFirmwareVersionConfig - 69, // 925: forge.HostFirmwareComponentConfigResponse.type:type_name -> forge.HostFirmwareComponentType - 802, // 926: forge.HostFirmwareComponentConfigResponse.firmware:type_name -> forge.HostFirmwareVersionConfig - 803, // 927: forge.HostFirmwareVersionConfig.artifacts:type_name -> forge.HostFirmwareArtifact - 801, // 928: forge.HostFirmwareConfigResponse.components:type_name -> forge.HostFirmwareComponentConfigResponse - 69, // 929: forge.HostFirmwareConfigResponse.ordering:type_name -> forge.HostFirmwareComponentType - 986, // 930: forge.HostFirmwareConfigResponse.created_at:type_name -> google.protobuf.Timestamp - 986, // 931: forge.HostFirmwareConfigResponse.updated_at:type_name -> google.protobuf.Timestamp - 807, // 932: forge.ListHostFirmwareResponse.available:type_name -> forge.AvailableHostFirmware - 70, // 933: forge.TrimTableRequest.target:type_name -> forge.TrimTableTarget - 810, // 934: forge.NvlinkNmxcEndpointList.entries:type_name -> forge.NvlinkNmxcEndpoint - 260, // 935: forge.CreateRemediationRequest.metadata:type_name -> forge.Metadata - 1018, // 936: forge.CreateRemediationResponse.remediation_id:type_name -> common.RemediationId - 1018, // 937: forge.RemediationIdList.remediation_ids:type_name -> common.RemediationId - 817, // 938: forge.RemediationList.remediations:type_name -> forge.Remediation - 1018, // 939: forge.Remediation.id:type_name -> common.RemediationId - 260, // 940: forge.Remediation.metadata:type_name -> forge.Metadata - 986, // 941: forge.Remediation.creation_time:type_name -> google.protobuf.Timestamp - 1018, // 942: forge.ApproveRemediationRequest.remediation_id:type_name -> common.RemediationId - 1018, // 943: forge.RevokeRemediationRequest.remediation_id:type_name -> common.RemediationId - 1018, // 944: forge.EnableRemediationRequest.remediation_id:type_name -> common.RemediationId - 1018, // 945: forge.DisableRemediationRequest.remediation_id:type_name -> common.RemediationId - 1018, // 946: forge.FindAppliedRemediationIdsRequest.remediation_id:type_name -> common.RemediationId - 985, // 947: forge.FindAppliedRemediationIdsRequest.dpu_machine_id:type_name -> common.MachineId - 1018, // 948: forge.AppliedRemediationIdList.remediation_ids:type_name -> common.RemediationId - 985, // 949: forge.AppliedRemediationIdList.dpu_machine_ids:type_name -> common.MachineId - 1018, // 950: forge.FindAppliedRemediationsRequest.remediation_id:type_name -> common.RemediationId - 985, // 951: forge.FindAppliedRemediationsRequest.dpu_machine_id:type_name -> common.MachineId - 1018, // 952: forge.AppliedRemediation.remediation_id:type_name -> common.RemediationId - 985, // 953: forge.AppliedRemediation.dpu_machine_id:type_name -> common.MachineId - 986, // 954: forge.AppliedRemediation.applied_time:type_name -> google.protobuf.Timestamp - 260, // 955: forge.AppliedRemediation.metadata:type_name -> forge.Metadata - 825, // 956: forge.AppliedRemediationList.applied_remediations:type_name -> forge.AppliedRemediation - 985, // 957: forge.GetNextRemediationForMachineRequest.dpu_machine_id:type_name -> common.MachineId - 1018, // 958: forge.GetNextRemediationForMachineResponse.remediation_id:type_name -> common.RemediationId - 1018, // 959: forge.RemediationAppliedRequest.remediation_id:type_name -> common.RemediationId - 985, // 960: forge.RemediationAppliedRequest.dpu_machine_id:type_name -> common.MachineId - 830, // 961: forge.RemediationAppliedRequest.status:type_name -> forge.RemediationApplicationStatus - 260, // 962: forge.RemediationApplicationStatus.metadata:type_name -> forge.Metadata - 985, // 963: forge.SetPrimaryDpuRequest.host_machine_id:type_name -> common.MachineId - 985, // 964: forge.SetPrimaryDpuRequest.dpu_machine_id:type_name -> common.MachineId - 985, // 965: forge.SetPrimaryInterfaceRequest.host_machine_id:type_name -> common.MachineId - 1006, // 966: forge.SetPrimaryInterfaceRequest.interface_id:type_name -> common.MachineInterfaceId - 833, // 967: forge.DpuExtensionServiceCredential.username_password:type_name -> forge.UsernamePassword - 854, // 968: forge.DpuExtensionServiceVersionInfo.observability:type_name -> forge.DpuExtensionServiceObservability - 71, // 969: forge.DpuExtensionService.service_type:type_name -> forge.DpuExtensionServiceType - 836, // 970: forge.DpuExtensionService.latest_version_info:type_name -> forge.DpuExtensionServiceVersionInfo - 71, // 971: forge.CreateDpuExtensionServiceRequest.service_type:type_name -> forge.DpuExtensionServiceType - 835, // 972: forge.CreateDpuExtensionServiceRequest.credential:type_name -> forge.DpuExtensionServiceCredential - 854, // 973: forge.CreateDpuExtensionServiceRequest.observability:type_name -> forge.DpuExtensionServiceObservability - 835, // 974: forge.UpdateDpuExtensionServiceRequest.credential:type_name -> forge.DpuExtensionServiceCredential - 854, // 975: forge.UpdateDpuExtensionServiceRequest.observability:type_name -> forge.DpuExtensionServiceObservability - 71, // 976: forge.DpuExtensionServiceSearchFilter.service_type:type_name -> forge.DpuExtensionServiceType - 837, // 977: forge.DpuExtensionServiceList.services:type_name -> forge.DpuExtensionService - 836, // 978: forge.DpuExtensionServiceVersionInfoList.version_infos:type_name -> forge.DpuExtensionServiceVersionInfo - 850, // 979: forge.FindInstancesByDpuExtensionServiceResponse.instances:type_name -> forge.InstanceDpuExtensionServiceInfo - 851, // 980: forge.DpuExtensionServiceObservabilityConfig.prometheus:type_name -> forge.DpuExtensionServiceObservabilityConfigPrometheus - 852, // 981: forge.DpuExtensionServiceObservabilityConfig.logging:type_name -> forge.DpuExtensionServiceObservabilityConfigLogging - 853, // 982: forge.DpuExtensionServiceObservability.configs:type_name -> forge.DpuExtensionServiceObservabilityConfig - 995, // 983: forge.ScoutStreamApiBoundMessage.flow_uuid:type_name -> common.UUID - 857, // 984: forge.ScoutStreamApiBoundMessage.init:type_name -> forge.ScoutStreamInitRequest - 1019, // 985: forge.ScoutStreamApiBoundMessage.mlx_device_lockdown_response:type_name -> mlx_device.MlxDeviceLockdownResponse - 1020, // 986: forge.ScoutStreamApiBoundMessage.mlx_device_profile_sync_response:type_name -> mlx_device.MlxDeviceProfileSyncResponse - 1021, // 987: forge.ScoutStreamApiBoundMessage.mlx_device_profile_compare_response:type_name -> mlx_device.MlxDeviceProfileCompareResponse - 1022, // 988: forge.ScoutStreamApiBoundMessage.mlx_device_info_device_response:type_name -> mlx_device.MlxDeviceInfoDeviceResponse - 1023, // 989: forge.ScoutStreamApiBoundMessage.mlx_device_info_report_response:type_name -> mlx_device.MlxDeviceInfoReportResponse - 1024, // 990: forge.ScoutStreamApiBoundMessage.mlx_device_registry_list_response:type_name -> mlx_device.MlxDeviceRegistryListResponse - 1025, // 991: forge.ScoutStreamApiBoundMessage.mlx_device_registry_show_response:type_name -> mlx_device.MlxDeviceRegistryShowResponse - 1026, // 992: forge.ScoutStreamApiBoundMessage.mlx_device_config_query_response:type_name -> mlx_device.MlxDeviceConfigQueryResponse - 1027, // 993: forge.ScoutStreamApiBoundMessage.mlx_device_config_set_response:type_name -> mlx_device.MlxDeviceConfigSetResponse - 1028, // 994: forge.ScoutStreamApiBoundMessage.mlx_device_config_sync_response:type_name -> mlx_device.MlxDeviceConfigSyncResponse - 1029, // 995: forge.ScoutStreamApiBoundMessage.mlx_device_config_compare_response:type_name -> mlx_device.MlxDeviceConfigCompareResponse - 865, // 996: forge.ScoutStreamApiBoundMessage.scout_stream_agent_ping_response:type_name -> forge.ScoutStreamAgentPingResponse - 995, // 997: forge.ScoutStreamScoutBoundMessage.flow_uuid:type_name -> common.UUID - 1030, // 998: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_lock_request:type_name -> mlx_device.MlxDeviceLockdownLockRequest - 1031, // 999: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_unlock_request:type_name -> mlx_device.MlxDeviceLockdownUnlockRequest - 1032, // 1000: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_status_request:type_name -> mlx_device.MlxDeviceLockdownStatusRequest - 1033, // 1001: forge.ScoutStreamScoutBoundMessage.mlx_device_profile_sync_request:type_name -> mlx_device.MlxDeviceProfileSyncRequest - 1034, // 1002: forge.ScoutStreamScoutBoundMessage.mlx_device_profile_compare_request:type_name -> mlx_device.MlxDeviceProfileCompareRequest - 1035, // 1003: forge.ScoutStreamScoutBoundMessage.mlx_device_info_device_request:type_name -> mlx_device.MlxDeviceInfoDeviceRequest - 1036, // 1004: forge.ScoutStreamScoutBoundMessage.mlx_device_info_report_request:type_name -> mlx_device.MlxDeviceInfoReportRequest - 1037, // 1005: forge.ScoutStreamScoutBoundMessage.mlx_device_registry_list_request:type_name -> mlx_device.MlxDeviceRegistryListRequest - 1038, // 1006: forge.ScoutStreamScoutBoundMessage.mlx_device_registry_show_request:type_name -> mlx_device.MlxDeviceRegistryShowRequest - 1039, // 1007: forge.ScoutStreamScoutBoundMessage.mlx_device_config_query_request:type_name -> mlx_device.MlxDeviceConfigQueryRequest - 1040, // 1008: forge.ScoutStreamScoutBoundMessage.mlx_device_config_set_request:type_name -> mlx_device.MlxDeviceConfigSetRequest - 1041, // 1009: forge.ScoutStreamScoutBoundMessage.mlx_device_config_sync_request:type_name -> mlx_device.MlxDeviceConfigSyncRequest - 1042, // 1010: forge.ScoutStreamScoutBoundMessage.mlx_device_config_compare_request:type_name -> mlx_device.MlxDeviceConfigCompareRequest - 864, // 1011: forge.ScoutStreamScoutBoundMessage.scout_stream_agent_ping_request:type_name -> forge.ScoutStreamAgentPingRequest - 985, // 1012: forge.ScoutStreamInitRequest.machine_id:type_name -> common.MachineId - 866, // 1013: forge.ScoutStreamShowConnectionsResponse.scout_stream_connections:type_name -> forge.ScoutStreamConnectionInfo - 985, // 1014: forge.ScoutStreamDisconnectRequest.machine_id:type_name -> common.MachineId - 985, // 1015: forge.ScoutStreamDisconnectResponse.machine_id:type_name -> common.MachineId - 985, // 1016: forge.ScoutStreamAdminPingRequest.machine_id:type_name -> common.MachineId - 867, // 1017: forge.ScoutStreamAgentPingResponse.error:type_name -> forge.ScoutStreamError - 985, // 1018: forge.ScoutStreamConnectionInfo.machine_id:type_name -> common.MachineId - 73, // 1019: forge.ScoutStreamError.status:type_name -> forge.ScoutStreamErrorStatus - 1011, // 1020: forge.RoutingProfile.route_target_imports:type_name -> common.RouteTarget - 1011, // 1021: forge.RoutingProfile.route_targets_on_exports:type_name -> common.RouteTarget - 868, // 1022: forge.RoutingProfile.accepted_leaks_from_underlay:type_name -> forge.PrefixFilterPolicyEntry - 868, // 1023: forge.RoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry - 998, // 1024: forge.DomainLegacy.id:type_name -> common.DomainId - 986, // 1025: forge.DomainLegacy.created:type_name -> google.protobuf.Timestamp - 986, // 1026: forge.DomainLegacy.updated:type_name -> google.protobuf.Timestamp - 986, // 1027: forge.DomainLegacy.deleted:type_name -> google.protobuf.Timestamp - 870, // 1028: forge.DomainListLegacy.domains:type_name -> forge.DomainLegacy - 998, // 1029: forge.DomainDeletionLegacy.id:type_name -> common.DomainId - 998, // 1030: forge.DomainSearchQueryLegacy.id:type_name -> common.DomainId - 1043, // 1031: forge.PxeDomain.new_domain:type_name -> dns.Domain - 870, // 1032: forge.PxeDomain.legacy_domain:type_name -> forge.DomainLegacy - 985, // 1033: forge.MachinePositionQuery.machine_ids:type_name -> common.MachineId - 878, // 1034: forge.MachinePositionInfoList.machine_position_info:type_name -> forge.MachinePositionInfo - 985, // 1035: forge.MachinePositionInfo.machine_id:type_name -> common.MachineId - 996, // 1036: forge.MachinePositionInfo.switch_id:type_name -> common.SwitchId - 993, // 1037: forge.MachinePositionInfo.power_shelf_id:type_name -> common.PowerShelfId - 985, // 1038: forge.ModifyDPFStateRequest.machine_id:type_name -> common.MachineId - 984, // 1039: forge.DPFStateResponse.dpf_states:type_name -> forge.DPFStateResponse.DPFState - 985, // 1040: forge.GetDPFStateRequest.machine_ids:type_name -> common.MachineId - 985, // 1041: forge.GetDPFHostSnapshotRequest.host_machine_id:type_name -> common.MachineId - 885, // 1042: forge.DPFServiceVersionsResponse.services:type_name -> forge.DPFServiceVersion - 74, // 1043: forge.ComponentResult.status:type_name -> forge.ComponentManagerStatusCode - 996, // 1044: forge.SwitchIdList.ids:type_name -> common.SwitchId - 993, // 1045: forge.PowerShelfIdList.ids:type_name -> common.PowerShelfId - 1044, // 1046: forge.GetComponentInventoryRequest.machine_ids:type_name -> common.MachineIdList - 888, // 1047: forge.GetComponentInventoryRequest.switch_ids:type_name -> forge.SwitchIdList - 889, // 1048: forge.GetComponentInventoryRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList - 887, // 1049: forge.ComponentInventoryEntry.result:type_name -> forge.ComponentResult - 1045, // 1050: forge.ComponentInventoryEntry.report:type_name -> site_explorer.EndpointExplorationReport - 891, // 1051: forge.GetComponentInventoryResponse.entries:type_name -> forge.ComponentInventoryEntry - 1044, // 1052: forge.ComponentPowerControlRequest.machine_ids:type_name -> common.MachineIdList - 888, // 1053: forge.ComponentPowerControlRequest.switch_ids:type_name -> forge.SwitchIdList - 889, // 1054: forge.ComponentPowerControlRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList - 1046, // 1055: forge.ComponentPowerControlRequest.action:type_name -> common.SystemPowerControl - 887, // 1056: forge.ComponentPowerControlResponse.results:type_name -> forge.ComponentResult - 888, // 1057: forge.ComponentConfigureSwitchCertificateRequest.switch_ids:type_name -> forge.SwitchIdList - 887, // 1058: forge.ComponentConfigureSwitchCertificateResponse.results:type_name -> forge.ComponentResult - 887, // 1059: forge.FirmwareUpdateStatus.result:type_name -> forge.ComponentResult - 75, // 1060: forge.FirmwareUpdateStatus.state:type_name -> forge.FirmwareUpdateState - 986, // 1061: forge.FirmwareUpdateStatus.updated_at:type_name -> google.protobuf.Timestamp - 1044, // 1062: forge.UpdateComputeTrayFirmwareTarget.machine_ids:type_name -> common.MachineIdList - 78, // 1063: forge.UpdateComputeTrayFirmwareTarget.components:type_name -> forge.ComputeTrayComponent - 888, // 1064: forge.UpdateSwitchFirmwareTarget.switch_ids:type_name -> forge.SwitchIdList - 76, // 1065: forge.UpdateSwitchFirmwareTarget.components:type_name -> forge.NvSwitchComponent - 889, // 1066: forge.UpdatePowerShelfFirmwareTarget.power_shelf_ids:type_name -> forge.PowerShelfIdList - 77, // 1067: forge.UpdatePowerShelfFirmwareTarget.components:type_name -> forge.PowerShelfComponent - 736, // 1068: forge.UpdateFirmwareObjectTarget.rack_ids:type_name -> forge.RackIdList - 898, // 1069: forge.UpdateComponentFirmwareRequest.compute_trays:type_name -> forge.UpdateComputeTrayFirmwareTarget - 899, // 1070: forge.UpdateComponentFirmwareRequest.switches:type_name -> forge.UpdateSwitchFirmwareTarget - 900, // 1071: forge.UpdateComponentFirmwareRequest.power_shelves:type_name -> forge.UpdatePowerShelfFirmwareTarget - 901, // 1072: forge.UpdateComponentFirmwareRequest.racks:type_name -> forge.UpdateFirmwareObjectTarget - 887, // 1073: forge.UpdateComponentFirmwareResponse.results:type_name -> forge.ComponentResult - 1044, // 1074: forge.GetComponentFirmwareStatusRequest.machine_ids:type_name -> common.MachineIdList - 888, // 1075: forge.GetComponentFirmwareStatusRequest.switch_ids:type_name -> forge.SwitchIdList - 889, // 1076: forge.GetComponentFirmwareStatusRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList - 736, // 1077: forge.GetComponentFirmwareStatusRequest.rack_ids:type_name -> forge.RackIdList - 897, // 1078: forge.GetComponentFirmwareStatusResponse.statuses:type_name -> forge.FirmwareUpdateStatus - 1044, // 1079: forge.ListComponentFirmwareVersionsRequest.machine_ids:type_name -> common.MachineIdList - 888, // 1080: forge.ListComponentFirmwareVersionsRequest.switch_ids:type_name -> forge.SwitchIdList - 889, // 1081: forge.ListComponentFirmwareVersionsRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList - 736, // 1082: forge.ListComponentFirmwareVersionsRequest.rack_ids:type_name -> forge.RackIdList - 78, // 1083: forge.ComputeTrayFirmwareVersions.component:type_name -> forge.ComputeTrayComponent - 887, // 1084: forge.DeviceFirmwareVersions.result:type_name -> forge.ComponentResult - 907, // 1085: forge.DeviceFirmwareVersions.compute_fw_versions:type_name -> forge.ComputeTrayFirmwareVersions - 908, // 1086: forge.ListComponentFirmwareVersionsResponse.devices:type_name -> forge.DeviceFirmwareVersions - 260, // 1087: forge.SpxPartitionCreationRequest.metadata:type_name -> forge.Metadata - 1004, // 1088: forge.SpxPartitionCreationRequest.id:type_name -> common.SpxPartitionId - 260, // 1089: forge.SpxPartition.metadata:type_name -> forge.Metadata - 1004, // 1090: forge.SpxPartition.id:type_name -> common.SpxPartitionId - 1004, // 1091: forge.SpxPartitionIdList.spx_partition_ids:type_name -> common.SpxPartitionId - 1004, // 1092: forge.SpxPartitionDeletionRequest.id:type_name -> common.SpxPartitionId - 259, // 1093: forge.SpxPartitionSearchFilter.label:type_name -> forge.Label - 911, // 1094: forge.SpxPartitionList.spx_partitions:type_name -> forge.SpxPartition - 1004, // 1095: forge.SpxPartitionsByIdsRequest.spx_partition_ids:type_name -> common.SpxPartitionId - 996, // 1096: forge.AdminForceDeleteSwitchRequest.switch_id:type_name -> common.SwitchId - 993, // 1097: forge.AdminForceDeletePowerShelfRequest.power_shelf_id:type_name -> common.PowerShelfId - 1003, // 1098: forge.OperatingSystem.id:type_name -> common.OperatingSystemId - 79, // 1099: forge.OperatingSystem.type:type_name -> forge.OperatingSystemType - 8, // 1100: forge.OperatingSystem.status:type_name -> forge.TenantState - 1002, // 1101: forge.OperatingSystem.ipxe_template_id:type_name -> common.IpxeTemplateId - 267, // 1102: forge.OperatingSystem.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameter - 268, // 1103: forge.OperatingSystem.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifact - 1003, // 1104: forge.CreateOperatingSystemRequest.id:type_name -> common.OperatingSystemId - 1002, // 1105: forge.CreateOperatingSystemRequest.ipxe_template_id:type_name -> common.IpxeTemplateId - 267, // 1106: forge.CreateOperatingSystemRequest.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameter - 268, // 1107: forge.CreateOperatingSystemRequest.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifact - 267, // 1108: forge.IpxeTemplateParameters.items:type_name -> forge.IpxeTemplateParameter - 268, // 1109: forge.IpxeTemplateArtifacts.items:type_name -> forge.IpxeTemplateArtifact - 1003, // 1110: forge.UpdateOperatingSystemRequest.id:type_name -> common.OperatingSystemId - 1002, // 1111: forge.UpdateOperatingSystemRequest.ipxe_template_id:type_name -> common.IpxeTemplateId - 924, // 1112: forge.UpdateOperatingSystemRequest.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameters - 925, // 1113: forge.UpdateOperatingSystemRequest.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifacts - 1003, // 1114: forge.DeleteOperatingSystemRequest.id:type_name -> common.OperatingSystemId - 1003, // 1115: forge.OperatingSystemIdList.ids:type_name -> common.OperatingSystemId - 1003, // 1116: forge.OperatingSystemsByIdsRequest.ids:type_name -> common.OperatingSystemId - 922, // 1117: forge.OperatingSystemList.operating_systems:type_name -> forge.OperatingSystem - 1003, // 1118: forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest.id:type_name -> common.OperatingSystemId - 268, // 1119: forge.IpxeTemplateArtifactList.artifacts:type_name -> forge.IpxeTemplateArtifact - 1003, // 1120: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest.id:type_name -> common.OperatingSystemId - 935, // 1121: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest.updates:type_name -> forge.IpxeTemplateArtifactUpdateRequest - 985, // 1122: forge.GetMachineBootInterfacesRequest.machine_id:type_name -> common.MachineId - 986, // 1123: forge.RetainedBootInterface.recorded_at:type_name -> google.protobuf.Timestamp - 985, // 1124: forge.GetMachineBootInterfacesResponse.machine_id:type_name -> common.MachineId - 941, // 1125: forge.GetMachineBootInterfacesResponse.machine_interfaces:type_name -> forge.MachineInterfaceBootInterface - 942, // 1126: forge.GetMachineBootInterfacesResponse.predicted_interfaces:type_name -> forge.PredictedBootInterface - 943, // 1127: forge.GetMachineBootInterfacesResponse.explored_endpoints:type_name -> forge.ExploredBootInterface - 944, // 1128: forge.GetMachineBootInterfacesResponse.retained_interfaces:type_name -> forge.RetainedBootInterface - 949, // 1129: forge.DNSMessage.DNSResponse.rrs:type_name -> forge.DNSMessage.DNSResponse.DNSRR - 225, // 1130: forge.StateHistories.HistoriesEntry.value:type_name -> forge.StateHistoryRecords - 314, // 1131: forge.MachineStateHistories.HistoriesEntry.value:type_name -> forge.MachineStateHistoryRecords - 317, // 1132: forge.HealthHistories.HistoriesEntry.value:type_name -> forge.HealthHistoryRecords - 937, // 1133: forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry.value:type_name -> forge.HostRepresentorInterceptBridging - 82, // 1134: forge.MachineCredentialsUpdateRequest.Credentials.credential_purpose:type_name -> forge.MachineCredentialsUpdateRequest.CredentialPurpose - 974, // 1135: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.pair:type_name -> forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.KeyValuePair - 1012, // 1136: forge.ForgeAgentControlResponse.MachineValidation.validation_id:type_name -> common.MachineValidationId - 965, // 1137: forge.ForgeAgentControlResponse.MachineValidation.filter:type_name -> forge.ForgeAgentControlResponse.MachineValidationFilter - 1009, // 1138: forge.ForgeAgentControlResponse.MachineValidationFilter.contexts:type_name -> common.StringList - 967, // 1139: forge.ForgeAgentControlResponse.MlxAction.device_actions:type_name -> forge.ForgeAgentControlResponse.MlxDeviceAction - 968, // 1140: forge.ForgeAgentControlResponse.MlxDeviceAction.noop:type_name -> forge.ForgeAgentControlResponse.MlxDeviceNoop - 969, // 1141: forge.ForgeAgentControlResponse.MlxDeviceAction.lock:type_name -> forge.ForgeAgentControlResponse.MlxDeviceLock - 970, // 1142: forge.ForgeAgentControlResponse.MlxDeviceAction.unlock:type_name -> forge.ForgeAgentControlResponse.MlxDeviceUnlock - 971, // 1143: forge.ForgeAgentControlResponse.MlxDeviceAction.apply_profile:type_name -> forge.ForgeAgentControlResponse.MlxDeviceApplyProfile - 972, // 1144: forge.ForgeAgentControlResponse.MlxDeviceAction.apply_firmware:type_name -> forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware - 1047, // 1145: forge.ForgeAgentControlResponse.MlxDeviceApplyProfile.serialized_profile:type_name -> mlx_device.SerializableMlxConfigProfile - 1048, // 1146: forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware.profile:type_name -> mlx_device.FirmwareFlasherProfile - 1049, // 1147: forge.ForgeAgentControlResponse.FirmwareUpgrade.task:type_name -> scout_firmware_upgrade.ScoutFirmwareUpgradeTask - 84, // 1148: forge.MachineCleanupInfo.CleanupStepResult.result:type_name -> forge.MachineCleanupInfo.CleanupResult - 985, // 1149: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.id:type_name -> common.MachineId - 986, // 1150: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.requested_at:type_name -> google.protobuf.Timestamp - 986, // 1151: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.initiated_at:type_name -> google.protobuf.Timestamp - 985, // 1152: forge.HostReprovisioningListResponse.HostReprovisioningListItem.id:type_name -> common.MachineId - 986, // 1153: forge.HostReprovisioningListResponse.HostReprovisioningListItem.requested_at:type_name -> google.protobuf.Timestamp - 986, // 1154: forge.HostReprovisioningListResponse.HostReprovisioningListItem.initiated_at:type_name -> google.protobuf.Timestamp - 985, // 1155: forge.DPFStateResponse.DPFState.machine_id:type_name -> common.MachineId - 139, // 1156: forge.Forge.Version:input_type -> forge.VersionRequest - 1050, // 1157: forge.Forge.CreateDomain:input_type -> dns.CreateDomainRequest - 1051, // 1158: forge.Forge.UpdateDomain:input_type -> dns.UpdateDomainRequest - 1052, // 1159: forge.Forge.DeleteDomain:input_type -> dns.DomainDeletionRequest - 1053, // 1160: forge.Forge.FindDomain:input_type -> dns.DomainSearchQuery - 870, // 1161: forge.Forge.CreateDomainLegacy:input_type -> forge.DomainLegacy - 870, // 1162: forge.Forge.UpdateDomainLegacy:input_type -> forge.DomainLegacy - 872, // 1163: forge.Forge.DeleteDomainLegacy:input_type -> forge.DomainDeletionLegacy - 874, // 1164: forge.Forge.FindDomainLegacy:input_type -> forge.DomainSearchQueryLegacy - 158, // 1165: forge.Forge.CreateVpc:input_type -> forge.VpcCreationRequest - 159, // 1166: forge.Forge.UpdateVpc:input_type -> forge.VpcUpdateRequest - 161, // 1167: forge.Forge.UpdateVpcVirtualization:input_type -> forge.VpcUpdateVirtualizationRequest - 163, // 1168: forge.Forge.DeleteVpc:input_type -> forge.VpcDeletionRequest - 151, // 1169: forge.Forge.FindVpcIds:input_type -> forge.VpcSearchFilter - 153, // 1170: forge.Forge.FindVpcsByIds:input_type -> forge.VpcsByIdsRequest - 910, // 1171: forge.Forge.CreateSpxPartition:input_type -> forge.SpxPartitionCreationRequest - 913, // 1172: forge.Forge.DeleteSpxPartition:input_type -> forge.SpxPartitionDeletionRequest - 915, // 1173: forge.Forge.FindSpxPartitionIds:input_type -> forge.SpxPartitionSearchFilter - 917, // 1174: forge.Forge.FindSpxPartitionsByIds:input_type -> forge.SpxPartitionsByIdsRequest - 169, // 1175: forge.Forge.CreateVpcPrefix:input_type -> forge.VpcPrefixCreationRequest - 170, // 1176: forge.Forge.SearchVpcPrefixes:input_type -> forge.VpcPrefixSearchQuery - 171, // 1177: forge.Forge.GetVpcPrefixes:input_type -> forge.VpcPrefixGetRequest - 174, // 1178: forge.Forge.UpdateVpcPrefix:input_type -> forge.VpcPrefixUpdateRequest - 175, // 1179: forge.Forge.DeleteVpcPrefix:input_type -> forge.VpcPrefixDeletionRequest - 181, // 1180: forge.Forge.CreateVpcPeering:input_type -> forge.VpcPeeringCreationRequest - 182, // 1181: forge.Forge.FindVpcPeeringIds:input_type -> forge.VpcPeeringSearchFilter - 183, // 1182: forge.Forge.FindVpcPeeringsByIds:input_type -> forge.VpcPeeringsByIdsRequest - 184, // 1183: forge.Forge.DeleteVpcPeering:input_type -> forge.VpcPeeringDeletionRequest - 251, // 1184: forge.Forge.FindNetworkSegmentIds:input_type -> forge.NetworkSegmentSearchFilter - 253, // 1185: forge.Forge.FindNetworkSegmentsByIds:input_type -> forge.NetworkSegmentsByIdsRequest - 245, // 1186: forge.Forge.CreateNetworkSegment:input_type -> forge.NetworkSegmentCreationRequest - 247, // 1187: forge.Forge.AttachNetworkSegmentToVpc:input_type -> forge.AttachNetworkSegmentToVpcRequest - 246, // 1188: forge.Forge.DeleteNetworkSegment:input_type -> forge.NetworkSegmentDeletionRequest - 150, // 1189: forge.Forge.NetworkSegmentsForVpc:input_type -> forge.VpcSearchQuery - 194, // 1190: forge.Forge.FindIBPartitionIds:input_type -> forge.IBPartitionSearchFilter - 195, // 1191: forge.Forge.FindIBPartitionsByIds:input_type -> forge.IBPartitionsByIdsRequest - 190, // 1192: forge.Forge.CreateIBPartition:input_type -> forge.IBPartitionCreationRequest - 191, // 1193: forge.Forge.UpdateIBPartition:input_type -> forge.IBPartitionUpdateRequest - 192, // 1194: forge.Forge.DeleteIBPartition:input_type -> forge.IBPartitionDeletionRequest - 154, // 1195: forge.Forge.IBPartitionsForTenant:input_type -> forge.TenantSearchQuery - 206, // 1196: forge.Forge.FindPowerShelves:input_type -> forge.PowerShelfQuery - 207, // 1197: forge.Forge.FindPowerShelfIds:input_type -> forge.PowerShelfSearchFilter - 208, // 1198: forge.Forge.FindPowerShelvesByIds:input_type -> forge.PowerShelvesByIdsRequest - 202, // 1199: forge.Forge.DeletePowerShelf:input_type -> forge.PowerShelfDeletionRequest - 920, // 1200: forge.Forge.AdminForceDeletePowerShelf:input_type -> forge.AdminForceDeletePowerShelfRequest - 204, // 1201: forge.Forge.SetPowerShelfMaintenance:input_type -> forge.PowerShelfMaintenanceRequest - 228, // 1202: forge.Forge.FindSwitches:input_type -> forge.SwitchQuery - 229, // 1203: forge.Forge.FindSwitchIds:input_type -> forge.SwitchSearchFilter - 230, // 1204: forge.Forge.FindSwitchesByIds:input_type -> forge.SwitchesByIdsRequest - 222, // 1205: forge.Forge.DeleteSwitch:input_type -> forge.SwitchDeletionRequest - 918, // 1206: forge.Forge.AdminForceDeleteSwitch:input_type -> forge.AdminForceDeleteSwitchRequest - 239, // 1207: forge.Forge.FindIBFabricIds:input_type -> forge.IBFabricSearchFilter - 264, // 1208: forge.Forge.AllocateInstance:input_type -> forge.InstanceAllocationRequest - 265, // 1209: forge.Forge.AllocateInstances:input_type -> forge.BatchInstanceAllocationRequest - 308, // 1210: forge.Forge.ReleaseInstance:input_type -> forge.InstanceReleaseRequest - 282, // 1211: forge.Forge.UpdateInstanceOperatingSystem:input_type -> forge.InstanceOperatingSystemUpdateRequest - 283, // 1212: forge.Forge.UpdateInstanceConfig:input_type -> forge.InstanceConfigUpdateRequest - 261, // 1213: forge.Forge.FindInstanceIds:input_type -> forge.InstanceSearchFilter - 263, // 1214: forge.Forge.FindInstancesByIds:input_type -> forge.InstancesByIdsRequest - 985, // 1215: forge.Forge.FindInstanceByMachineID:input_type -> common.MachineId - 379, // 1216: forge.Forge.GetManagedHostNetworkConfig:input_type -> forge.ManagedHostNetworkConfigRequest - 444, // 1217: forge.Forge.RecordDpuNetworkStatus:input_type -> forge.DpuNetworkStatus - 985, // 1218: forge.Forge.ListMachineHealthReports:input_type -> common.MachineId - 450, // 1219: forge.Forge.InsertMachineHealthReport:input_type -> forge.InsertMachineHealthReportRequest - 461, // 1220: forge.Forge.RemoveMachineHealthReport:input_type -> forge.RemoveMachineHealthReportRequest - 453, // 1221: forge.Forge.ListRackHealthReports:input_type -> forge.ListRackHealthReportsRequest - 451, // 1222: forge.Forge.InsertRackHealthReport:input_type -> forge.InsertRackHealthReportRequest - 452, // 1223: forge.Forge.RemoveRackHealthReport:input_type -> forge.RemoveRackHealthReportRequest - 456, // 1224: forge.Forge.ListSwitchHealthReports:input_type -> forge.ListSwitchHealthReportsRequest - 454, // 1225: forge.Forge.InsertSwitchHealthReport:input_type -> forge.InsertSwitchHealthReportRequest - 455, // 1226: forge.Forge.RemoveSwitchHealthReport:input_type -> forge.RemoveSwitchHealthReportRequest - 459, // 1227: forge.Forge.ListPowerShelfHealthReports:input_type -> forge.ListPowerShelfHealthReportsRequest - 457, // 1228: forge.Forge.InsertPowerShelfHealthReport:input_type -> forge.InsertPowerShelfHealthReportRequest - 458, // 1229: forge.Forge.RemovePowerShelfHealthReport:input_type -> forge.RemovePowerShelfHealthReportRequest - 462, // 1230: forge.Forge.ListNVLinkDomainHealthReports:input_type -> forge.ListNVLinkDomainHealthReportsRequest - 463, // 1231: forge.Forge.InsertNVLinkDomainHealthReport:input_type -> forge.InsertNVLinkDomainHealthReportRequest - 464, // 1232: forge.Forge.RemoveNVLinkDomainHealthReport:input_type -> forge.RemoveNVLinkDomainHealthReportRequest - 985, // 1233: forge.Forge.ListHealthReportOverrides:input_type -> common.MachineId - 450, // 1234: forge.Forge.InsertHealthReportOverride:input_type -> forge.InsertMachineHealthReportRequest - 461, // 1235: forge.Forge.RemoveHealthReportOverride:input_type -> forge.RemoveMachineHealthReportRequest - 398, // 1236: forge.Forge.DpuAgentUpgradeCheck:input_type -> forge.DpuAgentUpgradeCheckRequest - 400, // 1237: forge.Forge.DpuAgentUpgradePolicyAction:input_type -> forge.DpuAgentUpgradePolicyRequest - 1054, // 1238: forge.Forge.LookupRecord:input_type -> dns.DnsResourceRecordLookupRequest - 1055, // 1239: forge.Forge.GetAllDomains:input_type -> dns.GetAllDomainsRequest - 1056, // 1240: forge.Forge.GetAllDomainMetadata:input_type -> dns.DomainMetadataRequest - 256, // 1241: forge.Forge.InvokeInstancePower:input_type -> forge.InstancePowerRequest - 425, // 1242: forge.Forge.ForgeAgentControl:input_type -> forge.ForgeAgentControlRequest - 427, // 1243: forge.Forge.DiscoverMachine:input_type -> forge.MachineDiscoveryInfo - 431, // 1244: forge.Forge.RenewMachineCertificate:input_type -> forge.MachineCertificateRenewRequest - 428, // 1245: forge.Forge.DiscoveryCompleted:input_type -> forge.MachineDiscoveryCompletedRequest - 429, // 1246: forge.Forge.CleanupMachineCompleted:input_type -> forge.MachineCleanupInfo - 436, // 1247: forge.Forge.ReportForgeScoutError:input_type -> forge.ForgeScoutErrorReport - 355, // 1248: forge.Forge.DiscoverDhcp:input_type -> forge.DhcpDiscovery - 356, // 1249: forge.Forge.ExpireDhcpLease:input_type -> forge.ExpireDhcpLeaseRequest - 327, // 1250: forge.Forge.AssignStaticAddress:input_type -> forge.AssignStaticAddressRequest - 329, // 1251: forge.Forge.RemoveStaticAddress:input_type -> forge.RemoveStaticAddressRequest - 331, // 1252: forge.Forge.FindInterfaceAddresses:input_type -> forge.FindInterfaceAddressesRequest - 326, // 1253: forge.Forge.FindInterfaces:input_type -> forge.InterfaceSearchQuery - 325, // 1254: forge.Forge.DeleteInterface:input_type -> forge.InterfaceDeleteQuery - 500, // 1255: forge.Forge.FindIpAddress:input_type -> forge.FindIpAddressRequest - 311, // 1256: forge.Forge.FindMachineIds:input_type -> forge.MachineSearchConfig - 310, // 1257: forge.Forge.FindMachinesByIds:input_type -> forge.MachinesByIdsRequest - 312, // 1258: forge.Forge.FindMachineStateHistories:input_type -> forge.MachineStateHistoriesRequest - 315, // 1259: forge.Forge.FindMachineHealthHistories:input_type -> forge.MachineHealthHistoriesRequest - 205, // 1260: forge.Forge.FindPowerShelfStateHistories:input_type -> forge.PowerShelfStateHistoriesRequest - 741, // 1261: forge.Forge.FindRackStateHistories:input_type -> forge.RackStateHistoriesRequest - 226, // 1262: forge.Forge.FindSwitchStateHistories:input_type -> forge.SwitchStateHistoriesRequest - 249, // 1263: forge.Forge.FindNetworkSegmentStateHistories:input_type -> forge.NetworkSegmentStateHistoriesRequest - 177, // 1264: forge.Forge.FindVpcPrefixStateHistories:input_type -> forge.VpcPrefixStateHistoriesRequest - 320, // 1265: forge.Forge.FindTenantOrganizationIds:input_type -> forge.TenantSearchFilter - 319, // 1266: forge.Forge.FindTenantsByOrganizationIds:input_type -> forge.TenantByOrganizationIdsRequest - 1044, // 1267: forge.Forge.FindConnectedDevicesByDpuMachineIds:input_type -> common.MachineIdList - 525, // 1268: forge.Forge.FindMachineIdsByBmcIps:input_type -> forge.BmcIpList - 526, // 1269: forge.Forge.FindMacAddressByBmcIp:input_type -> forge.BmcIp - 504, // 1270: forge.Forge.FindBmcIps:input_type -> forge.FindBmcIpsRequest - 502, // 1271: forge.Forge.IdentifyUuid:input_type -> forge.IdentifyUuidRequest - 505, // 1272: forge.Forge.IdentifyMac:input_type -> forge.IdentifyMacRequest - 507, // 1273: forge.Forge.IdentifySerial:input_type -> forge.IdentifySerialRequest - 421, // 1274: forge.Forge.GetBMCMetaData:input_type -> forge.BMCMetaDataGetRequest - 423, // 1275: forge.Forge.UpdateMachineCredentials:input_type -> forge.MachineCredentialsUpdateRequest - 438, // 1276: forge.Forge.GetPxeInstructions:input_type -> forge.PxeInstructionRequest - 442, // 1277: forge.Forge.GetCloudInitInstructions:input_type -> forge.CloudInitInstructionsRequest - 142, // 1278: forge.Forge.Echo:input_type -> forge.EchoRequest - 469, // 1279: forge.Forge.CreateTenant:input_type -> forge.CreateTenantRequest - 473, // 1280: forge.Forge.FindTenant:input_type -> forge.FindTenantRequest - 471, // 1281: forge.Forge.UpdateTenant:input_type -> forge.UpdateTenantRequest - 479, // 1282: forge.Forge.CreateTenantKeyset:input_type -> forge.CreateTenantKeysetRequest - 486, // 1283: forge.Forge.FindTenantKeysetIds:input_type -> forge.TenantKeysetSearchFilter - 488, // 1284: forge.Forge.FindTenantKeysetsByIds:input_type -> forge.TenantKeysetsByIdsRequest - 482, // 1285: forge.Forge.UpdateTenantKeyset:input_type -> forge.UpdateTenantKeysetRequest - 484, // 1286: forge.Forge.DeleteTenantKeyset:input_type -> forge.DeleteTenantKeysetRequest - 489, // 1287: forge.Forge.ValidateTenantPublicKey:input_type -> forge.ValidateTenantPublicKeyRequest - 362, // 1288: forge.Forge.GetBmcCredentials:input_type -> forge.GetBmcCredentialsRequest - 363, // 1289: forge.Forge.GetSwitchNvosCredentials:input_type -> forge.GetSwitchNvosCredentialsRequest - 396, // 1290: forge.Forge.GetAllManagedHostNetworkStatus:input_type -> forge.ManagedHostNetworkStatusRequest - 366, // 1291: forge.Forge.GetSiteExplorationReport:input_type -> forge.GetSiteExplorationRequest - 1057, // 1292: forge.Forge.GetSiteExplorerLastRun:input_type -> google.protobuf.Empty - 367, // 1293: forge.Forge.ClearSiteExplorationError:input_type -> forge.ClearSiteExplorationErrorRequest - 373, // 1294: forge.Forge.IsBmcInManagedHost:input_type -> forge.BmcEndpointRequest - 373, // 1295: forge.Forge.BmcCredentialStatus:input_type -> forge.BmcEndpointRequest - 373, // 1296: forge.Forge.Explore:input_type -> forge.BmcEndpointRequest - 368, // 1297: forge.Forge.ReExploreEndpoint:input_type -> forge.ReExploreEndpointRequest - 369, // 1298: forge.Forge.RefreshEndpointReport:input_type -> forge.RefreshEndpointReportRequest - 370, // 1299: forge.Forge.DeleteExploredEndpoint:input_type -> forge.DeleteExploredEndpointRequest - 371, // 1300: forge.Forge.PauseExploredEndpointRemediation:input_type -> forge.PauseExploredEndpointRemediationRequest - 1058, // 1301: forge.Forge.FindExploredEndpointIds:input_type -> site_explorer.ExploredEndpointSearchFilter - 1059, // 1302: forge.Forge.FindExploredEndpointsByIds:input_type -> site_explorer.ExploredEndpointsByIdsRequest - 1060, // 1303: forge.Forge.FindExploredManagedHostIds:input_type -> site_explorer.ExploredManagedHostSearchFilter - 1061, // 1304: forge.Forge.FindExploredManagedHostsByIds:input_type -> site_explorer.ExploredManagedHostsByIdsRequest - 1062, // 1305: forge.Forge.FindExploredMlxDeviceHostIds:input_type -> site_explorer.ExploredMlxDeviceHostSearchFilter - 1063, // 1306: forge.Forge.FindExploredMlxDevicesByIds:input_type -> site_explorer.ExploredMlxDevicesByIdsRequest - 377, // 1307: forge.Forge.UpdateMachineHardwareInfo:input_type -> forge.UpdateMachineHardwareInfoRequest - 402, // 1308: forge.Forge.AdminForceDeleteMachine:input_type -> forge.AdminForceDeleteMachineRequest - 491, // 1309: forge.Forge.AdminListResourcePools:input_type -> forge.ListResourcePoolsRequest - 494, // 1310: forge.Forge.AdminGrowResourcePool:input_type -> forge.GrowResourcePoolRequest - 339, // 1311: forge.Forge.UpdateMachineMetadata:input_type -> forge.MachineMetadataUpdateRequest - 340, // 1312: forge.Forge.UpdateRackMetadata:input_type -> forge.RackMetadataUpdateRequest - 341, // 1313: forge.Forge.UpdateSwitchMetadata:input_type -> forge.SwitchMetadataUpdateRequest - 342, // 1314: forge.Forge.UpdatePowerShelfMetadata:input_type -> forge.PowerShelfMetadataUpdateRequest - 755, // 1315: forge.Forge.UpdateMachineNvLinkInfo:input_type -> forge.UpdateMachineNvLinkInfoRequest - 498, // 1316: forge.Forge.SetMaintenance:input_type -> forge.MaintenanceRequest - 499, // 1317: forge.Forge.SetDynamicConfig:input_type -> forge.SetDynamicConfigRequest - 509, // 1318: forge.Forge.TriggerDpuReprovisioning:input_type -> forge.DpuReprovisioningRequest - 510, // 1319: forge.Forge.ListDpuWaitingForReprovisioning:input_type -> forge.DpuReprovisioningListRequest - 512, // 1320: forge.Forge.TriggerHostReprovisioning:input_type -> forge.HostReprovisioningRequest - 513, // 1321: forge.Forge.ListHostsWaitingForReprovisioning:input_type -> forge.HostReprovisioningListRequest - 985, // 1322: forge.Forge.MarkManualFirmwareUpgradeComplete:input_type -> common.MachineId - 564, // 1323: forge.Forge.ReportScoutFirmwareUpgradeStatus:input_type -> forge.ScoutFirmwareUpgradeStatusRequest - 519, // 1324: forge.Forge.GetDpuInfoList:input_type -> forge.GetDpuInfoListRequest - 1006, // 1325: forge.Forge.GetMachineBootOverride:input_type -> common.MachineInterfaceId - 522, // 1326: forge.Forge.SetMachineBootOverride:input_type -> forge.MachineBootOverride - 1006, // 1327: forge.Forge.ClearMachineBootOverride:input_type -> common.MachineInterfaceId - 940, // 1328: forge.Forge.GetMachineBootInterfaces:input_type -> forge.GetMachineBootInterfacesRequest - 531, // 1329: forge.Forge.GetNetworkTopology:input_type -> forge.NetworkTopologyRequest - 532, // 1330: forge.Forge.FindNetworkDevicesByDeviceIds:input_type -> forge.NetworkDeviceIdList - 130, // 1331: forge.Forge.CreateCredential:input_type -> forge.CredentialCreationRequest - 131, // 1332: forge.Forge.DeleteCredential:input_type -> forge.CredentialDeletionRequest - 134, // 1333: forge.Forge.RotateCredential:input_type -> forge.RotateCredentialRequest - 136, // 1334: forge.Forge.GetCredentialRotationStatus:input_type -> forge.CredentialRotationStatusRequest - 1057, // 1335: forge.Forge.GetRouteServers:input_type -> google.protobuf.Empty - 534, // 1336: forge.Forge.AddRouteServers:input_type -> forge.RouteServers - 534, // 1337: forge.Forge.RemoveRouteServers:input_type -> forge.RouteServers - 534, // 1338: forge.Forge.ReplaceRouteServers:input_type -> forge.RouteServers - 343, // 1339: forge.Forge.UpdateAgentReportedInventory:input_type -> forge.DpuAgentInventoryReport - 303, // 1340: forge.Forge.UpdateInstancePhoneHomeLastContact:input_type -> forge.InstancePhoneHomeLastContactRequest - 537, // 1341: forge.Forge.SetHostUefiPassword:input_type -> forge.SetHostUefiPasswordRequest - 539, // 1342: forge.Forge.ClearHostUefiPassword:input_type -> forge.ClearHostUefiPasswordRequest - 552, // 1343: forge.Forge.AddExpectedMachine:input_type -> forge.ExpectedMachine - 553, // 1344: forge.Forge.DeleteExpectedMachine:input_type -> forge.ExpectedMachineRequest - 552, // 1345: forge.Forge.UpdateExpectedMachine:input_type -> forge.ExpectedMachine - 553, // 1346: forge.Forge.GetExpectedMachine:input_type -> forge.ExpectedMachineRequest - 1057, // 1347: forge.Forge.GetAllExpectedMachines:input_type -> google.protobuf.Empty - 554, // 1348: forge.Forge.ReplaceAllExpectedMachines:input_type -> forge.ExpectedMachineList - 1057, // 1349: forge.Forge.DeleteAllExpectedMachines:input_type -> google.protobuf.Empty - 1057, // 1350: forge.Forge.GetAllExpectedMachinesLinked:input_type -> google.protobuf.Empty - 1057, // 1351: forge.Forge.GetAllUnexpectedMachines:input_type -> google.protobuf.Empty - 559, // 1352: forge.Forge.CreateExpectedMachines:input_type -> forge.BatchExpectedMachineOperationRequest - 559, // 1353: forge.Forge.UpdateExpectedMachines:input_type -> forge.BatchExpectedMachineOperationRequest - 209, // 1354: forge.Forge.AddExpectedPowerShelf:input_type -> forge.ExpectedPowerShelf - 210, // 1355: forge.Forge.DeleteExpectedPowerShelf:input_type -> forge.ExpectedPowerShelfRequest - 209, // 1356: forge.Forge.UpdateExpectedPowerShelf:input_type -> forge.ExpectedPowerShelf - 210, // 1357: forge.Forge.GetExpectedPowerShelf:input_type -> forge.ExpectedPowerShelfRequest - 1057, // 1358: forge.Forge.GetAllExpectedPowerShelves:input_type -> google.protobuf.Empty - 211, // 1359: forge.Forge.ReplaceAllExpectedPowerShelves:input_type -> forge.ExpectedPowerShelfList - 1057, // 1360: forge.Forge.DeleteAllExpectedPowerShelves:input_type -> google.protobuf.Empty - 1057, // 1361: forge.Forge.GetAllExpectedPowerShelvesLinked:input_type -> google.protobuf.Empty - 231, // 1362: forge.Forge.AddExpectedSwitch:input_type -> forge.ExpectedSwitch - 232, // 1363: forge.Forge.DeleteExpectedSwitch:input_type -> forge.ExpectedSwitchRequest - 231, // 1364: forge.Forge.UpdateExpectedSwitch:input_type -> forge.ExpectedSwitch - 232, // 1365: forge.Forge.GetExpectedSwitch:input_type -> forge.ExpectedSwitchRequest - 1057, // 1366: forge.Forge.GetAllExpectedSwitches:input_type -> google.protobuf.Empty - 233, // 1367: forge.Forge.ReplaceAllExpectedSwitches:input_type -> forge.ExpectedSwitchList - 1057, // 1368: forge.Forge.DeleteAllExpectedSwitches:input_type -> google.protobuf.Empty - 1057, // 1369: forge.Forge.GetAllExpectedSwitchesLinked:input_type -> google.protobuf.Empty - 236, // 1370: forge.Forge.AddExpectedRack:input_type -> forge.ExpectedRack - 237, // 1371: forge.Forge.DeleteExpectedRack:input_type -> forge.ExpectedRackRequest - 236, // 1372: forge.Forge.UpdateExpectedRack:input_type -> forge.ExpectedRack - 237, // 1373: forge.Forge.GetExpectedRack:input_type -> forge.ExpectedRackRequest - 1057, // 1374: forge.Forge.GetAllExpectedRacks:input_type -> google.protobuf.Empty - 238, // 1375: forge.Forge.ReplaceAllExpectedRacks:input_type -> forge.ExpectedRackList - 1057, // 1376: forge.Forge.DeleteAllExpectedRacks:input_type -> google.protobuf.Empty - 128, // 1377: forge.Forge.AttestQuote:input_type -> forge.AttestQuoteRequest - 634, // 1378: forge.Forge.CreateInstanceType:input_type -> forge.CreateInstanceTypeRequest - 636, // 1379: forge.Forge.FindInstanceTypeIds:input_type -> forge.FindInstanceTypeIdsRequest - 638, // 1380: forge.Forge.FindInstanceTypesByIds:input_type -> forge.FindInstanceTypesByIdsRequest - 643, // 1381: forge.Forge.UpdateInstanceType:input_type -> forge.UpdateInstanceTypeRequest - 640, // 1382: forge.Forge.DeleteInstanceType:input_type -> forge.DeleteInstanceTypeRequest - 644, // 1383: forge.Forge.AssociateMachinesWithInstanceType:input_type -> forge.AssociateMachinesWithInstanceTypeRequest - 646, // 1384: forge.Forge.RemoveMachineInstanceTypeAssociation:input_type -> forge.RemoveMachineInstanceTypeAssociationRequest - 1064, // 1385: forge.Forge.CreateMeasurementBundle:input_type -> measured_boot.CreateMeasurementBundleRequest - 1065, // 1386: forge.Forge.DeleteMeasurementBundle:input_type -> measured_boot.DeleteMeasurementBundleRequest - 1066, // 1387: forge.Forge.RenameMeasurementBundle:input_type -> measured_boot.RenameMeasurementBundleRequest - 1067, // 1388: forge.Forge.UpdateMeasurementBundle:input_type -> measured_boot.UpdateMeasurementBundleRequest - 1068, // 1389: forge.Forge.ShowMeasurementBundle:input_type -> measured_boot.ShowMeasurementBundleRequest - 1069, // 1390: forge.Forge.ShowMeasurementBundles:input_type -> measured_boot.ShowMeasurementBundlesRequest - 1070, // 1391: forge.Forge.ListMeasurementBundles:input_type -> measured_boot.ListMeasurementBundlesRequest - 1071, // 1392: forge.Forge.ListMeasurementBundleMachines:input_type -> measured_boot.ListMeasurementBundleMachinesRequest - 1072, // 1393: forge.Forge.FindClosestBundleMatch:input_type -> measured_boot.FindClosestBundleMatchRequest - 1073, // 1394: forge.Forge.DeleteMeasurementJournal:input_type -> measured_boot.DeleteMeasurementJournalRequest - 1074, // 1395: forge.Forge.ShowMeasurementJournal:input_type -> measured_boot.ShowMeasurementJournalRequest - 1075, // 1396: forge.Forge.ShowMeasurementJournals:input_type -> measured_boot.ShowMeasurementJournalsRequest - 1076, // 1397: forge.Forge.ListMeasurementJournal:input_type -> measured_boot.ListMeasurementJournalRequest - 1077, // 1398: forge.Forge.AttestCandidateMachine:input_type -> measured_boot.AttestCandidateMachineRequest - 1078, // 1399: forge.Forge.ShowCandidateMachine:input_type -> measured_boot.ShowCandidateMachineRequest - 1079, // 1400: forge.Forge.ShowCandidateMachines:input_type -> measured_boot.ShowCandidateMachinesRequest - 1080, // 1401: forge.Forge.ListCandidateMachines:input_type -> measured_boot.ListCandidateMachinesRequest - 1081, // 1402: forge.Forge.CreateMeasurementSystemProfile:input_type -> measured_boot.CreateMeasurementSystemProfileRequest - 1082, // 1403: forge.Forge.DeleteMeasurementSystemProfile:input_type -> measured_boot.DeleteMeasurementSystemProfileRequest - 1083, // 1404: forge.Forge.RenameMeasurementSystemProfile:input_type -> measured_boot.RenameMeasurementSystemProfileRequest - 1084, // 1405: forge.Forge.ShowMeasurementSystemProfile:input_type -> measured_boot.ShowMeasurementSystemProfileRequest - 1085, // 1406: forge.Forge.ShowMeasurementSystemProfiles:input_type -> measured_boot.ShowMeasurementSystemProfilesRequest - 1086, // 1407: forge.Forge.ListMeasurementSystemProfiles:input_type -> measured_boot.ListMeasurementSystemProfilesRequest - 1087, // 1408: forge.Forge.ListMeasurementSystemProfileBundles:input_type -> measured_boot.ListMeasurementSystemProfileBundlesRequest - 1088, // 1409: forge.Forge.ListMeasurementSystemProfileMachines:input_type -> measured_boot.ListMeasurementSystemProfileMachinesRequest - 1089, // 1410: forge.Forge.CreateMeasurementReport:input_type -> measured_boot.CreateMeasurementReportRequest - 1090, // 1411: forge.Forge.DeleteMeasurementReport:input_type -> measured_boot.DeleteMeasurementReportRequest - 1091, // 1412: forge.Forge.PromoteMeasurementReport:input_type -> measured_boot.PromoteMeasurementReportRequest - 1092, // 1413: forge.Forge.RevokeMeasurementReport:input_type -> measured_boot.RevokeMeasurementReportRequest - 1093, // 1414: forge.Forge.ShowMeasurementReportForId:input_type -> measured_boot.ShowMeasurementReportForIdRequest - 1094, // 1415: forge.Forge.ShowMeasurementReportsForMachine:input_type -> measured_boot.ShowMeasurementReportsForMachineRequest - 1095, // 1416: forge.Forge.ShowMeasurementReports:input_type -> measured_boot.ShowMeasurementReportsRequest - 1096, // 1417: forge.Forge.ListMeasurementReport:input_type -> measured_boot.ListMeasurementReportRequest - 1097, // 1418: forge.Forge.MatchMeasurementReport:input_type -> measured_boot.MatchMeasurementReportRequest - 1098, // 1419: forge.Forge.ImportSiteMeasurements:input_type -> measured_boot.ImportSiteMeasurementsRequest - 1099, // 1420: forge.Forge.ExportSiteMeasurements:input_type -> measured_boot.ExportSiteMeasurementsRequest - 1100, // 1421: forge.Forge.AddMeasurementTrustedMachine:input_type -> measured_boot.AddMeasurementTrustedMachineRequest - 1101, // 1422: forge.Forge.RemoveMeasurementTrustedMachine:input_type -> measured_boot.RemoveMeasurementTrustedMachineRequest - 1102, // 1423: forge.Forge.AddMeasurementTrustedProfile:input_type -> measured_boot.AddMeasurementTrustedProfileRequest - 1103, // 1424: forge.Forge.RemoveMeasurementTrustedProfile:input_type -> measured_boot.RemoveMeasurementTrustedProfileRequest - 1104, // 1425: forge.Forge.ListMeasurementTrustedMachines:input_type -> measured_boot.ListMeasurementTrustedMachinesRequest - 1105, // 1426: forge.Forge.ListMeasurementTrustedProfiles:input_type -> measured_boot.ListMeasurementTrustedProfilesRequest - 1106, // 1427: forge.Forge.ListAttestationSummary:input_type -> measured_boot.ListAttestationSummaryRequest - 665, // 1428: forge.Forge.CreateNetworkSecurityGroup:input_type -> forge.CreateNetworkSecurityGroupRequest - 667, // 1429: forge.Forge.FindNetworkSecurityGroupIds:input_type -> forge.FindNetworkSecurityGroupIdsRequest - 669, // 1430: forge.Forge.FindNetworkSecurityGroupsByIds:input_type -> forge.FindNetworkSecurityGroupsByIdsRequest - 672, // 1431: forge.Forge.UpdateNetworkSecurityGroup:input_type -> forge.UpdateNetworkSecurityGroupRequest - 673, // 1432: forge.Forge.DeleteNetworkSecurityGroup:input_type -> forge.DeleteNetworkSecurityGroupRequest - 679, // 1433: forge.Forge.GetNetworkSecurityGroupPropagationStatus:input_type -> forge.GetNetworkSecurityGroupPropagationStatusRequest - 682, // 1434: forge.Forge.GetNetworkSecurityGroupAttachments:input_type -> forge.GetNetworkSecurityGroupAttachmentsRequest - 541, // 1435: forge.Forge.CreateOsImage:input_type -> forge.OsImageAttributes - 545, // 1436: forge.Forge.DeleteOsImage:input_type -> forge.DeleteOsImageRequest - 543, // 1437: forge.Forge.ListOsImage:input_type -> forge.ListOsImageRequest - 995, // 1438: forge.Forge.GetOsImage:input_type -> common.UUID - 541, // 1439: forge.Forge.UpdateOsImage:input_type -> forge.OsImageAttributes - 547, // 1440: forge.Forge.GetIpxeTemplate:input_type -> forge.GetIpxeTemplateRequest - 548, // 1441: forge.Forge.ListIpxeTemplates:input_type -> forge.ListIpxeTemplatesRequest - 563, // 1442: forge.Forge.RebootCompleted:input_type -> forge.MachineRebootCompletedRequest - 568, // 1443: forge.Forge.PersistValidationResult:input_type -> forge.MachineValidationResultPostRequest - 570, // 1444: forge.Forge.GetMachineValidationResults:input_type -> forge.MachineValidationGetRequest - 565, // 1445: forge.Forge.MachineValidationCompleted:input_type -> forge.MachineValidationCompletedRequest - 573, // 1446: forge.Forge.MachineSetAutoUpdate:input_type -> forge.MachineSetAutoUpdateRequest - 575, // 1447: forge.Forge.GetMachineValidationExternalConfig:input_type -> forge.GetMachineValidationExternalConfigRequest - 578, // 1448: forge.Forge.GetMachineValidationExternalConfigs:input_type -> forge.GetMachineValidationExternalConfigsRequest - 580, // 1449: forge.Forge.AddUpdateMachineValidationExternalConfig:input_type -> forge.AddUpdateMachineValidationExternalConfigRequest - 597, // 1450: forge.Forge.GetMachineValidationRuns:input_type -> forge.MachineValidationRunListGetRequest - 598, // 1451: forge.Forge.FindMachineValidationRunItemIds:input_type -> forge.MachineValidationRunItemSearchFilter - 600, // 1452: forge.Forge.FindMachineValidationRunItemsByIds:input_type -> forge.MachineValidationRunItemsByIdsRequest - 603, // 1453: forge.Forge.GetMachineValidationAttempt:input_type -> forge.MachineValidationAttemptGetRequest - 605, // 1454: forge.Forge.HeartbeatMachineValidationRun:input_type -> forge.MachineValidationHeartbeatRequest - 581, // 1455: forge.Forge.RemoveMachineValidationExternalConfig:input_type -> forge.RemoveMachineValidationExternalConfigRequest - 609, // 1456: forge.Forge.GetMachineValidationTests:input_type -> forge.MachineValidationTestsGetRequest - 611, // 1457: forge.Forge.AddMachineValidationTest:input_type -> forge.MachineValidationTestAddRequest - 610, // 1458: forge.Forge.UpdateMachineValidationTest:input_type -> forge.MachineValidationTestUpdateRequest - 614, // 1459: forge.Forge.MachineValidationTestVerfied:input_type -> forge.MachineValidationTestVerfiedRequest - 618, // 1460: forge.Forge.MachineValidationTestNextVersion:input_type -> forge.MachineValidationTestNextVersionRequest - 619, // 1461: forge.Forge.MachineValidationTestEnableDisableTest:input_type -> forge.MachineValidationTestEnableDisableTestRequest - 621, // 1462: forge.Forge.UpdateMachineValidationRun:input_type -> forge.MachineValidationRunRequest - 415, // 1463: forge.Forge.AdminBmcReset:input_type -> forge.AdminBmcResetRequest - 592, // 1464: forge.Forge.AdminPowerControl:input_type -> forge.AdminPowerControlRequest - 373, // 1465: forge.Forge.DisableSecureBoot:input_type -> forge.BmcEndpointRequest - 405, // 1466: forge.Forge.Lockdown:input_type -> forge.LockdownRequest - 407, // 1467: forge.Forge.LockdownStatus:input_type -> forge.LockdownStatusRequest - 409, // 1468: forge.Forge.MachineSetup:input_type -> forge.MachineSetupRequest - 411, // 1469: forge.Forge.SetDpuFirstBootOrder:input_type -> forge.SetDpuFirstBootOrderRequest - 788, // 1470: forge.Forge.CreateBmcUser:input_type -> forge.CreateBmcUserRequest - 790, // 1471: forge.Forge.DeleteBmcUser:input_type -> forge.DeleteBmcUserRequest - 792, // 1472: forge.Forge.SetBmcRootPassword:input_type -> forge.SetBmcRootPasswordRequest - 794, // 1473: forge.Forge.ProbeBmcVendor:input_type -> forge.ProbeBmcVendorRequest - 417, // 1474: forge.Forge.EnableInfiniteBoot:input_type -> forge.EnableInfiniteBootRequest - 419, // 1475: forge.Forge.IsInfiniteBootEnabled:input_type -> forge.IsInfiniteBootEnabledRequest - 582, // 1476: forge.Forge.OnDemandMachineValidation:input_type -> forge.MachineValidationOnDemandRequest - 590, // 1477: forge.Forge.OnDemandRackMaintenance:input_type -> forge.RackMaintenanceOnDemandRequest - 124, // 1478: forge.Forge.TpmAddCaCert:input_type -> forge.TpmCaCert - 1057, // 1479: forge.Forge.TpmShowCaCerts:input_type -> google.protobuf.Empty - 1057, // 1480: forge.Forge.TpmShowUnmatchedEkCerts:input_type -> google.protobuf.Empty - 121, // 1481: forge.Forge.TpmDeleteCaCert:input_type -> forge.TpmCaCertId - 648, // 1482: forge.Forge.RedfishBrowse:input_type -> forge.RedfishBrowseRequest - 650, // 1483: forge.Forge.RedfishListActions:input_type -> forge.RedfishListActionsRequest - 655, // 1484: forge.Forge.RedfishCreateAction:input_type -> forge.RedfishCreateActionRequest - 657, // 1485: forge.Forge.RedfishApproveAction:input_type -> forge.RedfishActionID - 657, // 1486: forge.Forge.RedfishApplyAction:input_type -> forge.RedfishActionID - 657, // 1487: forge.Forge.RedfishCancelAction:input_type -> forge.RedfishActionID - 661, // 1488: forge.Forge.UfmBrowse:input_type -> forge.UfmBrowseRequest - 685, // 1489: forge.Forge.GetDesiredFirmwareVersions:input_type -> forge.GetDesiredFirmwareVersionsRequest - 798, // 1490: forge.Forge.UpsertHostFirmwareConfig:input_type -> forge.UpsertHostFirmwareConfigRequest - 799, // 1491: forge.Forge.DeleteHostFirmwareConfig:input_type -> forge.DeleteHostFirmwareConfigRequest - 701, // 1492: forge.Forge.CreateSku:input_type -> forge.SkuList - 985, // 1493: forge.Forge.GenerateSkuFromMachine:input_type -> common.MachineId - 985, // 1494: forge.Forge.VerifySkuForMachine:input_type -> common.MachineId - 699, // 1495: forge.Forge.AssignSkuToMachine:input_type -> forge.SkuMachinePair - 700, // 1496: forge.Forge.RemoveSkuAssociation:input_type -> forge.RemoveSkuRequest - 702, // 1497: forge.Forge.DeleteSku:input_type -> forge.SkuIdList - 1057, // 1498: forge.Forge.GetAllSkuIds:input_type -> google.protobuf.Empty - 704, // 1499: forge.Forge.FindSkusByIds:input_type -> forge.SkusByIdsRequest - 714, // 1500: forge.Forge.UpdateSkuMetadata:input_type -> forge.SkuUpdateMetadataRequest - 698, // 1501: forge.Forge.ReplaceSku:input_type -> forge.Sku - 385, // 1502: forge.Forge.GetManagedHostQuarantineState:input_type -> forge.GetManagedHostQuarantineStateRequest - 387, // 1503: forge.Forge.SetManagedHostQuarantineState:input_type -> forge.SetManagedHostQuarantineStateRequest - 389, // 1504: forge.Forge.ClearManagedHostQuarantineState:input_type -> forge.ClearManagedHostQuarantineStateRequest - 985, // 1505: forge.Forge.ResetHostReprovisioning:input_type -> common.MachineId - 376, // 1506: forge.Forge.CopyBfbToDpuRshim:input_type -> forge.CopyBfbToDpuRshimRequest - 1057, // 1507: forge.Forge.GetAllDpaInterfaceIds:input_type -> google.protobuf.Empty - 709, // 1508: forge.Forge.FindDpaInterfacesByIds:input_type -> forge.DpaInterfacesByIdsRequest - 707, // 1509: forge.Forge.CreateDpaInterface:input_type -> forge.DpaInterfaceCreationRequest - 707, // 1510: forge.Forge.EnsureDpaInterface:input_type -> forge.DpaInterfaceCreationRequest - 712, // 1511: forge.Forge.DeleteDpaInterface:input_type -> forge.DpaInterfaceDeletionRequest - 715, // 1512: forge.Forge.GetPowerOptions:input_type -> forge.PowerOptionRequest - 716, // 1513: forge.Forge.UpdatePowerOption:input_type -> forge.PowerOptionUpdateRequest - 373, // 1514: forge.Forge.AllowIngestionAndPowerOn:input_type -> forge.BmcEndpointRequest - 373, // 1515: forge.Forge.DetermineMachineIngestionState:input_type -> forge.BmcEndpointRequest - 735, // 1516: forge.Forge.FindRackIds:input_type -> forge.RackSearchFilter - 737, // 1517: forge.Forge.FindRacksByIds:input_type -> forge.RacksByIdsRequest - 732, // 1518: forge.Forge.GetRack:input_type -> forge.GetRackRequest - 742, // 1519: forge.Forge.DeleteRack:input_type -> forge.DeleteRackRequest - 743, // 1520: forge.Forge.AdminForceDeleteRack:input_type -> forge.AdminForceDeleteRackRequest - 750, // 1521: forge.Forge.GetRackProfile:input_type -> forge.GetRackProfileRequest - 721, // 1522: forge.Forge.CreateComputeAllocation:input_type -> forge.CreateComputeAllocationRequest - 723, // 1523: forge.Forge.FindComputeAllocationIds:input_type -> forge.FindComputeAllocationIdsRequest - 725, // 1524: forge.Forge.FindComputeAllocationsByIds:input_type -> forge.FindComputeAllocationsByIdsRequest - 728, // 1525: forge.Forge.UpdateComputeAllocation:input_type -> forge.UpdateComputeAllocationRequest - 729, // 1526: forge.Forge.DeleteComputeAllocation:input_type -> forge.DeleteComputeAllocationRequest - 796, // 1527: forge.Forge.SetFirmwareUpdateTimeWindow:input_type -> forge.SetFirmwareUpdateTimeWindowRequest - 805, // 1528: forge.Forge.ListHostFirmware:input_type -> forge.ListHostFirmwareRequest - 1107, // 1529: forge.Forge.PublishMlxDeviceReport:input_type -> mlx_device.PublishMlxDeviceReportRequest - 1108, // 1530: forge.Forge.PublishMlxObservationReport:input_type -> mlx_device.PublishMlxObservationReportRequest - 808, // 1531: forge.Forge.TrimTable:input_type -> forge.TrimTableRequest - 1057, // 1532: forge.Forge.ListNvlinkNmxcEndpoints:input_type -> google.protobuf.Empty - 810, // 1533: forge.Forge.CreateNvlinkNmxcEndpoint:input_type -> forge.NvlinkNmxcEndpoint - 810, // 1534: forge.Forge.UpdateNvlinkNmxcEndpoint:input_type -> forge.NvlinkNmxcEndpoint - 812, // 1535: forge.Forge.DeleteNvlinkNmxcEndpoint:input_type -> forge.DeleteNvlinkNmxcEndpointRequest - 813, // 1536: forge.Forge.CreateRemediation:input_type -> forge.CreateRemediationRequest - 818, // 1537: forge.Forge.ApproveRemediation:input_type -> forge.ApproveRemediationRequest - 819, // 1538: forge.Forge.RevokeRemediation:input_type -> forge.RevokeRemediationRequest - 820, // 1539: forge.Forge.EnableRemediation:input_type -> forge.EnableRemediationRequest - 821, // 1540: forge.Forge.DisableRemediation:input_type -> forge.DisableRemediationRequest - 1057, // 1541: forge.Forge.FindRemediationIds:input_type -> google.protobuf.Empty - 815, // 1542: forge.Forge.FindRemediationsByIds:input_type -> forge.RemediationIdList - 822, // 1543: forge.Forge.FindAppliedRemediationIds:input_type -> forge.FindAppliedRemediationIdsRequest - 824, // 1544: forge.Forge.FindAppliedRemediations:input_type -> forge.FindAppliedRemediationsRequest - 827, // 1545: forge.Forge.GetNextRemediationForMachine:input_type -> forge.GetNextRemediationForMachineRequest - 829, // 1546: forge.Forge.RemediationApplied:input_type -> forge.RemediationAppliedRequest - 831, // 1547: forge.Forge.SetPrimaryDpu:input_type -> forge.SetPrimaryDpuRequest - 832, // 1548: forge.Forge.SetPrimaryInterface:input_type -> forge.SetPrimaryInterfaceRequest - 838, // 1549: forge.Forge.CreateDpuExtensionService:input_type -> forge.CreateDpuExtensionServiceRequest - 839, // 1550: forge.Forge.UpdateDpuExtensionService:input_type -> forge.UpdateDpuExtensionServiceRequest - 840, // 1551: forge.Forge.DeleteDpuExtensionService:input_type -> forge.DeleteDpuExtensionServiceRequest - 842, // 1552: forge.Forge.FindDpuExtensionServiceIds:input_type -> forge.DpuExtensionServiceSearchFilter - 844, // 1553: forge.Forge.FindDpuExtensionServicesByIds:input_type -> forge.DpuExtensionServicesByIdsRequest - 846, // 1554: forge.Forge.GetDpuExtensionServiceVersionsInfo:input_type -> forge.GetDpuExtensionServiceVersionsInfoRequest - 848, // 1555: forge.Forge.FindInstancesByDpuExtensionService:input_type -> forge.FindInstancesByDpuExtensionServiceRequest - 96, // 1556: forge.Forge.TriggerMachineAttestation:input_type -> forge.SpdmMachineAttestationTriggerRequest - 985, // 1557: forge.Forge.CancelMachineAttestation:input_type -> common.MachineId - 97, // 1558: forge.Forge.ListAttestationMachines:input_type -> forge.SpdmListAttestationMachinesRequest - 985, // 1559: forge.Forge.GetAttestationMachine:input_type -> common.MachineId - 99, // 1560: forge.Forge.SignMachineIdentity:input_type -> forge.MachineIdentityRequest - 101, // 1561: forge.Forge.GetTenantIdentityConfiguration:input_type -> forge.GetTenantIdentityConfigRequest - 104, // 1562: forge.Forge.SetTenantIdentityConfiguration:input_type -> forge.SetTenantIdentityConfigRequest - 101, // 1563: forge.Forge.DeleteTenantIdentityConfiguration:input_type -> forge.GetTenantIdentityConfigRequest - 109, // 1564: forge.Forge.GetTokenDelegation:input_type -> forge.GetTokenDelegationRequest - 111, // 1565: forge.Forge.SetTokenDelegation:input_type -> forge.TokenDelegationRequest - 109, // 1566: forge.Forge.DeleteTokenDelegation:input_type -> forge.GetTokenDelegationRequest - 112, // 1567: forge.Forge.ReencryptTenantIdentitySecrets:input_type -> forge.ReencryptTenantIdentitySecretsRequest - 117, // 1568: forge.Forge.GetJWKS:input_type -> forge.JwksRequest - 118, // 1569: forge.Forge.GetOpenIDConfiguration:input_type -> forge.OpenIdConfigRequest - 855, // 1570: forge.Forge.ScoutStream:input_type -> forge.ScoutStreamApiBoundMessage - 858, // 1571: forge.Forge.ScoutStreamShowConnections:input_type -> forge.ScoutStreamShowConnectionsRequest - 860, // 1572: forge.Forge.ScoutStreamDisconnect:input_type -> forge.ScoutStreamDisconnectRequest - 862, // 1573: forge.Forge.ScoutStreamPing:input_type -> forge.ScoutStreamAdminPingRequest - 1109, // 1574: forge.Forge.MlxAdminProfileSync:input_type -> mlx_device.MlxAdminProfileSyncRequest - 1110, // 1575: forge.Forge.MlxAdminProfileShow:input_type -> mlx_device.MlxAdminProfileShowRequest - 1111, // 1576: forge.Forge.MlxAdminProfileCompare:input_type -> mlx_device.MlxAdminProfileCompareRequest - 1112, // 1577: forge.Forge.MlxAdminProfileList:input_type -> mlx_device.MlxAdminProfileListRequest - 1113, // 1578: forge.Forge.MlxAdminLockdownLock:input_type -> mlx_device.MlxAdminLockdownLockRequest - 1114, // 1579: forge.Forge.MlxAdminLockdownUnlock:input_type -> mlx_device.MlxAdminLockdownUnlockRequest - 1115, // 1580: forge.Forge.MlxAdminLockdownStatus:input_type -> mlx_device.MlxAdminLockdownStatusRequest - 1116, // 1581: forge.Forge.MlxAdminShowDevice:input_type -> mlx_device.MlxAdminDeviceInfoRequest - 1117, // 1582: forge.Forge.MlxAdminShowMachine:input_type -> mlx_device.MlxAdminDeviceReportRequest - 1118, // 1583: forge.Forge.MlxAdminRegistryList:input_type -> mlx_device.MlxAdminRegistryListRequest - 1119, // 1584: forge.Forge.MlxAdminRegistryShow:input_type -> mlx_device.MlxAdminRegistryShowRequest - 1120, // 1585: forge.Forge.MlxAdminConfigQuery:input_type -> mlx_device.MlxAdminConfigQueryRequest - 1121, // 1586: forge.Forge.MlxAdminConfigSet:input_type -> mlx_device.MlxAdminConfigSetRequest - 1122, // 1587: forge.Forge.MlxAdminConfigSync:input_type -> mlx_device.MlxAdminConfigSyncRequest - 1123, // 1588: forge.Forge.MlxAdminConfigCompare:input_type -> mlx_device.MlxAdminConfigCompareRequest - 772, // 1589: forge.Forge.FindNVLinkPartitionIds:input_type -> forge.NVLinkPartitionSearchFilter - 773, // 1590: forge.Forge.FindNVLinkPartitionsByIds:input_type -> forge.NVLinkPartitionsByIdsRequest - 154, // 1591: forge.Forge.NVLinkPartitionsForTenant:input_type -> forge.TenantSearchQuery - 783, // 1592: forge.Forge.FindNVLinkLogicalPartitionIds:input_type -> forge.NVLinkLogicalPartitionSearchFilter - 784, // 1593: forge.Forge.FindNVLinkLogicalPartitionsByIds:input_type -> forge.NVLinkLogicalPartitionsByIdsRequest - 780, // 1594: forge.Forge.CreateNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionCreationRequest - 786, // 1595: forge.Forge.UpdateNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionUpdateRequest - 781, // 1596: forge.Forge.DeleteNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionDeletionRequest - 154, // 1597: forge.Forge.NVLinkLogicalPartitionsForTenant:input_type -> forge.TenantSearchQuery - 876, // 1598: forge.Forge.GetMachinePositionInfo:input_type -> forge.MachinePositionQuery - 766, // 1599: forge.Forge.NmxcBrowse:input_type -> forge.NmxcBrowseRequest - 879, // 1600: forge.Forge.ModifyDPFState:input_type -> forge.ModifyDPFStateRequest - 881, // 1601: forge.Forge.GetDPFState:input_type -> forge.GetDPFStateRequest - 882, // 1602: forge.Forge.GetDPFHostSnapshot:input_type -> forge.GetDPFHostSnapshotRequest - 884, // 1603: forge.Forge.GetDPFServiceVersions:input_type -> forge.GetDPFServiceVersionsRequest - 893, // 1604: forge.Forge.ComponentPowerControl:input_type -> forge.ComponentPowerControlRequest - 895, // 1605: forge.Forge.ComponentConfigureSwitchCertificate:input_type -> forge.ComponentConfigureSwitchCertificateRequest - 890, // 1606: forge.Forge.GetComponentInventory:input_type -> forge.GetComponentInventoryRequest - 902, // 1607: forge.Forge.UpdateComponentFirmware:input_type -> forge.UpdateComponentFirmwareRequest - 904, // 1608: forge.Forge.GetComponentFirmwareStatus:input_type -> forge.GetComponentFirmwareStatusRequest - 906, // 1609: forge.Forge.ListComponentFirmwareVersions:input_type -> forge.ListComponentFirmwareVersionsRequest - 923, // 1610: forge.Forge.CreateOperatingSystem:input_type -> forge.CreateOperatingSystemRequest - 1003, // 1611: forge.Forge.GetOperatingSystem:input_type -> common.OperatingSystemId - 926, // 1612: forge.Forge.UpdateOperatingSystem:input_type -> forge.UpdateOperatingSystemRequest - 927, // 1613: forge.Forge.DeleteOperatingSystem:input_type -> forge.DeleteOperatingSystemRequest - 929, // 1614: forge.Forge.FindOperatingSystemIds:input_type -> forge.OperatingSystemSearchFilter - 931, // 1615: forge.Forge.FindOperatingSystemsByIds:input_type -> forge.OperatingSystemsByIdsRequest - 933, // 1616: forge.Forge.GetOperatingSystemCachableIpxeTemplateArtifacts:input_type -> forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest - 936, // 1617: forge.Forge.UpdateOperatingSystemCachableIpxeTemplateArtifacts:input_type -> forge.UpdateOperatingSystemIpxeTemplateArtifactRequest - 938, // 1618: forge.Forge.ReWrapSecrets:input_type -> forge.ReWrapSecretsRequest - 140, // 1619: forge.Forge.Version:output_type -> forge.BuildInfo - 1043, // 1620: forge.Forge.CreateDomain:output_type -> dns.Domain - 1043, // 1621: forge.Forge.UpdateDomain:output_type -> dns.Domain - 1124, // 1622: forge.Forge.DeleteDomain:output_type -> dns.DomainDeletionResult - 1125, // 1623: forge.Forge.FindDomain:output_type -> dns.DomainList - 870, // 1624: forge.Forge.CreateDomainLegacy:output_type -> forge.DomainLegacy - 870, // 1625: forge.Forge.UpdateDomainLegacy:output_type -> forge.DomainLegacy - 873, // 1626: forge.Forge.DeleteDomainLegacy:output_type -> forge.DomainDeletionResultLegacy - 871, // 1627: forge.Forge.FindDomainLegacy:output_type -> forge.DomainListLegacy - 157, // 1628: forge.Forge.CreateVpc:output_type -> forge.Vpc - 160, // 1629: forge.Forge.UpdateVpc:output_type -> forge.VpcUpdateResult - 162, // 1630: forge.Forge.UpdateVpcVirtualization:output_type -> forge.VpcUpdateVirtualizationResult - 164, // 1631: forge.Forge.DeleteVpc:output_type -> forge.VpcDeletionResult - 152, // 1632: forge.Forge.FindVpcIds:output_type -> forge.VpcIdList - 165, // 1633: forge.Forge.FindVpcsByIds:output_type -> forge.VpcList - 911, // 1634: forge.Forge.CreateSpxPartition:output_type -> forge.SpxPartition - 914, // 1635: forge.Forge.DeleteSpxPartition:output_type -> forge.SpxPartitionDeletionResult - 912, // 1636: forge.Forge.FindSpxPartitionIds:output_type -> forge.SpxPartitionIdList - 916, // 1637: forge.Forge.FindSpxPartitionsByIds:output_type -> forge.SpxPartitionList - 166, // 1638: forge.Forge.CreateVpcPrefix:output_type -> forge.VpcPrefix - 172, // 1639: forge.Forge.SearchVpcPrefixes:output_type -> forge.VpcPrefixIdList - 173, // 1640: forge.Forge.GetVpcPrefixes:output_type -> forge.VpcPrefixList - 166, // 1641: forge.Forge.UpdateVpcPrefix:output_type -> forge.VpcPrefix - 176, // 1642: forge.Forge.DeleteVpcPrefix:output_type -> forge.VpcPrefixDeletionResult - 178, // 1643: forge.Forge.CreateVpcPeering:output_type -> forge.VpcPeering - 179, // 1644: forge.Forge.FindVpcPeeringIds:output_type -> forge.VpcPeeringIdList - 180, // 1645: forge.Forge.FindVpcPeeringsByIds:output_type -> forge.VpcPeeringList - 185, // 1646: forge.Forge.DeleteVpcPeering:output_type -> forge.VpcPeeringDeletionResult - 252, // 1647: forge.Forge.FindNetworkSegmentIds:output_type -> forge.NetworkSegmentIdList - 359, // 1648: forge.Forge.FindNetworkSegmentsByIds:output_type -> forge.NetworkSegmentList - 244, // 1649: forge.Forge.CreateNetworkSegment:output_type -> forge.NetworkSegment - 244, // 1650: forge.Forge.AttachNetworkSegmentToVpc:output_type -> forge.NetworkSegment - 248, // 1651: forge.Forge.DeleteNetworkSegment:output_type -> forge.NetworkSegmentDeletionResult - 359, // 1652: forge.Forge.NetworkSegmentsForVpc:output_type -> forge.NetworkSegmentList - 196, // 1653: forge.Forge.FindIBPartitionIds:output_type -> forge.IBPartitionIdList - 189, // 1654: forge.Forge.FindIBPartitionsByIds:output_type -> forge.IBPartitionList - 188, // 1655: forge.Forge.CreateIBPartition:output_type -> forge.IBPartition - 188, // 1656: forge.Forge.UpdateIBPartition:output_type -> forge.IBPartition - 193, // 1657: forge.Forge.DeleteIBPartition:output_type -> forge.IBPartitionDeletionResult - 189, // 1658: forge.Forge.IBPartitionsForTenant:output_type -> forge.IBPartitionList - 200, // 1659: forge.Forge.FindPowerShelves:output_type -> forge.PowerShelfList - 889, // 1660: forge.Forge.FindPowerShelfIds:output_type -> forge.PowerShelfIdList - 200, // 1661: forge.Forge.FindPowerShelvesByIds:output_type -> forge.PowerShelfList - 203, // 1662: forge.Forge.DeletePowerShelf:output_type -> forge.PowerShelfDeletionResult - 921, // 1663: forge.Forge.AdminForceDeletePowerShelf:output_type -> forge.AdminForceDeletePowerShelfResponse - 1057, // 1664: forge.Forge.SetPowerShelfMaintenance:output_type -> google.protobuf.Empty - 220, // 1665: forge.Forge.FindSwitches:output_type -> forge.SwitchList - 888, // 1666: forge.Forge.FindSwitchIds:output_type -> forge.SwitchIdList - 220, // 1667: forge.Forge.FindSwitchesByIds:output_type -> forge.SwitchList - 223, // 1668: forge.Forge.DeleteSwitch:output_type -> forge.SwitchDeletionResult - 919, // 1669: forge.Forge.AdminForceDeleteSwitch:output_type -> forge.AdminForceDeleteSwitchResponse - 240, // 1670: forge.Forge.FindIBFabricIds:output_type -> forge.IBFabricIdList - 293, // 1671: forge.Forge.AllocateInstance:output_type -> forge.Instance - 266, // 1672: forge.Forge.AllocateInstances:output_type -> forge.BatchInstanceAllocationResponse - 309, // 1673: forge.Forge.ReleaseInstance:output_type -> forge.InstanceReleaseResult - 293, // 1674: forge.Forge.UpdateInstanceOperatingSystem:output_type -> forge.Instance - 293, // 1675: forge.Forge.UpdateInstanceConfig:output_type -> forge.Instance - 262, // 1676: forge.Forge.FindInstanceIds:output_type -> forge.InstanceIdList - 258, // 1677: forge.Forge.FindInstancesByIds:output_type -> forge.InstanceList - 258, // 1678: forge.Forge.FindInstanceByMachineID:output_type -> forge.InstanceList - 380, // 1679: forge.Forge.GetManagedHostNetworkConfig:output_type -> forge.ManagedHostNetworkConfigResponse - 1057, // 1680: forge.Forge.RecordDpuNetworkStatus:output_type -> google.protobuf.Empty - 460, // 1681: forge.Forge.ListMachineHealthReports:output_type -> forge.ListHealthReportResponse - 1057, // 1682: forge.Forge.InsertMachineHealthReport:output_type -> google.protobuf.Empty - 1057, // 1683: forge.Forge.RemoveMachineHealthReport:output_type -> google.protobuf.Empty - 460, // 1684: forge.Forge.ListRackHealthReports:output_type -> forge.ListHealthReportResponse - 1057, // 1685: forge.Forge.InsertRackHealthReport:output_type -> google.protobuf.Empty - 1057, // 1686: forge.Forge.RemoveRackHealthReport:output_type -> google.protobuf.Empty - 460, // 1687: forge.Forge.ListSwitchHealthReports:output_type -> forge.ListHealthReportResponse - 1057, // 1688: forge.Forge.InsertSwitchHealthReport:output_type -> google.protobuf.Empty - 1057, // 1689: forge.Forge.RemoveSwitchHealthReport:output_type -> google.protobuf.Empty - 460, // 1690: forge.Forge.ListPowerShelfHealthReports:output_type -> forge.ListHealthReportResponse - 1057, // 1691: forge.Forge.InsertPowerShelfHealthReport:output_type -> google.protobuf.Empty - 1057, // 1692: forge.Forge.RemovePowerShelfHealthReport:output_type -> google.protobuf.Empty - 460, // 1693: forge.Forge.ListNVLinkDomainHealthReports:output_type -> forge.ListHealthReportResponse - 1057, // 1694: forge.Forge.InsertNVLinkDomainHealthReport:output_type -> google.protobuf.Empty - 1057, // 1695: forge.Forge.RemoveNVLinkDomainHealthReport:output_type -> google.protobuf.Empty - 460, // 1696: forge.Forge.ListHealthReportOverrides:output_type -> forge.ListHealthReportResponse - 1057, // 1697: forge.Forge.InsertHealthReportOverride:output_type -> google.protobuf.Empty - 1057, // 1698: forge.Forge.RemoveHealthReportOverride:output_type -> google.protobuf.Empty - 399, // 1699: forge.Forge.DpuAgentUpgradeCheck:output_type -> forge.DpuAgentUpgradeCheckResponse - 401, // 1700: forge.Forge.DpuAgentUpgradePolicyAction:output_type -> forge.DpuAgentUpgradePolicyResponse - 1126, // 1701: forge.Forge.LookupRecord:output_type -> dns.DnsResourceRecordLookupResponse - 1127, // 1702: forge.Forge.GetAllDomains:output_type -> dns.GetAllDomainsResponse - 1128, // 1703: forge.Forge.GetAllDomainMetadata:output_type -> dns.DomainMetadataResponse - 257, // 1704: forge.Forge.InvokeInstancePower:output_type -> forge.InstancePowerResult - 426, // 1705: forge.Forge.ForgeAgentControl:output_type -> forge.ForgeAgentControlResponse - 433, // 1706: forge.Forge.DiscoverMachine:output_type -> forge.MachineDiscoveryResult - 432, // 1707: forge.Forge.RenewMachineCertificate:output_type -> forge.MachineCertificateResult - 434, // 1708: forge.Forge.DiscoveryCompleted:output_type -> forge.MachineDiscoveryCompletedResponse - 435, // 1709: forge.Forge.CleanupMachineCompleted:output_type -> forge.MachineCleanupResult - 437, // 1710: forge.Forge.ReportForgeScoutError:output_type -> forge.ForgeScoutErrorReportResult - 358, // 1711: forge.Forge.DiscoverDhcp:output_type -> forge.DhcpRecord - 357, // 1712: forge.Forge.ExpireDhcpLease:output_type -> forge.ExpireDhcpLeaseResponse - 328, // 1713: forge.Forge.AssignStaticAddress:output_type -> forge.AssignStaticAddressResponse - 330, // 1714: forge.Forge.RemoveStaticAddress:output_type -> forge.RemoveStaticAddressResponse - 333, // 1715: forge.Forge.FindInterfaceAddresses:output_type -> forge.FindInterfaceAddressesResponse - 323, // 1716: forge.Forge.FindInterfaces:output_type -> forge.InterfaceList - 1057, // 1717: forge.Forge.DeleteInterface:output_type -> google.protobuf.Empty - 501, // 1718: forge.Forge.FindIpAddress:output_type -> forge.FindIpAddressResponse - 1044, // 1719: forge.Forge.FindMachineIds:output_type -> common.MachineIdList - 324, // 1720: forge.Forge.FindMachinesByIds:output_type -> forge.MachineList - 313, // 1721: forge.Forge.FindMachineStateHistories:output_type -> forge.MachineStateHistories - 316, // 1722: forge.Forge.FindMachineHealthHistories:output_type -> forge.HealthHistories - 227, // 1723: forge.Forge.FindPowerShelfStateHistories:output_type -> forge.StateHistories - 227, // 1724: forge.Forge.FindRackStateHistories:output_type -> forge.StateHistories - 227, // 1725: forge.Forge.FindSwitchStateHistories:output_type -> forge.StateHistories - 227, // 1726: forge.Forge.FindNetworkSegmentStateHistories:output_type -> forge.StateHistories - 227, // 1727: forge.Forge.FindVpcPrefixStateHistories:output_type -> forge.StateHistories - 322, // 1728: forge.Forge.FindTenantOrganizationIds:output_type -> forge.TenantOrganizationIdList - 321, // 1729: forge.Forge.FindTenantsByOrganizationIds:output_type -> forge.TenantList - 524, // 1730: forge.Forge.FindConnectedDevicesByDpuMachineIds:output_type -> forge.ConnectedDeviceList - 528, // 1731: forge.Forge.FindMachineIdsByBmcIps:output_type -> forge.MachineIdBmcIpPairs - 527, // 1732: forge.Forge.FindMacAddressByBmcIp:output_type -> forge.MacAddressBmcIp - 525, // 1733: forge.Forge.FindBmcIps:output_type -> forge.BmcIpList - 503, // 1734: forge.Forge.IdentifyUuid:output_type -> forge.IdentifyUuidResponse - 506, // 1735: forge.Forge.IdentifyMac:output_type -> forge.IdentifyMacResponse - 508, // 1736: forge.Forge.IdentifySerial:output_type -> forge.IdentifySerialResponse - 422, // 1737: forge.Forge.GetBMCMetaData:output_type -> forge.BMCMetaDataGetResponse - 424, // 1738: forge.Forge.UpdateMachineCredentials:output_type -> forge.MachineCredentialsUpdateResponse - 439, // 1739: forge.Forge.GetPxeInstructions:output_type -> forge.PxeInstructions - 443, // 1740: forge.Forge.GetCloudInitInstructions:output_type -> forge.CloudInitInstructions - 143, // 1741: forge.Forge.Echo:output_type -> forge.EchoResponse - 470, // 1742: forge.Forge.CreateTenant:output_type -> forge.CreateTenantResponse - 474, // 1743: forge.Forge.FindTenant:output_type -> forge.FindTenantResponse - 472, // 1744: forge.Forge.UpdateTenant:output_type -> forge.UpdateTenantResponse - 480, // 1745: forge.Forge.CreateTenantKeyset:output_type -> forge.CreateTenantKeysetResponse - 487, // 1746: forge.Forge.FindTenantKeysetIds:output_type -> forge.TenantKeysetIdList - 481, // 1747: forge.Forge.FindTenantKeysetsByIds:output_type -> forge.TenantKeySetList - 483, // 1748: forge.Forge.UpdateTenantKeyset:output_type -> forge.UpdateTenantKeysetResponse - 485, // 1749: forge.Forge.DeleteTenantKeyset:output_type -> forge.DeleteTenantKeysetResponse - 490, // 1750: forge.Forge.ValidateTenantPublicKey:output_type -> forge.ValidateTenantPublicKeyResponse - 364, // 1751: forge.Forge.GetBmcCredentials:output_type -> forge.GetBmcCredentialsResponse - 364, // 1752: forge.Forge.GetSwitchNvosCredentials:output_type -> forge.GetBmcCredentialsResponse - 397, // 1753: forge.Forge.GetAllManagedHostNetworkStatus:output_type -> forge.ManagedHostNetworkStatusResponse - 1129, // 1754: forge.Forge.GetSiteExplorationReport:output_type -> site_explorer.SiteExplorationReport - 1130, // 1755: forge.Forge.GetSiteExplorerLastRun:output_type -> site_explorer.SiteExplorerLastRunResponse - 1057, // 1756: forge.Forge.ClearSiteExplorationError:output_type -> google.protobuf.Empty - 607, // 1757: forge.Forge.IsBmcInManagedHost:output_type -> forge.IsBmcInManagedHostResponse - 608, // 1758: forge.Forge.BmcCredentialStatus:output_type -> forge.BmcCredentialStatusResponse - 1045, // 1759: forge.Forge.Explore:output_type -> site_explorer.EndpointExplorationReport - 1057, // 1760: forge.Forge.ReExploreEndpoint:output_type -> google.protobuf.Empty - 1131, // 1761: forge.Forge.RefreshEndpointReport:output_type -> site_explorer.ExploredEndpoint - 372, // 1762: forge.Forge.DeleteExploredEndpoint:output_type -> forge.DeleteExploredEndpointResponse - 1057, // 1763: forge.Forge.PauseExploredEndpointRemediation:output_type -> google.protobuf.Empty - 1132, // 1764: forge.Forge.FindExploredEndpointIds:output_type -> site_explorer.ExploredEndpointIdList - 1133, // 1765: forge.Forge.FindExploredEndpointsByIds:output_type -> site_explorer.ExploredEndpointList - 1134, // 1766: forge.Forge.FindExploredManagedHostIds:output_type -> site_explorer.ExploredManagedHostIdList - 1135, // 1767: forge.Forge.FindExploredManagedHostsByIds:output_type -> site_explorer.ExploredManagedHostList - 1136, // 1768: forge.Forge.FindExploredMlxDeviceHostIds:output_type -> site_explorer.ExploredMlxDeviceHostIdList - 1137, // 1769: forge.Forge.FindExploredMlxDevicesByIds:output_type -> site_explorer.ExploredMlxDeviceList - 1057, // 1770: forge.Forge.UpdateMachineHardwareInfo:output_type -> google.protobuf.Empty - 403, // 1771: forge.Forge.AdminForceDeleteMachine:output_type -> forge.AdminForceDeleteMachineResponse - 492, // 1772: forge.Forge.AdminListResourcePools:output_type -> forge.ResourcePools - 495, // 1773: forge.Forge.AdminGrowResourcePool:output_type -> forge.GrowResourcePoolResponse - 1057, // 1774: forge.Forge.UpdateMachineMetadata:output_type -> google.protobuf.Empty - 1057, // 1775: forge.Forge.UpdateRackMetadata:output_type -> google.protobuf.Empty - 1057, // 1776: forge.Forge.UpdateSwitchMetadata:output_type -> google.protobuf.Empty - 1057, // 1777: forge.Forge.UpdatePowerShelfMetadata:output_type -> google.protobuf.Empty - 1057, // 1778: forge.Forge.UpdateMachineNvLinkInfo:output_type -> google.protobuf.Empty - 1057, // 1779: forge.Forge.SetMaintenance:output_type -> google.protobuf.Empty - 1057, // 1780: forge.Forge.SetDynamicConfig:output_type -> google.protobuf.Empty - 1057, // 1781: forge.Forge.TriggerDpuReprovisioning:output_type -> google.protobuf.Empty - 511, // 1782: forge.Forge.ListDpuWaitingForReprovisioning:output_type -> forge.DpuReprovisioningListResponse - 1057, // 1783: forge.Forge.TriggerHostReprovisioning:output_type -> google.protobuf.Empty - 514, // 1784: forge.Forge.ListHostsWaitingForReprovisioning:output_type -> forge.HostReprovisioningListResponse - 1057, // 1785: forge.Forge.MarkManualFirmwareUpgradeComplete:output_type -> google.protobuf.Empty - 1057, // 1786: forge.Forge.ReportScoutFirmwareUpgradeStatus:output_type -> google.protobuf.Empty - 520, // 1787: forge.Forge.GetDpuInfoList:output_type -> forge.GetDpuInfoListResponse - 522, // 1788: forge.Forge.GetMachineBootOverride:output_type -> forge.MachineBootOverride - 1057, // 1789: forge.Forge.SetMachineBootOverride:output_type -> google.protobuf.Empty - 1057, // 1790: forge.Forge.ClearMachineBootOverride:output_type -> google.protobuf.Empty - 945, // 1791: forge.Forge.GetMachineBootInterfaces:output_type -> forge.GetMachineBootInterfacesResponse - 533, // 1792: forge.Forge.GetNetworkTopology:output_type -> forge.NetworkTopologyData - 533, // 1793: forge.Forge.FindNetworkDevicesByDeviceIds:output_type -> forge.NetworkTopologyData - 132, // 1794: forge.Forge.CreateCredential:output_type -> forge.CredentialCreationResult - 133, // 1795: forge.Forge.DeleteCredential:output_type -> forge.CredentialDeletionResult - 135, // 1796: forge.Forge.RotateCredential:output_type -> forge.RotateCredentialResult - 138, // 1797: forge.Forge.GetCredentialRotationStatus:output_type -> forge.CredentialRotationStatusResult - 535, // 1798: forge.Forge.GetRouteServers:output_type -> forge.RouteServerEntries - 1057, // 1799: forge.Forge.AddRouteServers:output_type -> google.protobuf.Empty - 1057, // 1800: forge.Forge.RemoveRouteServers:output_type -> google.protobuf.Empty - 1057, // 1801: forge.Forge.ReplaceRouteServers:output_type -> google.protobuf.Empty - 1057, // 1802: forge.Forge.UpdateAgentReportedInventory:output_type -> google.protobuf.Empty - 304, // 1803: forge.Forge.UpdateInstancePhoneHomeLastContact:output_type -> forge.InstancePhoneHomeLastContactResponse - 538, // 1804: forge.Forge.SetHostUefiPassword:output_type -> forge.SetHostUefiPasswordResponse - 540, // 1805: forge.Forge.ClearHostUefiPassword:output_type -> forge.ClearHostUefiPasswordResponse - 1057, // 1806: forge.Forge.AddExpectedMachine:output_type -> google.protobuf.Empty - 1057, // 1807: forge.Forge.DeleteExpectedMachine:output_type -> google.protobuf.Empty - 1057, // 1808: forge.Forge.UpdateExpectedMachine:output_type -> google.protobuf.Empty - 552, // 1809: forge.Forge.GetExpectedMachine:output_type -> forge.ExpectedMachine - 554, // 1810: forge.Forge.GetAllExpectedMachines:output_type -> forge.ExpectedMachineList - 1057, // 1811: forge.Forge.ReplaceAllExpectedMachines:output_type -> google.protobuf.Empty - 1057, // 1812: forge.Forge.DeleteAllExpectedMachines:output_type -> google.protobuf.Empty - 555, // 1813: forge.Forge.GetAllExpectedMachinesLinked:output_type -> forge.LinkedExpectedMachineList - 557, // 1814: forge.Forge.GetAllUnexpectedMachines:output_type -> forge.UnexpectedMachineList - 561, // 1815: forge.Forge.CreateExpectedMachines:output_type -> forge.BatchExpectedMachineOperationResponse - 561, // 1816: forge.Forge.UpdateExpectedMachines:output_type -> forge.BatchExpectedMachineOperationResponse - 1057, // 1817: forge.Forge.AddExpectedPowerShelf:output_type -> google.protobuf.Empty - 1057, // 1818: forge.Forge.DeleteExpectedPowerShelf:output_type -> google.protobuf.Empty - 1057, // 1819: forge.Forge.UpdateExpectedPowerShelf:output_type -> google.protobuf.Empty - 209, // 1820: forge.Forge.GetExpectedPowerShelf:output_type -> forge.ExpectedPowerShelf - 211, // 1821: forge.Forge.GetAllExpectedPowerShelves:output_type -> forge.ExpectedPowerShelfList - 1057, // 1822: forge.Forge.ReplaceAllExpectedPowerShelves:output_type -> google.protobuf.Empty - 1057, // 1823: forge.Forge.DeleteAllExpectedPowerShelves:output_type -> google.protobuf.Empty - 212, // 1824: forge.Forge.GetAllExpectedPowerShelvesLinked:output_type -> forge.LinkedExpectedPowerShelfList - 1057, // 1825: forge.Forge.AddExpectedSwitch:output_type -> google.protobuf.Empty - 1057, // 1826: forge.Forge.DeleteExpectedSwitch:output_type -> google.protobuf.Empty - 1057, // 1827: forge.Forge.UpdateExpectedSwitch:output_type -> google.protobuf.Empty - 231, // 1828: forge.Forge.GetExpectedSwitch:output_type -> forge.ExpectedSwitch - 233, // 1829: forge.Forge.GetAllExpectedSwitches:output_type -> forge.ExpectedSwitchList - 1057, // 1830: forge.Forge.ReplaceAllExpectedSwitches:output_type -> google.protobuf.Empty - 1057, // 1831: forge.Forge.DeleteAllExpectedSwitches:output_type -> google.protobuf.Empty - 234, // 1832: forge.Forge.GetAllExpectedSwitchesLinked:output_type -> forge.LinkedExpectedSwitchList - 1057, // 1833: forge.Forge.AddExpectedRack:output_type -> google.protobuf.Empty - 1057, // 1834: forge.Forge.DeleteExpectedRack:output_type -> google.protobuf.Empty - 1057, // 1835: forge.Forge.UpdateExpectedRack:output_type -> google.protobuf.Empty - 236, // 1836: forge.Forge.GetExpectedRack:output_type -> forge.ExpectedRack - 238, // 1837: forge.Forge.GetAllExpectedRacks:output_type -> forge.ExpectedRackList - 1057, // 1838: forge.Forge.ReplaceAllExpectedRacks:output_type -> google.protobuf.Empty - 1057, // 1839: forge.Forge.DeleteAllExpectedRacks:output_type -> google.protobuf.Empty - 129, // 1840: forge.Forge.AttestQuote:output_type -> forge.AttestQuoteResponse - 635, // 1841: forge.Forge.CreateInstanceType:output_type -> forge.CreateInstanceTypeResponse - 637, // 1842: forge.Forge.FindInstanceTypeIds:output_type -> forge.FindInstanceTypeIdsResponse - 639, // 1843: forge.Forge.FindInstanceTypesByIds:output_type -> forge.FindInstanceTypesByIdsResponse - 642, // 1844: forge.Forge.UpdateInstanceType:output_type -> forge.UpdateInstanceTypeResponse - 641, // 1845: forge.Forge.DeleteInstanceType:output_type -> forge.DeleteInstanceTypeResponse - 645, // 1846: forge.Forge.AssociateMachinesWithInstanceType:output_type -> forge.AssociateMachinesWithInstanceTypeResponse - 647, // 1847: forge.Forge.RemoveMachineInstanceTypeAssociation:output_type -> forge.RemoveMachineInstanceTypeAssociationResponse - 1138, // 1848: forge.Forge.CreateMeasurementBundle:output_type -> measured_boot.CreateMeasurementBundleResponse - 1139, // 1849: forge.Forge.DeleteMeasurementBundle:output_type -> measured_boot.DeleteMeasurementBundleResponse - 1140, // 1850: forge.Forge.RenameMeasurementBundle:output_type -> measured_boot.RenameMeasurementBundleResponse - 1141, // 1851: forge.Forge.UpdateMeasurementBundle:output_type -> measured_boot.UpdateMeasurementBundleResponse - 1142, // 1852: forge.Forge.ShowMeasurementBundle:output_type -> measured_boot.ShowMeasurementBundleResponse - 1143, // 1853: forge.Forge.ShowMeasurementBundles:output_type -> measured_boot.ShowMeasurementBundlesResponse - 1144, // 1854: forge.Forge.ListMeasurementBundles:output_type -> measured_boot.ListMeasurementBundlesResponse - 1145, // 1855: forge.Forge.ListMeasurementBundleMachines:output_type -> measured_boot.ListMeasurementBundleMachinesResponse - 1142, // 1856: forge.Forge.FindClosestBundleMatch:output_type -> measured_boot.ShowMeasurementBundleResponse - 1146, // 1857: forge.Forge.DeleteMeasurementJournal:output_type -> measured_boot.DeleteMeasurementJournalResponse - 1147, // 1858: forge.Forge.ShowMeasurementJournal:output_type -> measured_boot.ShowMeasurementJournalResponse - 1148, // 1859: forge.Forge.ShowMeasurementJournals:output_type -> measured_boot.ShowMeasurementJournalsResponse - 1149, // 1860: forge.Forge.ListMeasurementJournal:output_type -> measured_boot.ListMeasurementJournalResponse - 1150, // 1861: forge.Forge.AttestCandidateMachine:output_type -> measured_boot.AttestCandidateMachineResponse - 1151, // 1862: forge.Forge.ShowCandidateMachine:output_type -> measured_boot.ShowCandidateMachineResponse - 1152, // 1863: forge.Forge.ShowCandidateMachines:output_type -> measured_boot.ShowCandidateMachinesResponse - 1153, // 1864: forge.Forge.ListCandidateMachines:output_type -> measured_boot.ListCandidateMachinesResponse - 1154, // 1865: forge.Forge.CreateMeasurementSystemProfile:output_type -> measured_boot.CreateMeasurementSystemProfileResponse - 1155, // 1866: forge.Forge.DeleteMeasurementSystemProfile:output_type -> measured_boot.DeleteMeasurementSystemProfileResponse - 1156, // 1867: forge.Forge.RenameMeasurementSystemProfile:output_type -> measured_boot.RenameMeasurementSystemProfileResponse - 1157, // 1868: forge.Forge.ShowMeasurementSystemProfile:output_type -> measured_boot.ShowMeasurementSystemProfileResponse - 1158, // 1869: forge.Forge.ShowMeasurementSystemProfiles:output_type -> measured_boot.ShowMeasurementSystemProfilesResponse - 1159, // 1870: forge.Forge.ListMeasurementSystemProfiles:output_type -> measured_boot.ListMeasurementSystemProfilesResponse - 1160, // 1871: forge.Forge.ListMeasurementSystemProfileBundles:output_type -> measured_boot.ListMeasurementSystemProfileBundlesResponse - 1161, // 1872: forge.Forge.ListMeasurementSystemProfileMachines:output_type -> measured_boot.ListMeasurementSystemProfileMachinesResponse - 1162, // 1873: forge.Forge.CreateMeasurementReport:output_type -> measured_boot.CreateMeasurementReportResponse - 1163, // 1874: forge.Forge.DeleteMeasurementReport:output_type -> measured_boot.DeleteMeasurementReportResponse - 1164, // 1875: forge.Forge.PromoteMeasurementReport:output_type -> measured_boot.PromoteMeasurementReportResponse - 1165, // 1876: forge.Forge.RevokeMeasurementReport:output_type -> measured_boot.RevokeMeasurementReportResponse - 1166, // 1877: forge.Forge.ShowMeasurementReportForId:output_type -> measured_boot.ShowMeasurementReportForIdResponse - 1167, // 1878: forge.Forge.ShowMeasurementReportsForMachine:output_type -> measured_boot.ShowMeasurementReportsForMachineResponse - 1168, // 1879: forge.Forge.ShowMeasurementReports:output_type -> measured_boot.ShowMeasurementReportsResponse - 1169, // 1880: forge.Forge.ListMeasurementReport:output_type -> measured_boot.ListMeasurementReportResponse - 1170, // 1881: forge.Forge.MatchMeasurementReport:output_type -> measured_boot.MatchMeasurementReportResponse - 1171, // 1882: forge.Forge.ImportSiteMeasurements:output_type -> measured_boot.ImportSiteMeasurementsResponse - 1172, // 1883: forge.Forge.ExportSiteMeasurements:output_type -> measured_boot.ExportSiteMeasurementsResponse - 1173, // 1884: forge.Forge.AddMeasurementTrustedMachine:output_type -> measured_boot.AddMeasurementTrustedMachineResponse - 1174, // 1885: forge.Forge.RemoveMeasurementTrustedMachine:output_type -> measured_boot.RemoveMeasurementTrustedMachineResponse - 1175, // 1886: forge.Forge.AddMeasurementTrustedProfile:output_type -> measured_boot.AddMeasurementTrustedProfileResponse - 1176, // 1887: forge.Forge.RemoveMeasurementTrustedProfile:output_type -> measured_boot.RemoveMeasurementTrustedProfileResponse - 1177, // 1888: forge.Forge.ListMeasurementTrustedMachines:output_type -> measured_boot.ListMeasurementTrustedMachinesResponse - 1178, // 1889: forge.Forge.ListMeasurementTrustedProfiles:output_type -> measured_boot.ListMeasurementTrustedProfilesResponse - 1179, // 1890: forge.Forge.ListAttestationSummary:output_type -> measured_boot.ListAttestationSummaryResponse - 666, // 1891: forge.Forge.CreateNetworkSecurityGroup:output_type -> forge.CreateNetworkSecurityGroupResponse - 668, // 1892: forge.Forge.FindNetworkSecurityGroupIds:output_type -> forge.FindNetworkSecurityGroupIdsResponse - 670, // 1893: forge.Forge.FindNetworkSecurityGroupsByIds:output_type -> forge.FindNetworkSecurityGroupsByIdsResponse - 671, // 1894: forge.Forge.UpdateNetworkSecurityGroup:output_type -> forge.UpdateNetworkSecurityGroupResponse - 674, // 1895: forge.Forge.DeleteNetworkSecurityGroup:output_type -> forge.DeleteNetworkSecurityGroupResponse - 677, // 1896: forge.Forge.GetNetworkSecurityGroupPropagationStatus:output_type -> forge.GetNetworkSecurityGroupPropagationStatusResponse - 684, // 1897: forge.Forge.GetNetworkSecurityGroupAttachments:output_type -> forge.GetNetworkSecurityGroupAttachmentsResponse - 542, // 1898: forge.Forge.CreateOsImage:output_type -> forge.OsImage - 546, // 1899: forge.Forge.DeleteOsImage:output_type -> forge.DeleteOsImageResponse - 544, // 1900: forge.Forge.ListOsImage:output_type -> forge.ListOsImageResponse - 542, // 1901: forge.Forge.GetOsImage:output_type -> forge.OsImage - 542, // 1902: forge.Forge.UpdateOsImage:output_type -> forge.OsImage - 269, // 1903: forge.Forge.GetIpxeTemplate:output_type -> forge.IpxeTemplate - 549, // 1904: forge.Forge.ListIpxeTemplates:output_type -> forge.IpxeTemplateList - 562, // 1905: forge.Forge.RebootCompleted:output_type -> forge.MachineRebootCompletedResponse - 1057, // 1906: forge.Forge.PersistValidationResult:output_type -> google.protobuf.Empty - 569, // 1907: forge.Forge.GetMachineValidationResults:output_type -> forge.MachineValidationResultList - 566, // 1908: forge.Forge.MachineValidationCompleted:output_type -> forge.MachineValidationCompletedResponse - 574, // 1909: forge.Forge.MachineSetAutoUpdate:output_type -> forge.MachineSetAutoUpdateResponse - 577, // 1910: forge.Forge.GetMachineValidationExternalConfig:output_type -> forge.GetMachineValidationExternalConfigResponse - 579, // 1911: forge.Forge.GetMachineValidationExternalConfigs:output_type -> forge.GetMachineValidationExternalConfigsResponse - 1057, // 1912: forge.Forge.AddUpdateMachineValidationExternalConfig:output_type -> google.protobuf.Empty - 596, // 1913: forge.Forge.GetMachineValidationRuns:output_type -> forge.MachineValidationRunList - 599, // 1914: forge.Forge.FindMachineValidationRunItemIds:output_type -> forge.MachineValidationRunItemIdList - 601, // 1915: forge.Forge.FindMachineValidationRunItemsByIds:output_type -> forge.MachineValidationRunItemList - 604, // 1916: forge.Forge.GetMachineValidationAttempt:output_type -> forge.MachineValidationAttempt - 606, // 1917: forge.Forge.HeartbeatMachineValidationRun:output_type -> forge.MachineValidationHeartbeatResponse - 1057, // 1918: forge.Forge.RemoveMachineValidationExternalConfig:output_type -> google.protobuf.Empty - 613, // 1919: forge.Forge.GetMachineValidationTests:output_type -> forge.MachineValidationTestsGetResponse - 612, // 1920: forge.Forge.AddMachineValidationTest:output_type -> forge.MachineValidationTestAddUpdateResponse - 612, // 1921: forge.Forge.UpdateMachineValidationTest:output_type -> forge.MachineValidationTestAddUpdateResponse - 615, // 1922: forge.Forge.MachineValidationTestVerfied:output_type -> forge.MachineValidationTestVerfiedResponse - 617, // 1923: forge.Forge.MachineValidationTestNextVersion:output_type -> forge.MachineValidationTestNextVersionResponse - 620, // 1924: forge.Forge.MachineValidationTestEnableDisableTest:output_type -> forge.MachineValidationTestEnableDisableTestResponse - 622, // 1925: forge.Forge.UpdateMachineValidationRun:output_type -> forge.MachineValidationRunResponse - 416, // 1926: forge.Forge.AdminBmcReset:output_type -> forge.AdminBmcResetResponse - 593, // 1927: forge.Forge.AdminPowerControl:output_type -> forge.AdminPowerControlResponse - 404, // 1928: forge.Forge.DisableSecureBoot:output_type -> forge.DisableSecureBootResponse - 406, // 1929: forge.Forge.Lockdown:output_type -> forge.LockdownResponse - 1180, // 1930: forge.Forge.LockdownStatus:output_type -> site_explorer.LockdownStatus - 410, // 1931: forge.Forge.MachineSetup:output_type -> forge.MachineSetupResponse - 412, // 1932: forge.Forge.SetDpuFirstBootOrder:output_type -> forge.SetDpuFirstBootOrderResponse - 789, // 1933: forge.Forge.CreateBmcUser:output_type -> forge.CreateBmcUserResponse - 791, // 1934: forge.Forge.DeleteBmcUser:output_type -> forge.DeleteBmcUserResponse - 793, // 1935: forge.Forge.SetBmcRootPassword:output_type -> forge.SetBmcRootPasswordResponse - 795, // 1936: forge.Forge.ProbeBmcVendor:output_type -> forge.ProbeBmcVendorResponse - 418, // 1937: forge.Forge.EnableInfiniteBoot:output_type -> forge.EnableInfiniteBootResponse - 420, // 1938: forge.Forge.IsInfiniteBootEnabled:output_type -> forge.IsInfiniteBootEnabledResponse - 583, // 1939: forge.Forge.OnDemandMachineValidation:output_type -> forge.MachineValidationOnDemandResponse - 591, // 1940: forge.Forge.OnDemandRackMaintenance:output_type -> forge.RackMaintenanceOnDemandResponse - 120, // 1941: forge.Forge.TpmAddCaCert:output_type -> forge.TpmCaAddedCaStatus - 126, // 1942: forge.Forge.TpmShowCaCerts:output_type -> forge.TpmCaCertDetailCollection - 123, // 1943: forge.Forge.TpmShowUnmatchedEkCerts:output_type -> forge.TpmEkCertStatusCollection - 1057, // 1944: forge.Forge.TpmDeleteCaCert:output_type -> google.protobuf.Empty - 649, // 1945: forge.Forge.RedfishBrowse:output_type -> forge.RedfishBrowseResponse - 651, // 1946: forge.Forge.RedfishListActions:output_type -> forge.RedfishListActionsResponse - 656, // 1947: forge.Forge.RedfishCreateAction:output_type -> forge.RedfishCreateActionResponse - 658, // 1948: forge.Forge.RedfishApproveAction:output_type -> forge.RedfishApproveActionResponse - 659, // 1949: forge.Forge.RedfishApplyAction:output_type -> forge.RedfishApplyActionResponse - 660, // 1950: forge.Forge.RedfishCancelAction:output_type -> forge.RedfishCancelActionResponse - 662, // 1951: forge.Forge.UfmBrowse:output_type -> forge.UfmBrowseResponse - 686, // 1952: forge.Forge.GetDesiredFirmwareVersions:output_type -> forge.GetDesiredFirmwareVersionsResponse - 804, // 1953: forge.Forge.UpsertHostFirmwareConfig:output_type -> forge.HostFirmwareConfigResponse - 1057, // 1954: forge.Forge.DeleteHostFirmwareConfig:output_type -> google.protobuf.Empty - 702, // 1955: forge.Forge.CreateSku:output_type -> forge.SkuIdList - 698, // 1956: forge.Forge.GenerateSkuFromMachine:output_type -> forge.Sku - 1057, // 1957: forge.Forge.VerifySkuForMachine:output_type -> google.protobuf.Empty - 1057, // 1958: forge.Forge.AssignSkuToMachine:output_type -> google.protobuf.Empty - 1057, // 1959: forge.Forge.RemoveSkuAssociation:output_type -> google.protobuf.Empty - 1057, // 1960: forge.Forge.DeleteSku:output_type -> google.protobuf.Empty - 702, // 1961: forge.Forge.GetAllSkuIds:output_type -> forge.SkuIdList - 701, // 1962: forge.Forge.FindSkusByIds:output_type -> forge.SkuList - 1057, // 1963: forge.Forge.UpdateSkuMetadata:output_type -> google.protobuf.Empty - 698, // 1964: forge.Forge.ReplaceSku:output_type -> forge.Sku - 386, // 1965: forge.Forge.GetManagedHostQuarantineState:output_type -> forge.GetManagedHostQuarantineStateResponse - 388, // 1966: forge.Forge.SetManagedHostQuarantineState:output_type -> forge.SetManagedHostQuarantineStateResponse - 390, // 1967: forge.Forge.ClearManagedHostQuarantineState:output_type -> forge.ClearManagedHostQuarantineStateResponse - 1057, // 1968: forge.Forge.ResetHostReprovisioning:output_type -> google.protobuf.Empty - 1057, // 1969: forge.Forge.CopyBfbToDpuRshim:output_type -> google.protobuf.Empty - 708, // 1970: forge.Forge.GetAllDpaInterfaceIds:output_type -> forge.DpaInterfaceIdList - 710, // 1971: forge.Forge.FindDpaInterfacesByIds:output_type -> forge.DpaInterfaceList - 706, // 1972: forge.Forge.CreateDpaInterface:output_type -> forge.DpaInterface - 706, // 1973: forge.Forge.EnsureDpaInterface:output_type -> forge.DpaInterface - 713, // 1974: forge.Forge.DeleteDpaInterface:output_type -> forge.DpaInterfaceDeletionResult - 718, // 1975: forge.Forge.GetPowerOptions:output_type -> forge.PowerOptionResponse - 718, // 1976: forge.Forge.UpdatePowerOption:output_type -> forge.PowerOptionResponse - 1057, // 1977: forge.Forge.AllowIngestionAndPowerOn:output_type -> google.protobuf.Empty - 119, // 1978: forge.Forge.DetermineMachineIngestionState:output_type -> forge.MachineIngestionStateResponse - 736, // 1979: forge.Forge.FindRackIds:output_type -> forge.RackIdList - 734, // 1980: forge.Forge.FindRacksByIds:output_type -> forge.RackList - 733, // 1981: forge.Forge.GetRack:output_type -> forge.GetRackResponse - 1057, // 1982: forge.Forge.DeleteRack:output_type -> google.protobuf.Empty - 744, // 1983: forge.Forge.AdminForceDeleteRack:output_type -> forge.AdminForceDeleteRackResponse - 751, // 1984: forge.Forge.GetRackProfile:output_type -> forge.GetRackProfileResponse - 722, // 1985: forge.Forge.CreateComputeAllocation:output_type -> forge.CreateComputeAllocationResponse - 724, // 1986: forge.Forge.FindComputeAllocationIds:output_type -> forge.FindComputeAllocationIdsResponse - 726, // 1987: forge.Forge.FindComputeAllocationsByIds:output_type -> forge.FindComputeAllocationsByIdsResponse - 727, // 1988: forge.Forge.UpdateComputeAllocation:output_type -> forge.UpdateComputeAllocationResponse - 730, // 1989: forge.Forge.DeleteComputeAllocation:output_type -> forge.DeleteComputeAllocationResponse - 797, // 1990: forge.Forge.SetFirmwareUpdateTimeWindow:output_type -> forge.SetFirmwareUpdateTimeWindowResponse - 806, // 1991: forge.Forge.ListHostFirmware:output_type -> forge.ListHostFirmwareResponse - 1181, // 1992: forge.Forge.PublishMlxDeviceReport:output_type -> mlx_device.PublishMlxDeviceReportResponse - 1182, // 1993: forge.Forge.PublishMlxObservationReport:output_type -> mlx_device.PublishMlxObservationReportResponse - 809, // 1994: forge.Forge.TrimTable:output_type -> forge.TrimTableResponse - 811, // 1995: forge.Forge.ListNvlinkNmxcEndpoints:output_type -> forge.NvlinkNmxcEndpointList - 810, // 1996: forge.Forge.CreateNvlinkNmxcEndpoint:output_type -> forge.NvlinkNmxcEndpoint - 810, // 1997: forge.Forge.UpdateNvlinkNmxcEndpoint:output_type -> forge.NvlinkNmxcEndpoint - 1057, // 1998: forge.Forge.DeleteNvlinkNmxcEndpoint:output_type -> google.protobuf.Empty - 814, // 1999: forge.Forge.CreateRemediation:output_type -> forge.CreateRemediationResponse - 1057, // 2000: forge.Forge.ApproveRemediation:output_type -> google.protobuf.Empty - 1057, // 2001: forge.Forge.RevokeRemediation:output_type -> google.protobuf.Empty - 1057, // 2002: forge.Forge.EnableRemediation:output_type -> google.protobuf.Empty - 1057, // 2003: forge.Forge.DisableRemediation:output_type -> google.protobuf.Empty - 815, // 2004: forge.Forge.FindRemediationIds:output_type -> forge.RemediationIdList - 816, // 2005: forge.Forge.FindRemediationsByIds:output_type -> forge.RemediationList - 823, // 2006: forge.Forge.FindAppliedRemediationIds:output_type -> forge.AppliedRemediationIdList - 826, // 2007: forge.Forge.FindAppliedRemediations:output_type -> forge.AppliedRemediationList - 828, // 2008: forge.Forge.GetNextRemediationForMachine:output_type -> forge.GetNextRemediationForMachineResponse - 1057, // 2009: forge.Forge.RemediationApplied:output_type -> google.protobuf.Empty - 1057, // 2010: forge.Forge.SetPrimaryDpu:output_type -> google.protobuf.Empty - 1057, // 2011: forge.Forge.SetPrimaryInterface:output_type -> google.protobuf.Empty - 837, // 2012: forge.Forge.CreateDpuExtensionService:output_type -> forge.DpuExtensionService - 837, // 2013: forge.Forge.UpdateDpuExtensionService:output_type -> forge.DpuExtensionService - 841, // 2014: forge.Forge.DeleteDpuExtensionService:output_type -> forge.DeleteDpuExtensionServiceResponse - 843, // 2015: forge.Forge.FindDpuExtensionServiceIds:output_type -> forge.DpuExtensionServiceIdList - 845, // 2016: forge.Forge.FindDpuExtensionServicesByIds:output_type -> forge.DpuExtensionServiceList - 847, // 2017: forge.Forge.GetDpuExtensionServiceVersionsInfo:output_type -> forge.DpuExtensionServiceVersionInfoList - 849, // 2018: forge.Forge.FindInstancesByDpuExtensionService:output_type -> forge.FindInstancesByDpuExtensionServiceResponse - 93, // 2019: forge.Forge.TriggerMachineAttestation:output_type -> forge.SpdmMachineAttestationTriggerResponse - 1057, // 2020: forge.Forge.CancelMachineAttestation:output_type -> google.protobuf.Empty - 98, // 2021: forge.Forge.ListAttestationMachines:output_type -> forge.SpdmListAttestationMachinesResponse - 95, // 2022: forge.Forge.GetAttestationMachine:output_type -> forge.SpdmGetAttestationMachineResponse - 100, // 2023: forge.Forge.SignMachineIdentity:output_type -> forge.MachineIdentityResponse - 105, // 2024: forge.Forge.GetTenantIdentityConfiguration:output_type -> forge.TenantIdentityConfigResponse - 105, // 2025: forge.Forge.SetTenantIdentityConfiguration:output_type -> forge.TenantIdentityConfigResponse - 1057, // 2026: forge.Forge.DeleteTenantIdentityConfiguration:output_type -> google.protobuf.Empty - 108, // 2027: forge.Forge.GetTokenDelegation:output_type -> forge.TokenDelegationResponse - 108, // 2028: forge.Forge.SetTokenDelegation:output_type -> forge.TokenDelegationResponse - 1057, // 2029: forge.Forge.DeleteTokenDelegation:output_type -> google.protobuf.Empty - 114, // 2030: forge.Forge.ReencryptTenantIdentitySecrets:output_type -> forge.ReencryptTenantIdentitySecretsResponse - 115, // 2031: forge.Forge.GetJWKS:output_type -> forge.Jwks - 116, // 2032: forge.Forge.GetOpenIDConfiguration:output_type -> forge.OpenIdConfiguration - 856, // 2033: forge.Forge.ScoutStream:output_type -> forge.ScoutStreamScoutBoundMessage - 859, // 2034: forge.Forge.ScoutStreamShowConnections:output_type -> forge.ScoutStreamShowConnectionsResponse - 861, // 2035: forge.Forge.ScoutStreamDisconnect:output_type -> forge.ScoutStreamDisconnectResponse - 863, // 2036: forge.Forge.ScoutStreamPing:output_type -> forge.ScoutStreamAdminPingResponse - 1183, // 2037: forge.Forge.MlxAdminProfileSync:output_type -> mlx_device.MlxAdminProfileSyncResponse - 1184, // 2038: forge.Forge.MlxAdminProfileShow:output_type -> mlx_device.MlxAdminProfileShowResponse - 1185, // 2039: forge.Forge.MlxAdminProfileCompare:output_type -> mlx_device.MlxAdminProfileCompareResponse - 1186, // 2040: forge.Forge.MlxAdminProfileList:output_type -> mlx_device.MlxAdminProfileListResponse - 1187, // 2041: forge.Forge.MlxAdminLockdownLock:output_type -> mlx_device.MlxAdminLockdownLockResponse - 1188, // 2042: forge.Forge.MlxAdminLockdownUnlock:output_type -> mlx_device.MlxAdminLockdownUnlockResponse - 1189, // 2043: forge.Forge.MlxAdminLockdownStatus:output_type -> mlx_device.MlxAdminLockdownStatusResponse - 1190, // 2044: forge.Forge.MlxAdminShowDevice:output_type -> mlx_device.MlxAdminDeviceInfoResponse - 1191, // 2045: forge.Forge.MlxAdminShowMachine:output_type -> mlx_device.MlxAdminDeviceReportResponse - 1192, // 2046: forge.Forge.MlxAdminRegistryList:output_type -> mlx_device.MlxAdminRegistryListResponse - 1193, // 2047: forge.Forge.MlxAdminRegistryShow:output_type -> mlx_device.MlxAdminRegistryShowResponse - 1194, // 2048: forge.Forge.MlxAdminConfigQuery:output_type -> mlx_device.MlxAdminConfigQueryResponse - 1195, // 2049: forge.Forge.MlxAdminConfigSet:output_type -> mlx_device.MlxAdminConfigSetResponse - 1196, // 2050: forge.Forge.MlxAdminConfigSync:output_type -> mlx_device.MlxAdminConfigSyncResponse - 1197, // 2051: forge.Forge.MlxAdminConfigCompare:output_type -> mlx_device.MlxAdminConfigCompareResponse - 774, // 2052: forge.Forge.FindNVLinkPartitionIds:output_type -> forge.NVLinkPartitionIdList - 769, // 2053: forge.Forge.FindNVLinkPartitionsByIds:output_type -> forge.NVLinkPartitionList - 769, // 2054: forge.Forge.NVLinkPartitionsForTenant:output_type -> forge.NVLinkPartitionList - 785, // 2055: forge.Forge.FindNVLinkLogicalPartitionIds:output_type -> forge.NVLinkLogicalPartitionIdList - 779, // 2056: forge.Forge.FindNVLinkLogicalPartitionsByIds:output_type -> forge.NVLinkLogicalPartitionList - 778, // 2057: forge.Forge.CreateNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartition - 787, // 2058: forge.Forge.UpdateNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartitionUpdateResult - 782, // 2059: forge.Forge.DeleteNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartitionDeletionResult - 779, // 2060: forge.Forge.NVLinkLogicalPartitionsForTenant:output_type -> forge.NVLinkLogicalPartitionList - 877, // 2061: forge.Forge.GetMachinePositionInfo:output_type -> forge.MachinePositionInfoList - 767, // 2062: forge.Forge.NmxcBrowse:output_type -> forge.NmxcBrowseResponse - 1057, // 2063: forge.Forge.ModifyDPFState:output_type -> google.protobuf.Empty - 880, // 2064: forge.Forge.GetDPFState:output_type -> forge.DPFStateResponse - 883, // 2065: forge.Forge.GetDPFHostSnapshot:output_type -> forge.DPFHostSnapshotResponse - 886, // 2066: forge.Forge.GetDPFServiceVersions:output_type -> forge.DPFServiceVersionsResponse - 894, // 2067: forge.Forge.ComponentPowerControl:output_type -> forge.ComponentPowerControlResponse - 896, // 2068: forge.Forge.ComponentConfigureSwitchCertificate:output_type -> forge.ComponentConfigureSwitchCertificateResponse - 892, // 2069: forge.Forge.GetComponentInventory:output_type -> forge.GetComponentInventoryResponse - 903, // 2070: forge.Forge.UpdateComponentFirmware:output_type -> forge.UpdateComponentFirmwareResponse - 905, // 2071: forge.Forge.GetComponentFirmwareStatus:output_type -> forge.GetComponentFirmwareStatusResponse - 909, // 2072: forge.Forge.ListComponentFirmwareVersions:output_type -> forge.ListComponentFirmwareVersionsResponse - 922, // 2073: forge.Forge.CreateOperatingSystem:output_type -> forge.OperatingSystem - 922, // 2074: forge.Forge.GetOperatingSystem:output_type -> forge.OperatingSystem - 922, // 2075: forge.Forge.UpdateOperatingSystem:output_type -> forge.OperatingSystem - 928, // 2076: forge.Forge.DeleteOperatingSystem:output_type -> forge.DeleteOperatingSystemResponse - 930, // 2077: forge.Forge.FindOperatingSystemIds:output_type -> forge.OperatingSystemIdList - 932, // 2078: forge.Forge.FindOperatingSystemsByIds:output_type -> forge.OperatingSystemList - 934, // 2079: forge.Forge.GetOperatingSystemCachableIpxeTemplateArtifacts:output_type -> forge.IpxeTemplateArtifactList - 934, // 2080: forge.Forge.UpdateOperatingSystemCachableIpxeTemplateArtifacts:output_type -> forge.IpxeTemplateArtifactList - 939, // 2081: forge.Forge.ReWrapSecrets:output_type -> forge.ReWrapSecretsResponse - 1619, // [1619:2082] is the sub-list for method output_type - 1156, // [1156:1619] is the sub-list for method input_type - 1156, // [1156:1156] is the sub-list for extension type_name - 1156, // [1156:1156] is the sub-list for extension extendee - 0, // [0:1156] is the sub-list for field type_name + 986, // 393: forge.MachineBmcVendorOverrideUpdateRequest.machine_id:type_name -> common.MachineId + 995, // 394: forge.RackMetadataUpdateRequest.rack_id:type_name -> common.RackId + 260, // 395: forge.RackMetadataUpdateRequest.metadata:type_name -> forge.Metadata + 997, // 396: forge.SwitchMetadataUpdateRequest.switch_id:type_name -> common.SwitchId + 260, // 397: forge.SwitchMetadataUpdateRequest.metadata:type_name -> forge.Metadata + 994, // 398: forge.PowerShelfMetadataUpdateRequest.power_shelf_id:type_name -> common.PowerShelfId + 260, // 399: forge.PowerShelfMetadataUpdateRequest.metadata:type_name -> forge.Metadata + 986, // 400: forge.DpuAgentInventoryReport.machine_id:type_name -> common.MachineId + 345, // 401: forge.DpuAgentInventoryReport.inventory:type_name -> forge.MachineComponentInventory + 346, // 402: forge.MachineComponentInventory.components:type_name -> forge.MachineInventorySoftwareComponent + 39, // 403: forge.HealthSourceOrigin.mode:type_name -> forge.HealthReportApplyMode + 22, // 404: forge.ControllerStateReason.outcome:type_name -> forge.ControllerStateOutcome + 349, // 405: forge.ControllerStateReason.source_ref:type_name -> forge.ControllerStateSourceReference + 1009, // 406: forge.StateSla.sla:type_name -> google.protobuf.Duration + 8, // 407: forge.InstanceTenantStatus.state:type_name -> forge.TenantState + 987, // 408: forge.MachineEvent.time:type_name -> google.protobuf.Timestamp + 1007, // 409: forge.MachineInterface.id:type_name -> common.MachineInterfaceId + 986, // 410: forge.MachineInterface.attached_dpu_machine_id:type_name -> common.MachineId + 986, // 411: forge.MachineInterface.machine_id:type_name -> common.MachineId + 1000, // 412: forge.MachineInterface.segment_id:type_name -> common.NetworkSegmentId + 999, // 413: forge.MachineInterface.domain_id:type_name -> common.DomainId + 987, // 414: forge.MachineInterface.created:type_name -> google.protobuf.Timestamp + 987, // 415: forge.MachineInterface.last_dhcp:type_name -> google.protobuf.Timestamp + 994, // 416: forge.MachineInterface.power_shelf_id:type_name -> common.PowerShelfId + 997, // 417: forge.MachineInterface.switch_id:type_name -> common.SwitchId + 25, // 418: forge.MachineInterface.association_type:type_name -> forge.InterfaceAssociationType + 26, // 419: forge.MachineInterface.interface_type:type_name -> forge.InterfaceType + 355, // 420: forge.InfinibandStatusObservation.ib_interfaces:type_name -> forge.MachineIbInterface + 987, // 421: forge.InfinibandStatusObservation.observed_at:type_name -> google.protobuf.Timestamp + 1010, // 422: forge.MachineIbInterface.associated_pkeys:type_name -> common.StringList + 1010, // 423: forge.MachineIbInterface.associated_partition_ids:type_name -> common.StringList + 27, // 424: forge.DhcpDiscovery.address_family:type_name -> forge.AddressFamily + 28, // 425: forge.DhcpDiscovery.message_kind:type_name -> forge.MessageKind + 29, // 426: forge.ExpireDhcpLeaseResponse.status:type_name -> forge.ExpireDhcpLeaseStatus + 986, // 427: forge.DhcpRecord.machine_id:type_name -> common.MachineId + 1007, // 428: forge.DhcpRecord.machine_interface_id:type_name -> common.MachineInterfaceId + 1000, // 429: forge.DhcpRecord.segment_id:type_name -> common.NetworkSegmentId + 999, // 430: forge.DhcpRecord.subdomain_id:type_name -> common.DomainId + 987, // 431: forge.DhcpRecord.last_invalidation_time:type_name -> google.protobuf.Timestamp + 244, // 432: forge.NetworkSegmentList.network_segments:type_name -> forge.NetworkSegment + 30, // 433: forge.SSHKeyValidationResponse.role:type_name -> forge.UserRoles + 997, // 434: forge.GetSwitchNvosCredentialsRequest.switch_id:type_name -> common.SwitchId + 366, // 435: forge.GetBmcCredentialsResponse.credentials:type_name -> forge.BmcCredentials + 834, // 436: forge.BmcCredentials.username_password:type_name -> forge.UsernamePassword + 835, // 437: forge.BmcCredentials.session_token:type_name -> forge.SessionToken + 374, // 438: forge.SshRequest.endpoint_request:type_name -> forge.BmcEndpointRequest + 376, // 439: forge.CopyBfbToDpuRshimRequest.ssh_request:type_name -> forge.SshRequest + 986, // 440: forge.UpdateMachineHardwareInfoRequest.machine_id:type_name -> common.MachineId + 379, // 441: forge.UpdateMachineHardwareInfoRequest.info:type_name -> forge.MachineHardwareInfo + 31, // 442: forge.UpdateMachineHardwareInfoRequest.update_type:type_name -> forge.MachineHardwareInfoUpdateType + 1011, // 443: forge.MachineHardwareInfo.gpus:type_name -> machine_discovery.Gpu + 986, // 444: forge.ManagedHostNetworkConfigRequest.dpu_machine_id:type_name -> common.MachineId + 392, // 445: forge.ManagedHostNetworkConfigResponse.managed_host_config:type_name -> forge.ManagedHostNetworkConfig + 393, // 446: forge.ManagedHostNetworkConfigResponse.admin_interface:type_name -> forge.FlatInterfaceConfig + 393, // 447: forge.ManagedHostNetworkConfigResponse.tenant_interfaces:type_name -> forge.FlatInterfaceConfig + 1002, // 448: forge.ManagedHostNetworkConfigResponse.instance_id:type_name -> common.InstanceId + 6, // 449: forge.ManagedHostNetworkConfigResponse.network_virtualization_type:type_name -> forge.VpcVirtualizationType + 33, // 450: forge.ManagedHostNetworkConfigResponse.vpc_isolation_behavior:type_name -> forge.VpcIsolationBehaviorType + 293, // 451: forge.ManagedHostNetworkConfigResponse.instance:type_name -> forge.Instance + 1012, // 452: forge.ManagedHostNetworkConfigResponse.common_internal_route_target:type_name -> common.RouteTarget + 1012, // 453: forge.ManagedHostNetworkConfigResponse.additional_route_target_imports:type_name -> common.RouteTarget + 682, // 454: forge.ManagedHostNetworkConfigResponse.network_security_policy_overrides:type_name -> forge.ResolvedNetworkSecurityGroupRule + 384, // 455: forge.ManagedHostNetworkConfigResponse.dpu_extension_services:type_name -> forge.ManagedHostDpuExtensionServiceConfig + 382, // 456: forge.ManagedHostNetworkConfigResponse.traffic_intercept_config:type_name -> forge.TrafficInterceptConfig + 870, // 457: forge.ManagedHostNetworkConfigResponse.routing_profile:type_name -> forge.RoutingProfile + 759, // 458: forge.ManagedHostNetworkConfigResponse.astra_config:type_name -> forge.AstraConfig + 383, // 459: forge.TrafficInterceptConfig.bridging:type_name -> forge.TrafficInterceptBridging + 955, // 460: forge.TrafficInterceptBridging.host_representor_intercept_bridging:type_name -> forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry + 71, // 461: forge.ManagedHostDpuExtensionServiceConfig.service_type:type_name -> forge.DpuExtensionServiceType + 836, // 462: forge.ManagedHostDpuExtensionServiceConfig.credential:type_name -> forge.DpuExtensionServiceCredential + 855, // 463: forge.ManagedHostDpuExtensionServiceConfig.observability:type_name -> forge.DpuExtensionServiceObservability + 32, // 464: forge.ManagedHostQuarantineState.mode:type_name -> forge.ManagedHostQuarantineMode + 986, // 465: forge.GetManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId + 385, // 466: forge.GetManagedHostQuarantineStateResponse.quarantine_state:type_name -> forge.ManagedHostQuarantineState + 986, // 467: forge.SetManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId + 385, // 468: forge.SetManagedHostQuarantineStateRequest.quarantine_state:type_name -> forge.ManagedHostQuarantineState + 385, // 469: forge.SetManagedHostQuarantineStateResponse.prior_quarantine_state:type_name -> forge.ManagedHostQuarantineState + 986, // 470: forge.ClearManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId + 385, // 471: forge.ClearManagedHostQuarantineStateResponse.prior_quarantine_state:type_name -> forge.ManagedHostQuarantineState + 385, // 472: forge.ManagedHostNetworkConfig.quarantine_state:type_name -> forge.ManagedHostQuarantineState + 38, // 473: forge.FlatInterfaceConfig.function_type:type_name -> forge.InterfaceFunctionType + 395, // 474: forge.FlatInterfaceConfig.ipv6_interface_config:type_name -> forge.FlatInterfaceIpv6Config + 870, // 475: forge.FlatInterfaceConfig.vpc_routing_profile:type_name -> forge.RoutingProfile + 394, // 476: forge.FlatInterfaceConfig.interface_routing_profile:type_name -> forge.FlatInterfaceRoutingProfile + 396, // 477: forge.FlatInterfaceConfig.network_security_group:type_name -> forge.FlatInterfaceNetworkSecurityGroupConfig + 996, // 478: forge.FlatInterfaceConfig.internal_uuid:type_name -> common.UUID + 869, // 479: forge.FlatInterfaceRoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry + 56, // 480: forge.FlatInterfaceNetworkSecurityGroupConfig.source:type_name -> forge.NetworkSecurityGroupSource + 682, // 481: forge.FlatInterfaceNetworkSecurityGroupConfig.rules:type_name -> forge.ResolvedNetworkSecurityGroupRule + 445, // 482: forge.ManagedHostNetworkStatusResponse.all:type_name -> forge.DpuNetworkStatus + 987, // 483: forge.DpuAgentUpgradeCheckRequest.binary_mtime:type_name -> google.protobuf.Timestamp + 34, // 484: forge.DpuAgentUpgradePolicyRequest.new_policy:type_name -> forge.AgentUpgradePolicy + 34, // 485: forge.DpuAgentUpgradePolicyResponse.active_policy:type_name -> forge.AgentUpgradePolicy + 374, // 486: forge.LockdownRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 986, // 487: forge.LockdownRequest.machine_id:type_name -> common.MachineId + 35, // 488: forge.LockdownRequest.action:type_name -> forge.LockdownAction + 374, // 489: forge.LockdownStatusRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 986, // 490: forge.LockdownStatusRequest.machine_id:type_name -> common.MachineId + 374, // 491: forge.MachineSetupStatusRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 374, // 492: forge.MachineSetupRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 374, // 493: forge.SetDpuFirstBootOrderRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 374, // 494: forge.AdminRebootRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 374, // 495: forge.AdminBmcResetRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 374, // 496: forge.EnableInfiniteBootRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 374, // 497: forge.IsInfiniteBootEnabledRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 986, // 498: forge.BMCMetaDataGetRequest.machine_id:type_name -> common.MachineId + 30, // 499: forge.BMCMetaDataGetRequest.role:type_name -> forge.UserRoles + 36, // 500: forge.BMCMetaDataGetRequest.request_type:type_name -> forge.BMCRequestType + 374, // 501: forge.BMCMetaDataGetRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 986, // 502: forge.MachineCredentialsUpdateRequest.machine_id:type_name -> common.MachineId + 956, // 503: forge.MachineCredentialsUpdateRequest.credentials:type_name -> forge.MachineCredentialsUpdateRequest.Credentials + 986, // 504: forge.ForgeAgentControlRequest.machine_id:type_name -> common.MachineId + 83, // 505: forge.ForgeAgentControlResponse.legacy_action:type_name -> forge.ForgeAgentControlResponse.LegacyAction + 957, // 506: forge.ForgeAgentControlResponse.data:type_name -> forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo + 958, // 507: forge.ForgeAgentControlResponse.noop:type_name -> forge.ForgeAgentControlResponse.Noop + 959, // 508: forge.ForgeAgentControlResponse.reset:type_name -> forge.ForgeAgentControlResponse.Reset + 960, // 509: forge.ForgeAgentControlResponse.discovery:type_name -> forge.ForgeAgentControlResponse.Discovery + 961, // 510: forge.ForgeAgentControlResponse.rebuild:type_name -> forge.ForgeAgentControlResponse.Rebuild + 962, // 511: forge.ForgeAgentControlResponse.retry:type_name -> forge.ForgeAgentControlResponse.Retry + 963, // 512: forge.ForgeAgentControlResponse.measure:type_name -> forge.ForgeAgentControlResponse.Measure + 964, // 513: forge.ForgeAgentControlResponse.log_error:type_name -> forge.ForgeAgentControlResponse.LogError + 965, // 514: forge.ForgeAgentControlResponse.machine_validation:type_name -> forge.ForgeAgentControlResponse.MachineValidation + 967, // 515: forge.ForgeAgentControlResponse.mlx_action:type_name -> forge.ForgeAgentControlResponse.MlxAction + 974, // 516: forge.ForgeAgentControlResponse.firmware_upgrade:type_name -> forge.ForgeAgentControlResponse.FirmwareUpgrade + 1007, // 517: forge.MachineDiscoveryInfo.machine_interface_id:type_name -> common.MachineInterfaceId + 1008, // 518: forge.MachineDiscoveryInfo.info:type_name -> machine_discovery.DiscoveryInfo + 37, // 519: forge.MachineDiscoveryInfo.discovery_reporter:type_name -> forge.MachineDiscoveryReporter + 986, // 520: forge.MachineDiscoveryCompletedRequest.machine_id:type_name -> common.MachineId + 986, // 521: forge.MachineCleanupInfo.machine_id:type_name -> common.MachineId + 976, // 522: forge.MachineCleanupInfo.nvme:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 976, // 523: forge.MachineCleanupInfo.ram:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 976, // 524: forge.MachineCleanupInfo.mem_overwrite:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 976, // 525: forge.MachineCleanupInfo.ib:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 976, // 526: forge.MachineCleanupInfo.hdd:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 84, // 527: forge.MachineCleanupInfo.result:type_name -> forge.MachineCleanupInfo.CleanupResult + 431, // 528: forge.MachineCertificateResult.machine_certificate:type_name -> forge.MachineCertificate + 986, // 529: forge.MachineDiscoveryResult.machine_id:type_name -> common.MachineId + 431, // 530: forge.MachineDiscoveryResult.machine_certificate:type_name -> forge.MachineCertificate + 127, // 531: forge.MachineDiscoveryResult.attest_key_challenge:type_name -> forge.AttestKeyBindChallenge + 1007, // 532: forge.MachineDiscoveryResult.machine_interface_id:type_name -> common.MachineInterfaceId + 986, // 533: forge.ForgeScoutErrorReport.machine_id:type_name -> common.MachineId + 1007, // 534: forge.ForgeScoutErrorReport.machine_interface_id:type_name -> common.MachineInterfaceId + 24, // 535: forge.PxeInstructionRequest.arch:type_name -> forge.MachineArchitecture + 1007, // 536: forge.PxeInstructionRequest.interface_id:type_name -> common.MachineInterfaceId + 353, // 537: forge.CloudInitDiscoveryInstructions.machine_interface:type_name -> forge.MachineInterface + 876, // 538: forge.CloudInitDiscoveryInstructions.domain:type_name -> forge.PxeDomain + 441, // 539: forge.CloudInitInstructions.discovery_instructions:type_name -> forge.CloudInitDiscoveryInstructions + 442, // 540: forge.CloudInitInstructions.metadata:type_name -> forge.CloudInitMetaData + 986, // 541: forge.DpuNetworkStatus.dpu_machine_id:type_name -> common.MachineId + 987, // 542: forge.DpuNetworkStatus.observed_at:type_name -> google.protobuf.Timestamp + 466, // 543: forge.DpuNetworkStatus.interfaces:type_name -> forge.InstanceInterfaceStatusObservation + 1002, // 544: forge.DpuNetworkStatus.instance_id:type_name -> common.InstanceId + 993, // 545: forge.DpuNetworkStatus.dpu_health:type_name -> health.HealthReport + 467, // 546: forge.DpuNetworkStatus.fabric_interfaces:type_name -> forge.FabricInterfaceData + 446, // 547: forge.DpuNetworkStatus.last_dhcp_requests:type_name -> forge.LastDhcpRequest + 447, // 548: forge.DpuNetworkStatus.dpu_extension_services:type_name -> forge.DpuExtensionServiceStatusObservation + 761, // 549: forge.DpuNetworkStatus.astra_config_status:type_name -> forge.AstraConfigStatus + 1007, // 550: forge.LastDhcpRequest.host_interface_id:type_name -> common.MachineInterfaceId + 71, // 551: forge.DpuExtensionServiceStatusObservation.service_type:type_name -> forge.DpuExtensionServiceType + 72, // 552: forge.DpuExtensionServiceStatusObservation.state:type_name -> forge.DpuExtensionServiceDeploymentStatus + 448, // 553: forge.DpuExtensionServiceStatusObservation.components:type_name -> forge.DpuExtensionServiceComponent + 993, // 554: forge.OptionalHealthReport.report:type_name -> health.HealthReport + 993, // 555: forge.HealthReportEntry.report:type_name -> health.HealthReport + 39, // 556: forge.HealthReportEntry.mode:type_name -> forge.HealthReportApplyMode + 986, // 557: forge.InsertMachineHealthReportRequest.machine_id:type_name -> common.MachineId + 450, // 558: forge.InsertMachineHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 995, // 559: forge.InsertRackHealthReportRequest.rack_id:type_name -> common.RackId + 450, // 560: forge.InsertRackHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 995, // 561: forge.RemoveRackHealthReportRequest.rack_id:type_name -> common.RackId + 995, // 562: forge.ListRackHealthReportsRequest.rack_id:type_name -> common.RackId + 997, // 563: forge.InsertSwitchHealthReportRequest.switch_id:type_name -> common.SwitchId + 450, // 564: forge.InsertSwitchHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 997, // 565: forge.RemoveSwitchHealthReportRequest.switch_id:type_name -> common.SwitchId + 997, // 566: forge.ListSwitchHealthReportsRequest.switch_id:type_name -> common.SwitchId + 994, // 567: forge.InsertPowerShelfHealthReportRequest.power_shelf_id:type_name -> common.PowerShelfId + 450, // 568: forge.InsertPowerShelfHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 994, // 569: forge.RemovePowerShelfHealthReportRequest.power_shelf_id:type_name -> common.PowerShelfId + 994, // 570: forge.ListPowerShelfHealthReportsRequest.power_shelf_id:type_name -> common.PowerShelfId + 450, // 571: forge.ListHealthReportResponse.health_report_entries:type_name -> forge.HealthReportEntry + 986, // 572: forge.RemoveMachineHealthReportRequest.machine_id:type_name -> common.MachineId + 1006, // 573: forge.ListNVLinkDomainHealthReportsRequest.domain_id:type_name -> common.NVLinkDomainId + 1006, // 574: forge.InsertNVLinkDomainHealthReportRequest.domain_id:type_name -> common.NVLinkDomainId + 450, // 575: forge.InsertNVLinkDomainHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 1006, // 576: forge.RemoveNVLinkDomainHealthReportRequest.domain_id:type_name -> common.NVLinkDomainId + 38, // 577: forge.InstanceInterfaceStatusObservation.function_type:type_name -> forge.InterfaceFunctionType + 676, // 578: forge.InstanceInterfaceStatusObservation.network_security_group:type_name -> forge.NetworkSecurityGroupStatus + 996, // 579: forge.InstanceInterfaceStatusObservation.internal_uuid:type_name -> common.UUID + 468, // 580: forge.FabricInterfaceData.link_data:type_name -> forge.LinkData + 260, // 581: forge.Tenant.metadata:type_name -> forge.Metadata + 260, // 582: forge.CreateTenantRequest.metadata:type_name -> forge.Metadata + 469, // 583: forge.CreateTenantResponse.tenant:type_name -> forge.Tenant + 260, // 584: forge.UpdateTenantRequest.metadata:type_name -> forge.Metadata + 469, // 585: forge.UpdateTenantResponse.tenant:type_name -> forge.Tenant + 469, // 586: forge.FindTenantResponse.tenant:type_name -> forge.Tenant + 477, // 587: forge.TenantKeysetContent.public_keys:type_name -> forge.TenantPublicKey + 476, // 588: forge.TenantKeyset.keyset_identifier:type_name -> forge.TenantKeysetIdentifier + 478, // 589: forge.TenantKeyset.keyset_content:type_name -> forge.TenantKeysetContent + 476, // 590: forge.CreateTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier + 478, // 591: forge.CreateTenantKeysetRequest.keyset_content:type_name -> forge.TenantKeysetContent + 479, // 592: forge.CreateTenantKeysetResponse.keyset:type_name -> forge.TenantKeyset + 479, // 593: forge.TenantKeySetList.keyset:type_name -> forge.TenantKeyset + 476, // 594: forge.UpdateTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier + 478, // 595: forge.UpdateTenantKeysetRequest.keyset_content:type_name -> forge.TenantKeysetContent + 476, // 596: forge.DeleteTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier + 476, // 597: forge.TenantKeysetIdList.keyset_ids:type_name -> forge.TenantKeysetIdentifier + 476, // 598: forge.TenantKeysetsByIdsRequest.keyset_ids:type_name -> forge.TenantKeysetIdentifier + 494, // 599: forge.ResourcePools.pools:type_name -> forge.ResourcePool + 41, // 600: forge.MaintenanceRequest.operation:type_name -> forge.MaintenanceOperation + 986, // 601: forge.MaintenanceRequest.host_id:type_name -> common.MachineId + 42, // 602: forge.SetDynamicConfigRequest.setting:type_name -> forge.ConfigSetting + 522, // 603: forge.FindIpAddressResponse.matches:type_name -> forge.IpAddressMatch + 996, // 604: forge.IdentifyUuidRequest.uuid:type_name -> common.UUID + 996, // 605: forge.IdentifyUuidResponse.uuid:type_name -> common.UUID + 43, // 606: forge.IdentifyUuidResponse.object_type:type_name -> forge.UuidType + 44, // 607: forge.IdentifyMacResponse.object_type:type_name -> forge.MacOwner + 986, // 608: forge.IdentifySerialResponse.machine_id:type_name -> common.MachineId + 986, // 609: forge.DpuReprovisioningRequest.dpu_id:type_name -> common.MachineId + 85, // 610: forge.DpuReprovisioningRequest.mode:type_name -> forge.DpuReprovisioningRequest.Mode + 45, // 611: forge.DpuReprovisioningRequest.initiator:type_name -> forge.UpdateInitiator + 986, // 612: forge.DpuReprovisioningRequest.machine_id:type_name -> common.MachineId + 977, // 613: forge.DpuReprovisioningListResponse.dpus:type_name -> forge.DpuReprovisioningListResponse.DpuReprovisioningListItem + 986, // 614: forge.HostReprovisioningRequest.machine_id:type_name -> common.MachineId + 86, // 615: forge.HostReprovisioningRequest.mode:type_name -> forge.HostReprovisioningRequest.Mode + 45, // 616: forge.HostReprovisioningRequest.initiator:type_name -> forge.UpdateInitiator + 978, // 617: forge.HostReprovisioningListResponse.hosts:type_name -> forge.HostReprovisioningListResponse.HostReprovisioningListItem + 516, // 618: forge.DpuInfoStatusObservation.os_operational_state:type_name -> forge.DpuOsOperationalState + 517, // 619: forge.DpuInfoStatusObservation.representors:type_name -> forge.DpuRepresentorStatus + 987, // 620: forge.DpuInfoStatusObservation.last_heartbeat:type_name -> google.protobuf.Timestamp + 518, // 621: forge.DpuInfo.observed_status:type_name -> forge.DpuInfoStatusObservation + 519, // 622: forge.GetDpuInfoListResponse.dpu_list:type_name -> forge.DpuInfo + 46, // 623: forge.IpAddressMatch.ip_type:type_name -> forge.IpType + 1007, // 624: forge.MachineBootOverride.machine_interface_id:type_name -> common.MachineInterfaceId + 986, // 625: forge.ConnectedDevice.id:type_name -> common.MachineId + 524, // 626: forge.ConnectedDeviceList.connected_devices:type_name -> forge.ConnectedDevice + 530, // 627: forge.MachineIdBmcIpPairs.pairs:type_name -> forge.MachineIdBmcIp + 986, // 628: forge.MachineIdBmcIp.machine_id:type_name -> common.MachineId + 524, // 629: forge.NetworkDevice.devices:type_name -> forge.ConnectedDevice + 531, // 630: forge.NetworkTopologyData.network_devices:type_name -> forge.NetworkDevice + 47, // 631: forge.RouteServers.source_type:type_name -> forge.RouteServerSourceType + 537, // 632: forge.RouteServerEntries.route_servers:type_name -> forge.RouteServer + 47, // 633: forge.RouteServer.source_type:type_name -> forge.RouteServerSourceType + 986, // 634: forge.SetHostUefiPasswordRequest.host_id:type_name -> common.MachineId + 986, // 635: forge.ClearHostUefiPasswordRequest.host_id:type_name -> common.MachineId + 996, // 636: forge.OsImageAttributes.id:type_name -> common.UUID + 542, // 637: forge.OsImage.attributes:type_name -> forge.OsImageAttributes + 48, // 638: forge.OsImage.status:type_name -> forge.OsImageStatus + 543, // 639: forge.ListOsImageResponse.images:type_name -> forge.OsImage + 996, // 640: forge.DeleteOsImageRequest.id:type_name -> common.UUID + 1003, // 641: forge.GetIpxeTemplateRequest.id:type_name -> common.IpxeTemplateId + 269, // 642: forge.IpxeTemplateList.templates:type_name -> forge.IpxeTemplate + 12, // 643: forge.ExpectedHostNic.network_segment_type:type_name -> forge.NetworkSegmentType + 260, // 644: forge.ExpectedMachine.metadata:type_name -> forge.Metadata + 996, // 645: forge.ExpectedMachine.id:type_name -> common.UUID + 551, // 646: forge.ExpectedMachine.host_nics:type_name -> forge.ExpectedHostNic + 995, // 647: forge.ExpectedMachine.rack_id:type_name -> common.RackId + 49, // 648: forge.ExpectedMachine.dpu_mode:type_name -> forge.DpuMode + 552, // 649: forge.ExpectedMachine.host_lifecycle_profile:type_name -> forge.HostLifecycleProfile + 50, // 650: forge.ExpectedMachine.bmc_ip_allocation:type_name -> forge.BmcIpAllocationType + 996, // 651: forge.ExpectedMachineRequest.id:type_name -> common.UUID + 553, // 652: forge.ExpectedMachineList.expected_machines:type_name -> forge.ExpectedMachine + 557, // 653: forge.LinkedExpectedMachineList.expected_machines:type_name -> forge.LinkedExpectedMachine + 986, // 654: forge.LinkedExpectedMachine.machine_id:type_name -> common.MachineId + 996, // 655: forge.LinkedExpectedMachine.expected_machine_id:type_name -> common.UUID + 559, // 656: forge.UnexpectedMachineList.unexpected_machines:type_name -> forge.UnexpectedMachine + 986, // 657: forge.UnexpectedMachine.machine_id:type_name -> common.MachineId + 555, // 658: forge.BatchExpectedMachineOperationRequest.expected_machines:type_name -> forge.ExpectedMachineList + 996, // 659: forge.ExpectedMachineOperationResult.id:type_name -> common.UUID + 553, // 660: forge.ExpectedMachineOperationResult.expected_machine:type_name -> forge.ExpectedMachine + 561, // 661: forge.BatchExpectedMachineOperationResponse.results:type_name -> forge.ExpectedMachineOperationResult + 986, // 662: forge.MachineRebootCompletedRequest.machine_id:type_name -> common.MachineId + 986, // 663: forge.ScoutFirmwareUpgradeStatusRequest.machine_id:type_name -> common.MachineId + 986, // 664: forge.MachineValidationCompletedRequest.machine_id:type_name -> common.MachineId + 1013, // 665: forge.MachineValidationCompletedRequest.validation_id:type_name -> common.MachineValidationId + 987, // 666: forge.MachineValidationResult.start_time:type_name -> google.protobuf.Timestamp + 987, // 667: forge.MachineValidationResult.end_time:type_name -> google.protobuf.Timestamp + 1013, // 668: forge.MachineValidationResult.validation_id:type_name -> common.MachineValidationId + 568, // 669: forge.MachineValidationResultPostRequest.result:type_name -> forge.MachineValidationResult + 568, // 670: forge.MachineValidationResultList.results:type_name -> forge.MachineValidationResult + 986, // 671: forge.MachineValidationGetRequest.machine_id:type_name -> common.MachineId + 1013, // 672: forge.MachineValidationGetRequest.validation_id:type_name -> common.MachineValidationId + 51, // 673: forge.MachineValidationStatus.started:type_name -> forge.MachineValidationStarted + 52, // 674: forge.MachineValidationStatus.in_progress:type_name -> forge.MachineValidationInProgress + 53, // 675: forge.MachineValidationStatus.completed:type_name -> forge.MachineValidationCompleted + 1013, // 676: forge.MachineValidationRun.validation_id:type_name -> common.MachineValidationId + 986, // 677: forge.MachineValidationRun.machine_id:type_name -> common.MachineId + 987, // 678: forge.MachineValidationRun.start_time:type_name -> google.protobuf.Timestamp + 987, // 679: forge.MachineValidationRun.end_time:type_name -> google.protobuf.Timestamp + 572, // 680: forge.MachineValidationRun.status:type_name -> forge.MachineValidationStatus + 1009, // 681: forge.MachineValidationRun.duration_to_complete:type_name -> google.protobuf.Duration + 987, // 682: forge.MachineValidationRun.last_heartbeat_at:type_name -> google.protobuf.Timestamp + 986, // 683: forge.MachineSetAutoUpdateRequest.machine_id:type_name -> common.MachineId + 87, // 684: forge.MachineSetAutoUpdateRequest.action:type_name -> forge.MachineSetAutoUpdateRequest.SetAutoupdateAction + 987, // 685: forge.MachineValidationExternalConfig.timestamp:type_name -> google.protobuf.Timestamp + 577, // 686: forge.GetMachineValidationExternalConfigResponse.config:type_name -> forge.MachineValidationExternalConfig + 577, // 687: forge.GetMachineValidationExternalConfigsResponse.configs:type_name -> forge.MachineValidationExternalConfig + 986, // 688: forge.MachineValidationOnDemandRequest.machine_id:type_name -> common.MachineId + 88, // 689: forge.MachineValidationOnDemandRequest.action:type_name -> forge.MachineValidationOnDemandRequest.Action + 1013, // 690: forge.MachineValidationOnDemandResponse.validation_id:type_name -> common.MachineValidationId + 585, // 691: forge.MaintenanceActivityConfig.firmware_upgrade:type_name -> forge.FirmwareUpgradeActivity + 587, // 692: forge.MaintenanceActivityConfig.configure_nmx_cluster:type_name -> forge.ConfigureNmxClusterActivity + 588, // 693: forge.MaintenanceActivityConfig.power_sequence:type_name -> forge.PowerSequenceActivity + 586, // 694: forge.MaintenanceActivityConfig.nvos_update:type_name -> forge.NvosUpdateActivity + 589, // 695: forge.RackMaintenanceScope.activities:type_name -> forge.MaintenanceActivityConfig + 995, // 696: forge.RackMaintenanceOnDemandRequest.rack_id:type_name -> common.RackId + 590, // 697: forge.RackMaintenanceOnDemandRequest.scope:type_name -> forge.RackMaintenanceScope + 374, // 698: forge.AdminPowerControlRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 89, // 699: forge.AdminPowerControlRequest.action:type_name -> forge.AdminPowerControlRequest.SystemPowerControl + 986, // 700: forge.GetRedfishJobStateRequest.machine_id:type_name -> common.MachineId + 90, // 701: forge.GetRedfishJobStateResponse.job_state:type_name -> forge.GetRedfishJobStateResponse.RedfishJobState + 573, // 702: forge.MachineValidationRunList.runs:type_name -> forge.MachineValidationRun + 986, // 703: forge.MachineValidationRunListGetRequest.machine_id:type_name -> common.MachineId + 1013, // 704: forge.MachineValidationRunItemSearchFilter.validation_id:type_name -> common.MachineValidationId + 996, // 705: forge.MachineValidationRunItemIdList.run_item_ids:type_name -> common.UUID + 996, // 706: forge.MachineValidationRunItemsByIdsRequest.run_item_ids:type_name -> common.UUID + 603, // 707: forge.MachineValidationRunItemList.run_items:type_name -> forge.MachineValidationRunItem + 996, // 708: forge.MachineValidationRunItem.run_item_id:type_name -> common.UUID + 1013, // 709: forge.MachineValidationRunItem.validation_id:type_name -> common.MachineValidationId + 1009, // 710: forge.MachineValidationRunItem.timeout:type_name -> google.protobuf.Duration + 987, // 711: forge.MachineValidationRunItem.started_at:type_name -> google.protobuf.Timestamp + 987, // 712: forge.MachineValidationRunItem.ended_at:type_name -> google.protobuf.Timestamp + 987, // 713: forge.MachineValidationRunItem.last_heartbeat_at:type_name -> google.protobuf.Timestamp + 996, // 714: forge.MachineValidationRunItem.current_attempt_id:type_name -> common.UUID + 996, // 715: forge.MachineValidationAttemptGetRequest.attempt_id:type_name -> common.UUID + 996, // 716: forge.MachineValidationAttempt.attempt_id:type_name -> common.UUID + 996, // 717: forge.MachineValidationAttempt.run_item_id:type_name -> common.UUID + 987, // 718: forge.MachineValidationAttempt.started_at:type_name -> google.protobuf.Timestamp + 987, // 719: forge.MachineValidationAttempt.ended_at:type_name -> google.protobuf.Timestamp + 987, // 720: forge.MachineValidationAttempt.last_heartbeat_at:type_name -> google.protobuf.Timestamp + 1013, // 721: forge.MachineValidationHeartbeatRequest.validation_id:type_name -> common.MachineValidationId + 996, // 722: forge.MachineValidationHeartbeatRequest.run_item_id:type_name -> common.UUID + 996, // 723: forge.MachineValidationHeartbeatRequest.attempt_id:type_name -> common.UUID + 979, // 724: forge.MachineValidationTestUpdateRequest.payload:type_name -> forge.MachineValidationTestUpdateRequest.Payload + 617, // 725: forge.MachineValidationTestsGetResponse.tests:type_name -> forge.MachineValidationTest + 1013, // 726: forge.MachineValidationRunRequest.validation_id:type_name -> common.MachineValidationId + 1009, // 727: forge.MachineValidationRunRequest.duration_to_complete:type_name -> google.protobuf.Duration + 617, // 728: forge.MachineValidationRunRequest.selected_tests:type_name -> forge.MachineValidationTest + 54, // 729: forge.MachineCapabilityAttributesGpu.device_type:type_name -> forge.MachineCapabilityDeviceType + 54, // 730: forge.MachineCapabilityAttributesNetwork.device_type:type_name -> forge.MachineCapabilityDeviceType + 624, // 731: forge.MachineCapabilitiesSet.cpu:type_name -> forge.MachineCapabilityAttributesCpu + 625, // 732: forge.MachineCapabilitiesSet.gpu:type_name -> forge.MachineCapabilityAttributesGpu + 626, // 733: forge.MachineCapabilitiesSet.memory:type_name -> forge.MachineCapabilityAttributesMemory + 627, // 734: forge.MachineCapabilitiesSet.storage:type_name -> forge.MachineCapabilityAttributesStorage + 628, // 735: forge.MachineCapabilitiesSet.network:type_name -> forge.MachineCapabilityAttributesNetwork + 629, // 736: forge.MachineCapabilitiesSet.infiniband:type_name -> forge.MachineCapabilityAttributesInfiniband + 630, // 737: forge.MachineCapabilitiesSet.dpu:type_name -> forge.MachineCapabilityAttributesDpu + 634, // 738: forge.InstanceTypeAttributes.desired_capabilities:type_name -> forge.InstanceTypeMachineCapabilityFilterAttributes + 632, // 739: forge.InstanceType.attributes:type_name -> forge.InstanceTypeAttributes + 260, // 740: forge.InstanceType.metadata:type_name -> forge.Metadata + 732, // 741: forge.InstanceType.allocation_stats:type_name -> forge.InstanceTypeAllocationStats + 55, // 742: forge.InstanceTypeMachineCapabilityFilterAttributes.capability_type:type_name -> forge.MachineCapabilityType + 1014, // 743: forge.InstanceTypeMachineCapabilityFilterAttributes.inactive_devices:type_name -> common.Uint32List + 54, // 744: forge.InstanceTypeMachineCapabilityFilterAttributes.device_type:type_name -> forge.MachineCapabilityDeviceType + 260, // 745: forge.CreateInstanceTypeRequest.metadata:type_name -> forge.Metadata + 632, // 746: forge.CreateInstanceTypeRequest.instance_type_attributes:type_name -> forge.InstanceTypeAttributes + 633, // 747: forge.CreateInstanceTypeResponse.instance_type:type_name -> forge.InstanceType + 633, // 748: forge.FindInstanceTypesByIdsResponse.instance_types:type_name -> forge.InstanceType + 633, // 749: forge.UpdateInstanceTypeResponse.instance_type:type_name -> forge.InstanceType + 260, // 750: forge.UpdateInstanceTypeRequest.metadata:type_name -> forge.Metadata + 632, // 751: forge.UpdateInstanceTypeRequest.instance_type_attributes:type_name -> forge.InstanceTypeAttributes + 980, // 752: forge.RedfishBrowseResponse.headers:type_name -> forge.RedfishBrowseResponse.HeadersEntry + 653, // 753: forge.RedfishListActionsResponse.actions:type_name -> forge.RedfishAction + 987, // 754: forge.RedfishAction.approver_dates:type_name -> google.protobuf.Timestamp + 987, // 755: forge.RedfishAction.applied_at:type_name -> google.protobuf.Timestamp + 654, // 756: forge.RedfishAction.results:type_name -> forge.OptionalRedfishActionResult + 655, // 757: forge.OptionalRedfishActionResult.result:type_name -> forge.RedfishActionResult + 981, // 758: forge.RedfishActionResult.headers:type_name -> forge.RedfishActionResult.HeadersEntry + 987, // 759: forge.RedfishActionResult.completed_at:type_name -> google.protobuf.Timestamp + 982, // 760: forge.UfmBrowseResponse.headers:type_name -> forge.UfmBrowseResponse.HeadersEntry + 681, // 761: forge.NetworkSecurityGroupAttributes.rules:type_name -> forge.NetworkSecurityGroupRuleAttributes + 260, // 762: forge.NetworkSecurityGroup.metadata:type_name -> forge.Metadata + 664, // 763: forge.NetworkSecurityGroup.attributes:type_name -> forge.NetworkSecurityGroupAttributes + 260, // 764: forge.CreateNetworkSecurityGroupRequest.metadata:type_name -> forge.Metadata + 664, // 765: forge.CreateNetworkSecurityGroupRequest.network_security_group_attributes:type_name -> forge.NetworkSecurityGroupAttributes + 665, // 766: forge.CreateNetworkSecurityGroupResponse.network_security_group:type_name -> forge.NetworkSecurityGroup + 665, // 767: forge.FindNetworkSecurityGroupsByIdsResponse.network_security_groups:type_name -> forge.NetworkSecurityGroup + 665, // 768: forge.UpdateNetworkSecurityGroupResponse.network_security_group:type_name -> forge.NetworkSecurityGroup + 260, // 769: forge.UpdateNetworkSecurityGroupRequest.metadata:type_name -> forge.Metadata + 664, // 770: forge.UpdateNetworkSecurityGroupRequest.network_security_group_attributes:type_name -> forge.NetworkSecurityGroupAttributes + 56, // 771: forge.NetworkSecurityGroupStatus.source:type_name -> forge.NetworkSecurityGroupSource + 57, // 772: forge.NetworkSecurityGroupPropagationObjectStatus.status:type_name -> forge.NetworkSecurityGroupPropagationStatus + 677, // 773: forge.GetNetworkSecurityGroupPropagationStatusResponse.vpcs:type_name -> forge.NetworkSecurityGroupPropagationObjectStatus + 677, // 774: forge.GetNetworkSecurityGroupPropagationStatusResponse.instances:type_name -> forge.NetworkSecurityGroupPropagationObjectStatus + 679, // 775: forge.GetNetworkSecurityGroupPropagationStatusRequest.network_security_group_ids:type_name -> forge.NetworkSecurityGroupIdList + 58, // 776: forge.NetworkSecurityGroupRuleAttributes.direction:type_name -> forge.NetworkSecurityGroupRuleDirection + 59, // 777: forge.NetworkSecurityGroupRuleAttributes.protocol:type_name -> forge.NetworkSecurityGroupRuleProtocol + 60, // 778: forge.NetworkSecurityGroupRuleAttributes.action:type_name -> forge.NetworkSecurityGroupRuleAction + 681, // 779: forge.ResolvedNetworkSecurityGroupRule.rule:type_name -> forge.NetworkSecurityGroupRuleAttributes + 684, // 780: forge.GetNetworkSecurityGroupAttachmentsResponse.attachments:type_name -> forge.NetworkSecurityGroupAttachments + 688, // 781: forge.GetDesiredFirmwareVersionsResponse.entries:type_name -> forge.DesiredFirmwareVersionEntry + 983, // 782: forge.DesiredFirmwareVersionEntry.component_versions:type_name -> forge.DesiredFirmwareVersionEntry.ComponentVersionsEntry + 689, // 783: forge.SkuComponents.chassis:type_name -> forge.SkuComponentChassis + 690, // 784: forge.SkuComponents.cpus:type_name -> forge.SkuComponentCpu + 691, // 785: forge.SkuComponents.gpus:type_name -> forge.SkuComponentGpu + 692, // 786: forge.SkuComponents.ethernet_devices:type_name -> forge.SkuComponentEthernetDevices + 693, // 787: forge.SkuComponents.infiniband_devices:type_name -> forge.SkuComponentInfinibandDevices + 694, // 788: forge.SkuComponents.storage:type_name -> forge.SkuComponentStorage + 696, // 789: forge.SkuComponents.memory:type_name -> forge.SkuComponentMemory + 697, // 790: forge.SkuComponents.tpm:type_name -> forge.SkuComponentTpm + 987, // 791: forge.Sku.created:type_name -> google.protobuf.Timestamp + 698, // 792: forge.Sku.components:type_name -> forge.SkuComponents + 986, // 793: forge.Sku.associated_machine_ids:type_name -> common.MachineId + 986, // 794: forge.SkuMachinePair.machine_id:type_name -> common.MachineId + 986, // 795: forge.RemoveSkuRequest.machine_id:type_name -> common.MachineId + 699, // 796: forge.SkuList.skus:type_name -> forge.Sku + 987, // 797: forge.SkuStatus.verify_request_time:type_name -> google.protobuf.Timestamp + 987, // 798: forge.SkuStatus.last_match_attempt:type_name -> google.protobuf.Timestamp + 987, // 799: forge.SkuStatus.last_generate_attempt:type_name -> google.protobuf.Timestamp + 1015, // 800: forge.DpaInterface.id:type_name -> common.DpaInterfaceId + 986, // 801: forge.DpaInterface.machine_id:type_name -> common.MachineId + 987, // 802: forge.DpaInterface.created:type_name -> google.protobuf.Timestamp + 987, // 803: forge.DpaInterface.updated:type_name -> google.protobuf.Timestamp + 987, // 804: forge.DpaInterface.deleted:type_name -> google.protobuf.Timestamp + 224, // 805: forge.DpaInterface.history:type_name -> forge.StateHistoryRecord + 987, // 806: forge.DpaInterface.last_hb_time:type_name -> google.protobuf.Timestamp + 61, // 807: forge.DpaInterface.interface_type:type_name -> forge.DpaInterfaceType + 986, // 808: forge.DpaInterfaceCreationRequest.machine_id:type_name -> common.MachineId + 61, // 809: forge.DpaInterfaceCreationRequest.interface_type:type_name -> forge.DpaInterfaceType + 1015, // 810: forge.DpaInterfaceIdList.ids:type_name -> common.DpaInterfaceId + 1015, // 811: forge.DpaInterfacesByIdsRequest.ids:type_name -> common.DpaInterfaceId + 707, // 812: forge.DpaInterfaceList.interfaces:type_name -> forge.DpaInterface + 1015, // 813: forge.DpaNetworkObservationSetRequest.id:type_name -> common.DpaInterfaceId + 1015, // 814: forge.DpaInterfaceDeletionRequest.id:type_name -> common.DpaInterfaceId + 986, // 815: forge.PowerOptionRequest.machine_id:type_name -> common.MachineId + 986, // 816: forge.PowerOptionUpdateRequest.machine_id:type_name -> common.MachineId + 62, // 817: forge.PowerOptionUpdateRequest.power_state:type_name -> forge.PowerState + 62, // 818: forge.PowerOptions.desired_state:type_name -> forge.PowerState + 987, // 819: forge.PowerOptions.desired_state_updated_at:type_name -> google.protobuf.Timestamp + 62, // 820: forge.PowerOptions.actual_state:type_name -> forge.PowerState + 987, // 821: forge.PowerOptions.actual_state_updated_at:type_name -> google.protobuf.Timestamp + 986, // 822: forge.PowerOptions.host_id:type_name -> common.MachineId + 987, // 823: forge.PowerOptions.next_power_state_fetch_at:type_name -> google.protobuf.Timestamp + 987, // 824: forge.PowerOptions.tried_triggering_on_at:type_name -> google.protobuf.Timestamp + 987, // 825: forge.PowerOptions.wait_until_time_before_performing_next_power_action:type_name -> google.protobuf.Timestamp + 718, // 826: forge.PowerOptionResponse.response:type_name -> forge.PowerOptions + 1016, // 827: forge.ComputeAllocation.id:type_name -> common.ComputeAllocationId + 720, // 828: forge.ComputeAllocation.attributes:type_name -> forge.ComputeAllocationAttributes + 260, // 829: forge.ComputeAllocation.metadata:type_name -> forge.Metadata + 1016, // 830: forge.CreateComputeAllocationRequest.id:type_name -> common.ComputeAllocationId + 260, // 831: forge.CreateComputeAllocationRequest.metadata:type_name -> forge.Metadata + 720, // 832: forge.CreateComputeAllocationRequest.attributes:type_name -> forge.ComputeAllocationAttributes + 721, // 833: forge.CreateComputeAllocationResponse.allocation:type_name -> forge.ComputeAllocation + 1016, // 834: forge.FindComputeAllocationIdsResponse.ids:type_name -> common.ComputeAllocationId + 1016, // 835: forge.FindComputeAllocationsByIdsRequest.ids:type_name -> common.ComputeAllocationId + 721, // 836: forge.FindComputeAllocationsByIdsResponse.allocations:type_name -> forge.ComputeAllocation + 721, // 837: forge.UpdateComputeAllocationResponse.allocation:type_name -> forge.ComputeAllocation + 1016, // 838: forge.UpdateComputeAllocationRequest.id:type_name -> common.ComputeAllocationId + 260, // 839: forge.UpdateComputeAllocationRequest.metadata:type_name -> forge.Metadata + 720, // 840: forge.UpdateComputeAllocationRequest.attributes:type_name -> forge.ComputeAllocationAttributes + 1016, // 841: forge.DeleteComputeAllocationRequest.id:type_name -> common.ComputeAllocationId + 739, // 842: forge.GetRackResponse.rack:type_name -> forge.Rack + 739, // 843: forge.RackList.racks:type_name -> forge.Rack + 259, // 844: forge.RackSearchFilter.label:type_name -> forge.Label + 995, // 845: forge.RackIdList.rack_ids:type_name -> common.RackId + 995, // 846: forge.RacksByIdsRequest.rack_ids:type_name -> common.RackId + 995, // 847: forge.Rack.id:type_name -> common.RackId + 987, // 848: forge.Rack.created:type_name -> google.protobuf.Timestamp + 987, // 849: forge.Rack.updated:type_name -> google.protobuf.Timestamp + 987, // 850: forge.Rack.deleted:type_name -> google.protobuf.Timestamp + 260, // 851: forge.Rack.metadata:type_name -> forge.Metadata + 740, // 852: forge.Rack.config:type_name -> forge.RackConfig + 741, // 853: forge.Rack.status:type_name -> forge.RackStatus + 993, // 854: forge.RackStatus.health:type_name -> health.HealthReport + 347, // 855: forge.RackStatus.health_sources:type_name -> forge.HealthSourceOrigin + 91, // 856: forge.RackStatus.lifecycle:type_name -> forge.LifecycleStatus + 995, // 857: forge.RackStateHistoriesRequest.rack_ids:type_name -> common.RackId + 995, // 858: forge.AdminForceDeleteRackRequest.rack_id:type_name -> common.RackId + 746, // 859: forge.RackCapabilitiesSet.compute:type_name -> forge.RackCapabilityCompute + 747, // 860: forge.RackCapabilitiesSet.switch:type_name -> forge.RackCapabilitySwitch + 748, // 861: forge.RackCapabilitiesSet.power_shelf:type_name -> forge.RackCapabilityPowerShelf + 1017, // 862: forge.RackProfile.rack_hardware_type:type_name -> common.RackHardwareType + 63, // 863: forge.RackProfile.rack_hardware_topology:type_name -> forge.RackHardwareTopology + 65, // 864: forge.RackProfile.rack_hardware_class:type_name -> forge.RackHardwareClass + 749, // 865: forge.RackProfile.capabilities:type_name -> forge.RackCapabilitiesSet + 64, // 866: forge.RackProfile.product_family:type_name -> forge.RackProductFamily + 995, // 867: forge.GetRackProfileRequest.rack_id:type_name -> common.RackId + 995, // 868: forge.GetRackProfileResponse.rack_id:type_name -> common.RackId + 998, // 869: forge.GetRackProfileResponse.rack_profile_id:type_name -> common.RackProfileId + 750, // 870: forge.GetRackProfileResponse.profile:type_name -> forge.RackProfile + 66, // 871: forge.RackManagerForgeRequest.cmd:type_name -> forge.RackManagerForgeCmd + 1006, // 872: forge.MachineNVLinkInfo.domain_uuid:type_name -> common.NVLinkDomainId + 764, // 873: forge.MachineNVLinkInfo.gpus:type_name -> forge.NVLinkGpu + 986, // 874: forge.UpdateMachineNvLinkInfoRequest.machine_id:type_name -> common.MachineId + 755, // 875: forge.UpdateMachineNvLinkInfoRequest.nvlink_info:type_name -> forge.MachineNVLinkInfo + 758, // 876: forge.MachineSpxStatusObservation.attachment_status:type_name -> forge.MachineSpxAttachmentStatusObservation + 987, // 877: forge.MachineSpxStatusObservation.observed_at:type_name -> google.protobuf.Timestamp + 1005, // 878: forge.MachineSpxAttachmentStatusObservation.partition_id:type_name -> common.SpxPartitionId + 16, // 879: forge.MachineSpxAttachmentStatusObservation.attachment_type:type_name -> forge.SpxAttachmentType + 987, // 880: forge.MachineSpxAttachmentStatusObservation.observed_at:type_name -> google.protobuf.Timestamp + 760, // 881: forge.AstraConfig.astra_attachments:type_name -> forge.AstraAttachment + 16, // 882: forge.AstraAttachment.attachment_type:type_name -> forge.SpxAttachmentType + 762, // 883: forge.AstraConfigStatus.astra_attachments_status:type_name -> forge.AstraAttachmentStatus + 16, // 884: forge.AstraAttachmentStatus.attachment_type:type_name -> forge.SpxAttachmentType + 763, // 885: forge.AstraAttachmentStatus.status:type_name -> forge.AstraStatus + 67, // 886: forge.AstraStatus.phase:type_name -> forge.AstraPhase + 766, // 887: forge.MachineNVLinkStatusObservation.gpu_status:type_name -> forge.MachineNVLinkGpuStatusObservation + 1018, // 888: forge.MachineNVLinkGpuStatusObservation.partition_id:type_name -> common.NVLinkPartitionId + 989, // 889: forge.MachineNVLinkGpuStatusObservation.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 1006, // 890: forge.MachineNVLinkGpuStatusObservation.domain_id:type_name -> common.NVLinkDomainId + 68, // 891: forge.NmxcBrowseRequest.operation:type_name -> forge.NmxcBrowseOperation + 984, // 892: forge.NmxcBrowseResponse.headers:type_name -> forge.NmxcBrowseResponse.HeadersEntry + 1018, // 893: forge.NVLinkPartition.id:type_name -> common.NVLinkPartitionId + 1006, // 894: forge.NVLinkPartition.domain_uuid:type_name -> common.NVLinkDomainId + 989, // 895: forge.NVLinkPartition.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 769, // 896: forge.NVLinkPartitionList.partitions:type_name -> forge.NVLinkPartition + 996, // 897: forge.NVLinkPartitionQuery.id:type_name -> common.UUID + 771, // 898: forge.NVLinkPartitionQuery.search_config:type_name -> forge.NVLinkPartitionSearchConfig + 1018, // 899: forge.NVLinkPartitionsByIdsRequest.partition_ids:type_name -> common.NVLinkPartitionId + 1018, // 900: forge.NVLinkPartitionIdList.partition_ids:type_name -> common.NVLinkPartitionId + 260, // 901: forge.NVLinkLogicalPartitionConfig.metadata:type_name -> forge.Metadata + 8, // 902: forge.NVLinkLogicalPartitionStatus.state:type_name -> forge.TenantState + 989, // 903: forge.NVLinkLogicalPartition.id:type_name -> common.NVLinkLogicalPartitionId + 777, // 904: forge.NVLinkLogicalPartition.config:type_name -> forge.NVLinkLogicalPartitionConfig + 778, // 905: forge.NVLinkLogicalPartition.status:type_name -> forge.NVLinkLogicalPartitionStatus + 987, // 906: forge.NVLinkLogicalPartition.created:type_name -> google.protobuf.Timestamp + 779, // 907: forge.NVLinkLogicalPartitionList.partitions:type_name -> forge.NVLinkLogicalPartition + 777, // 908: forge.NVLinkLogicalPartitionCreationRequest.config:type_name -> forge.NVLinkLogicalPartitionConfig + 989, // 909: forge.NVLinkLogicalPartitionCreationRequest.id:type_name -> common.NVLinkLogicalPartitionId + 989, // 910: forge.NVLinkLogicalPartitionDeletionRequest.id:type_name -> common.NVLinkLogicalPartitionId + 989, // 911: forge.NVLinkLogicalPartitionsByIdsRequest.partition_ids:type_name -> common.NVLinkLogicalPartitionId + 989, // 912: forge.NVLinkLogicalPartitionIdList.partition_ids:type_name -> common.NVLinkLogicalPartitionId + 989, // 913: forge.NVLinkLogicalPartitionUpdateRequest.id:type_name -> common.NVLinkLogicalPartitionId + 777, // 914: forge.NVLinkLogicalPartitionUpdateRequest.config:type_name -> forge.NVLinkLogicalPartitionConfig + 374, // 915: forge.CreateBmcUserRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 374, // 916: forge.DeleteBmcUserRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 374, // 917: forge.SetBmcRootPasswordRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 374, // 918: forge.ProbeBmcVendorRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 986, // 919: forge.SetFirmwareUpdateTimeWindowRequest.machine_ids:type_name -> common.MachineId + 987, // 920: forge.SetFirmwareUpdateTimeWindowRequest.start_timestamp:type_name -> google.protobuf.Timestamp + 987, // 921: forge.SetFirmwareUpdateTimeWindowRequest.end_timestamp:type_name -> google.protobuf.Timestamp + 801, // 922: forge.UpsertHostFirmwareConfigRequest.components:type_name -> forge.UpsertHostFirmwareComponentConfig + 69, // 923: forge.UpsertHostFirmwareConfigRequest.ordering:type_name -> forge.HostFirmwareComponentType + 69, // 924: forge.UpsertHostFirmwareComponentConfig.type:type_name -> forge.HostFirmwareComponentType + 803, // 925: forge.UpsertHostFirmwareComponentConfig.firmware:type_name -> forge.HostFirmwareVersionConfig + 69, // 926: forge.HostFirmwareComponentConfigResponse.type:type_name -> forge.HostFirmwareComponentType + 803, // 927: forge.HostFirmwareComponentConfigResponse.firmware:type_name -> forge.HostFirmwareVersionConfig + 804, // 928: forge.HostFirmwareVersionConfig.artifacts:type_name -> forge.HostFirmwareArtifact + 802, // 929: forge.HostFirmwareConfigResponse.components:type_name -> forge.HostFirmwareComponentConfigResponse + 69, // 930: forge.HostFirmwareConfigResponse.ordering:type_name -> forge.HostFirmwareComponentType + 987, // 931: forge.HostFirmwareConfigResponse.created_at:type_name -> google.protobuf.Timestamp + 987, // 932: forge.HostFirmwareConfigResponse.updated_at:type_name -> google.protobuf.Timestamp + 808, // 933: forge.ListHostFirmwareResponse.available:type_name -> forge.AvailableHostFirmware + 70, // 934: forge.TrimTableRequest.target:type_name -> forge.TrimTableTarget + 811, // 935: forge.NvlinkNmxcEndpointList.entries:type_name -> forge.NvlinkNmxcEndpoint + 260, // 936: forge.CreateRemediationRequest.metadata:type_name -> forge.Metadata + 1019, // 937: forge.CreateRemediationResponse.remediation_id:type_name -> common.RemediationId + 1019, // 938: forge.RemediationIdList.remediation_ids:type_name -> common.RemediationId + 818, // 939: forge.RemediationList.remediations:type_name -> forge.Remediation + 1019, // 940: forge.Remediation.id:type_name -> common.RemediationId + 260, // 941: forge.Remediation.metadata:type_name -> forge.Metadata + 987, // 942: forge.Remediation.creation_time:type_name -> google.protobuf.Timestamp + 1019, // 943: forge.ApproveRemediationRequest.remediation_id:type_name -> common.RemediationId + 1019, // 944: forge.RevokeRemediationRequest.remediation_id:type_name -> common.RemediationId + 1019, // 945: forge.EnableRemediationRequest.remediation_id:type_name -> common.RemediationId + 1019, // 946: forge.DisableRemediationRequest.remediation_id:type_name -> common.RemediationId + 1019, // 947: forge.FindAppliedRemediationIdsRequest.remediation_id:type_name -> common.RemediationId + 986, // 948: forge.FindAppliedRemediationIdsRequest.dpu_machine_id:type_name -> common.MachineId + 1019, // 949: forge.AppliedRemediationIdList.remediation_ids:type_name -> common.RemediationId + 986, // 950: forge.AppliedRemediationIdList.dpu_machine_ids:type_name -> common.MachineId + 1019, // 951: forge.FindAppliedRemediationsRequest.remediation_id:type_name -> common.RemediationId + 986, // 952: forge.FindAppliedRemediationsRequest.dpu_machine_id:type_name -> common.MachineId + 1019, // 953: forge.AppliedRemediation.remediation_id:type_name -> common.RemediationId + 986, // 954: forge.AppliedRemediation.dpu_machine_id:type_name -> common.MachineId + 987, // 955: forge.AppliedRemediation.applied_time:type_name -> google.protobuf.Timestamp + 260, // 956: forge.AppliedRemediation.metadata:type_name -> forge.Metadata + 826, // 957: forge.AppliedRemediationList.applied_remediations:type_name -> forge.AppliedRemediation + 986, // 958: forge.GetNextRemediationForMachineRequest.dpu_machine_id:type_name -> common.MachineId + 1019, // 959: forge.GetNextRemediationForMachineResponse.remediation_id:type_name -> common.RemediationId + 1019, // 960: forge.RemediationAppliedRequest.remediation_id:type_name -> common.RemediationId + 986, // 961: forge.RemediationAppliedRequest.dpu_machine_id:type_name -> common.MachineId + 831, // 962: forge.RemediationAppliedRequest.status:type_name -> forge.RemediationApplicationStatus + 260, // 963: forge.RemediationApplicationStatus.metadata:type_name -> forge.Metadata + 986, // 964: forge.SetPrimaryDpuRequest.host_machine_id:type_name -> common.MachineId + 986, // 965: forge.SetPrimaryDpuRequest.dpu_machine_id:type_name -> common.MachineId + 986, // 966: forge.SetPrimaryInterfaceRequest.host_machine_id:type_name -> common.MachineId + 1007, // 967: forge.SetPrimaryInterfaceRequest.interface_id:type_name -> common.MachineInterfaceId + 834, // 968: forge.DpuExtensionServiceCredential.username_password:type_name -> forge.UsernamePassword + 855, // 969: forge.DpuExtensionServiceVersionInfo.observability:type_name -> forge.DpuExtensionServiceObservability + 71, // 970: forge.DpuExtensionService.service_type:type_name -> forge.DpuExtensionServiceType + 837, // 971: forge.DpuExtensionService.latest_version_info:type_name -> forge.DpuExtensionServiceVersionInfo + 71, // 972: forge.CreateDpuExtensionServiceRequest.service_type:type_name -> forge.DpuExtensionServiceType + 836, // 973: forge.CreateDpuExtensionServiceRequest.credential:type_name -> forge.DpuExtensionServiceCredential + 855, // 974: forge.CreateDpuExtensionServiceRequest.observability:type_name -> forge.DpuExtensionServiceObservability + 836, // 975: forge.UpdateDpuExtensionServiceRequest.credential:type_name -> forge.DpuExtensionServiceCredential + 855, // 976: forge.UpdateDpuExtensionServiceRequest.observability:type_name -> forge.DpuExtensionServiceObservability + 71, // 977: forge.DpuExtensionServiceSearchFilter.service_type:type_name -> forge.DpuExtensionServiceType + 838, // 978: forge.DpuExtensionServiceList.services:type_name -> forge.DpuExtensionService + 837, // 979: forge.DpuExtensionServiceVersionInfoList.version_infos:type_name -> forge.DpuExtensionServiceVersionInfo + 851, // 980: forge.FindInstancesByDpuExtensionServiceResponse.instances:type_name -> forge.InstanceDpuExtensionServiceInfo + 852, // 981: forge.DpuExtensionServiceObservabilityConfig.prometheus:type_name -> forge.DpuExtensionServiceObservabilityConfigPrometheus + 853, // 982: forge.DpuExtensionServiceObservabilityConfig.logging:type_name -> forge.DpuExtensionServiceObservabilityConfigLogging + 854, // 983: forge.DpuExtensionServiceObservability.configs:type_name -> forge.DpuExtensionServiceObservabilityConfig + 996, // 984: forge.ScoutStreamApiBoundMessage.flow_uuid:type_name -> common.UUID + 858, // 985: forge.ScoutStreamApiBoundMessage.init:type_name -> forge.ScoutStreamInitRequest + 1020, // 986: forge.ScoutStreamApiBoundMessage.mlx_device_lockdown_response:type_name -> mlx_device.MlxDeviceLockdownResponse + 1021, // 987: forge.ScoutStreamApiBoundMessage.mlx_device_profile_sync_response:type_name -> mlx_device.MlxDeviceProfileSyncResponse + 1022, // 988: forge.ScoutStreamApiBoundMessage.mlx_device_profile_compare_response:type_name -> mlx_device.MlxDeviceProfileCompareResponse + 1023, // 989: forge.ScoutStreamApiBoundMessage.mlx_device_info_device_response:type_name -> mlx_device.MlxDeviceInfoDeviceResponse + 1024, // 990: forge.ScoutStreamApiBoundMessage.mlx_device_info_report_response:type_name -> mlx_device.MlxDeviceInfoReportResponse + 1025, // 991: forge.ScoutStreamApiBoundMessage.mlx_device_registry_list_response:type_name -> mlx_device.MlxDeviceRegistryListResponse + 1026, // 992: forge.ScoutStreamApiBoundMessage.mlx_device_registry_show_response:type_name -> mlx_device.MlxDeviceRegistryShowResponse + 1027, // 993: forge.ScoutStreamApiBoundMessage.mlx_device_config_query_response:type_name -> mlx_device.MlxDeviceConfigQueryResponse + 1028, // 994: forge.ScoutStreamApiBoundMessage.mlx_device_config_set_response:type_name -> mlx_device.MlxDeviceConfigSetResponse + 1029, // 995: forge.ScoutStreamApiBoundMessage.mlx_device_config_sync_response:type_name -> mlx_device.MlxDeviceConfigSyncResponse + 1030, // 996: forge.ScoutStreamApiBoundMessage.mlx_device_config_compare_response:type_name -> mlx_device.MlxDeviceConfigCompareResponse + 866, // 997: forge.ScoutStreamApiBoundMessage.scout_stream_agent_ping_response:type_name -> forge.ScoutStreamAgentPingResponse + 996, // 998: forge.ScoutStreamScoutBoundMessage.flow_uuid:type_name -> common.UUID + 1031, // 999: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_lock_request:type_name -> mlx_device.MlxDeviceLockdownLockRequest + 1032, // 1000: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_unlock_request:type_name -> mlx_device.MlxDeviceLockdownUnlockRequest + 1033, // 1001: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_status_request:type_name -> mlx_device.MlxDeviceLockdownStatusRequest + 1034, // 1002: forge.ScoutStreamScoutBoundMessage.mlx_device_profile_sync_request:type_name -> mlx_device.MlxDeviceProfileSyncRequest + 1035, // 1003: forge.ScoutStreamScoutBoundMessage.mlx_device_profile_compare_request:type_name -> mlx_device.MlxDeviceProfileCompareRequest + 1036, // 1004: forge.ScoutStreamScoutBoundMessage.mlx_device_info_device_request:type_name -> mlx_device.MlxDeviceInfoDeviceRequest + 1037, // 1005: forge.ScoutStreamScoutBoundMessage.mlx_device_info_report_request:type_name -> mlx_device.MlxDeviceInfoReportRequest + 1038, // 1006: forge.ScoutStreamScoutBoundMessage.mlx_device_registry_list_request:type_name -> mlx_device.MlxDeviceRegistryListRequest + 1039, // 1007: forge.ScoutStreamScoutBoundMessage.mlx_device_registry_show_request:type_name -> mlx_device.MlxDeviceRegistryShowRequest + 1040, // 1008: forge.ScoutStreamScoutBoundMessage.mlx_device_config_query_request:type_name -> mlx_device.MlxDeviceConfigQueryRequest + 1041, // 1009: forge.ScoutStreamScoutBoundMessage.mlx_device_config_set_request:type_name -> mlx_device.MlxDeviceConfigSetRequest + 1042, // 1010: forge.ScoutStreamScoutBoundMessage.mlx_device_config_sync_request:type_name -> mlx_device.MlxDeviceConfigSyncRequest + 1043, // 1011: forge.ScoutStreamScoutBoundMessage.mlx_device_config_compare_request:type_name -> mlx_device.MlxDeviceConfigCompareRequest + 865, // 1012: forge.ScoutStreamScoutBoundMessage.scout_stream_agent_ping_request:type_name -> forge.ScoutStreamAgentPingRequest + 986, // 1013: forge.ScoutStreamInitRequest.machine_id:type_name -> common.MachineId + 867, // 1014: forge.ScoutStreamShowConnectionsResponse.scout_stream_connections:type_name -> forge.ScoutStreamConnectionInfo + 986, // 1015: forge.ScoutStreamDisconnectRequest.machine_id:type_name -> common.MachineId + 986, // 1016: forge.ScoutStreamDisconnectResponse.machine_id:type_name -> common.MachineId + 986, // 1017: forge.ScoutStreamAdminPingRequest.machine_id:type_name -> common.MachineId + 868, // 1018: forge.ScoutStreamAgentPingResponse.error:type_name -> forge.ScoutStreamError + 986, // 1019: forge.ScoutStreamConnectionInfo.machine_id:type_name -> common.MachineId + 73, // 1020: forge.ScoutStreamError.status:type_name -> forge.ScoutStreamErrorStatus + 1012, // 1021: forge.RoutingProfile.route_target_imports:type_name -> common.RouteTarget + 1012, // 1022: forge.RoutingProfile.route_targets_on_exports:type_name -> common.RouteTarget + 869, // 1023: forge.RoutingProfile.accepted_leaks_from_underlay:type_name -> forge.PrefixFilterPolicyEntry + 869, // 1024: forge.RoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry + 999, // 1025: forge.DomainLegacy.id:type_name -> common.DomainId + 987, // 1026: forge.DomainLegacy.created:type_name -> google.protobuf.Timestamp + 987, // 1027: forge.DomainLegacy.updated:type_name -> google.protobuf.Timestamp + 987, // 1028: forge.DomainLegacy.deleted:type_name -> google.protobuf.Timestamp + 871, // 1029: forge.DomainListLegacy.domains:type_name -> forge.DomainLegacy + 999, // 1030: forge.DomainDeletionLegacy.id:type_name -> common.DomainId + 999, // 1031: forge.DomainSearchQueryLegacy.id:type_name -> common.DomainId + 1044, // 1032: forge.PxeDomain.new_domain:type_name -> dns.Domain + 871, // 1033: forge.PxeDomain.legacy_domain:type_name -> forge.DomainLegacy + 986, // 1034: forge.MachinePositionQuery.machine_ids:type_name -> common.MachineId + 879, // 1035: forge.MachinePositionInfoList.machine_position_info:type_name -> forge.MachinePositionInfo + 986, // 1036: forge.MachinePositionInfo.machine_id:type_name -> common.MachineId + 997, // 1037: forge.MachinePositionInfo.switch_id:type_name -> common.SwitchId + 994, // 1038: forge.MachinePositionInfo.power_shelf_id:type_name -> common.PowerShelfId + 986, // 1039: forge.ModifyDPFStateRequest.machine_id:type_name -> common.MachineId + 985, // 1040: forge.DPFStateResponse.dpf_states:type_name -> forge.DPFStateResponse.DPFState + 986, // 1041: forge.GetDPFStateRequest.machine_ids:type_name -> common.MachineId + 986, // 1042: forge.GetDPFHostSnapshotRequest.host_machine_id:type_name -> common.MachineId + 886, // 1043: forge.DPFServiceVersionsResponse.services:type_name -> forge.DPFServiceVersion + 74, // 1044: forge.ComponentResult.status:type_name -> forge.ComponentManagerStatusCode + 997, // 1045: forge.SwitchIdList.ids:type_name -> common.SwitchId + 994, // 1046: forge.PowerShelfIdList.ids:type_name -> common.PowerShelfId + 1045, // 1047: forge.GetComponentInventoryRequest.machine_ids:type_name -> common.MachineIdList + 889, // 1048: forge.GetComponentInventoryRequest.switch_ids:type_name -> forge.SwitchIdList + 890, // 1049: forge.GetComponentInventoryRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList + 888, // 1050: forge.ComponentInventoryEntry.result:type_name -> forge.ComponentResult + 1046, // 1051: forge.ComponentInventoryEntry.report:type_name -> site_explorer.EndpointExplorationReport + 892, // 1052: forge.GetComponentInventoryResponse.entries:type_name -> forge.ComponentInventoryEntry + 1045, // 1053: forge.ComponentPowerControlRequest.machine_ids:type_name -> common.MachineIdList + 889, // 1054: forge.ComponentPowerControlRequest.switch_ids:type_name -> forge.SwitchIdList + 890, // 1055: forge.ComponentPowerControlRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList + 1047, // 1056: forge.ComponentPowerControlRequest.action:type_name -> common.SystemPowerControl + 888, // 1057: forge.ComponentPowerControlResponse.results:type_name -> forge.ComponentResult + 889, // 1058: forge.ComponentConfigureSwitchCertificateRequest.switch_ids:type_name -> forge.SwitchIdList + 888, // 1059: forge.ComponentConfigureSwitchCertificateResponse.results:type_name -> forge.ComponentResult + 888, // 1060: forge.FirmwareUpdateStatus.result:type_name -> forge.ComponentResult + 75, // 1061: forge.FirmwareUpdateStatus.state:type_name -> forge.FirmwareUpdateState + 987, // 1062: forge.FirmwareUpdateStatus.updated_at:type_name -> google.protobuf.Timestamp + 1045, // 1063: forge.UpdateComputeTrayFirmwareTarget.machine_ids:type_name -> common.MachineIdList + 78, // 1064: forge.UpdateComputeTrayFirmwareTarget.components:type_name -> forge.ComputeTrayComponent + 889, // 1065: forge.UpdateSwitchFirmwareTarget.switch_ids:type_name -> forge.SwitchIdList + 76, // 1066: forge.UpdateSwitchFirmwareTarget.components:type_name -> forge.NvSwitchComponent + 890, // 1067: forge.UpdatePowerShelfFirmwareTarget.power_shelf_ids:type_name -> forge.PowerShelfIdList + 77, // 1068: forge.UpdatePowerShelfFirmwareTarget.components:type_name -> forge.PowerShelfComponent + 737, // 1069: forge.UpdateFirmwareObjectTarget.rack_ids:type_name -> forge.RackIdList + 899, // 1070: forge.UpdateComponentFirmwareRequest.compute_trays:type_name -> forge.UpdateComputeTrayFirmwareTarget + 900, // 1071: forge.UpdateComponentFirmwareRequest.switches:type_name -> forge.UpdateSwitchFirmwareTarget + 901, // 1072: forge.UpdateComponentFirmwareRequest.power_shelves:type_name -> forge.UpdatePowerShelfFirmwareTarget + 902, // 1073: forge.UpdateComponentFirmwareRequest.racks:type_name -> forge.UpdateFirmwareObjectTarget + 888, // 1074: forge.UpdateComponentFirmwareResponse.results:type_name -> forge.ComponentResult + 1045, // 1075: forge.GetComponentFirmwareStatusRequest.machine_ids:type_name -> common.MachineIdList + 889, // 1076: forge.GetComponentFirmwareStatusRequest.switch_ids:type_name -> forge.SwitchIdList + 890, // 1077: forge.GetComponentFirmwareStatusRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList + 737, // 1078: forge.GetComponentFirmwareStatusRequest.rack_ids:type_name -> forge.RackIdList + 898, // 1079: forge.GetComponentFirmwareStatusResponse.statuses:type_name -> forge.FirmwareUpdateStatus + 1045, // 1080: forge.ListComponentFirmwareVersionsRequest.machine_ids:type_name -> common.MachineIdList + 889, // 1081: forge.ListComponentFirmwareVersionsRequest.switch_ids:type_name -> forge.SwitchIdList + 890, // 1082: forge.ListComponentFirmwareVersionsRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList + 737, // 1083: forge.ListComponentFirmwareVersionsRequest.rack_ids:type_name -> forge.RackIdList + 78, // 1084: forge.ComputeTrayFirmwareVersions.component:type_name -> forge.ComputeTrayComponent + 888, // 1085: forge.DeviceFirmwareVersions.result:type_name -> forge.ComponentResult + 908, // 1086: forge.DeviceFirmwareVersions.compute_fw_versions:type_name -> forge.ComputeTrayFirmwareVersions + 909, // 1087: forge.ListComponentFirmwareVersionsResponse.devices:type_name -> forge.DeviceFirmwareVersions + 260, // 1088: forge.SpxPartitionCreationRequest.metadata:type_name -> forge.Metadata + 1005, // 1089: forge.SpxPartitionCreationRequest.id:type_name -> common.SpxPartitionId + 260, // 1090: forge.SpxPartition.metadata:type_name -> forge.Metadata + 1005, // 1091: forge.SpxPartition.id:type_name -> common.SpxPartitionId + 1005, // 1092: forge.SpxPartitionIdList.spx_partition_ids:type_name -> common.SpxPartitionId + 1005, // 1093: forge.SpxPartitionDeletionRequest.id:type_name -> common.SpxPartitionId + 259, // 1094: forge.SpxPartitionSearchFilter.label:type_name -> forge.Label + 912, // 1095: forge.SpxPartitionList.spx_partitions:type_name -> forge.SpxPartition + 1005, // 1096: forge.SpxPartitionsByIdsRequest.spx_partition_ids:type_name -> common.SpxPartitionId + 997, // 1097: forge.AdminForceDeleteSwitchRequest.switch_id:type_name -> common.SwitchId + 994, // 1098: forge.AdminForceDeletePowerShelfRequest.power_shelf_id:type_name -> common.PowerShelfId + 1004, // 1099: forge.OperatingSystem.id:type_name -> common.OperatingSystemId + 79, // 1100: forge.OperatingSystem.type:type_name -> forge.OperatingSystemType + 8, // 1101: forge.OperatingSystem.status:type_name -> forge.TenantState + 1003, // 1102: forge.OperatingSystem.ipxe_template_id:type_name -> common.IpxeTemplateId + 267, // 1103: forge.OperatingSystem.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameter + 268, // 1104: forge.OperatingSystem.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifact + 1004, // 1105: forge.CreateOperatingSystemRequest.id:type_name -> common.OperatingSystemId + 1003, // 1106: forge.CreateOperatingSystemRequest.ipxe_template_id:type_name -> common.IpxeTemplateId + 267, // 1107: forge.CreateOperatingSystemRequest.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameter + 268, // 1108: forge.CreateOperatingSystemRequest.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifact + 267, // 1109: forge.IpxeTemplateParameters.items:type_name -> forge.IpxeTemplateParameter + 268, // 1110: forge.IpxeTemplateArtifacts.items:type_name -> forge.IpxeTemplateArtifact + 1004, // 1111: forge.UpdateOperatingSystemRequest.id:type_name -> common.OperatingSystemId + 1003, // 1112: forge.UpdateOperatingSystemRequest.ipxe_template_id:type_name -> common.IpxeTemplateId + 925, // 1113: forge.UpdateOperatingSystemRequest.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameters + 926, // 1114: forge.UpdateOperatingSystemRequest.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifacts + 1004, // 1115: forge.DeleteOperatingSystemRequest.id:type_name -> common.OperatingSystemId + 1004, // 1116: forge.OperatingSystemIdList.ids:type_name -> common.OperatingSystemId + 1004, // 1117: forge.OperatingSystemsByIdsRequest.ids:type_name -> common.OperatingSystemId + 923, // 1118: forge.OperatingSystemList.operating_systems:type_name -> forge.OperatingSystem + 1004, // 1119: forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest.id:type_name -> common.OperatingSystemId + 268, // 1120: forge.IpxeTemplateArtifactList.artifacts:type_name -> forge.IpxeTemplateArtifact + 1004, // 1121: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest.id:type_name -> common.OperatingSystemId + 936, // 1122: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest.updates:type_name -> forge.IpxeTemplateArtifactUpdateRequest + 986, // 1123: forge.GetMachineBootInterfacesRequest.machine_id:type_name -> common.MachineId + 987, // 1124: forge.RetainedBootInterface.recorded_at:type_name -> google.protobuf.Timestamp + 986, // 1125: forge.GetMachineBootInterfacesResponse.machine_id:type_name -> common.MachineId + 942, // 1126: forge.GetMachineBootInterfacesResponse.machine_interfaces:type_name -> forge.MachineInterfaceBootInterface + 943, // 1127: forge.GetMachineBootInterfacesResponse.predicted_interfaces:type_name -> forge.PredictedBootInterface + 944, // 1128: forge.GetMachineBootInterfacesResponse.explored_endpoints:type_name -> forge.ExploredBootInterface + 945, // 1129: forge.GetMachineBootInterfacesResponse.retained_interfaces:type_name -> forge.RetainedBootInterface + 950, // 1130: forge.DNSMessage.DNSResponse.rrs:type_name -> forge.DNSMessage.DNSResponse.DNSRR + 225, // 1131: forge.StateHistories.HistoriesEntry.value:type_name -> forge.StateHistoryRecords + 314, // 1132: forge.MachineStateHistories.HistoriesEntry.value:type_name -> forge.MachineStateHistoryRecords + 317, // 1133: forge.HealthHistories.HistoriesEntry.value:type_name -> forge.HealthHistoryRecords + 938, // 1134: forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry.value:type_name -> forge.HostRepresentorInterceptBridging + 82, // 1135: forge.MachineCredentialsUpdateRequest.Credentials.credential_purpose:type_name -> forge.MachineCredentialsUpdateRequest.CredentialPurpose + 975, // 1136: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.pair:type_name -> forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.KeyValuePair + 1013, // 1137: forge.ForgeAgentControlResponse.MachineValidation.validation_id:type_name -> common.MachineValidationId + 966, // 1138: forge.ForgeAgentControlResponse.MachineValidation.filter:type_name -> forge.ForgeAgentControlResponse.MachineValidationFilter + 1010, // 1139: forge.ForgeAgentControlResponse.MachineValidationFilter.contexts:type_name -> common.StringList + 968, // 1140: forge.ForgeAgentControlResponse.MlxAction.device_actions:type_name -> forge.ForgeAgentControlResponse.MlxDeviceAction + 969, // 1141: forge.ForgeAgentControlResponse.MlxDeviceAction.noop:type_name -> forge.ForgeAgentControlResponse.MlxDeviceNoop + 970, // 1142: forge.ForgeAgentControlResponse.MlxDeviceAction.lock:type_name -> forge.ForgeAgentControlResponse.MlxDeviceLock + 971, // 1143: forge.ForgeAgentControlResponse.MlxDeviceAction.unlock:type_name -> forge.ForgeAgentControlResponse.MlxDeviceUnlock + 972, // 1144: forge.ForgeAgentControlResponse.MlxDeviceAction.apply_profile:type_name -> forge.ForgeAgentControlResponse.MlxDeviceApplyProfile + 973, // 1145: forge.ForgeAgentControlResponse.MlxDeviceAction.apply_firmware:type_name -> forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware + 1048, // 1146: forge.ForgeAgentControlResponse.MlxDeviceApplyProfile.serialized_profile:type_name -> mlx_device.SerializableMlxConfigProfile + 1049, // 1147: forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware.profile:type_name -> mlx_device.FirmwareFlasherProfile + 1050, // 1148: forge.ForgeAgentControlResponse.FirmwareUpgrade.task:type_name -> scout_firmware_upgrade.ScoutFirmwareUpgradeTask + 84, // 1149: forge.MachineCleanupInfo.CleanupStepResult.result:type_name -> forge.MachineCleanupInfo.CleanupResult + 986, // 1150: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.id:type_name -> common.MachineId + 987, // 1151: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.requested_at:type_name -> google.protobuf.Timestamp + 987, // 1152: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.initiated_at:type_name -> google.protobuf.Timestamp + 986, // 1153: forge.HostReprovisioningListResponse.HostReprovisioningListItem.id:type_name -> common.MachineId + 987, // 1154: forge.HostReprovisioningListResponse.HostReprovisioningListItem.requested_at:type_name -> google.protobuf.Timestamp + 987, // 1155: forge.HostReprovisioningListResponse.HostReprovisioningListItem.initiated_at:type_name -> google.protobuf.Timestamp + 986, // 1156: forge.DPFStateResponse.DPFState.machine_id:type_name -> common.MachineId + 139, // 1157: forge.Forge.Version:input_type -> forge.VersionRequest + 1051, // 1158: forge.Forge.CreateDomain:input_type -> dns.CreateDomainRequest + 1052, // 1159: forge.Forge.UpdateDomain:input_type -> dns.UpdateDomainRequest + 1053, // 1160: forge.Forge.DeleteDomain:input_type -> dns.DomainDeletionRequest + 1054, // 1161: forge.Forge.FindDomain:input_type -> dns.DomainSearchQuery + 871, // 1162: forge.Forge.CreateDomainLegacy:input_type -> forge.DomainLegacy + 871, // 1163: forge.Forge.UpdateDomainLegacy:input_type -> forge.DomainLegacy + 873, // 1164: forge.Forge.DeleteDomainLegacy:input_type -> forge.DomainDeletionLegacy + 875, // 1165: forge.Forge.FindDomainLegacy:input_type -> forge.DomainSearchQueryLegacy + 158, // 1166: forge.Forge.CreateVpc:input_type -> forge.VpcCreationRequest + 159, // 1167: forge.Forge.UpdateVpc:input_type -> forge.VpcUpdateRequest + 161, // 1168: forge.Forge.UpdateVpcVirtualization:input_type -> forge.VpcUpdateVirtualizationRequest + 163, // 1169: forge.Forge.DeleteVpc:input_type -> forge.VpcDeletionRequest + 151, // 1170: forge.Forge.FindVpcIds:input_type -> forge.VpcSearchFilter + 153, // 1171: forge.Forge.FindVpcsByIds:input_type -> forge.VpcsByIdsRequest + 911, // 1172: forge.Forge.CreateSpxPartition:input_type -> forge.SpxPartitionCreationRequest + 914, // 1173: forge.Forge.DeleteSpxPartition:input_type -> forge.SpxPartitionDeletionRequest + 916, // 1174: forge.Forge.FindSpxPartitionIds:input_type -> forge.SpxPartitionSearchFilter + 918, // 1175: forge.Forge.FindSpxPartitionsByIds:input_type -> forge.SpxPartitionsByIdsRequest + 169, // 1176: forge.Forge.CreateVpcPrefix:input_type -> forge.VpcPrefixCreationRequest + 170, // 1177: forge.Forge.SearchVpcPrefixes:input_type -> forge.VpcPrefixSearchQuery + 171, // 1178: forge.Forge.GetVpcPrefixes:input_type -> forge.VpcPrefixGetRequest + 174, // 1179: forge.Forge.UpdateVpcPrefix:input_type -> forge.VpcPrefixUpdateRequest + 175, // 1180: forge.Forge.DeleteVpcPrefix:input_type -> forge.VpcPrefixDeletionRequest + 181, // 1181: forge.Forge.CreateVpcPeering:input_type -> forge.VpcPeeringCreationRequest + 182, // 1182: forge.Forge.FindVpcPeeringIds:input_type -> forge.VpcPeeringSearchFilter + 183, // 1183: forge.Forge.FindVpcPeeringsByIds:input_type -> forge.VpcPeeringsByIdsRequest + 184, // 1184: forge.Forge.DeleteVpcPeering:input_type -> forge.VpcPeeringDeletionRequest + 251, // 1185: forge.Forge.FindNetworkSegmentIds:input_type -> forge.NetworkSegmentSearchFilter + 253, // 1186: forge.Forge.FindNetworkSegmentsByIds:input_type -> forge.NetworkSegmentsByIdsRequest + 245, // 1187: forge.Forge.CreateNetworkSegment:input_type -> forge.NetworkSegmentCreationRequest + 247, // 1188: forge.Forge.AttachNetworkSegmentToVpc:input_type -> forge.AttachNetworkSegmentToVpcRequest + 246, // 1189: forge.Forge.DeleteNetworkSegment:input_type -> forge.NetworkSegmentDeletionRequest + 150, // 1190: forge.Forge.NetworkSegmentsForVpc:input_type -> forge.VpcSearchQuery + 194, // 1191: forge.Forge.FindIBPartitionIds:input_type -> forge.IBPartitionSearchFilter + 195, // 1192: forge.Forge.FindIBPartitionsByIds:input_type -> forge.IBPartitionsByIdsRequest + 190, // 1193: forge.Forge.CreateIBPartition:input_type -> forge.IBPartitionCreationRequest + 191, // 1194: forge.Forge.UpdateIBPartition:input_type -> forge.IBPartitionUpdateRequest + 192, // 1195: forge.Forge.DeleteIBPartition:input_type -> forge.IBPartitionDeletionRequest + 154, // 1196: forge.Forge.IBPartitionsForTenant:input_type -> forge.TenantSearchQuery + 206, // 1197: forge.Forge.FindPowerShelves:input_type -> forge.PowerShelfQuery + 207, // 1198: forge.Forge.FindPowerShelfIds:input_type -> forge.PowerShelfSearchFilter + 208, // 1199: forge.Forge.FindPowerShelvesByIds:input_type -> forge.PowerShelvesByIdsRequest + 202, // 1200: forge.Forge.DeletePowerShelf:input_type -> forge.PowerShelfDeletionRequest + 921, // 1201: forge.Forge.AdminForceDeletePowerShelf:input_type -> forge.AdminForceDeletePowerShelfRequest + 204, // 1202: forge.Forge.SetPowerShelfMaintenance:input_type -> forge.PowerShelfMaintenanceRequest + 228, // 1203: forge.Forge.FindSwitches:input_type -> forge.SwitchQuery + 229, // 1204: forge.Forge.FindSwitchIds:input_type -> forge.SwitchSearchFilter + 230, // 1205: forge.Forge.FindSwitchesByIds:input_type -> forge.SwitchesByIdsRequest + 222, // 1206: forge.Forge.DeleteSwitch:input_type -> forge.SwitchDeletionRequest + 919, // 1207: forge.Forge.AdminForceDeleteSwitch:input_type -> forge.AdminForceDeleteSwitchRequest + 239, // 1208: forge.Forge.FindIBFabricIds:input_type -> forge.IBFabricSearchFilter + 264, // 1209: forge.Forge.AllocateInstance:input_type -> forge.InstanceAllocationRequest + 265, // 1210: forge.Forge.AllocateInstances:input_type -> forge.BatchInstanceAllocationRequest + 308, // 1211: forge.Forge.ReleaseInstance:input_type -> forge.InstanceReleaseRequest + 282, // 1212: forge.Forge.UpdateInstanceOperatingSystem:input_type -> forge.InstanceOperatingSystemUpdateRequest + 283, // 1213: forge.Forge.UpdateInstanceConfig:input_type -> forge.InstanceConfigUpdateRequest + 261, // 1214: forge.Forge.FindInstanceIds:input_type -> forge.InstanceSearchFilter + 263, // 1215: forge.Forge.FindInstancesByIds:input_type -> forge.InstancesByIdsRequest + 986, // 1216: forge.Forge.FindInstanceByMachineID:input_type -> common.MachineId + 380, // 1217: forge.Forge.GetManagedHostNetworkConfig:input_type -> forge.ManagedHostNetworkConfigRequest + 445, // 1218: forge.Forge.RecordDpuNetworkStatus:input_type -> forge.DpuNetworkStatus + 986, // 1219: forge.Forge.ListMachineHealthReports:input_type -> common.MachineId + 451, // 1220: forge.Forge.InsertMachineHealthReport:input_type -> forge.InsertMachineHealthReportRequest + 462, // 1221: forge.Forge.RemoveMachineHealthReport:input_type -> forge.RemoveMachineHealthReportRequest + 454, // 1222: forge.Forge.ListRackHealthReports:input_type -> forge.ListRackHealthReportsRequest + 452, // 1223: forge.Forge.InsertRackHealthReport:input_type -> forge.InsertRackHealthReportRequest + 453, // 1224: forge.Forge.RemoveRackHealthReport:input_type -> forge.RemoveRackHealthReportRequest + 457, // 1225: forge.Forge.ListSwitchHealthReports:input_type -> forge.ListSwitchHealthReportsRequest + 455, // 1226: forge.Forge.InsertSwitchHealthReport:input_type -> forge.InsertSwitchHealthReportRequest + 456, // 1227: forge.Forge.RemoveSwitchHealthReport:input_type -> forge.RemoveSwitchHealthReportRequest + 460, // 1228: forge.Forge.ListPowerShelfHealthReports:input_type -> forge.ListPowerShelfHealthReportsRequest + 458, // 1229: forge.Forge.InsertPowerShelfHealthReport:input_type -> forge.InsertPowerShelfHealthReportRequest + 459, // 1230: forge.Forge.RemovePowerShelfHealthReport:input_type -> forge.RemovePowerShelfHealthReportRequest + 463, // 1231: forge.Forge.ListNVLinkDomainHealthReports:input_type -> forge.ListNVLinkDomainHealthReportsRequest + 464, // 1232: forge.Forge.InsertNVLinkDomainHealthReport:input_type -> forge.InsertNVLinkDomainHealthReportRequest + 465, // 1233: forge.Forge.RemoveNVLinkDomainHealthReport:input_type -> forge.RemoveNVLinkDomainHealthReportRequest + 986, // 1234: forge.Forge.ListHealthReportOverrides:input_type -> common.MachineId + 451, // 1235: forge.Forge.InsertHealthReportOverride:input_type -> forge.InsertMachineHealthReportRequest + 462, // 1236: forge.Forge.RemoveHealthReportOverride:input_type -> forge.RemoveMachineHealthReportRequest + 399, // 1237: forge.Forge.DpuAgentUpgradeCheck:input_type -> forge.DpuAgentUpgradeCheckRequest + 401, // 1238: forge.Forge.DpuAgentUpgradePolicyAction:input_type -> forge.DpuAgentUpgradePolicyRequest + 1055, // 1239: forge.Forge.LookupRecord:input_type -> dns.DnsResourceRecordLookupRequest + 1056, // 1240: forge.Forge.GetAllDomains:input_type -> dns.GetAllDomainsRequest + 1057, // 1241: forge.Forge.GetAllDomainMetadata:input_type -> dns.DomainMetadataRequest + 256, // 1242: forge.Forge.InvokeInstancePower:input_type -> forge.InstancePowerRequest + 426, // 1243: forge.Forge.ForgeAgentControl:input_type -> forge.ForgeAgentControlRequest + 428, // 1244: forge.Forge.DiscoverMachine:input_type -> forge.MachineDiscoveryInfo + 432, // 1245: forge.Forge.RenewMachineCertificate:input_type -> forge.MachineCertificateRenewRequest + 429, // 1246: forge.Forge.DiscoveryCompleted:input_type -> forge.MachineDiscoveryCompletedRequest + 430, // 1247: forge.Forge.CleanupMachineCompleted:input_type -> forge.MachineCleanupInfo + 437, // 1248: forge.Forge.ReportForgeScoutError:input_type -> forge.ForgeScoutErrorReport + 356, // 1249: forge.Forge.DiscoverDhcp:input_type -> forge.DhcpDiscovery + 357, // 1250: forge.Forge.ExpireDhcpLease:input_type -> forge.ExpireDhcpLeaseRequest + 327, // 1251: forge.Forge.AssignStaticAddress:input_type -> forge.AssignStaticAddressRequest + 329, // 1252: forge.Forge.RemoveStaticAddress:input_type -> forge.RemoveStaticAddressRequest + 331, // 1253: forge.Forge.FindInterfaceAddresses:input_type -> forge.FindInterfaceAddressesRequest + 326, // 1254: forge.Forge.FindInterfaces:input_type -> forge.InterfaceSearchQuery + 325, // 1255: forge.Forge.DeleteInterface:input_type -> forge.InterfaceDeleteQuery + 501, // 1256: forge.Forge.FindIpAddress:input_type -> forge.FindIpAddressRequest + 311, // 1257: forge.Forge.FindMachineIds:input_type -> forge.MachineSearchConfig + 310, // 1258: forge.Forge.FindMachinesByIds:input_type -> forge.MachinesByIdsRequest + 312, // 1259: forge.Forge.FindMachineStateHistories:input_type -> forge.MachineStateHistoriesRequest + 315, // 1260: forge.Forge.FindMachineHealthHistories:input_type -> forge.MachineHealthHistoriesRequest + 205, // 1261: forge.Forge.FindPowerShelfStateHistories:input_type -> forge.PowerShelfStateHistoriesRequest + 742, // 1262: forge.Forge.FindRackStateHistories:input_type -> forge.RackStateHistoriesRequest + 226, // 1263: forge.Forge.FindSwitchStateHistories:input_type -> forge.SwitchStateHistoriesRequest + 249, // 1264: forge.Forge.FindNetworkSegmentStateHistories:input_type -> forge.NetworkSegmentStateHistoriesRequest + 177, // 1265: forge.Forge.FindVpcPrefixStateHistories:input_type -> forge.VpcPrefixStateHistoriesRequest + 320, // 1266: forge.Forge.FindTenantOrganizationIds:input_type -> forge.TenantSearchFilter + 319, // 1267: forge.Forge.FindTenantsByOrganizationIds:input_type -> forge.TenantByOrganizationIdsRequest + 1045, // 1268: forge.Forge.FindConnectedDevicesByDpuMachineIds:input_type -> common.MachineIdList + 526, // 1269: forge.Forge.FindMachineIdsByBmcIps:input_type -> forge.BmcIpList + 527, // 1270: forge.Forge.FindMacAddressByBmcIp:input_type -> forge.BmcIp + 505, // 1271: forge.Forge.FindBmcIps:input_type -> forge.FindBmcIpsRequest + 503, // 1272: forge.Forge.IdentifyUuid:input_type -> forge.IdentifyUuidRequest + 506, // 1273: forge.Forge.IdentifyMac:input_type -> forge.IdentifyMacRequest + 508, // 1274: forge.Forge.IdentifySerial:input_type -> forge.IdentifySerialRequest + 422, // 1275: forge.Forge.GetBMCMetaData:input_type -> forge.BMCMetaDataGetRequest + 424, // 1276: forge.Forge.UpdateMachineCredentials:input_type -> forge.MachineCredentialsUpdateRequest + 439, // 1277: forge.Forge.GetPxeInstructions:input_type -> forge.PxeInstructionRequest + 443, // 1278: forge.Forge.GetCloudInitInstructions:input_type -> forge.CloudInitInstructionsRequest + 142, // 1279: forge.Forge.Echo:input_type -> forge.EchoRequest + 470, // 1280: forge.Forge.CreateTenant:input_type -> forge.CreateTenantRequest + 474, // 1281: forge.Forge.FindTenant:input_type -> forge.FindTenantRequest + 472, // 1282: forge.Forge.UpdateTenant:input_type -> forge.UpdateTenantRequest + 480, // 1283: forge.Forge.CreateTenantKeyset:input_type -> forge.CreateTenantKeysetRequest + 487, // 1284: forge.Forge.FindTenantKeysetIds:input_type -> forge.TenantKeysetSearchFilter + 489, // 1285: forge.Forge.FindTenantKeysetsByIds:input_type -> forge.TenantKeysetsByIdsRequest + 483, // 1286: forge.Forge.UpdateTenantKeyset:input_type -> forge.UpdateTenantKeysetRequest + 485, // 1287: forge.Forge.DeleteTenantKeyset:input_type -> forge.DeleteTenantKeysetRequest + 490, // 1288: forge.Forge.ValidateTenantPublicKey:input_type -> forge.ValidateTenantPublicKeyRequest + 363, // 1289: forge.Forge.GetBmcCredentials:input_type -> forge.GetBmcCredentialsRequest + 364, // 1290: forge.Forge.GetSwitchNvosCredentials:input_type -> forge.GetSwitchNvosCredentialsRequest + 397, // 1291: forge.Forge.GetAllManagedHostNetworkStatus:input_type -> forge.ManagedHostNetworkStatusRequest + 367, // 1292: forge.Forge.GetSiteExplorationReport:input_type -> forge.GetSiteExplorationRequest + 1058, // 1293: forge.Forge.GetSiteExplorerLastRun:input_type -> google.protobuf.Empty + 368, // 1294: forge.Forge.ClearSiteExplorationError:input_type -> forge.ClearSiteExplorationErrorRequest + 374, // 1295: forge.Forge.IsBmcInManagedHost:input_type -> forge.BmcEndpointRequest + 374, // 1296: forge.Forge.BmcCredentialStatus:input_type -> forge.BmcEndpointRequest + 374, // 1297: forge.Forge.Explore:input_type -> forge.BmcEndpointRequest + 369, // 1298: forge.Forge.ReExploreEndpoint:input_type -> forge.ReExploreEndpointRequest + 370, // 1299: forge.Forge.RefreshEndpointReport:input_type -> forge.RefreshEndpointReportRequest + 371, // 1300: forge.Forge.DeleteExploredEndpoint:input_type -> forge.DeleteExploredEndpointRequest + 372, // 1301: forge.Forge.PauseExploredEndpointRemediation:input_type -> forge.PauseExploredEndpointRemediationRequest + 1059, // 1302: forge.Forge.FindExploredEndpointIds:input_type -> site_explorer.ExploredEndpointSearchFilter + 1060, // 1303: forge.Forge.FindExploredEndpointsByIds:input_type -> site_explorer.ExploredEndpointsByIdsRequest + 1061, // 1304: forge.Forge.FindExploredManagedHostIds:input_type -> site_explorer.ExploredManagedHostSearchFilter + 1062, // 1305: forge.Forge.FindExploredManagedHostsByIds:input_type -> site_explorer.ExploredManagedHostsByIdsRequest + 1063, // 1306: forge.Forge.FindExploredMlxDeviceHostIds:input_type -> site_explorer.ExploredMlxDeviceHostSearchFilter + 1064, // 1307: forge.Forge.FindExploredMlxDevicesByIds:input_type -> site_explorer.ExploredMlxDevicesByIdsRequest + 378, // 1308: forge.Forge.UpdateMachineHardwareInfo:input_type -> forge.UpdateMachineHardwareInfoRequest + 403, // 1309: forge.Forge.AdminForceDeleteMachine:input_type -> forge.AdminForceDeleteMachineRequest + 492, // 1310: forge.Forge.AdminListResourcePools:input_type -> forge.ListResourcePoolsRequest + 495, // 1311: forge.Forge.AdminGrowResourcePool:input_type -> forge.GrowResourcePoolRequest + 339, // 1312: forge.Forge.UpdateMachineMetadata:input_type -> forge.MachineMetadataUpdateRequest + 340, // 1313: forge.Forge.UpdateMachineBmcVendorOverride:input_type -> forge.MachineBmcVendorOverrideUpdateRequest + 341, // 1314: forge.Forge.UpdateRackMetadata:input_type -> forge.RackMetadataUpdateRequest + 342, // 1315: forge.Forge.UpdateSwitchMetadata:input_type -> forge.SwitchMetadataUpdateRequest + 343, // 1316: forge.Forge.UpdatePowerShelfMetadata:input_type -> forge.PowerShelfMetadataUpdateRequest + 756, // 1317: forge.Forge.UpdateMachineNvLinkInfo:input_type -> forge.UpdateMachineNvLinkInfoRequest + 499, // 1318: forge.Forge.SetMaintenance:input_type -> forge.MaintenanceRequest + 500, // 1319: forge.Forge.SetDynamicConfig:input_type -> forge.SetDynamicConfigRequest + 510, // 1320: forge.Forge.TriggerDpuReprovisioning:input_type -> forge.DpuReprovisioningRequest + 511, // 1321: forge.Forge.ListDpuWaitingForReprovisioning:input_type -> forge.DpuReprovisioningListRequest + 513, // 1322: forge.Forge.TriggerHostReprovisioning:input_type -> forge.HostReprovisioningRequest + 514, // 1323: forge.Forge.ListHostsWaitingForReprovisioning:input_type -> forge.HostReprovisioningListRequest + 986, // 1324: forge.Forge.MarkManualFirmwareUpgradeComplete:input_type -> common.MachineId + 565, // 1325: forge.Forge.ReportScoutFirmwareUpgradeStatus:input_type -> forge.ScoutFirmwareUpgradeStatusRequest + 520, // 1326: forge.Forge.GetDpuInfoList:input_type -> forge.GetDpuInfoListRequest + 1007, // 1327: forge.Forge.GetMachineBootOverride:input_type -> common.MachineInterfaceId + 523, // 1328: forge.Forge.SetMachineBootOverride:input_type -> forge.MachineBootOverride + 1007, // 1329: forge.Forge.ClearMachineBootOverride:input_type -> common.MachineInterfaceId + 941, // 1330: forge.Forge.GetMachineBootInterfaces:input_type -> forge.GetMachineBootInterfacesRequest + 532, // 1331: forge.Forge.GetNetworkTopology:input_type -> forge.NetworkTopologyRequest + 533, // 1332: forge.Forge.FindNetworkDevicesByDeviceIds:input_type -> forge.NetworkDeviceIdList + 130, // 1333: forge.Forge.CreateCredential:input_type -> forge.CredentialCreationRequest + 131, // 1334: forge.Forge.DeleteCredential:input_type -> forge.CredentialDeletionRequest + 134, // 1335: forge.Forge.RotateCredential:input_type -> forge.RotateCredentialRequest + 136, // 1336: forge.Forge.GetCredentialRotationStatus:input_type -> forge.CredentialRotationStatusRequest + 1058, // 1337: forge.Forge.GetRouteServers:input_type -> google.protobuf.Empty + 535, // 1338: forge.Forge.AddRouteServers:input_type -> forge.RouteServers + 535, // 1339: forge.Forge.RemoveRouteServers:input_type -> forge.RouteServers + 535, // 1340: forge.Forge.ReplaceRouteServers:input_type -> forge.RouteServers + 344, // 1341: forge.Forge.UpdateAgentReportedInventory:input_type -> forge.DpuAgentInventoryReport + 303, // 1342: forge.Forge.UpdateInstancePhoneHomeLastContact:input_type -> forge.InstancePhoneHomeLastContactRequest + 538, // 1343: forge.Forge.SetHostUefiPassword:input_type -> forge.SetHostUefiPasswordRequest + 540, // 1344: forge.Forge.ClearHostUefiPassword:input_type -> forge.ClearHostUefiPasswordRequest + 553, // 1345: forge.Forge.AddExpectedMachine:input_type -> forge.ExpectedMachine + 554, // 1346: forge.Forge.DeleteExpectedMachine:input_type -> forge.ExpectedMachineRequest + 553, // 1347: forge.Forge.UpdateExpectedMachine:input_type -> forge.ExpectedMachine + 554, // 1348: forge.Forge.GetExpectedMachine:input_type -> forge.ExpectedMachineRequest + 1058, // 1349: forge.Forge.GetAllExpectedMachines:input_type -> google.protobuf.Empty + 555, // 1350: forge.Forge.ReplaceAllExpectedMachines:input_type -> forge.ExpectedMachineList + 1058, // 1351: forge.Forge.DeleteAllExpectedMachines:input_type -> google.protobuf.Empty + 1058, // 1352: forge.Forge.GetAllExpectedMachinesLinked:input_type -> google.protobuf.Empty + 1058, // 1353: forge.Forge.GetAllUnexpectedMachines:input_type -> google.protobuf.Empty + 560, // 1354: forge.Forge.CreateExpectedMachines:input_type -> forge.BatchExpectedMachineOperationRequest + 560, // 1355: forge.Forge.UpdateExpectedMachines:input_type -> forge.BatchExpectedMachineOperationRequest + 209, // 1356: forge.Forge.AddExpectedPowerShelf:input_type -> forge.ExpectedPowerShelf + 210, // 1357: forge.Forge.DeleteExpectedPowerShelf:input_type -> forge.ExpectedPowerShelfRequest + 209, // 1358: forge.Forge.UpdateExpectedPowerShelf:input_type -> forge.ExpectedPowerShelf + 210, // 1359: forge.Forge.GetExpectedPowerShelf:input_type -> forge.ExpectedPowerShelfRequest + 1058, // 1360: forge.Forge.GetAllExpectedPowerShelves:input_type -> google.protobuf.Empty + 211, // 1361: forge.Forge.ReplaceAllExpectedPowerShelves:input_type -> forge.ExpectedPowerShelfList + 1058, // 1362: forge.Forge.DeleteAllExpectedPowerShelves:input_type -> google.protobuf.Empty + 1058, // 1363: forge.Forge.GetAllExpectedPowerShelvesLinked:input_type -> google.protobuf.Empty + 231, // 1364: forge.Forge.AddExpectedSwitch:input_type -> forge.ExpectedSwitch + 232, // 1365: forge.Forge.DeleteExpectedSwitch:input_type -> forge.ExpectedSwitchRequest + 231, // 1366: forge.Forge.UpdateExpectedSwitch:input_type -> forge.ExpectedSwitch + 232, // 1367: forge.Forge.GetExpectedSwitch:input_type -> forge.ExpectedSwitchRequest + 1058, // 1368: forge.Forge.GetAllExpectedSwitches:input_type -> google.protobuf.Empty + 233, // 1369: forge.Forge.ReplaceAllExpectedSwitches:input_type -> forge.ExpectedSwitchList + 1058, // 1370: forge.Forge.DeleteAllExpectedSwitches:input_type -> google.protobuf.Empty + 1058, // 1371: forge.Forge.GetAllExpectedSwitchesLinked:input_type -> google.protobuf.Empty + 236, // 1372: forge.Forge.AddExpectedRack:input_type -> forge.ExpectedRack + 237, // 1373: forge.Forge.DeleteExpectedRack:input_type -> forge.ExpectedRackRequest + 236, // 1374: forge.Forge.UpdateExpectedRack:input_type -> forge.ExpectedRack + 237, // 1375: forge.Forge.GetExpectedRack:input_type -> forge.ExpectedRackRequest + 1058, // 1376: forge.Forge.GetAllExpectedRacks:input_type -> google.protobuf.Empty + 238, // 1377: forge.Forge.ReplaceAllExpectedRacks:input_type -> forge.ExpectedRackList + 1058, // 1378: forge.Forge.DeleteAllExpectedRacks:input_type -> google.protobuf.Empty + 128, // 1379: forge.Forge.AttestQuote:input_type -> forge.AttestQuoteRequest + 635, // 1380: forge.Forge.CreateInstanceType:input_type -> forge.CreateInstanceTypeRequest + 637, // 1381: forge.Forge.FindInstanceTypeIds:input_type -> forge.FindInstanceTypeIdsRequest + 639, // 1382: forge.Forge.FindInstanceTypesByIds:input_type -> forge.FindInstanceTypesByIdsRequest + 644, // 1383: forge.Forge.UpdateInstanceType:input_type -> forge.UpdateInstanceTypeRequest + 641, // 1384: forge.Forge.DeleteInstanceType:input_type -> forge.DeleteInstanceTypeRequest + 645, // 1385: forge.Forge.AssociateMachinesWithInstanceType:input_type -> forge.AssociateMachinesWithInstanceTypeRequest + 647, // 1386: forge.Forge.RemoveMachineInstanceTypeAssociation:input_type -> forge.RemoveMachineInstanceTypeAssociationRequest + 1065, // 1387: forge.Forge.CreateMeasurementBundle:input_type -> measured_boot.CreateMeasurementBundleRequest + 1066, // 1388: forge.Forge.DeleteMeasurementBundle:input_type -> measured_boot.DeleteMeasurementBundleRequest + 1067, // 1389: forge.Forge.RenameMeasurementBundle:input_type -> measured_boot.RenameMeasurementBundleRequest + 1068, // 1390: forge.Forge.UpdateMeasurementBundle:input_type -> measured_boot.UpdateMeasurementBundleRequest + 1069, // 1391: forge.Forge.ShowMeasurementBundle:input_type -> measured_boot.ShowMeasurementBundleRequest + 1070, // 1392: forge.Forge.ShowMeasurementBundles:input_type -> measured_boot.ShowMeasurementBundlesRequest + 1071, // 1393: forge.Forge.ListMeasurementBundles:input_type -> measured_boot.ListMeasurementBundlesRequest + 1072, // 1394: forge.Forge.ListMeasurementBundleMachines:input_type -> measured_boot.ListMeasurementBundleMachinesRequest + 1073, // 1395: forge.Forge.FindClosestBundleMatch:input_type -> measured_boot.FindClosestBundleMatchRequest + 1074, // 1396: forge.Forge.DeleteMeasurementJournal:input_type -> measured_boot.DeleteMeasurementJournalRequest + 1075, // 1397: forge.Forge.ShowMeasurementJournal:input_type -> measured_boot.ShowMeasurementJournalRequest + 1076, // 1398: forge.Forge.ShowMeasurementJournals:input_type -> measured_boot.ShowMeasurementJournalsRequest + 1077, // 1399: forge.Forge.ListMeasurementJournal:input_type -> measured_boot.ListMeasurementJournalRequest + 1078, // 1400: forge.Forge.AttestCandidateMachine:input_type -> measured_boot.AttestCandidateMachineRequest + 1079, // 1401: forge.Forge.ShowCandidateMachine:input_type -> measured_boot.ShowCandidateMachineRequest + 1080, // 1402: forge.Forge.ShowCandidateMachines:input_type -> measured_boot.ShowCandidateMachinesRequest + 1081, // 1403: forge.Forge.ListCandidateMachines:input_type -> measured_boot.ListCandidateMachinesRequest + 1082, // 1404: forge.Forge.CreateMeasurementSystemProfile:input_type -> measured_boot.CreateMeasurementSystemProfileRequest + 1083, // 1405: forge.Forge.DeleteMeasurementSystemProfile:input_type -> measured_boot.DeleteMeasurementSystemProfileRequest + 1084, // 1406: forge.Forge.RenameMeasurementSystemProfile:input_type -> measured_boot.RenameMeasurementSystemProfileRequest + 1085, // 1407: forge.Forge.ShowMeasurementSystemProfile:input_type -> measured_boot.ShowMeasurementSystemProfileRequest + 1086, // 1408: forge.Forge.ShowMeasurementSystemProfiles:input_type -> measured_boot.ShowMeasurementSystemProfilesRequest + 1087, // 1409: forge.Forge.ListMeasurementSystemProfiles:input_type -> measured_boot.ListMeasurementSystemProfilesRequest + 1088, // 1410: forge.Forge.ListMeasurementSystemProfileBundles:input_type -> measured_boot.ListMeasurementSystemProfileBundlesRequest + 1089, // 1411: forge.Forge.ListMeasurementSystemProfileMachines:input_type -> measured_boot.ListMeasurementSystemProfileMachinesRequest + 1090, // 1412: forge.Forge.CreateMeasurementReport:input_type -> measured_boot.CreateMeasurementReportRequest + 1091, // 1413: forge.Forge.DeleteMeasurementReport:input_type -> measured_boot.DeleteMeasurementReportRequest + 1092, // 1414: forge.Forge.PromoteMeasurementReport:input_type -> measured_boot.PromoteMeasurementReportRequest + 1093, // 1415: forge.Forge.RevokeMeasurementReport:input_type -> measured_boot.RevokeMeasurementReportRequest + 1094, // 1416: forge.Forge.ShowMeasurementReportForId:input_type -> measured_boot.ShowMeasurementReportForIdRequest + 1095, // 1417: forge.Forge.ShowMeasurementReportsForMachine:input_type -> measured_boot.ShowMeasurementReportsForMachineRequest + 1096, // 1418: forge.Forge.ShowMeasurementReports:input_type -> measured_boot.ShowMeasurementReportsRequest + 1097, // 1419: forge.Forge.ListMeasurementReport:input_type -> measured_boot.ListMeasurementReportRequest + 1098, // 1420: forge.Forge.MatchMeasurementReport:input_type -> measured_boot.MatchMeasurementReportRequest + 1099, // 1421: forge.Forge.ImportSiteMeasurements:input_type -> measured_boot.ImportSiteMeasurementsRequest + 1100, // 1422: forge.Forge.ExportSiteMeasurements:input_type -> measured_boot.ExportSiteMeasurementsRequest + 1101, // 1423: forge.Forge.AddMeasurementTrustedMachine:input_type -> measured_boot.AddMeasurementTrustedMachineRequest + 1102, // 1424: forge.Forge.RemoveMeasurementTrustedMachine:input_type -> measured_boot.RemoveMeasurementTrustedMachineRequest + 1103, // 1425: forge.Forge.AddMeasurementTrustedProfile:input_type -> measured_boot.AddMeasurementTrustedProfileRequest + 1104, // 1426: forge.Forge.RemoveMeasurementTrustedProfile:input_type -> measured_boot.RemoveMeasurementTrustedProfileRequest + 1105, // 1427: forge.Forge.ListMeasurementTrustedMachines:input_type -> measured_boot.ListMeasurementTrustedMachinesRequest + 1106, // 1428: forge.Forge.ListMeasurementTrustedProfiles:input_type -> measured_boot.ListMeasurementTrustedProfilesRequest + 1107, // 1429: forge.Forge.ListAttestationSummary:input_type -> measured_boot.ListAttestationSummaryRequest + 666, // 1430: forge.Forge.CreateNetworkSecurityGroup:input_type -> forge.CreateNetworkSecurityGroupRequest + 668, // 1431: forge.Forge.FindNetworkSecurityGroupIds:input_type -> forge.FindNetworkSecurityGroupIdsRequest + 670, // 1432: forge.Forge.FindNetworkSecurityGroupsByIds:input_type -> forge.FindNetworkSecurityGroupsByIdsRequest + 673, // 1433: forge.Forge.UpdateNetworkSecurityGroup:input_type -> forge.UpdateNetworkSecurityGroupRequest + 674, // 1434: forge.Forge.DeleteNetworkSecurityGroup:input_type -> forge.DeleteNetworkSecurityGroupRequest + 680, // 1435: forge.Forge.GetNetworkSecurityGroupPropagationStatus:input_type -> forge.GetNetworkSecurityGroupPropagationStatusRequest + 683, // 1436: forge.Forge.GetNetworkSecurityGroupAttachments:input_type -> forge.GetNetworkSecurityGroupAttachmentsRequest + 542, // 1437: forge.Forge.CreateOsImage:input_type -> forge.OsImageAttributes + 546, // 1438: forge.Forge.DeleteOsImage:input_type -> forge.DeleteOsImageRequest + 544, // 1439: forge.Forge.ListOsImage:input_type -> forge.ListOsImageRequest + 996, // 1440: forge.Forge.GetOsImage:input_type -> common.UUID + 542, // 1441: forge.Forge.UpdateOsImage:input_type -> forge.OsImageAttributes + 548, // 1442: forge.Forge.GetIpxeTemplate:input_type -> forge.GetIpxeTemplateRequest + 549, // 1443: forge.Forge.ListIpxeTemplates:input_type -> forge.ListIpxeTemplatesRequest + 564, // 1444: forge.Forge.RebootCompleted:input_type -> forge.MachineRebootCompletedRequest + 569, // 1445: forge.Forge.PersistValidationResult:input_type -> forge.MachineValidationResultPostRequest + 571, // 1446: forge.Forge.GetMachineValidationResults:input_type -> forge.MachineValidationGetRequest + 566, // 1447: forge.Forge.MachineValidationCompleted:input_type -> forge.MachineValidationCompletedRequest + 574, // 1448: forge.Forge.MachineSetAutoUpdate:input_type -> forge.MachineSetAutoUpdateRequest + 576, // 1449: forge.Forge.GetMachineValidationExternalConfig:input_type -> forge.GetMachineValidationExternalConfigRequest + 579, // 1450: forge.Forge.GetMachineValidationExternalConfigs:input_type -> forge.GetMachineValidationExternalConfigsRequest + 581, // 1451: forge.Forge.AddUpdateMachineValidationExternalConfig:input_type -> forge.AddUpdateMachineValidationExternalConfigRequest + 598, // 1452: forge.Forge.GetMachineValidationRuns:input_type -> forge.MachineValidationRunListGetRequest + 599, // 1453: forge.Forge.FindMachineValidationRunItemIds:input_type -> forge.MachineValidationRunItemSearchFilter + 601, // 1454: forge.Forge.FindMachineValidationRunItemsByIds:input_type -> forge.MachineValidationRunItemsByIdsRequest + 604, // 1455: forge.Forge.GetMachineValidationAttempt:input_type -> forge.MachineValidationAttemptGetRequest + 606, // 1456: forge.Forge.HeartbeatMachineValidationRun:input_type -> forge.MachineValidationHeartbeatRequest + 582, // 1457: forge.Forge.RemoveMachineValidationExternalConfig:input_type -> forge.RemoveMachineValidationExternalConfigRequest + 610, // 1458: forge.Forge.GetMachineValidationTests:input_type -> forge.MachineValidationTestsGetRequest + 612, // 1459: forge.Forge.AddMachineValidationTest:input_type -> forge.MachineValidationTestAddRequest + 611, // 1460: forge.Forge.UpdateMachineValidationTest:input_type -> forge.MachineValidationTestUpdateRequest + 615, // 1461: forge.Forge.MachineValidationTestVerfied:input_type -> forge.MachineValidationTestVerfiedRequest + 619, // 1462: forge.Forge.MachineValidationTestNextVersion:input_type -> forge.MachineValidationTestNextVersionRequest + 620, // 1463: forge.Forge.MachineValidationTestEnableDisableTest:input_type -> forge.MachineValidationTestEnableDisableTestRequest + 622, // 1464: forge.Forge.UpdateMachineValidationRun:input_type -> forge.MachineValidationRunRequest + 416, // 1465: forge.Forge.AdminBmcReset:input_type -> forge.AdminBmcResetRequest + 593, // 1466: forge.Forge.AdminPowerControl:input_type -> forge.AdminPowerControlRequest + 374, // 1467: forge.Forge.DisableSecureBoot:input_type -> forge.BmcEndpointRequest + 406, // 1468: forge.Forge.Lockdown:input_type -> forge.LockdownRequest + 408, // 1469: forge.Forge.LockdownStatus:input_type -> forge.LockdownStatusRequest + 410, // 1470: forge.Forge.MachineSetup:input_type -> forge.MachineSetupRequest + 412, // 1471: forge.Forge.SetDpuFirstBootOrder:input_type -> forge.SetDpuFirstBootOrderRequest + 789, // 1472: forge.Forge.CreateBmcUser:input_type -> forge.CreateBmcUserRequest + 791, // 1473: forge.Forge.DeleteBmcUser:input_type -> forge.DeleteBmcUserRequest + 793, // 1474: forge.Forge.SetBmcRootPassword:input_type -> forge.SetBmcRootPasswordRequest + 795, // 1475: forge.Forge.ProbeBmcVendor:input_type -> forge.ProbeBmcVendorRequest + 418, // 1476: forge.Forge.EnableInfiniteBoot:input_type -> forge.EnableInfiniteBootRequest + 420, // 1477: forge.Forge.IsInfiniteBootEnabled:input_type -> forge.IsInfiniteBootEnabledRequest + 583, // 1478: forge.Forge.OnDemandMachineValidation:input_type -> forge.MachineValidationOnDemandRequest + 591, // 1479: forge.Forge.OnDemandRackMaintenance:input_type -> forge.RackMaintenanceOnDemandRequest + 124, // 1480: forge.Forge.TpmAddCaCert:input_type -> forge.TpmCaCert + 1058, // 1481: forge.Forge.TpmShowCaCerts:input_type -> google.protobuf.Empty + 1058, // 1482: forge.Forge.TpmShowUnmatchedEkCerts:input_type -> google.protobuf.Empty + 121, // 1483: forge.Forge.TpmDeleteCaCert:input_type -> forge.TpmCaCertId + 649, // 1484: forge.Forge.RedfishBrowse:input_type -> forge.RedfishBrowseRequest + 651, // 1485: forge.Forge.RedfishListActions:input_type -> forge.RedfishListActionsRequest + 656, // 1486: forge.Forge.RedfishCreateAction:input_type -> forge.RedfishCreateActionRequest + 658, // 1487: forge.Forge.RedfishApproveAction:input_type -> forge.RedfishActionID + 658, // 1488: forge.Forge.RedfishApplyAction:input_type -> forge.RedfishActionID + 658, // 1489: forge.Forge.RedfishCancelAction:input_type -> forge.RedfishActionID + 662, // 1490: forge.Forge.UfmBrowse:input_type -> forge.UfmBrowseRequest + 686, // 1491: forge.Forge.GetDesiredFirmwareVersions:input_type -> forge.GetDesiredFirmwareVersionsRequest + 799, // 1492: forge.Forge.UpsertHostFirmwareConfig:input_type -> forge.UpsertHostFirmwareConfigRequest + 800, // 1493: forge.Forge.DeleteHostFirmwareConfig:input_type -> forge.DeleteHostFirmwareConfigRequest + 702, // 1494: forge.Forge.CreateSku:input_type -> forge.SkuList + 986, // 1495: forge.Forge.GenerateSkuFromMachine:input_type -> common.MachineId + 986, // 1496: forge.Forge.VerifySkuForMachine:input_type -> common.MachineId + 700, // 1497: forge.Forge.AssignSkuToMachine:input_type -> forge.SkuMachinePair + 701, // 1498: forge.Forge.RemoveSkuAssociation:input_type -> forge.RemoveSkuRequest + 703, // 1499: forge.Forge.DeleteSku:input_type -> forge.SkuIdList + 1058, // 1500: forge.Forge.GetAllSkuIds:input_type -> google.protobuf.Empty + 705, // 1501: forge.Forge.FindSkusByIds:input_type -> forge.SkusByIdsRequest + 715, // 1502: forge.Forge.UpdateSkuMetadata:input_type -> forge.SkuUpdateMetadataRequest + 699, // 1503: forge.Forge.ReplaceSku:input_type -> forge.Sku + 386, // 1504: forge.Forge.GetManagedHostQuarantineState:input_type -> forge.GetManagedHostQuarantineStateRequest + 388, // 1505: forge.Forge.SetManagedHostQuarantineState:input_type -> forge.SetManagedHostQuarantineStateRequest + 390, // 1506: forge.Forge.ClearManagedHostQuarantineState:input_type -> forge.ClearManagedHostQuarantineStateRequest + 986, // 1507: forge.Forge.ResetHostReprovisioning:input_type -> common.MachineId + 377, // 1508: forge.Forge.CopyBfbToDpuRshim:input_type -> forge.CopyBfbToDpuRshimRequest + 1058, // 1509: forge.Forge.GetAllDpaInterfaceIds:input_type -> google.protobuf.Empty + 710, // 1510: forge.Forge.FindDpaInterfacesByIds:input_type -> forge.DpaInterfacesByIdsRequest + 708, // 1511: forge.Forge.CreateDpaInterface:input_type -> forge.DpaInterfaceCreationRequest + 708, // 1512: forge.Forge.EnsureDpaInterface:input_type -> forge.DpaInterfaceCreationRequest + 713, // 1513: forge.Forge.DeleteDpaInterface:input_type -> forge.DpaInterfaceDeletionRequest + 716, // 1514: forge.Forge.GetPowerOptions:input_type -> forge.PowerOptionRequest + 717, // 1515: forge.Forge.UpdatePowerOption:input_type -> forge.PowerOptionUpdateRequest + 374, // 1516: forge.Forge.AllowIngestionAndPowerOn:input_type -> forge.BmcEndpointRequest + 374, // 1517: forge.Forge.DetermineMachineIngestionState:input_type -> forge.BmcEndpointRequest + 736, // 1518: forge.Forge.FindRackIds:input_type -> forge.RackSearchFilter + 738, // 1519: forge.Forge.FindRacksByIds:input_type -> forge.RacksByIdsRequest + 733, // 1520: forge.Forge.GetRack:input_type -> forge.GetRackRequest + 743, // 1521: forge.Forge.DeleteRack:input_type -> forge.DeleteRackRequest + 744, // 1522: forge.Forge.AdminForceDeleteRack:input_type -> forge.AdminForceDeleteRackRequest + 751, // 1523: forge.Forge.GetRackProfile:input_type -> forge.GetRackProfileRequest + 722, // 1524: forge.Forge.CreateComputeAllocation:input_type -> forge.CreateComputeAllocationRequest + 724, // 1525: forge.Forge.FindComputeAllocationIds:input_type -> forge.FindComputeAllocationIdsRequest + 726, // 1526: forge.Forge.FindComputeAllocationsByIds:input_type -> forge.FindComputeAllocationsByIdsRequest + 729, // 1527: forge.Forge.UpdateComputeAllocation:input_type -> forge.UpdateComputeAllocationRequest + 730, // 1528: forge.Forge.DeleteComputeAllocation:input_type -> forge.DeleteComputeAllocationRequest + 797, // 1529: forge.Forge.SetFirmwareUpdateTimeWindow:input_type -> forge.SetFirmwareUpdateTimeWindowRequest + 806, // 1530: forge.Forge.ListHostFirmware:input_type -> forge.ListHostFirmwareRequest + 1108, // 1531: forge.Forge.PublishMlxDeviceReport:input_type -> mlx_device.PublishMlxDeviceReportRequest + 1109, // 1532: forge.Forge.PublishMlxObservationReport:input_type -> mlx_device.PublishMlxObservationReportRequest + 809, // 1533: forge.Forge.TrimTable:input_type -> forge.TrimTableRequest + 1058, // 1534: forge.Forge.ListNvlinkNmxcEndpoints:input_type -> google.protobuf.Empty + 811, // 1535: forge.Forge.CreateNvlinkNmxcEndpoint:input_type -> forge.NvlinkNmxcEndpoint + 811, // 1536: forge.Forge.UpdateNvlinkNmxcEndpoint:input_type -> forge.NvlinkNmxcEndpoint + 813, // 1537: forge.Forge.DeleteNvlinkNmxcEndpoint:input_type -> forge.DeleteNvlinkNmxcEndpointRequest + 814, // 1538: forge.Forge.CreateRemediation:input_type -> forge.CreateRemediationRequest + 819, // 1539: forge.Forge.ApproveRemediation:input_type -> forge.ApproveRemediationRequest + 820, // 1540: forge.Forge.RevokeRemediation:input_type -> forge.RevokeRemediationRequest + 821, // 1541: forge.Forge.EnableRemediation:input_type -> forge.EnableRemediationRequest + 822, // 1542: forge.Forge.DisableRemediation:input_type -> forge.DisableRemediationRequest + 1058, // 1543: forge.Forge.FindRemediationIds:input_type -> google.protobuf.Empty + 816, // 1544: forge.Forge.FindRemediationsByIds:input_type -> forge.RemediationIdList + 823, // 1545: forge.Forge.FindAppliedRemediationIds:input_type -> forge.FindAppliedRemediationIdsRequest + 825, // 1546: forge.Forge.FindAppliedRemediations:input_type -> forge.FindAppliedRemediationsRequest + 828, // 1547: forge.Forge.GetNextRemediationForMachine:input_type -> forge.GetNextRemediationForMachineRequest + 830, // 1548: forge.Forge.RemediationApplied:input_type -> forge.RemediationAppliedRequest + 832, // 1549: forge.Forge.SetPrimaryDpu:input_type -> forge.SetPrimaryDpuRequest + 833, // 1550: forge.Forge.SetPrimaryInterface:input_type -> forge.SetPrimaryInterfaceRequest + 839, // 1551: forge.Forge.CreateDpuExtensionService:input_type -> forge.CreateDpuExtensionServiceRequest + 840, // 1552: forge.Forge.UpdateDpuExtensionService:input_type -> forge.UpdateDpuExtensionServiceRequest + 841, // 1553: forge.Forge.DeleteDpuExtensionService:input_type -> forge.DeleteDpuExtensionServiceRequest + 843, // 1554: forge.Forge.FindDpuExtensionServiceIds:input_type -> forge.DpuExtensionServiceSearchFilter + 845, // 1555: forge.Forge.FindDpuExtensionServicesByIds:input_type -> forge.DpuExtensionServicesByIdsRequest + 847, // 1556: forge.Forge.GetDpuExtensionServiceVersionsInfo:input_type -> forge.GetDpuExtensionServiceVersionsInfoRequest + 849, // 1557: forge.Forge.FindInstancesByDpuExtensionService:input_type -> forge.FindInstancesByDpuExtensionServiceRequest + 96, // 1558: forge.Forge.TriggerMachineAttestation:input_type -> forge.SpdmMachineAttestationTriggerRequest + 986, // 1559: forge.Forge.CancelMachineAttestation:input_type -> common.MachineId + 97, // 1560: forge.Forge.ListAttestationMachines:input_type -> forge.SpdmListAttestationMachinesRequest + 986, // 1561: forge.Forge.GetAttestationMachine:input_type -> common.MachineId + 99, // 1562: forge.Forge.SignMachineIdentity:input_type -> forge.MachineIdentityRequest + 101, // 1563: forge.Forge.GetTenantIdentityConfiguration:input_type -> forge.GetTenantIdentityConfigRequest + 104, // 1564: forge.Forge.SetTenantIdentityConfiguration:input_type -> forge.SetTenantIdentityConfigRequest + 101, // 1565: forge.Forge.DeleteTenantIdentityConfiguration:input_type -> forge.GetTenantIdentityConfigRequest + 109, // 1566: forge.Forge.GetTokenDelegation:input_type -> forge.GetTokenDelegationRequest + 111, // 1567: forge.Forge.SetTokenDelegation:input_type -> forge.TokenDelegationRequest + 109, // 1568: forge.Forge.DeleteTokenDelegation:input_type -> forge.GetTokenDelegationRequest + 112, // 1569: forge.Forge.ReencryptTenantIdentitySecrets:input_type -> forge.ReencryptTenantIdentitySecretsRequest + 117, // 1570: forge.Forge.GetJWKS:input_type -> forge.JwksRequest + 118, // 1571: forge.Forge.GetOpenIDConfiguration:input_type -> forge.OpenIdConfigRequest + 856, // 1572: forge.Forge.ScoutStream:input_type -> forge.ScoutStreamApiBoundMessage + 859, // 1573: forge.Forge.ScoutStreamShowConnections:input_type -> forge.ScoutStreamShowConnectionsRequest + 861, // 1574: forge.Forge.ScoutStreamDisconnect:input_type -> forge.ScoutStreamDisconnectRequest + 863, // 1575: forge.Forge.ScoutStreamPing:input_type -> forge.ScoutStreamAdminPingRequest + 1110, // 1576: forge.Forge.MlxAdminProfileSync:input_type -> mlx_device.MlxAdminProfileSyncRequest + 1111, // 1577: forge.Forge.MlxAdminProfileShow:input_type -> mlx_device.MlxAdminProfileShowRequest + 1112, // 1578: forge.Forge.MlxAdminProfileCompare:input_type -> mlx_device.MlxAdminProfileCompareRequest + 1113, // 1579: forge.Forge.MlxAdminProfileList:input_type -> mlx_device.MlxAdminProfileListRequest + 1114, // 1580: forge.Forge.MlxAdminLockdownLock:input_type -> mlx_device.MlxAdminLockdownLockRequest + 1115, // 1581: forge.Forge.MlxAdminLockdownUnlock:input_type -> mlx_device.MlxAdminLockdownUnlockRequest + 1116, // 1582: forge.Forge.MlxAdminLockdownStatus:input_type -> mlx_device.MlxAdminLockdownStatusRequest + 1117, // 1583: forge.Forge.MlxAdminShowDevice:input_type -> mlx_device.MlxAdminDeviceInfoRequest + 1118, // 1584: forge.Forge.MlxAdminShowMachine:input_type -> mlx_device.MlxAdminDeviceReportRequest + 1119, // 1585: forge.Forge.MlxAdminRegistryList:input_type -> mlx_device.MlxAdminRegistryListRequest + 1120, // 1586: forge.Forge.MlxAdminRegistryShow:input_type -> mlx_device.MlxAdminRegistryShowRequest + 1121, // 1587: forge.Forge.MlxAdminConfigQuery:input_type -> mlx_device.MlxAdminConfigQueryRequest + 1122, // 1588: forge.Forge.MlxAdminConfigSet:input_type -> mlx_device.MlxAdminConfigSetRequest + 1123, // 1589: forge.Forge.MlxAdminConfigSync:input_type -> mlx_device.MlxAdminConfigSyncRequest + 1124, // 1590: forge.Forge.MlxAdminConfigCompare:input_type -> mlx_device.MlxAdminConfigCompareRequest + 773, // 1591: forge.Forge.FindNVLinkPartitionIds:input_type -> forge.NVLinkPartitionSearchFilter + 774, // 1592: forge.Forge.FindNVLinkPartitionsByIds:input_type -> forge.NVLinkPartitionsByIdsRequest + 154, // 1593: forge.Forge.NVLinkPartitionsForTenant:input_type -> forge.TenantSearchQuery + 784, // 1594: forge.Forge.FindNVLinkLogicalPartitionIds:input_type -> forge.NVLinkLogicalPartitionSearchFilter + 785, // 1595: forge.Forge.FindNVLinkLogicalPartitionsByIds:input_type -> forge.NVLinkLogicalPartitionsByIdsRequest + 781, // 1596: forge.Forge.CreateNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionCreationRequest + 787, // 1597: forge.Forge.UpdateNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionUpdateRequest + 782, // 1598: forge.Forge.DeleteNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionDeletionRequest + 154, // 1599: forge.Forge.NVLinkLogicalPartitionsForTenant:input_type -> forge.TenantSearchQuery + 877, // 1600: forge.Forge.GetMachinePositionInfo:input_type -> forge.MachinePositionQuery + 767, // 1601: forge.Forge.NmxcBrowse:input_type -> forge.NmxcBrowseRequest + 880, // 1602: forge.Forge.ModifyDPFState:input_type -> forge.ModifyDPFStateRequest + 882, // 1603: forge.Forge.GetDPFState:input_type -> forge.GetDPFStateRequest + 883, // 1604: forge.Forge.GetDPFHostSnapshot:input_type -> forge.GetDPFHostSnapshotRequest + 885, // 1605: forge.Forge.GetDPFServiceVersions:input_type -> forge.GetDPFServiceVersionsRequest + 894, // 1606: forge.Forge.ComponentPowerControl:input_type -> forge.ComponentPowerControlRequest + 896, // 1607: forge.Forge.ComponentConfigureSwitchCertificate:input_type -> forge.ComponentConfigureSwitchCertificateRequest + 891, // 1608: forge.Forge.GetComponentInventory:input_type -> forge.GetComponentInventoryRequest + 903, // 1609: forge.Forge.UpdateComponentFirmware:input_type -> forge.UpdateComponentFirmwareRequest + 905, // 1610: forge.Forge.GetComponentFirmwareStatus:input_type -> forge.GetComponentFirmwareStatusRequest + 907, // 1611: forge.Forge.ListComponentFirmwareVersions:input_type -> forge.ListComponentFirmwareVersionsRequest + 924, // 1612: forge.Forge.CreateOperatingSystem:input_type -> forge.CreateOperatingSystemRequest + 1004, // 1613: forge.Forge.GetOperatingSystem:input_type -> common.OperatingSystemId + 927, // 1614: forge.Forge.UpdateOperatingSystem:input_type -> forge.UpdateOperatingSystemRequest + 928, // 1615: forge.Forge.DeleteOperatingSystem:input_type -> forge.DeleteOperatingSystemRequest + 930, // 1616: forge.Forge.FindOperatingSystemIds:input_type -> forge.OperatingSystemSearchFilter + 932, // 1617: forge.Forge.FindOperatingSystemsByIds:input_type -> forge.OperatingSystemsByIdsRequest + 934, // 1618: forge.Forge.GetOperatingSystemCachableIpxeTemplateArtifacts:input_type -> forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest + 937, // 1619: forge.Forge.UpdateOperatingSystemCachableIpxeTemplateArtifacts:input_type -> forge.UpdateOperatingSystemIpxeTemplateArtifactRequest + 939, // 1620: forge.Forge.ReWrapSecrets:input_type -> forge.ReWrapSecretsRequest + 140, // 1621: forge.Forge.Version:output_type -> forge.BuildInfo + 1044, // 1622: forge.Forge.CreateDomain:output_type -> dns.Domain + 1044, // 1623: forge.Forge.UpdateDomain:output_type -> dns.Domain + 1125, // 1624: forge.Forge.DeleteDomain:output_type -> dns.DomainDeletionResult + 1126, // 1625: forge.Forge.FindDomain:output_type -> dns.DomainList + 871, // 1626: forge.Forge.CreateDomainLegacy:output_type -> forge.DomainLegacy + 871, // 1627: forge.Forge.UpdateDomainLegacy:output_type -> forge.DomainLegacy + 874, // 1628: forge.Forge.DeleteDomainLegacy:output_type -> forge.DomainDeletionResultLegacy + 872, // 1629: forge.Forge.FindDomainLegacy:output_type -> forge.DomainListLegacy + 157, // 1630: forge.Forge.CreateVpc:output_type -> forge.Vpc + 160, // 1631: forge.Forge.UpdateVpc:output_type -> forge.VpcUpdateResult + 162, // 1632: forge.Forge.UpdateVpcVirtualization:output_type -> forge.VpcUpdateVirtualizationResult + 164, // 1633: forge.Forge.DeleteVpc:output_type -> forge.VpcDeletionResult + 152, // 1634: forge.Forge.FindVpcIds:output_type -> forge.VpcIdList + 165, // 1635: forge.Forge.FindVpcsByIds:output_type -> forge.VpcList + 912, // 1636: forge.Forge.CreateSpxPartition:output_type -> forge.SpxPartition + 915, // 1637: forge.Forge.DeleteSpxPartition:output_type -> forge.SpxPartitionDeletionResult + 913, // 1638: forge.Forge.FindSpxPartitionIds:output_type -> forge.SpxPartitionIdList + 917, // 1639: forge.Forge.FindSpxPartitionsByIds:output_type -> forge.SpxPartitionList + 166, // 1640: forge.Forge.CreateVpcPrefix:output_type -> forge.VpcPrefix + 172, // 1641: forge.Forge.SearchVpcPrefixes:output_type -> forge.VpcPrefixIdList + 173, // 1642: forge.Forge.GetVpcPrefixes:output_type -> forge.VpcPrefixList + 166, // 1643: forge.Forge.UpdateVpcPrefix:output_type -> forge.VpcPrefix + 176, // 1644: forge.Forge.DeleteVpcPrefix:output_type -> forge.VpcPrefixDeletionResult + 178, // 1645: forge.Forge.CreateVpcPeering:output_type -> forge.VpcPeering + 179, // 1646: forge.Forge.FindVpcPeeringIds:output_type -> forge.VpcPeeringIdList + 180, // 1647: forge.Forge.FindVpcPeeringsByIds:output_type -> forge.VpcPeeringList + 185, // 1648: forge.Forge.DeleteVpcPeering:output_type -> forge.VpcPeeringDeletionResult + 252, // 1649: forge.Forge.FindNetworkSegmentIds:output_type -> forge.NetworkSegmentIdList + 360, // 1650: forge.Forge.FindNetworkSegmentsByIds:output_type -> forge.NetworkSegmentList + 244, // 1651: forge.Forge.CreateNetworkSegment:output_type -> forge.NetworkSegment + 244, // 1652: forge.Forge.AttachNetworkSegmentToVpc:output_type -> forge.NetworkSegment + 248, // 1653: forge.Forge.DeleteNetworkSegment:output_type -> forge.NetworkSegmentDeletionResult + 360, // 1654: forge.Forge.NetworkSegmentsForVpc:output_type -> forge.NetworkSegmentList + 196, // 1655: forge.Forge.FindIBPartitionIds:output_type -> forge.IBPartitionIdList + 189, // 1656: forge.Forge.FindIBPartitionsByIds:output_type -> forge.IBPartitionList + 188, // 1657: forge.Forge.CreateIBPartition:output_type -> forge.IBPartition + 188, // 1658: forge.Forge.UpdateIBPartition:output_type -> forge.IBPartition + 193, // 1659: forge.Forge.DeleteIBPartition:output_type -> forge.IBPartitionDeletionResult + 189, // 1660: forge.Forge.IBPartitionsForTenant:output_type -> forge.IBPartitionList + 200, // 1661: forge.Forge.FindPowerShelves:output_type -> forge.PowerShelfList + 890, // 1662: forge.Forge.FindPowerShelfIds:output_type -> forge.PowerShelfIdList + 200, // 1663: forge.Forge.FindPowerShelvesByIds:output_type -> forge.PowerShelfList + 203, // 1664: forge.Forge.DeletePowerShelf:output_type -> forge.PowerShelfDeletionResult + 922, // 1665: forge.Forge.AdminForceDeletePowerShelf:output_type -> forge.AdminForceDeletePowerShelfResponse + 1058, // 1666: forge.Forge.SetPowerShelfMaintenance:output_type -> google.protobuf.Empty + 220, // 1667: forge.Forge.FindSwitches:output_type -> forge.SwitchList + 889, // 1668: forge.Forge.FindSwitchIds:output_type -> forge.SwitchIdList + 220, // 1669: forge.Forge.FindSwitchesByIds:output_type -> forge.SwitchList + 223, // 1670: forge.Forge.DeleteSwitch:output_type -> forge.SwitchDeletionResult + 920, // 1671: forge.Forge.AdminForceDeleteSwitch:output_type -> forge.AdminForceDeleteSwitchResponse + 240, // 1672: forge.Forge.FindIBFabricIds:output_type -> forge.IBFabricIdList + 293, // 1673: forge.Forge.AllocateInstance:output_type -> forge.Instance + 266, // 1674: forge.Forge.AllocateInstances:output_type -> forge.BatchInstanceAllocationResponse + 309, // 1675: forge.Forge.ReleaseInstance:output_type -> forge.InstanceReleaseResult + 293, // 1676: forge.Forge.UpdateInstanceOperatingSystem:output_type -> forge.Instance + 293, // 1677: forge.Forge.UpdateInstanceConfig:output_type -> forge.Instance + 262, // 1678: forge.Forge.FindInstanceIds:output_type -> forge.InstanceIdList + 258, // 1679: forge.Forge.FindInstancesByIds:output_type -> forge.InstanceList + 258, // 1680: forge.Forge.FindInstanceByMachineID:output_type -> forge.InstanceList + 381, // 1681: forge.Forge.GetManagedHostNetworkConfig:output_type -> forge.ManagedHostNetworkConfigResponse + 1058, // 1682: forge.Forge.RecordDpuNetworkStatus:output_type -> google.protobuf.Empty + 461, // 1683: forge.Forge.ListMachineHealthReports:output_type -> forge.ListHealthReportResponse + 1058, // 1684: forge.Forge.InsertMachineHealthReport:output_type -> google.protobuf.Empty + 1058, // 1685: forge.Forge.RemoveMachineHealthReport:output_type -> google.protobuf.Empty + 461, // 1686: forge.Forge.ListRackHealthReports:output_type -> forge.ListHealthReportResponse + 1058, // 1687: forge.Forge.InsertRackHealthReport:output_type -> google.protobuf.Empty + 1058, // 1688: forge.Forge.RemoveRackHealthReport:output_type -> google.protobuf.Empty + 461, // 1689: forge.Forge.ListSwitchHealthReports:output_type -> forge.ListHealthReportResponse + 1058, // 1690: forge.Forge.InsertSwitchHealthReport:output_type -> google.protobuf.Empty + 1058, // 1691: forge.Forge.RemoveSwitchHealthReport:output_type -> google.protobuf.Empty + 461, // 1692: forge.Forge.ListPowerShelfHealthReports:output_type -> forge.ListHealthReportResponse + 1058, // 1693: forge.Forge.InsertPowerShelfHealthReport:output_type -> google.protobuf.Empty + 1058, // 1694: forge.Forge.RemovePowerShelfHealthReport:output_type -> google.protobuf.Empty + 461, // 1695: forge.Forge.ListNVLinkDomainHealthReports:output_type -> forge.ListHealthReportResponse + 1058, // 1696: forge.Forge.InsertNVLinkDomainHealthReport:output_type -> google.protobuf.Empty + 1058, // 1697: forge.Forge.RemoveNVLinkDomainHealthReport:output_type -> google.protobuf.Empty + 461, // 1698: forge.Forge.ListHealthReportOverrides:output_type -> forge.ListHealthReportResponse + 1058, // 1699: forge.Forge.InsertHealthReportOverride:output_type -> google.protobuf.Empty + 1058, // 1700: forge.Forge.RemoveHealthReportOverride:output_type -> google.protobuf.Empty + 400, // 1701: forge.Forge.DpuAgentUpgradeCheck:output_type -> forge.DpuAgentUpgradeCheckResponse + 402, // 1702: forge.Forge.DpuAgentUpgradePolicyAction:output_type -> forge.DpuAgentUpgradePolicyResponse + 1127, // 1703: forge.Forge.LookupRecord:output_type -> dns.DnsResourceRecordLookupResponse + 1128, // 1704: forge.Forge.GetAllDomains:output_type -> dns.GetAllDomainsResponse + 1129, // 1705: forge.Forge.GetAllDomainMetadata:output_type -> dns.DomainMetadataResponse + 257, // 1706: forge.Forge.InvokeInstancePower:output_type -> forge.InstancePowerResult + 427, // 1707: forge.Forge.ForgeAgentControl:output_type -> forge.ForgeAgentControlResponse + 434, // 1708: forge.Forge.DiscoverMachine:output_type -> forge.MachineDiscoveryResult + 433, // 1709: forge.Forge.RenewMachineCertificate:output_type -> forge.MachineCertificateResult + 435, // 1710: forge.Forge.DiscoveryCompleted:output_type -> forge.MachineDiscoveryCompletedResponse + 436, // 1711: forge.Forge.CleanupMachineCompleted:output_type -> forge.MachineCleanupResult + 438, // 1712: forge.Forge.ReportForgeScoutError:output_type -> forge.ForgeScoutErrorReportResult + 359, // 1713: forge.Forge.DiscoverDhcp:output_type -> forge.DhcpRecord + 358, // 1714: forge.Forge.ExpireDhcpLease:output_type -> forge.ExpireDhcpLeaseResponse + 328, // 1715: forge.Forge.AssignStaticAddress:output_type -> forge.AssignStaticAddressResponse + 330, // 1716: forge.Forge.RemoveStaticAddress:output_type -> forge.RemoveStaticAddressResponse + 333, // 1717: forge.Forge.FindInterfaceAddresses:output_type -> forge.FindInterfaceAddressesResponse + 323, // 1718: forge.Forge.FindInterfaces:output_type -> forge.InterfaceList + 1058, // 1719: forge.Forge.DeleteInterface:output_type -> google.protobuf.Empty + 502, // 1720: forge.Forge.FindIpAddress:output_type -> forge.FindIpAddressResponse + 1045, // 1721: forge.Forge.FindMachineIds:output_type -> common.MachineIdList + 324, // 1722: forge.Forge.FindMachinesByIds:output_type -> forge.MachineList + 313, // 1723: forge.Forge.FindMachineStateHistories:output_type -> forge.MachineStateHistories + 316, // 1724: forge.Forge.FindMachineHealthHistories:output_type -> forge.HealthHistories + 227, // 1725: forge.Forge.FindPowerShelfStateHistories:output_type -> forge.StateHistories + 227, // 1726: forge.Forge.FindRackStateHistories:output_type -> forge.StateHistories + 227, // 1727: forge.Forge.FindSwitchStateHistories:output_type -> forge.StateHistories + 227, // 1728: forge.Forge.FindNetworkSegmentStateHistories:output_type -> forge.StateHistories + 227, // 1729: forge.Forge.FindVpcPrefixStateHistories:output_type -> forge.StateHistories + 322, // 1730: forge.Forge.FindTenantOrganizationIds:output_type -> forge.TenantOrganizationIdList + 321, // 1731: forge.Forge.FindTenantsByOrganizationIds:output_type -> forge.TenantList + 525, // 1732: forge.Forge.FindConnectedDevicesByDpuMachineIds:output_type -> forge.ConnectedDeviceList + 529, // 1733: forge.Forge.FindMachineIdsByBmcIps:output_type -> forge.MachineIdBmcIpPairs + 528, // 1734: forge.Forge.FindMacAddressByBmcIp:output_type -> forge.MacAddressBmcIp + 526, // 1735: forge.Forge.FindBmcIps:output_type -> forge.BmcIpList + 504, // 1736: forge.Forge.IdentifyUuid:output_type -> forge.IdentifyUuidResponse + 507, // 1737: forge.Forge.IdentifyMac:output_type -> forge.IdentifyMacResponse + 509, // 1738: forge.Forge.IdentifySerial:output_type -> forge.IdentifySerialResponse + 423, // 1739: forge.Forge.GetBMCMetaData:output_type -> forge.BMCMetaDataGetResponse + 425, // 1740: forge.Forge.UpdateMachineCredentials:output_type -> forge.MachineCredentialsUpdateResponse + 440, // 1741: forge.Forge.GetPxeInstructions:output_type -> forge.PxeInstructions + 444, // 1742: forge.Forge.GetCloudInitInstructions:output_type -> forge.CloudInitInstructions + 143, // 1743: forge.Forge.Echo:output_type -> forge.EchoResponse + 471, // 1744: forge.Forge.CreateTenant:output_type -> forge.CreateTenantResponse + 475, // 1745: forge.Forge.FindTenant:output_type -> forge.FindTenantResponse + 473, // 1746: forge.Forge.UpdateTenant:output_type -> forge.UpdateTenantResponse + 481, // 1747: forge.Forge.CreateTenantKeyset:output_type -> forge.CreateTenantKeysetResponse + 488, // 1748: forge.Forge.FindTenantKeysetIds:output_type -> forge.TenantKeysetIdList + 482, // 1749: forge.Forge.FindTenantKeysetsByIds:output_type -> forge.TenantKeySetList + 484, // 1750: forge.Forge.UpdateTenantKeyset:output_type -> forge.UpdateTenantKeysetResponse + 486, // 1751: forge.Forge.DeleteTenantKeyset:output_type -> forge.DeleteTenantKeysetResponse + 491, // 1752: forge.Forge.ValidateTenantPublicKey:output_type -> forge.ValidateTenantPublicKeyResponse + 365, // 1753: forge.Forge.GetBmcCredentials:output_type -> forge.GetBmcCredentialsResponse + 365, // 1754: forge.Forge.GetSwitchNvosCredentials:output_type -> forge.GetBmcCredentialsResponse + 398, // 1755: forge.Forge.GetAllManagedHostNetworkStatus:output_type -> forge.ManagedHostNetworkStatusResponse + 1130, // 1756: forge.Forge.GetSiteExplorationReport:output_type -> site_explorer.SiteExplorationReport + 1131, // 1757: forge.Forge.GetSiteExplorerLastRun:output_type -> site_explorer.SiteExplorerLastRunResponse + 1058, // 1758: forge.Forge.ClearSiteExplorationError:output_type -> google.protobuf.Empty + 608, // 1759: forge.Forge.IsBmcInManagedHost:output_type -> forge.IsBmcInManagedHostResponse + 609, // 1760: forge.Forge.BmcCredentialStatus:output_type -> forge.BmcCredentialStatusResponse + 1046, // 1761: forge.Forge.Explore:output_type -> site_explorer.EndpointExplorationReport + 1058, // 1762: forge.Forge.ReExploreEndpoint:output_type -> google.protobuf.Empty + 1132, // 1763: forge.Forge.RefreshEndpointReport:output_type -> site_explorer.ExploredEndpoint + 373, // 1764: forge.Forge.DeleteExploredEndpoint:output_type -> forge.DeleteExploredEndpointResponse + 1058, // 1765: forge.Forge.PauseExploredEndpointRemediation:output_type -> google.protobuf.Empty + 1133, // 1766: forge.Forge.FindExploredEndpointIds:output_type -> site_explorer.ExploredEndpointIdList + 1134, // 1767: forge.Forge.FindExploredEndpointsByIds:output_type -> site_explorer.ExploredEndpointList + 1135, // 1768: forge.Forge.FindExploredManagedHostIds:output_type -> site_explorer.ExploredManagedHostIdList + 1136, // 1769: forge.Forge.FindExploredManagedHostsByIds:output_type -> site_explorer.ExploredManagedHostList + 1137, // 1770: forge.Forge.FindExploredMlxDeviceHostIds:output_type -> site_explorer.ExploredMlxDeviceHostIdList + 1138, // 1771: forge.Forge.FindExploredMlxDevicesByIds:output_type -> site_explorer.ExploredMlxDeviceList + 1058, // 1772: forge.Forge.UpdateMachineHardwareInfo:output_type -> google.protobuf.Empty + 404, // 1773: forge.Forge.AdminForceDeleteMachine:output_type -> forge.AdminForceDeleteMachineResponse + 493, // 1774: forge.Forge.AdminListResourcePools:output_type -> forge.ResourcePools + 496, // 1775: forge.Forge.AdminGrowResourcePool:output_type -> forge.GrowResourcePoolResponse + 1058, // 1776: forge.Forge.UpdateMachineMetadata:output_type -> google.protobuf.Empty + 1058, // 1777: forge.Forge.UpdateMachineBmcVendorOverride:output_type -> google.protobuf.Empty + 1058, // 1778: forge.Forge.UpdateRackMetadata:output_type -> google.protobuf.Empty + 1058, // 1779: forge.Forge.UpdateSwitchMetadata:output_type -> google.protobuf.Empty + 1058, // 1780: forge.Forge.UpdatePowerShelfMetadata:output_type -> google.protobuf.Empty + 1058, // 1781: forge.Forge.UpdateMachineNvLinkInfo:output_type -> google.protobuf.Empty + 1058, // 1782: forge.Forge.SetMaintenance:output_type -> google.protobuf.Empty + 1058, // 1783: forge.Forge.SetDynamicConfig:output_type -> google.protobuf.Empty + 1058, // 1784: forge.Forge.TriggerDpuReprovisioning:output_type -> google.protobuf.Empty + 512, // 1785: forge.Forge.ListDpuWaitingForReprovisioning:output_type -> forge.DpuReprovisioningListResponse + 1058, // 1786: forge.Forge.TriggerHostReprovisioning:output_type -> google.protobuf.Empty + 515, // 1787: forge.Forge.ListHostsWaitingForReprovisioning:output_type -> forge.HostReprovisioningListResponse + 1058, // 1788: forge.Forge.MarkManualFirmwareUpgradeComplete:output_type -> google.protobuf.Empty + 1058, // 1789: forge.Forge.ReportScoutFirmwareUpgradeStatus:output_type -> google.protobuf.Empty + 521, // 1790: forge.Forge.GetDpuInfoList:output_type -> forge.GetDpuInfoListResponse + 523, // 1791: forge.Forge.GetMachineBootOverride:output_type -> forge.MachineBootOverride + 1058, // 1792: forge.Forge.SetMachineBootOverride:output_type -> google.protobuf.Empty + 1058, // 1793: forge.Forge.ClearMachineBootOverride:output_type -> google.protobuf.Empty + 946, // 1794: forge.Forge.GetMachineBootInterfaces:output_type -> forge.GetMachineBootInterfacesResponse + 534, // 1795: forge.Forge.GetNetworkTopology:output_type -> forge.NetworkTopologyData + 534, // 1796: forge.Forge.FindNetworkDevicesByDeviceIds:output_type -> forge.NetworkTopologyData + 132, // 1797: forge.Forge.CreateCredential:output_type -> forge.CredentialCreationResult + 133, // 1798: forge.Forge.DeleteCredential:output_type -> forge.CredentialDeletionResult + 135, // 1799: forge.Forge.RotateCredential:output_type -> forge.RotateCredentialResult + 138, // 1800: forge.Forge.GetCredentialRotationStatus:output_type -> forge.CredentialRotationStatusResult + 536, // 1801: forge.Forge.GetRouteServers:output_type -> forge.RouteServerEntries + 1058, // 1802: forge.Forge.AddRouteServers:output_type -> google.protobuf.Empty + 1058, // 1803: forge.Forge.RemoveRouteServers:output_type -> google.protobuf.Empty + 1058, // 1804: forge.Forge.ReplaceRouteServers:output_type -> google.protobuf.Empty + 1058, // 1805: forge.Forge.UpdateAgentReportedInventory:output_type -> google.protobuf.Empty + 304, // 1806: forge.Forge.UpdateInstancePhoneHomeLastContact:output_type -> forge.InstancePhoneHomeLastContactResponse + 539, // 1807: forge.Forge.SetHostUefiPassword:output_type -> forge.SetHostUefiPasswordResponse + 541, // 1808: forge.Forge.ClearHostUefiPassword:output_type -> forge.ClearHostUefiPasswordResponse + 1058, // 1809: forge.Forge.AddExpectedMachine:output_type -> google.protobuf.Empty + 1058, // 1810: forge.Forge.DeleteExpectedMachine:output_type -> google.protobuf.Empty + 1058, // 1811: forge.Forge.UpdateExpectedMachine:output_type -> google.protobuf.Empty + 553, // 1812: forge.Forge.GetExpectedMachine:output_type -> forge.ExpectedMachine + 555, // 1813: forge.Forge.GetAllExpectedMachines:output_type -> forge.ExpectedMachineList + 1058, // 1814: forge.Forge.ReplaceAllExpectedMachines:output_type -> google.protobuf.Empty + 1058, // 1815: forge.Forge.DeleteAllExpectedMachines:output_type -> google.protobuf.Empty + 556, // 1816: forge.Forge.GetAllExpectedMachinesLinked:output_type -> forge.LinkedExpectedMachineList + 558, // 1817: forge.Forge.GetAllUnexpectedMachines:output_type -> forge.UnexpectedMachineList + 562, // 1818: forge.Forge.CreateExpectedMachines:output_type -> forge.BatchExpectedMachineOperationResponse + 562, // 1819: forge.Forge.UpdateExpectedMachines:output_type -> forge.BatchExpectedMachineOperationResponse + 1058, // 1820: forge.Forge.AddExpectedPowerShelf:output_type -> google.protobuf.Empty + 1058, // 1821: forge.Forge.DeleteExpectedPowerShelf:output_type -> google.protobuf.Empty + 1058, // 1822: forge.Forge.UpdateExpectedPowerShelf:output_type -> google.protobuf.Empty + 209, // 1823: forge.Forge.GetExpectedPowerShelf:output_type -> forge.ExpectedPowerShelf + 211, // 1824: forge.Forge.GetAllExpectedPowerShelves:output_type -> forge.ExpectedPowerShelfList + 1058, // 1825: forge.Forge.ReplaceAllExpectedPowerShelves:output_type -> google.protobuf.Empty + 1058, // 1826: forge.Forge.DeleteAllExpectedPowerShelves:output_type -> google.protobuf.Empty + 212, // 1827: forge.Forge.GetAllExpectedPowerShelvesLinked:output_type -> forge.LinkedExpectedPowerShelfList + 1058, // 1828: forge.Forge.AddExpectedSwitch:output_type -> google.protobuf.Empty + 1058, // 1829: forge.Forge.DeleteExpectedSwitch:output_type -> google.protobuf.Empty + 1058, // 1830: forge.Forge.UpdateExpectedSwitch:output_type -> google.protobuf.Empty + 231, // 1831: forge.Forge.GetExpectedSwitch:output_type -> forge.ExpectedSwitch + 233, // 1832: forge.Forge.GetAllExpectedSwitches:output_type -> forge.ExpectedSwitchList + 1058, // 1833: forge.Forge.ReplaceAllExpectedSwitches:output_type -> google.protobuf.Empty + 1058, // 1834: forge.Forge.DeleteAllExpectedSwitches:output_type -> google.protobuf.Empty + 234, // 1835: forge.Forge.GetAllExpectedSwitchesLinked:output_type -> forge.LinkedExpectedSwitchList + 1058, // 1836: forge.Forge.AddExpectedRack:output_type -> google.protobuf.Empty + 1058, // 1837: forge.Forge.DeleteExpectedRack:output_type -> google.protobuf.Empty + 1058, // 1838: forge.Forge.UpdateExpectedRack:output_type -> google.protobuf.Empty + 236, // 1839: forge.Forge.GetExpectedRack:output_type -> forge.ExpectedRack + 238, // 1840: forge.Forge.GetAllExpectedRacks:output_type -> forge.ExpectedRackList + 1058, // 1841: forge.Forge.ReplaceAllExpectedRacks:output_type -> google.protobuf.Empty + 1058, // 1842: forge.Forge.DeleteAllExpectedRacks:output_type -> google.protobuf.Empty + 129, // 1843: forge.Forge.AttestQuote:output_type -> forge.AttestQuoteResponse + 636, // 1844: forge.Forge.CreateInstanceType:output_type -> forge.CreateInstanceTypeResponse + 638, // 1845: forge.Forge.FindInstanceTypeIds:output_type -> forge.FindInstanceTypeIdsResponse + 640, // 1846: forge.Forge.FindInstanceTypesByIds:output_type -> forge.FindInstanceTypesByIdsResponse + 643, // 1847: forge.Forge.UpdateInstanceType:output_type -> forge.UpdateInstanceTypeResponse + 642, // 1848: forge.Forge.DeleteInstanceType:output_type -> forge.DeleteInstanceTypeResponse + 646, // 1849: forge.Forge.AssociateMachinesWithInstanceType:output_type -> forge.AssociateMachinesWithInstanceTypeResponse + 648, // 1850: forge.Forge.RemoveMachineInstanceTypeAssociation:output_type -> forge.RemoveMachineInstanceTypeAssociationResponse + 1139, // 1851: forge.Forge.CreateMeasurementBundle:output_type -> measured_boot.CreateMeasurementBundleResponse + 1140, // 1852: forge.Forge.DeleteMeasurementBundle:output_type -> measured_boot.DeleteMeasurementBundleResponse + 1141, // 1853: forge.Forge.RenameMeasurementBundle:output_type -> measured_boot.RenameMeasurementBundleResponse + 1142, // 1854: forge.Forge.UpdateMeasurementBundle:output_type -> measured_boot.UpdateMeasurementBundleResponse + 1143, // 1855: forge.Forge.ShowMeasurementBundle:output_type -> measured_boot.ShowMeasurementBundleResponse + 1144, // 1856: forge.Forge.ShowMeasurementBundles:output_type -> measured_boot.ShowMeasurementBundlesResponse + 1145, // 1857: forge.Forge.ListMeasurementBundles:output_type -> measured_boot.ListMeasurementBundlesResponse + 1146, // 1858: forge.Forge.ListMeasurementBundleMachines:output_type -> measured_boot.ListMeasurementBundleMachinesResponse + 1143, // 1859: forge.Forge.FindClosestBundleMatch:output_type -> measured_boot.ShowMeasurementBundleResponse + 1147, // 1860: forge.Forge.DeleteMeasurementJournal:output_type -> measured_boot.DeleteMeasurementJournalResponse + 1148, // 1861: forge.Forge.ShowMeasurementJournal:output_type -> measured_boot.ShowMeasurementJournalResponse + 1149, // 1862: forge.Forge.ShowMeasurementJournals:output_type -> measured_boot.ShowMeasurementJournalsResponse + 1150, // 1863: forge.Forge.ListMeasurementJournal:output_type -> measured_boot.ListMeasurementJournalResponse + 1151, // 1864: forge.Forge.AttestCandidateMachine:output_type -> measured_boot.AttestCandidateMachineResponse + 1152, // 1865: forge.Forge.ShowCandidateMachine:output_type -> measured_boot.ShowCandidateMachineResponse + 1153, // 1866: forge.Forge.ShowCandidateMachines:output_type -> measured_boot.ShowCandidateMachinesResponse + 1154, // 1867: forge.Forge.ListCandidateMachines:output_type -> measured_boot.ListCandidateMachinesResponse + 1155, // 1868: forge.Forge.CreateMeasurementSystemProfile:output_type -> measured_boot.CreateMeasurementSystemProfileResponse + 1156, // 1869: forge.Forge.DeleteMeasurementSystemProfile:output_type -> measured_boot.DeleteMeasurementSystemProfileResponse + 1157, // 1870: forge.Forge.RenameMeasurementSystemProfile:output_type -> measured_boot.RenameMeasurementSystemProfileResponse + 1158, // 1871: forge.Forge.ShowMeasurementSystemProfile:output_type -> measured_boot.ShowMeasurementSystemProfileResponse + 1159, // 1872: forge.Forge.ShowMeasurementSystemProfiles:output_type -> measured_boot.ShowMeasurementSystemProfilesResponse + 1160, // 1873: forge.Forge.ListMeasurementSystemProfiles:output_type -> measured_boot.ListMeasurementSystemProfilesResponse + 1161, // 1874: forge.Forge.ListMeasurementSystemProfileBundles:output_type -> measured_boot.ListMeasurementSystemProfileBundlesResponse + 1162, // 1875: forge.Forge.ListMeasurementSystemProfileMachines:output_type -> measured_boot.ListMeasurementSystemProfileMachinesResponse + 1163, // 1876: forge.Forge.CreateMeasurementReport:output_type -> measured_boot.CreateMeasurementReportResponse + 1164, // 1877: forge.Forge.DeleteMeasurementReport:output_type -> measured_boot.DeleteMeasurementReportResponse + 1165, // 1878: forge.Forge.PromoteMeasurementReport:output_type -> measured_boot.PromoteMeasurementReportResponse + 1166, // 1879: forge.Forge.RevokeMeasurementReport:output_type -> measured_boot.RevokeMeasurementReportResponse + 1167, // 1880: forge.Forge.ShowMeasurementReportForId:output_type -> measured_boot.ShowMeasurementReportForIdResponse + 1168, // 1881: forge.Forge.ShowMeasurementReportsForMachine:output_type -> measured_boot.ShowMeasurementReportsForMachineResponse + 1169, // 1882: forge.Forge.ShowMeasurementReports:output_type -> measured_boot.ShowMeasurementReportsResponse + 1170, // 1883: forge.Forge.ListMeasurementReport:output_type -> measured_boot.ListMeasurementReportResponse + 1171, // 1884: forge.Forge.MatchMeasurementReport:output_type -> measured_boot.MatchMeasurementReportResponse + 1172, // 1885: forge.Forge.ImportSiteMeasurements:output_type -> measured_boot.ImportSiteMeasurementsResponse + 1173, // 1886: forge.Forge.ExportSiteMeasurements:output_type -> measured_boot.ExportSiteMeasurementsResponse + 1174, // 1887: forge.Forge.AddMeasurementTrustedMachine:output_type -> measured_boot.AddMeasurementTrustedMachineResponse + 1175, // 1888: forge.Forge.RemoveMeasurementTrustedMachine:output_type -> measured_boot.RemoveMeasurementTrustedMachineResponse + 1176, // 1889: forge.Forge.AddMeasurementTrustedProfile:output_type -> measured_boot.AddMeasurementTrustedProfileResponse + 1177, // 1890: forge.Forge.RemoveMeasurementTrustedProfile:output_type -> measured_boot.RemoveMeasurementTrustedProfileResponse + 1178, // 1891: forge.Forge.ListMeasurementTrustedMachines:output_type -> measured_boot.ListMeasurementTrustedMachinesResponse + 1179, // 1892: forge.Forge.ListMeasurementTrustedProfiles:output_type -> measured_boot.ListMeasurementTrustedProfilesResponse + 1180, // 1893: forge.Forge.ListAttestationSummary:output_type -> measured_boot.ListAttestationSummaryResponse + 667, // 1894: forge.Forge.CreateNetworkSecurityGroup:output_type -> forge.CreateNetworkSecurityGroupResponse + 669, // 1895: forge.Forge.FindNetworkSecurityGroupIds:output_type -> forge.FindNetworkSecurityGroupIdsResponse + 671, // 1896: forge.Forge.FindNetworkSecurityGroupsByIds:output_type -> forge.FindNetworkSecurityGroupsByIdsResponse + 672, // 1897: forge.Forge.UpdateNetworkSecurityGroup:output_type -> forge.UpdateNetworkSecurityGroupResponse + 675, // 1898: forge.Forge.DeleteNetworkSecurityGroup:output_type -> forge.DeleteNetworkSecurityGroupResponse + 678, // 1899: forge.Forge.GetNetworkSecurityGroupPropagationStatus:output_type -> forge.GetNetworkSecurityGroupPropagationStatusResponse + 685, // 1900: forge.Forge.GetNetworkSecurityGroupAttachments:output_type -> forge.GetNetworkSecurityGroupAttachmentsResponse + 543, // 1901: forge.Forge.CreateOsImage:output_type -> forge.OsImage + 547, // 1902: forge.Forge.DeleteOsImage:output_type -> forge.DeleteOsImageResponse + 545, // 1903: forge.Forge.ListOsImage:output_type -> forge.ListOsImageResponse + 543, // 1904: forge.Forge.GetOsImage:output_type -> forge.OsImage + 543, // 1905: forge.Forge.UpdateOsImage:output_type -> forge.OsImage + 269, // 1906: forge.Forge.GetIpxeTemplate:output_type -> forge.IpxeTemplate + 550, // 1907: forge.Forge.ListIpxeTemplates:output_type -> forge.IpxeTemplateList + 563, // 1908: forge.Forge.RebootCompleted:output_type -> forge.MachineRebootCompletedResponse + 1058, // 1909: forge.Forge.PersistValidationResult:output_type -> google.protobuf.Empty + 570, // 1910: forge.Forge.GetMachineValidationResults:output_type -> forge.MachineValidationResultList + 567, // 1911: forge.Forge.MachineValidationCompleted:output_type -> forge.MachineValidationCompletedResponse + 575, // 1912: forge.Forge.MachineSetAutoUpdate:output_type -> forge.MachineSetAutoUpdateResponse + 578, // 1913: forge.Forge.GetMachineValidationExternalConfig:output_type -> forge.GetMachineValidationExternalConfigResponse + 580, // 1914: forge.Forge.GetMachineValidationExternalConfigs:output_type -> forge.GetMachineValidationExternalConfigsResponse + 1058, // 1915: forge.Forge.AddUpdateMachineValidationExternalConfig:output_type -> google.protobuf.Empty + 597, // 1916: forge.Forge.GetMachineValidationRuns:output_type -> forge.MachineValidationRunList + 600, // 1917: forge.Forge.FindMachineValidationRunItemIds:output_type -> forge.MachineValidationRunItemIdList + 602, // 1918: forge.Forge.FindMachineValidationRunItemsByIds:output_type -> forge.MachineValidationRunItemList + 605, // 1919: forge.Forge.GetMachineValidationAttempt:output_type -> forge.MachineValidationAttempt + 607, // 1920: forge.Forge.HeartbeatMachineValidationRun:output_type -> forge.MachineValidationHeartbeatResponse + 1058, // 1921: forge.Forge.RemoveMachineValidationExternalConfig:output_type -> google.protobuf.Empty + 614, // 1922: forge.Forge.GetMachineValidationTests:output_type -> forge.MachineValidationTestsGetResponse + 613, // 1923: forge.Forge.AddMachineValidationTest:output_type -> forge.MachineValidationTestAddUpdateResponse + 613, // 1924: forge.Forge.UpdateMachineValidationTest:output_type -> forge.MachineValidationTestAddUpdateResponse + 616, // 1925: forge.Forge.MachineValidationTestVerfied:output_type -> forge.MachineValidationTestVerfiedResponse + 618, // 1926: forge.Forge.MachineValidationTestNextVersion:output_type -> forge.MachineValidationTestNextVersionResponse + 621, // 1927: forge.Forge.MachineValidationTestEnableDisableTest:output_type -> forge.MachineValidationTestEnableDisableTestResponse + 623, // 1928: forge.Forge.UpdateMachineValidationRun:output_type -> forge.MachineValidationRunResponse + 417, // 1929: forge.Forge.AdminBmcReset:output_type -> forge.AdminBmcResetResponse + 594, // 1930: forge.Forge.AdminPowerControl:output_type -> forge.AdminPowerControlResponse + 405, // 1931: forge.Forge.DisableSecureBoot:output_type -> forge.DisableSecureBootResponse + 407, // 1932: forge.Forge.Lockdown:output_type -> forge.LockdownResponse + 1181, // 1933: forge.Forge.LockdownStatus:output_type -> site_explorer.LockdownStatus + 411, // 1934: forge.Forge.MachineSetup:output_type -> forge.MachineSetupResponse + 413, // 1935: forge.Forge.SetDpuFirstBootOrder:output_type -> forge.SetDpuFirstBootOrderResponse + 790, // 1936: forge.Forge.CreateBmcUser:output_type -> forge.CreateBmcUserResponse + 792, // 1937: forge.Forge.DeleteBmcUser:output_type -> forge.DeleteBmcUserResponse + 794, // 1938: forge.Forge.SetBmcRootPassword:output_type -> forge.SetBmcRootPasswordResponse + 796, // 1939: forge.Forge.ProbeBmcVendor:output_type -> forge.ProbeBmcVendorResponse + 419, // 1940: forge.Forge.EnableInfiniteBoot:output_type -> forge.EnableInfiniteBootResponse + 421, // 1941: forge.Forge.IsInfiniteBootEnabled:output_type -> forge.IsInfiniteBootEnabledResponse + 584, // 1942: forge.Forge.OnDemandMachineValidation:output_type -> forge.MachineValidationOnDemandResponse + 592, // 1943: forge.Forge.OnDemandRackMaintenance:output_type -> forge.RackMaintenanceOnDemandResponse + 120, // 1944: forge.Forge.TpmAddCaCert:output_type -> forge.TpmCaAddedCaStatus + 126, // 1945: forge.Forge.TpmShowCaCerts:output_type -> forge.TpmCaCertDetailCollection + 123, // 1946: forge.Forge.TpmShowUnmatchedEkCerts:output_type -> forge.TpmEkCertStatusCollection + 1058, // 1947: forge.Forge.TpmDeleteCaCert:output_type -> google.protobuf.Empty + 650, // 1948: forge.Forge.RedfishBrowse:output_type -> forge.RedfishBrowseResponse + 652, // 1949: forge.Forge.RedfishListActions:output_type -> forge.RedfishListActionsResponse + 657, // 1950: forge.Forge.RedfishCreateAction:output_type -> forge.RedfishCreateActionResponse + 659, // 1951: forge.Forge.RedfishApproveAction:output_type -> forge.RedfishApproveActionResponse + 660, // 1952: forge.Forge.RedfishApplyAction:output_type -> forge.RedfishApplyActionResponse + 661, // 1953: forge.Forge.RedfishCancelAction:output_type -> forge.RedfishCancelActionResponse + 663, // 1954: forge.Forge.UfmBrowse:output_type -> forge.UfmBrowseResponse + 687, // 1955: forge.Forge.GetDesiredFirmwareVersions:output_type -> forge.GetDesiredFirmwareVersionsResponse + 805, // 1956: forge.Forge.UpsertHostFirmwareConfig:output_type -> forge.HostFirmwareConfigResponse + 1058, // 1957: forge.Forge.DeleteHostFirmwareConfig:output_type -> google.protobuf.Empty + 703, // 1958: forge.Forge.CreateSku:output_type -> forge.SkuIdList + 699, // 1959: forge.Forge.GenerateSkuFromMachine:output_type -> forge.Sku + 1058, // 1960: forge.Forge.VerifySkuForMachine:output_type -> google.protobuf.Empty + 1058, // 1961: forge.Forge.AssignSkuToMachine:output_type -> google.protobuf.Empty + 1058, // 1962: forge.Forge.RemoveSkuAssociation:output_type -> google.protobuf.Empty + 1058, // 1963: forge.Forge.DeleteSku:output_type -> google.protobuf.Empty + 703, // 1964: forge.Forge.GetAllSkuIds:output_type -> forge.SkuIdList + 702, // 1965: forge.Forge.FindSkusByIds:output_type -> forge.SkuList + 1058, // 1966: forge.Forge.UpdateSkuMetadata:output_type -> google.protobuf.Empty + 699, // 1967: forge.Forge.ReplaceSku:output_type -> forge.Sku + 387, // 1968: forge.Forge.GetManagedHostQuarantineState:output_type -> forge.GetManagedHostQuarantineStateResponse + 389, // 1969: forge.Forge.SetManagedHostQuarantineState:output_type -> forge.SetManagedHostQuarantineStateResponse + 391, // 1970: forge.Forge.ClearManagedHostQuarantineState:output_type -> forge.ClearManagedHostQuarantineStateResponse + 1058, // 1971: forge.Forge.ResetHostReprovisioning:output_type -> google.protobuf.Empty + 1058, // 1972: forge.Forge.CopyBfbToDpuRshim:output_type -> google.protobuf.Empty + 709, // 1973: forge.Forge.GetAllDpaInterfaceIds:output_type -> forge.DpaInterfaceIdList + 711, // 1974: forge.Forge.FindDpaInterfacesByIds:output_type -> forge.DpaInterfaceList + 707, // 1975: forge.Forge.CreateDpaInterface:output_type -> forge.DpaInterface + 707, // 1976: forge.Forge.EnsureDpaInterface:output_type -> forge.DpaInterface + 714, // 1977: forge.Forge.DeleteDpaInterface:output_type -> forge.DpaInterfaceDeletionResult + 719, // 1978: forge.Forge.GetPowerOptions:output_type -> forge.PowerOptionResponse + 719, // 1979: forge.Forge.UpdatePowerOption:output_type -> forge.PowerOptionResponse + 1058, // 1980: forge.Forge.AllowIngestionAndPowerOn:output_type -> google.protobuf.Empty + 119, // 1981: forge.Forge.DetermineMachineIngestionState:output_type -> forge.MachineIngestionStateResponse + 737, // 1982: forge.Forge.FindRackIds:output_type -> forge.RackIdList + 735, // 1983: forge.Forge.FindRacksByIds:output_type -> forge.RackList + 734, // 1984: forge.Forge.GetRack:output_type -> forge.GetRackResponse + 1058, // 1985: forge.Forge.DeleteRack:output_type -> google.protobuf.Empty + 745, // 1986: forge.Forge.AdminForceDeleteRack:output_type -> forge.AdminForceDeleteRackResponse + 752, // 1987: forge.Forge.GetRackProfile:output_type -> forge.GetRackProfileResponse + 723, // 1988: forge.Forge.CreateComputeAllocation:output_type -> forge.CreateComputeAllocationResponse + 725, // 1989: forge.Forge.FindComputeAllocationIds:output_type -> forge.FindComputeAllocationIdsResponse + 727, // 1990: forge.Forge.FindComputeAllocationsByIds:output_type -> forge.FindComputeAllocationsByIdsResponse + 728, // 1991: forge.Forge.UpdateComputeAllocation:output_type -> forge.UpdateComputeAllocationResponse + 731, // 1992: forge.Forge.DeleteComputeAllocation:output_type -> forge.DeleteComputeAllocationResponse + 798, // 1993: forge.Forge.SetFirmwareUpdateTimeWindow:output_type -> forge.SetFirmwareUpdateTimeWindowResponse + 807, // 1994: forge.Forge.ListHostFirmware:output_type -> forge.ListHostFirmwareResponse + 1182, // 1995: forge.Forge.PublishMlxDeviceReport:output_type -> mlx_device.PublishMlxDeviceReportResponse + 1183, // 1996: forge.Forge.PublishMlxObservationReport:output_type -> mlx_device.PublishMlxObservationReportResponse + 810, // 1997: forge.Forge.TrimTable:output_type -> forge.TrimTableResponse + 812, // 1998: forge.Forge.ListNvlinkNmxcEndpoints:output_type -> forge.NvlinkNmxcEndpointList + 811, // 1999: forge.Forge.CreateNvlinkNmxcEndpoint:output_type -> forge.NvlinkNmxcEndpoint + 811, // 2000: forge.Forge.UpdateNvlinkNmxcEndpoint:output_type -> forge.NvlinkNmxcEndpoint + 1058, // 2001: forge.Forge.DeleteNvlinkNmxcEndpoint:output_type -> google.protobuf.Empty + 815, // 2002: forge.Forge.CreateRemediation:output_type -> forge.CreateRemediationResponse + 1058, // 2003: forge.Forge.ApproveRemediation:output_type -> google.protobuf.Empty + 1058, // 2004: forge.Forge.RevokeRemediation:output_type -> google.protobuf.Empty + 1058, // 2005: forge.Forge.EnableRemediation:output_type -> google.protobuf.Empty + 1058, // 2006: forge.Forge.DisableRemediation:output_type -> google.protobuf.Empty + 816, // 2007: forge.Forge.FindRemediationIds:output_type -> forge.RemediationIdList + 817, // 2008: forge.Forge.FindRemediationsByIds:output_type -> forge.RemediationList + 824, // 2009: forge.Forge.FindAppliedRemediationIds:output_type -> forge.AppliedRemediationIdList + 827, // 2010: forge.Forge.FindAppliedRemediations:output_type -> forge.AppliedRemediationList + 829, // 2011: forge.Forge.GetNextRemediationForMachine:output_type -> forge.GetNextRemediationForMachineResponse + 1058, // 2012: forge.Forge.RemediationApplied:output_type -> google.protobuf.Empty + 1058, // 2013: forge.Forge.SetPrimaryDpu:output_type -> google.protobuf.Empty + 1058, // 2014: forge.Forge.SetPrimaryInterface:output_type -> google.protobuf.Empty + 838, // 2015: forge.Forge.CreateDpuExtensionService:output_type -> forge.DpuExtensionService + 838, // 2016: forge.Forge.UpdateDpuExtensionService:output_type -> forge.DpuExtensionService + 842, // 2017: forge.Forge.DeleteDpuExtensionService:output_type -> forge.DeleteDpuExtensionServiceResponse + 844, // 2018: forge.Forge.FindDpuExtensionServiceIds:output_type -> forge.DpuExtensionServiceIdList + 846, // 2019: forge.Forge.FindDpuExtensionServicesByIds:output_type -> forge.DpuExtensionServiceList + 848, // 2020: forge.Forge.GetDpuExtensionServiceVersionsInfo:output_type -> forge.DpuExtensionServiceVersionInfoList + 850, // 2021: forge.Forge.FindInstancesByDpuExtensionService:output_type -> forge.FindInstancesByDpuExtensionServiceResponse + 93, // 2022: forge.Forge.TriggerMachineAttestation:output_type -> forge.SpdmMachineAttestationTriggerResponse + 1058, // 2023: forge.Forge.CancelMachineAttestation:output_type -> google.protobuf.Empty + 98, // 2024: forge.Forge.ListAttestationMachines:output_type -> forge.SpdmListAttestationMachinesResponse + 95, // 2025: forge.Forge.GetAttestationMachine:output_type -> forge.SpdmGetAttestationMachineResponse + 100, // 2026: forge.Forge.SignMachineIdentity:output_type -> forge.MachineIdentityResponse + 105, // 2027: forge.Forge.GetTenantIdentityConfiguration:output_type -> forge.TenantIdentityConfigResponse + 105, // 2028: forge.Forge.SetTenantIdentityConfiguration:output_type -> forge.TenantIdentityConfigResponse + 1058, // 2029: forge.Forge.DeleteTenantIdentityConfiguration:output_type -> google.protobuf.Empty + 108, // 2030: forge.Forge.GetTokenDelegation:output_type -> forge.TokenDelegationResponse + 108, // 2031: forge.Forge.SetTokenDelegation:output_type -> forge.TokenDelegationResponse + 1058, // 2032: forge.Forge.DeleteTokenDelegation:output_type -> google.protobuf.Empty + 114, // 2033: forge.Forge.ReencryptTenantIdentitySecrets:output_type -> forge.ReencryptTenantIdentitySecretsResponse + 115, // 2034: forge.Forge.GetJWKS:output_type -> forge.Jwks + 116, // 2035: forge.Forge.GetOpenIDConfiguration:output_type -> forge.OpenIdConfiguration + 857, // 2036: forge.Forge.ScoutStream:output_type -> forge.ScoutStreamScoutBoundMessage + 860, // 2037: forge.Forge.ScoutStreamShowConnections:output_type -> forge.ScoutStreamShowConnectionsResponse + 862, // 2038: forge.Forge.ScoutStreamDisconnect:output_type -> forge.ScoutStreamDisconnectResponse + 864, // 2039: forge.Forge.ScoutStreamPing:output_type -> forge.ScoutStreamAdminPingResponse + 1184, // 2040: forge.Forge.MlxAdminProfileSync:output_type -> mlx_device.MlxAdminProfileSyncResponse + 1185, // 2041: forge.Forge.MlxAdminProfileShow:output_type -> mlx_device.MlxAdminProfileShowResponse + 1186, // 2042: forge.Forge.MlxAdminProfileCompare:output_type -> mlx_device.MlxAdminProfileCompareResponse + 1187, // 2043: forge.Forge.MlxAdminProfileList:output_type -> mlx_device.MlxAdminProfileListResponse + 1188, // 2044: forge.Forge.MlxAdminLockdownLock:output_type -> mlx_device.MlxAdminLockdownLockResponse + 1189, // 2045: forge.Forge.MlxAdminLockdownUnlock:output_type -> mlx_device.MlxAdminLockdownUnlockResponse + 1190, // 2046: forge.Forge.MlxAdminLockdownStatus:output_type -> mlx_device.MlxAdminLockdownStatusResponse + 1191, // 2047: forge.Forge.MlxAdminShowDevice:output_type -> mlx_device.MlxAdminDeviceInfoResponse + 1192, // 2048: forge.Forge.MlxAdminShowMachine:output_type -> mlx_device.MlxAdminDeviceReportResponse + 1193, // 2049: forge.Forge.MlxAdminRegistryList:output_type -> mlx_device.MlxAdminRegistryListResponse + 1194, // 2050: forge.Forge.MlxAdminRegistryShow:output_type -> mlx_device.MlxAdminRegistryShowResponse + 1195, // 2051: forge.Forge.MlxAdminConfigQuery:output_type -> mlx_device.MlxAdminConfigQueryResponse + 1196, // 2052: forge.Forge.MlxAdminConfigSet:output_type -> mlx_device.MlxAdminConfigSetResponse + 1197, // 2053: forge.Forge.MlxAdminConfigSync:output_type -> mlx_device.MlxAdminConfigSyncResponse + 1198, // 2054: forge.Forge.MlxAdminConfigCompare:output_type -> mlx_device.MlxAdminConfigCompareResponse + 775, // 2055: forge.Forge.FindNVLinkPartitionIds:output_type -> forge.NVLinkPartitionIdList + 770, // 2056: forge.Forge.FindNVLinkPartitionsByIds:output_type -> forge.NVLinkPartitionList + 770, // 2057: forge.Forge.NVLinkPartitionsForTenant:output_type -> forge.NVLinkPartitionList + 786, // 2058: forge.Forge.FindNVLinkLogicalPartitionIds:output_type -> forge.NVLinkLogicalPartitionIdList + 780, // 2059: forge.Forge.FindNVLinkLogicalPartitionsByIds:output_type -> forge.NVLinkLogicalPartitionList + 779, // 2060: forge.Forge.CreateNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartition + 788, // 2061: forge.Forge.UpdateNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartitionUpdateResult + 783, // 2062: forge.Forge.DeleteNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartitionDeletionResult + 780, // 2063: forge.Forge.NVLinkLogicalPartitionsForTenant:output_type -> forge.NVLinkLogicalPartitionList + 878, // 2064: forge.Forge.GetMachinePositionInfo:output_type -> forge.MachinePositionInfoList + 768, // 2065: forge.Forge.NmxcBrowse:output_type -> forge.NmxcBrowseResponse + 1058, // 2066: forge.Forge.ModifyDPFState:output_type -> google.protobuf.Empty + 881, // 2067: forge.Forge.GetDPFState:output_type -> forge.DPFStateResponse + 884, // 2068: forge.Forge.GetDPFHostSnapshot:output_type -> forge.DPFHostSnapshotResponse + 887, // 2069: forge.Forge.GetDPFServiceVersions:output_type -> forge.DPFServiceVersionsResponse + 895, // 2070: forge.Forge.ComponentPowerControl:output_type -> forge.ComponentPowerControlResponse + 897, // 2071: forge.Forge.ComponentConfigureSwitchCertificate:output_type -> forge.ComponentConfigureSwitchCertificateResponse + 893, // 2072: forge.Forge.GetComponentInventory:output_type -> forge.GetComponentInventoryResponse + 904, // 2073: forge.Forge.UpdateComponentFirmware:output_type -> forge.UpdateComponentFirmwareResponse + 906, // 2074: forge.Forge.GetComponentFirmwareStatus:output_type -> forge.GetComponentFirmwareStatusResponse + 910, // 2075: forge.Forge.ListComponentFirmwareVersions:output_type -> forge.ListComponentFirmwareVersionsResponse + 923, // 2076: forge.Forge.CreateOperatingSystem:output_type -> forge.OperatingSystem + 923, // 2077: forge.Forge.GetOperatingSystem:output_type -> forge.OperatingSystem + 923, // 2078: forge.Forge.UpdateOperatingSystem:output_type -> forge.OperatingSystem + 929, // 2079: forge.Forge.DeleteOperatingSystem:output_type -> forge.DeleteOperatingSystemResponse + 931, // 2080: forge.Forge.FindOperatingSystemIds:output_type -> forge.OperatingSystemIdList + 933, // 2081: forge.Forge.FindOperatingSystemsByIds:output_type -> forge.OperatingSystemList + 935, // 2082: forge.Forge.GetOperatingSystemCachableIpxeTemplateArtifacts:output_type -> forge.IpxeTemplateArtifactList + 935, // 2083: forge.Forge.UpdateOperatingSystemCachableIpxeTemplateArtifacts:output_type -> forge.IpxeTemplateArtifactList + 940, // 2084: forge.Forge.ReWrapSecrets:output_type -> forge.ReWrapSecretsResponse + 1621, // [1621:2085] is the sub-list for method output_type + 1157, // [1157:1621] is the sub-list for method input_type + 1157, // [1157:1157] is the sub-list for extension type_name + 1157, // [1157:1157] is the sub-list for extension extendee + 0, // [0:1157] is the sub-list for field type_name } func init() { file_nico_nico_proto_init() } @@ -69647,46 +69725,47 @@ func file_nico_nico_proto_init() { file_nico_nico_proto_msgTypes[249].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[250].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[251].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[256].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[261].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[252].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[257].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[262].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[263].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[264].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[265].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[267].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[274].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[266].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[268].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[275].OneofWrappers = []any{ (*BmcCredentials_UsernamePassword)(nil), (*BmcCredentials_SessionToken)(nil), } - file_nico_nico_proto_msgTypes[277].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[281].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[278].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[282].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[283].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[289].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[284].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[290].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[292].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[291].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[293].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[295].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[297].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[299].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[294].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[296].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[298].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[300].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[301].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[303].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[309].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[314].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[316].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[302].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[304].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[310].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[315].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[317].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[318].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[320].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[322].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[319].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[321].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[323].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[325].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[327].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[329].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[330].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[331].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[332].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[335].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[333].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[336].OneofWrappers = []any{ (*ForgeAgentControlResponse_Noop_)(nil), (*ForgeAgentControlResponse_Reset_)(nil), (*ForgeAgentControlResponse_Discovery_)(nil), @@ -69698,169 +69777,169 @@ func file_nico_nico_proto_init() { (*ForgeAgentControlResponse_MlxAction_)(nil), (*ForgeAgentControlResponse_FirmwareUpgrade_)(nil), } - file_nico_nico_proto_msgTypes[336].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[337].OneofWrappers = []any{ (*MachineDiscoveryInfo_Info)(nil), } - file_nico_nico_proto_msgTypes[347].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[348].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[349].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[352].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[350].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[353].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[355].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[357].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[362].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[365].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[376].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[354].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[356].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[358].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[363].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[377].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[378].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[380].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[385].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[391].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[395].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[400].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[407].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[379].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[381].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[386].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[392].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[396].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[401].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[408].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[413].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[409].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[414].OneofWrappers = []any{ (*FindBmcIpsRequest_MacAddress)(nil), (*FindBmcIpsRequest_Serial)(nil), } - file_nico_nico_proto_msgTypes[425].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[426].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[427].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[430].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[428].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[431].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[432].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[439].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[433].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[440].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[446].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[441].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[447].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[448].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[449].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[450].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[451].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[452].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[459].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[453].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[460].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[461].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[462].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[465].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[467].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[469].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[474].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[476].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[479].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[480].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[463].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[466].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[468].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[470].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[475].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[477].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[480].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[481].OneofWrappers = []any{ (*MachineValidationStatus_Started)(nil), (*MachineValidationStatus_InProgress)(nil), (*MachineValidationStatus_Completed)(nil), } - file_nico_nico_proto_msgTypes[481].OneofWrappers = []any{} - 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[482].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[486].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[490].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[494].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[497].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[495].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[498].OneofWrappers = []any{ (*MaintenanceActivityConfig_FirmwareUpgrade)(nil), (*MaintenanceActivityConfig_ConfigureNmxCluster)(nil), (*MaintenanceActivityConfig_PowerSequence)(nil), (*MaintenanceActivityConfig_NvosUpdate)(nil), } - file_nico_nico_proto_msgTypes[501].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[502].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[511].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[513].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[514].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[503].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[512].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[514].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[515].OneofWrappers = []any{ (*MachineValidationHeartbeatRequest_RunItemId)(nil), (*MachineValidationHeartbeatRequest_AttemptId)(nil), (*MachineValidationHeartbeatRequest_TestId)(nil), } - file_nico_nico_proto_msgTypes[518].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[520].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[525].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[532].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[519].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[521].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[526].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[533].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[534].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[535].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[536].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[537].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[538].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[541].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[539].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[542].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[543].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[547].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[552].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[559].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[561].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[544].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[548].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[553].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[560].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[562].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[573].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[563].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[574].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[576].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[578].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[581].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[585].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[588].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[589].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[575].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[577].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[579].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[582].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[586].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[589].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[590].OneofWrappers = []any{ (*NetworkSecurityGroupRuleAttributes_SrcPrefix)(nil), (*NetworkSecurityGroupRuleAttributes_DstPrefix)(nil), } - file_nico_nico_proto_msgTypes[606].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[607].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[612].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[615].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[608].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[613].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[616].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[623].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[626].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[629].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[617].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[624].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[627].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[630].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[632].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[637].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[641].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[644].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[654].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[631].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[633].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[638].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[642].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[645].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[655].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[656].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[661].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[657].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[662].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[665].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[663].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[666].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[668].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[670].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[674].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[680].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[667].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[669].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[671].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[675].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[681].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[689].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[692].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[695].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[697].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[699].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[701].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[703].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[707].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[709].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[682].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[690].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[693].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[696].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[698].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[700].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[702].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[704].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[708].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[710].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[711].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[712].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[726].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[731].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[737].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[744].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[713].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[727].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[732].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[738].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[745].OneofWrappers = []any{ (*DpuExtensionServiceCredential_UsernamePassword)(nil), } - file_nico_nico_proto_msgTypes[745].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[746].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[747].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[748].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[751].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[757].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[759].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[762].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[749].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[752].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[758].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[760].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[763].OneofWrappers = []any{ (*DpuExtensionServiceObservabilityConfig_Prometheus)(nil), (*DpuExtensionServiceObservabilityConfig_Logging)(nil), } - file_nico_nico_proto_msgTypes[764].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[765].OneofWrappers = []any{ (*ScoutStreamApiBoundMessage_Init)(nil), (*ScoutStreamApiBoundMessage_MlxDeviceLockdownResponse)(nil), (*ScoutStreamApiBoundMessage_MlxDeviceProfileSyncResponse)(nil), @@ -69875,7 +69954,7 @@ func file_nico_nico_proto_init() { (*ScoutStreamApiBoundMessage_MlxDeviceConfigCompareResponse)(nil), (*ScoutStreamApiBoundMessage_ScoutStreamAgentPingResponse)(nil), } - file_nico_nico_proto_msgTypes[765].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[766].OneofWrappers = []any{ (*ScoutStreamScoutBoundMessage_MlxDeviceLockdownLockRequest)(nil), (*ScoutStreamScoutBoundMessage_MlxDeviceLockdownUnlockRequest)(nil), (*ScoutStreamScoutBoundMessage_MlxDeviceLockdownStatusRequest)(nil), @@ -69891,80 +69970,80 @@ func file_nico_nico_proto_init() { (*ScoutStreamScoutBoundMessage_MlxDeviceConfigCompareRequest)(nil), (*ScoutStreamScoutBoundMessage_ScoutStreamAgentPingRequest)(nil), } - file_nico_nico_proto_msgTypes[774].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[775].OneofWrappers = []any{ (*ScoutStreamAgentPingResponse_Pong)(nil), (*ScoutStreamAgentPingResponse_Error)(nil), } - file_nico_nico_proto_msgTypes[783].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[784].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[784].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[785].OneofWrappers = []any{ (*PxeDomain_NewDomain)(nil), (*PxeDomain_LegacyDomain)(nil), } - file_nico_nico_proto_msgTypes[787].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[799].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[788].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[800].OneofWrappers = []any{ (*GetComponentInventoryRequest_MachineIds)(nil), (*GetComponentInventoryRequest_SwitchIds)(nil), (*GetComponentInventoryRequest_PowerShelfIds)(nil), } - file_nico_nico_proto_msgTypes[800].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[802].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[801].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[803].OneofWrappers = []any{ (*ComponentPowerControlRequest_MachineIds)(nil), (*ComponentPowerControlRequest_SwitchIds)(nil), (*ComponentPowerControlRequest_PowerShelfIds)(nil), } - file_nico_nico_proto_msgTypes[804].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[811].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[805].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[812].OneofWrappers = []any{ (*UpdateComponentFirmwareRequest_ComputeTrays)(nil), (*UpdateComponentFirmwareRequest_Switches)(nil), (*UpdateComponentFirmwareRequest_PowerShelves)(nil), (*UpdateComponentFirmwareRequest_Racks)(nil), } - file_nico_nico_proto_msgTypes[813].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[814].OneofWrappers = []any{ (*GetComponentFirmwareStatusRequest_MachineIds)(nil), (*GetComponentFirmwareStatusRequest_SwitchIds)(nil), (*GetComponentFirmwareStatusRequest_PowerShelfIds)(nil), (*GetComponentFirmwareStatusRequest_RackIds)(nil), } - file_nico_nico_proto_msgTypes[815].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[816].OneofWrappers = []any{ (*ListComponentFirmwareVersionsRequest_MachineIds)(nil), (*ListComponentFirmwareVersionsRequest_SwitchIds)(nil), (*ListComponentFirmwareVersionsRequest_PowerShelfIds)(nil), (*ListComponentFirmwareVersionsRequest_RackIds)(nil), } - file_nico_nico_proto_msgTypes[819].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[824].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[831].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[820].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[825].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[832].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[835].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[838].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[844].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[847].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[850].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[833].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[836].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[839].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[845].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[848].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[851].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[852].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[854].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[856].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[858].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[874].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[876].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[853].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[855].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[857].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[859].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[875].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[877].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[880].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[881].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[885].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[882].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[886].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[887].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[888].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: 91, - NumMessages: 894, + NumMessages: 895, NumExtensions: 0, NumServices: 1, }, diff --git a/rest-api/proto/core/gen/v1/nico_nico_grpc.pb.go b/rest-api/proto/core/gen/v1/nico_nico_grpc.pb.go index 7a7f3d9794..10ed4a74d7 100644 --- a/rest-api/proto/core/gen/v1/nico_nico_grpc.pb.go +++ b/rest-api/proto/core/gen/v1/nico_nico_grpc.pb.go @@ -179,6 +179,7 @@ const ( Forge_AdminListResourcePools_FullMethodName = "/forge.Forge/AdminListResourcePools" Forge_AdminGrowResourcePool_FullMethodName = "/forge.Forge/AdminGrowResourcePool" Forge_UpdateMachineMetadata_FullMethodName = "/forge.Forge/UpdateMachineMetadata" + Forge_UpdateMachineBmcVendorOverride_FullMethodName = "/forge.Forge/UpdateMachineBmcVendorOverride" Forge_UpdateRackMetadata_FullMethodName = "/forge.Forge/UpdateRackMetadata" Forge_UpdateSwitchMetadata_FullMethodName = "/forge.Forge/UpdateSwitchMetadata" Forge_UpdatePowerShelfMetadata_FullMethodName = "/forge.Forge/UpdatePowerShelfMetadata" @@ -765,6 +766,8 @@ type ForgeClient interface { AdminGrowResourcePool(ctx context.Context, in *GrowResourcePoolRequest, opts ...grpc.CallOption) (*GrowResourcePoolResponse, error) // Update the Metadata of a Machine UpdateMachineMetadata(ctx context.Context, in *MachineMetadataUpdateRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) + // Pin or clear the Redfish BMC vendor override of a Machine + UpdateMachineBmcVendorOverride(ctx context.Context, in *MachineBmcVendorOverrideUpdateRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) // Update the Metadata of a Rack UpdateRackMetadata(ctx context.Context, in *RackMetadataUpdateRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) // Update the Metadata of a Switch @@ -2871,6 +2874,16 @@ func (c *forgeClient) UpdateMachineMetadata(ctx context.Context, in *MachineMeta return out, nil } +func (c *forgeClient) UpdateMachineBmcVendorOverride(ctx context.Context, in *MachineBmcVendorOverrideUpdateRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + out := new(emptypb.Empty) + err := c.cc.Invoke(ctx, Forge_UpdateMachineBmcVendorOverride_FullMethodName, in, out, cOpts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *forgeClient) UpdateRackMetadata(ctx context.Context, in *RackMetadataUpdateRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(emptypb.Empty) @@ -6221,6 +6234,8 @@ type ForgeServer interface { AdminGrowResourcePool(context.Context, *GrowResourcePoolRequest) (*GrowResourcePoolResponse, error) // Update the Metadata of a Machine UpdateMachineMetadata(context.Context, *MachineMetadataUpdateRequest) (*emptypb.Empty, error) + // Pin or clear the Redfish BMC vendor override of a Machine + UpdateMachineBmcVendorOverride(context.Context, *MachineBmcVendorOverrideUpdateRequest) (*emptypb.Empty, error) // Update the Metadata of a Rack UpdateRackMetadata(context.Context, *RackMetadataUpdateRequest) (*emptypb.Empty, error) // Update the Metadata of a Switch @@ -7227,6 +7242,9 @@ func (UnimplementedForgeServer) AdminGrowResourcePool(context.Context, *GrowReso func (UnimplementedForgeServer) UpdateMachineMetadata(context.Context, *MachineMetadataUpdateRequest) (*emptypb.Empty, error) { return nil, status.Error(codes.Unimplemented, "method UpdateMachineMetadata not implemented") } +func (UnimplementedForgeServer) UpdateMachineBmcVendorOverride(context.Context, *MachineBmcVendorOverrideUpdateRequest) (*emptypb.Empty, error) { + return nil, status.Error(codes.Unimplemented, "method UpdateMachineBmcVendorOverride not implemented") +} func (UnimplementedForgeServer) UpdateRackMetadata(context.Context, *RackMetadataUpdateRequest) (*emptypb.Empty, error) { return nil, status.Error(codes.Unimplemented, "method UpdateRackMetadata not implemented") } @@ -10976,6 +10994,24 @@ func _Forge_UpdateMachineMetadata_Handler(srv interface{}, ctx context.Context, return interceptor(ctx, in, info, handler) } +func _Forge_UpdateMachineBmcVendorOverride_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(MachineBmcVendorOverrideUpdateRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ForgeServer).UpdateMachineBmcVendorOverride(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: Forge_UpdateMachineBmcVendorOverride_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ForgeServer).UpdateMachineBmcVendorOverride(ctx, req.(*MachineBmcVendorOverrideUpdateRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _Forge_UpdateRackMetadata_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(RackMetadataUpdateRequest) if err := dec(in); err != nil { @@ -17122,6 +17158,10 @@ var Forge_ServiceDesc = grpc.ServiceDesc{ MethodName: "UpdateMachineMetadata", Handler: _Forge_UpdateMachineMetadata_Handler, }, + { + MethodName: "UpdateMachineBmcVendorOverride", + Handler: _Forge_UpdateMachineBmcVendorOverride_Handler, + }, { MethodName: "UpdateRackMetadata", Handler: _Forge_UpdateRackMetadata_Handler, diff --git a/rest-api/proto/core/src/v1/nico_nico.proto b/rest-api/proto/core/src/v1/nico_nico.proto index a67efdf71c..097e591a51 100644 --- a/rest-api/proto/core/src/v1/nico_nico.proto +++ b/rest-api/proto/core/src/v1/nico_nico.proto @@ -347,6 +347,9 @@ service Forge { // Update the Metadata of a Machine rpc UpdateMachineMetadata(MachineMetadataUpdateRequest) returns (google.protobuf.Empty); + // Pin or clear the Redfish BMC vendor override of a Machine + rpc UpdateMachineBmcVendorOverride(MachineBmcVendorOverrideUpdateRequest) returns (google.protobuf.Empty); + // Update the Metadata of a Rack rpc UpdateRackMetadata(RackMetadataUpdateRequest) returns (google.protobuf.Empty); @@ -3734,6 +3737,11 @@ message Machine { optional string last_scout_observed_version = 48; optional DpfMachineState dpf = 49; + + // Operator pinned Redfish BMC vendor for this machine. When set, it is passed + // to libredfish as the forced vendor instead of detection from the service + // root. Empty means automatic detection. Holds a RedfishVendor variant name. + optional string bmc_vendor_override = 50; } message DpfMachineState { @@ -3776,6 +3784,15 @@ message MachineMetadataUpdateRequest { Metadata metadata = 3; } +// Pins or clears the Redfish BMC vendor override stored on a Machine +message MachineBmcVendorOverrideUpdateRequest { + // The ID of the Machine for which the override will apply + common.MachineId machine_id = 1; + + // RedfishVendor variant name to force. Empty or unset clears the override. + optional string bmc_vendor_override = 2; +} + message RackMetadataUpdateRequest { // The ID of the Rack for which the Metadata update will apply common.RackId rack_id = 1;