From 39812e0672a961bcc86687def64e01ab4de89eea Mon Sep 17 00:00:00 2001 From: Hitesh Wadekar Date: Tue, 23 Jun 2026 16:33:30 -0700 Subject: [PATCH 1/9] feat(rest-api): Support for adding Tenant information when reported Issue for Delete Instance --- rest-api/api/pkg/api/handler/instance.go | 10 ++ rest-api/api/pkg/api/handler/instance_test.go | 36 +++++- rest-api/api/pkg/api/model/instance.go | 55 +++++++++ rest-api/api/pkg/api/model/instance_test.go | 108 ++++++++++++++++++ 4 files changed, 205 insertions(+), 4 deletions(-) diff --git a/rest-api/api/pkg/api/handler/instance.go b/rest-api/api/pkg/api/handler/instance.go index 2fb96562c0..bc25ea4061 100644 --- a/rest-api/api/pkg/api/handler/instance.go +++ b/rest-api/api/pkg/api/handler/instance.go @@ -4904,6 +4904,16 @@ func (dih DeleteInstanceHandler) Handle(c echo.Context) error { // Prepare the delete/release request workflow object releaseInstanceRequest := apiRequest.ToProto(instance) + // If an issue is reported, set Issue.details to the delete attribution config. + if releaseInstanceRequest.Issue != nil { + instanceDeletionAttributionConfig, derr := apiRequest.ToInstanceDeleteAttributionConfig(dbUser, instance) + if derr != nil { + logger.Error().Err(derr).Msg("error building delete attribution config") + return cutil.NewAPIErrorResponse(c, http.StatusInternalServerError, "Failed to delete Instance", nil) + } + releaseInstanceRequest.Issue.Details = instanceDeletionAttributionConfig + } + workflowOptions := temporalClient.StartWorkflowOptions{ ID: "instance-delete-" + instance.ID.String(), TaskQueue: queue.SiteTaskQueue, diff --git a/rest-api/api/pkg/api/handler/instance_test.go b/rest-api/api/pkg/api/handler/instance_test.go index 2bc01b52c5..6d86dabb39 100644 --- a/rest-api/api/pkg/api/handler/instance_test.go +++ b/rest-api/api/pkg/api/handler/instance_test.go @@ -9745,14 +9745,42 @@ func TestDeleteInstanceHandler_Handle(t *testing.T) { assert.Nil(t, terr) assert.Equal(t, cdbm.InstanceStatusTerminating, dinstance.Status) - if tt.verifyChildSpanner { - span := oteltrace.SpanFromContext(ec.Request().Context()) - assert.True(t, span.SpanContext().IsValid()) + sdDAO := cdbm.NewStatusDetailDAO(dbSession) + statusDetails, _, serr := sdDAO.GetAllByEntityID(context.Background(), nil, tt.args.reqInstance, nil, nil, nil) + require.NoError(t, serr) + require.NotEmpty(t, statusDetails) + require.NotNil(t, statusDetails[0].Message) + + if tt.args.reqData != nil && tt.args.reqData.MachineHealthIssue != nil { + if len(tsc.Calls) > 0 && len(tsc.Calls[len(tsc.Calls)-1].Arguments) > 3 { + releaseReq := tsc.Calls[len(tsc.Calls)-1].Arguments[3].(*cwssaws.InstanceReleaseRequest) + require.NotNil(t, releaseReq.Issue) + require.NotNil(t, releaseReq.Issue.Details) + var issueDetails model.InstanceDeleteAttributionConfig + require.NoError(t, json.Unmarshal([]byte(releaseReq.Issue.Details), &issueDetails)) + assert.Equal(t, tt.args.reqOrg, issueDetails.InitiatedBy.Org) + assert.Equal(t, tt.args.reqUser.ID.String(), issueDetails.InitiatedBy.UserID) + assert.Equal(t, dinstance.TenantID.String(), issueDetails.InitiatedBy.TenantID) + assert.Equal(t, tt.args.reqOrg, issueDetails.InitiatedBy.TenantOrg) + require.NotNil(t, issueDetails.TenantReported) + assert.Equal(t, strings.ToUpper(tt.args.reqData.MachineHealthIssue.Category), issueDetails.TenantReported.Category) + if tt.args.reqData.MachineHealthIssue.Summary != nil { + assert.Equal(t, *tt.args.reqData.MachineHealthIssue.Summary, issueDetails.TenantReported.Summary) + } + if tt.args.reqData.MachineHealthIssue.Details != nil { + assert.Equal(t, *tt.args.reqData.MachineHealthIssue.Details, *issueDetails.TenantReported.Details) + } + if issueDetails.TenantReported.Details == nil { + assert.Nil(t, issueDetails.TenantReported.Details) + } else { + require.NotNil(t, issueDetails.TenantReported.Details) + assert.Equal(t, *issueDetails.TenantReported.Details, *tt.args.reqData.MachineHealthIssue.Details) + } + } } }) } } - func TestNewCreateInstanceHandler(t *testing.T) { type args struct { dbSession *cdb.Session diff --git a/rest-api/api/pkg/api/model/instance.go b/rest-api/api/pkg/api/model/instance.go index 30604a7014..8ba1b2bc96 100644 --- a/rest-api/api/pkg/api/model/instance.go +++ b/rest-api/api/pkg/api/model/instance.go @@ -8,6 +8,7 @@ import ( "errors" "fmt" "slices" + "strings" "time" "github.com/NVIDIA/infra-controller/rest-api/api/internal/config" @@ -49,6 +50,9 @@ var ( MachineIssueCategoryPerformance: int32(cwssaws.IssueCategory_PERFORMANCE), MachineIssueCategoryOther: int32(cwssaws.IssueCategory_OTHER), } + + // DeleteAttributionIssueDetailsMaxLen is the maximum length of Issue.details forwarded to Site. + DeleteAttributionIssueDetailsMaxLen = 1024 ) // ValidateMultiEthernetDeviceInterfaces validates the Multi-Ethernet Device Interfaces for the Instance @@ -1562,6 +1566,27 @@ func (iur APIInstanceUpdateRequest) ValidateForVpc(vpc *cdbm.Vpc, currentAutoNet return nil } +// InstanceDeleteInitiatedBy records who initiated an Instance delete in the cloud API layer. +type InstanceDeleteInitiatedBy struct { + Org string `json:"org"` + UserID string `json:"user_id"` + TenantID string `json:"tenant_id"` + TenantOrg string `json:"tenant_org"` +} + +// InstanceDeleteAttributionTenantReported captures tenant-reported issue fields included in delete attribution. +type InstanceDeleteAttributionTenantReported struct { + Category string `json:"category"` + Summary string `json:"summary"` + Details *string `json:"details,omitempty"` +} + +// InstanceDeleteAttributionConfig is the canonical JSON payload persisted on delete and forwarded to Site when an issue is reported. +type InstanceDeleteAttributionConfig struct { + InitiatedBy InstanceDeleteInitiatedBy `json:"initiated_by"` + TenantReported *InstanceDeleteAttributionTenantReported `json:"tenant_reported,omitempty"` +} + // APIInstanceDeleteRequest is the data structure to capture request to delete an Instance type APIInstanceDeleteRequest struct { // MachineHealthIssue is the report of a machine health issue @@ -1623,6 +1648,36 @@ func (idr *APIInstanceDeleteRequest) ToProto(instance *cdbm.Instance) *cwssaws.I return req } +// ToInstanceDeleteAttributionConfig builds the delete attribution config from the API request. +func (idr *APIInstanceDeleteRequest) ToInstanceDeleteAttributionConfig(user *cdbm.User, instance *cdbm.Instance) (string, error) { + config := InstanceDeleteAttributionConfig{ + InitiatedBy: InstanceDeleteInitiatedBy{ + Org: instance.Tenant.Org, + UserID: user.ID.String(), + TenantID: instance.Tenant.ID.String(), + TenantOrg: instance.Tenant.Org, + }, + } + if idr.MachineHealthIssue != nil { + mhi := idr.MachineHealthIssue + reported := InstanceDeleteAttributionTenantReported{ + Category: strings.ToUpper(mhi.Category), + } + if mhi.Summary != nil { + reported.Summary = *mhi.Summary + } + if mhi.Details != nil && *mhi.Details != "" { + reported.Details = mhi.Details + } + config.TenantReported = &reported + } + data, err := json.Marshal(config) + if err != nil { + return "", err + } + return string(data), nil +} + // SSHKeyGroupsSummaryDeprecated ensures we keep returning empty array until deprecation time even with omitempty type SSHKeyGroupsSummaryDeprecated struct { SSHKeyGroups []APISSHKeyGroupSummary diff --git a/rest-api/api/pkg/api/model/instance_test.go b/rest-api/api/pkg/api/model/instance_test.go index 00d6c36b24..a04f10d477 100644 --- a/rest-api/api/pkg/api/model/instance_test.go +++ b/rest-api/api/pkg/api/model/instance_test.go @@ -2588,3 +2588,111 @@ func TestAPIInstanceDeleteRequest_ToProto(t *testing.T) { assert.Equal(t, id.String(), got.Id.Value) }) } + +func TestAPIInstanceDeleteRequest_ToInstanceDeleteAttributionConfig(t *testing.T) { + userID := uuid.New() + tenantID := uuid.New() + org := "test-tenant-org" + dbUser := &cdbm.User{ID: userID} + instance := &cdbm.Instance{ + Tenant: &cdbm.Tenant{ID: tenantID, Org: org}, + } + wantInitiated := InstanceDeleteInitiatedBy{ + Org: org, UserID: userID.String(), TenantID: tenantID.String(), TenantOrg: org, + } + + tests := []struct { + name string + req APIInstanceDeleteRequest + wantReported *InstanceDeleteAttributionTenantReported + wantRawKeys []string + wantAbsentKeys []string + }{ + { + name: "without machine health issue", + req: APIInstanceDeleteRequest{}, + wantReported: nil, + wantRawKeys: []string{"initiated_by"}, + wantAbsentKeys: []string{"tenant_reported"}, + }, + { + name: "with machine health issue", + req: APIInstanceDeleteRequest{ + MachineHealthIssue: &APIMachineHealthIssue{ + Category: MachineIssueCategoryHardware, + Summary: cutil.GetPtr("NIC failure"), + Details: cutil.GetPtr("link down on port 0"), + }, + }, + wantReported: &InstanceDeleteAttributionTenantReported{ + Category: "HARDWARE", + Summary: "NIC failure", + Details: cutil.GetPtr("link down on port 0"), + }, + wantRawKeys: []string{"initiated_by", "tenant_reported"}, + }, + { + name: "omits nil details", + req: APIInstanceDeleteRequest{ + MachineHealthIssue: &APIMachineHealthIssue{ + Category: MachineIssueCategoryOther, + Summary: cutil.GetPtr("summary only"), + }, + }, + wantReported: &InstanceDeleteAttributionTenantReported{ + Category: "OTHER", + Summary: "summary only", + }, + wantRawKeys: []string{"initiated_by", "tenant_reported"}, + }, + { + name: "omits empty string details", + req: APIInstanceDeleteRequest{ + MachineHealthIssue: &APIMachineHealthIssue{ + Category: MachineIssueCategoryNetwork, + Summary: cutil.GetPtr("network issue"), + Details: cutil.GetPtr(""), + }, + }, + wantReported: &InstanceDeleteAttributionTenantReported{ + Category: "NETWORK", + Summary: "network issue", + }, + wantRawKeys: []string{"initiated_by", "tenant_reported"}, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + raw, err := tt.req.ToInstanceDeleteAttributionConfig(dbUser, instance) + require.NoError(t, err) + + var config InstanceDeleteAttributionConfig + require.NoError(t, json.Unmarshal([]byte(raw), &config)) + assert.Equal(t, wantInitiated, config.InitiatedBy) + + if tt.wantReported == nil { + assert.Nil(t, config.TenantReported) + } else { + require.NotNil(t, config.TenantReported) + assert.Equal(t, tt.wantReported.Category, config.TenantReported.Category) + assert.Equal(t, tt.wantReported.Summary, config.TenantReported.Summary) + if tt.wantReported.Details == nil { + assert.Nil(t, config.TenantReported.Details) + } else { + require.NotNil(t, config.TenantReported.Details) + assert.Equal(t, *tt.wantReported.Details, *config.TenantReported.Details) + } + } + + var parsed map[string]json.RawMessage + require.NoError(t, json.Unmarshal([]byte(raw), &parsed)) + for _, key := range tt.wantRawKeys { + assert.Contains(t, parsed, key) + } + for _, key := range tt.wantAbsentKeys { + assert.NotContains(t, parsed, key) + } + }) + } +} From 4868fa8c25aa64cff39e01d5f9af0ca509452aa4 Mon Sep 17 00:00:00 2001 From: Hitesh Wadekar Date: Thu, 25 Jun 2026 13:09:10 -0700 Subject: [PATCH 2/9] Moved tenant delete attribute to proto --- crates/admin-cli/src/instance/release/cmd.rs | 1 + crates/api-core/src/handlers/instance.rs | 19 + .../src/tests/common/api_fixtures/instance.rs | 1 + crates/api-core/src/tests/instance.rs | 14 + .../src/tests/instance_config_update.rs | 1 + .../src/tests/network_security_group.rs | 59 +- crates/rpc/proto/forge.proto | 14 + rest-api/api/pkg/api/handler/instance.go | 12 +- rest-api/api/pkg/api/handler/instance_test.go | 33 +- rest-api/api/pkg/api/model/instance.go | 64 +- rest-api/api/pkg/api/model/instance_test.go | 161 +- .../site-agent/workflows/v1/nico_nico.pb.go | 9847 +++++++++-------- .../site-agent/workflows/v1/nico_nico.proto | 14 + 13 files changed, 5163 insertions(+), 5077 deletions(-) diff --git a/crates/admin-cli/src/instance/release/cmd.rs b/crates/admin-cli/src/instance/release/cmd.rs index 0fbfb992d6..152faabc38 100644 --- a/crates/admin-cli/src/instance/release/cmd.rs +++ b/crates/admin-cli/src/instance/release/cmd.rs @@ -82,6 +82,7 @@ pub async fn release( id: Some(instance_id), issue: None, is_repair_tenant: None, + delete_attribution: None, }) .await?; } diff --git a/crates/api-core/src/handlers/instance.rs b/crates/api-core/src/handlers/instance.rs index 650a74d79e..47dbfd1d4d 100644 --- a/crates/api-core/src/handlers/instance.rs +++ b/crates/api-core/src/handlers/instance.rs @@ -437,6 +437,24 @@ async fn remove_health_override( Ok(()) } +/// Logs cloud-side delete attribution when present on the release request. +fn log_delete_attribution(delete_attribution: Option<&rpc::DeleteAttribution>) { + let Some(attribution) = delete_attribution else { + return; + }; + let Some(initiated_by) = attribution.initiated_by.as_ref() else { + return; + }; + + tracing::info!( + org = %initiated_by.org, + org_display_name = %initiated_by.org_display_name, + user_id = %initiated_by.user_id, + tenant_id = %initiated_by.tenant_id, + "Instance delete attribution" + ); +} + /// Handles the Instance Release workflow when released from the Repair tenant. /// /// This function implements the logic for when the RepairSystem releases an instance after @@ -711,6 +729,7 @@ pub(crate) async fn release( log_machine_id(&instance.machine_id); log_tenant_organization_id(instance.config.tenant.tenant_organization_id.as_str()); + log_delete_attribution(delete_instance.delete_attribution.as_ref()); // Only enforce PreventInstanceDeletion for a real release (instance not yet marked deleted). Repair-tenant // follow-up calls after deletion may still need to adjust health overrides below. diff --git a/crates/api-core/src/tests/common/api_fixtures/instance.rs b/crates/api-core/src/tests/common/api_fixtures/instance.rs index 5e96cb592b..b010de8ca7 100644 --- a/crates/api-core/src/tests/common/api_fixtures/instance.rs +++ b/crates/api-core/src/tests/common/api_fixtures/instance.rs @@ -450,6 +450,7 @@ pub async fn delete_instance(env: &TestEnv, instance_id: InstanceId, mh: &TestMa id: Some(instance_id), issue: None, is_repair_tenant: None, + delete_attribution: None, })) .await .expect("Delete instance failed."); diff --git a/crates/api-core/src/tests/instance.rs b/crates/api-core/src/tests/instance.rs index 97090d3fea..e9b271137f 100644 --- a/crates/api-core/src/tests/instance.rs +++ b/crates/api-core/src/tests/instance.rs @@ -557,6 +557,7 @@ async fn test_measurement_assigned_ready_to_waiting_for_measurements_to_ca_faile id: Some(instance_id), issue: None, is_repair_tenant: None, + delete_attribution: None, })) .await .expect("Delete instance failed."); @@ -1303,6 +1304,7 @@ async fn test_instance_deletion_before_provisioning_finishes( id: Some(instance_id), issue: None, is_repair_tenant: None, + delete_attribution: None, })) .await .expect("Delete instance failed."); @@ -1349,6 +1351,7 @@ async fn test_instance_deletion_is_idempotent(_: PgPoolOptions, options: PgConne id: Some(tinstance.id), issue: None, is_repair_tenant: None, + delete_attribution: None, })) .await .unwrap_or_else(|_| panic!("Delete instance failed failed on attempt {i}.")); @@ -1366,6 +1369,7 @@ async fn test_instance_deletion_is_idempotent(_: PgPoolOptions, options: PgConne id: Some(tinstance.id), issue: None, is_repair_tenant: None, + delete_attribution: None, })) .await .expect_err("Expect deletion to fail"); @@ -2132,6 +2136,7 @@ async fn test_bootingwithdiscoveryimage_delay(_: PgPoolOptions, options: PgConne id: Some(tinstance.id), issue: None, is_repair_tenant: None, + delete_attribution: None, })) .await .expect("Delete instance failed."); @@ -5408,6 +5413,7 @@ async fn test_instance_release_backward_compatibility(_: PgPoolOptions, options: id: Some(instance_id), issue: None, // Exactly what older clients produce is_repair_tenant: None, // Exactly what older clients produce + delete_attribution: None, })) .await .expect("Basic instance release should succeed"); @@ -5525,6 +5531,7 @@ async fn test_instance_release_repair_tenant(_: PgPoolOptions, options: PgConnec id: Some(instance_id), issue: None, // No issue reported is_repair_tenant: Some(is_repair_tenant), + delete_attribution: None, })) .await .expect("Instance release with repair tenant flag should succeed"); @@ -5623,6 +5630,7 @@ async fn test_instance_release_combined_enhancements(_: PgPoolOptions, options: id: Some(instance_id), issue: Some(issue), is_repair_tenant: Some(true), // This is a repair tenant reporting an issue + delete_attribution: None, })) .await .expect("Instance release with combined enhancements should succeed"); @@ -5729,6 +5737,7 @@ async fn test_instance_release_rejected_when_aggregate_health_has_prevent_instan id: Some(instance_id), issue: None, is_repair_tenant: None, + delete_attribution: None, })) .await .expect_err( @@ -5754,6 +5763,7 @@ async fn test_instance_release_rejected_when_aggregate_health_has_prevent_instan id: Some(instance_id), issue: None, is_repair_tenant: None, + delete_attribution: None, })) .await .expect("release should succeed after removing PreventInstanceDeletion source"); @@ -5806,6 +5816,7 @@ async fn test_instance_release_auto_repair_enabled(_: PgPoolOptions, options: Pg details: "ECC errors increasing, DIMM slot 3 needs replacement".to_string(), }), is_repair_tenant: None, // Regular tenant (not repair tenant) + delete_attribution: None, })) .await .unwrap(); @@ -5918,6 +5929,7 @@ async fn test_instance_release_repair_tenant_successful_completion( details: "CPU overheating and memory errors".to_string(), }), is_repair_tenant: None, // Regular tenant + delete_attribution: None, })) .await .unwrap(); @@ -5970,6 +5982,7 @@ async fn test_instance_release_repair_tenant_successful_completion( id: Some(instance_id), issue: None, // No new issues - repair was successful is_repair_tenant: Some(true), // Repair tenant + delete_attribution: None, })) .await .unwrap(); @@ -6111,6 +6124,7 @@ async fn test_can_not_update_instance_config_after_deletion( id: tinstance.id.into(), issue: None, is_repair_tenant: None, + delete_attribution: None, })) .await .unwrap(); diff --git a/crates/api-core/src/tests/instance_config_update.rs b/crates/api-core/src/tests/instance_config_update.rs index e86264c146..893fd338c8 100644 --- a/crates/api-core/src/tests/instance_config_update.rs +++ b/crates/api-core/src/tests/instance_config_update.rs @@ -1156,6 +1156,7 @@ async fn test_update_instance_config_vpc_prefix_network_update_post_instance_del id: Some(tinstance.id), issue: None, is_repair_tenant: None, + delete_attribution: None, })) .await .expect("Delete instance failed."); diff --git a/crates/api-core/src/tests/network_security_group.rs b/crates/api-core/src/tests/network_security_group.rs index 6f164dd723..12e977ce36 100644 --- a/crates/api-core/src/tests/network_security_group.rs +++ b/crates/api-core/src/tests/network_security_group.rs @@ -36,7 +36,6 @@ use crate::tests::common::api_fixtures::instance::{ default_os_config, default_tenant_config, interface_network_config_with_devices, single_interface_network_config, }; -use crate::tests::common::api_fixtures::test_managed_host::TestManagedHost; use crate::tests::common::api_fixtures::{ create_test_env, populate_network_security_groups, site_explorer, }; @@ -954,6 +953,7 @@ async fn test_network_security_group_delete( id: instance.id, issue: None, is_repair_tenant: None, + delete_attribution: None, })) .await .unwrap(); @@ -1761,6 +1761,7 @@ async fn test_network_security_group_get_attachments( let good_network_security_group_id = "fd3ab096-d811-11ef-8fe9-7be4b2483448"; let vpc_id: VpcId = uuid!("2ff5ba26-da6a-11ef-9c48-5b78e547a5e7").into(); + let instance_id: InstanceId = uuid!("46c555e0-da6a-11ef-b86d-db132142d068").into(); // Check attachments before doing anything else. // There should be no objects with any attached NSG. @@ -1806,23 +1807,32 @@ async fn test_network_security_group_get_attachments( .await .unwrap(); - let test_managed_host = - TestManagedHost::from_rpc_machine(&mh.host_snapshot.clone().into(), env.api.clone()); // Create an Instance - let instance = test_managed_host - .instance_builer(&env) - .config(rpc::InstanceConfig { - tenant: Some(default_tenant_config()), - os: Some(default_os_config()), - network: Some(single_interface_network_config(segment_id)), - infiniband: None, - nvlink: None, - spxconfig: None, - network_security_group_id: Some(good_network_security_group_id.to_string()), - dpu_extension_services: None, - }) - .build() - .await; + let _ = env + .api + .allocate_instance(tonic::Request::new(rpc::forge::InstanceAllocationRequest { + machine_id: mh.host_snapshot.id.into(), + config: Some(rpc::InstanceConfig { + tenant: Some(default_tenant_config()), + os: Some(default_os_config()), + network: Some(single_interface_network_config(segment_id)), + infiniband: None, + nvlink: None, + spxconfig: None, + network_security_group_id: Some(good_network_security_group_id.to_string()), + dpu_extension_services: None, + }), + instance_id: Some(instance_id), + instance_type_id: None, + metadata: Some(rpc::forge::Metadata { + name: "newinstance".to_string(), + description: "desc".to_string(), + labels: vec![], + }), + allow_unhealthy_machine: false, + })) + .await + .unwrap(); // Check attachments let prop_status = env @@ -1840,15 +1850,22 @@ async fn test_network_security_group_get_attachments( attachments: vec![rpc::forge::NetworkSecurityGroupAttachments { network_security_group_id: good_network_security_group_id.to_string(), vpc_ids: vec![vpc_id.to_string()], - instance_ids: vec![instance.id.to_string()], + instance_ids: vec![instance_id.to_string()], }], }; assert_eq!(prop_status, expected_results); - // Delete the instance and wait for it to be fully gone - test_managed_host.delete_instance(&env, instance.id).await; - + // Delete the instance + env.api + .release_instance(tonic::Request::new(rpc::forge::InstanceReleaseRequest { + id: Some(instance_id), + issue: None, + is_repair_tenant: None, + delete_attribution: None, + })) + .await + .unwrap(); // Delete the VPC env.api .delete_vpc(tonic::Request::new(rpc::forge::VpcDeletionRequest { diff --git a/crates/rpc/proto/forge.proto b/crates/rpc/proto/forge.proto index f2c446e18b..0c54e48cd5 100644 --- a/crates/rpc/proto/forge.proto +++ b/crates/rpc/proto/forge.proto @@ -3323,12 +3323,26 @@ message Issue { string details = 3; // Additional context about the issue } +// Records who initiated an instance delete in the cloud API layer. +message DeleteInitiatedBy { + string org = 1; + string org_display_name = 2; + string user_id = 3; + string tenant_id = 4; +} + +message DeleteAttribution { + DeleteInitiatedBy initiated_by = 1; +} + message InstanceReleaseRequest { common.InstanceId id = 1; // Optional issue information if tenant is reporting a problem optional Issue issue = 2; // Optional flag indicating the call is from repair tenant (default: false) optional bool is_repair_tenant = 3; + // Optional cloud-side attribution for who initiated the delete + optional DeleteAttribution delete_attribution = 4; } message InstanceReleaseResult { diff --git a/rest-api/api/pkg/api/handler/instance.go b/rest-api/api/pkg/api/handler/instance.go index bc25ea4061..dc0e60639c 100644 --- a/rest-api/api/pkg/api/handler/instance.go +++ b/rest-api/api/pkg/api/handler/instance.go @@ -4902,17 +4902,7 @@ func (dih DeleteInstanceHandler) Handle(c echo.Context) error { } // Prepare the delete/release request workflow object - releaseInstanceRequest := apiRequest.ToProto(instance) - - // If an issue is reported, set Issue.details to the delete attribution config. - if releaseInstanceRequest.Issue != nil { - instanceDeletionAttributionConfig, derr := apiRequest.ToInstanceDeleteAttributionConfig(dbUser, instance) - if derr != nil { - logger.Error().Err(derr).Msg("error building delete attribution config") - return cutil.NewAPIErrorResponse(c, http.StatusInternalServerError, "Failed to delete Instance", nil) - } - releaseInstanceRequest.Issue.Details = instanceDeletionAttributionConfig - } + releaseInstanceRequest := apiRequest.ToProto(instance, dbUser) workflowOptions := temporalClient.StartWorkflowOptions{ ID: "instance-delete-" + instance.ID.String(), diff --git a/rest-api/api/pkg/api/handler/instance_test.go b/rest-api/api/pkg/api/handler/instance_test.go index 6d86dabb39..800a44c1f9 100644 --- a/rest-api/api/pkg/api/handler/instance_test.go +++ b/rest-api/api/pkg/api/handler/instance_test.go @@ -9751,30 +9751,21 @@ func TestDeleteInstanceHandler_Handle(t *testing.T) { require.NotEmpty(t, statusDetails) require.NotNil(t, statusDetails[0].Message) - if tt.args.reqData != nil && tt.args.reqData.MachineHealthIssue != nil { - if len(tsc.Calls) > 0 && len(tsc.Calls[len(tsc.Calls)-1].Arguments) > 3 { - releaseReq := tsc.Calls[len(tsc.Calls)-1].Arguments[3].(*cwssaws.InstanceReleaseRequest) + if len(tsc.Calls) > 0 && len(tsc.Calls[len(tsc.Calls)-1].Arguments) > 3 { + releaseReq := tsc.Calls[len(tsc.Calls)-1].Arguments[3].(*cwssaws.InstanceReleaseRequest) + require.NotNil(t, releaseReq.DeleteAttribution) + require.NotNil(t, releaseReq.DeleteAttribution.InitiatedBy) + assert.Equal(t, tt.args.reqOrg, releaseReq.DeleteAttribution.InitiatedBy.Org) + assert.Equal(t, tt.args.reqUser.ID.String(), releaseReq.DeleteAttribution.InitiatedBy.UserId) + assert.Equal(t, dinstance.TenantID.String(), releaseReq.DeleteAttribution.InitiatedBy.TenantId) + + if tt.args.reqData != nil && tt.args.reqData.MachineHealthIssue != nil { require.NotNil(t, releaseReq.Issue) - require.NotNil(t, releaseReq.Issue.Details) - var issueDetails model.InstanceDeleteAttributionConfig - require.NoError(t, json.Unmarshal([]byte(releaseReq.Issue.Details), &issueDetails)) - assert.Equal(t, tt.args.reqOrg, issueDetails.InitiatedBy.Org) - assert.Equal(t, tt.args.reqUser.ID.String(), issueDetails.InitiatedBy.UserID) - assert.Equal(t, dinstance.TenantID.String(), issueDetails.InitiatedBy.TenantID) - assert.Equal(t, tt.args.reqOrg, issueDetails.InitiatedBy.TenantOrg) - require.NotNil(t, issueDetails.TenantReported) - assert.Equal(t, strings.ToUpper(tt.args.reqData.MachineHealthIssue.Category), issueDetails.TenantReported.Category) - if tt.args.reqData.MachineHealthIssue.Summary != nil { - assert.Equal(t, *tt.args.reqData.MachineHealthIssue.Summary, issueDetails.TenantReported.Summary) - } if tt.args.reqData.MachineHealthIssue.Details != nil { - assert.Equal(t, *tt.args.reqData.MachineHealthIssue.Details, *issueDetails.TenantReported.Details) + assert.Equal(t, *tt.args.reqData.MachineHealthIssue.Details, releaseReq.Issue.Details) } - if issueDetails.TenantReported.Details == nil { - assert.Nil(t, issueDetails.TenantReported.Details) - } else { - require.NotNil(t, issueDetails.TenantReported.Details) - assert.Equal(t, *issueDetails.TenantReported.Details, *tt.args.reqData.MachineHealthIssue.Details) + if tt.args.reqData.MachineHealthIssue.Summary != nil { + assert.Equal(t, *tt.args.reqData.MachineHealthIssue.Summary, releaseReq.Issue.Summary) } } } diff --git a/rest-api/api/pkg/api/model/instance.go b/rest-api/api/pkg/api/model/instance.go index 8ba1b2bc96..4765f9913a 100644 --- a/rest-api/api/pkg/api/model/instance.go +++ b/rest-api/api/pkg/api/model/instance.go @@ -8,7 +8,6 @@ import ( "errors" "fmt" "slices" - "strings" "time" "github.com/NVIDIA/infra-controller/rest-api/api/internal/config" @@ -50,9 +49,6 @@ var ( MachineIssueCategoryPerformance: int32(cwssaws.IssueCategory_PERFORMANCE), MachineIssueCategoryOther: int32(cwssaws.IssueCategory_OTHER), } - - // DeleteAttributionIssueDetailsMaxLen is the maximum length of Issue.details forwarded to Site. - DeleteAttributionIssueDetailsMaxLen = 1024 ) // ValidateMultiEthernetDeviceInterfaces validates the Multi-Ethernet Device Interfaces for the Instance @@ -1566,27 +1562,6 @@ func (iur APIInstanceUpdateRequest) ValidateForVpc(vpc *cdbm.Vpc, currentAutoNet return nil } -// InstanceDeleteInitiatedBy records who initiated an Instance delete in the cloud API layer. -type InstanceDeleteInitiatedBy struct { - Org string `json:"org"` - UserID string `json:"user_id"` - TenantID string `json:"tenant_id"` - TenantOrg string `json:"tenant_org"` -} - -// InstanceDeleteAttributionTenantReported captures tenant-reported issue fields included in delete attribution. -type InstanceDeleteAttributionTenantReported struct { - Category string `json:"category"` - Summary string `json:"summary"` - Details *string `json:"details,omitempty"` -} - -// InstanceDeleteAttributionConfig is the canonical JSON payload persisted on delete and forwarded to Site when an issue is reported. -type InstanceDeleteAttributionConfig struct { - InitiatedBy InstanceDeleteInitiatedBy `json:"initiated_by"` - TenantReported *InstanceDeleteAttributionTenantReported `json:"tenant_reported,omitempty"` -} - // APIInstanceDeleteRequest is the data structure to capture request to delete an Instance type APIInstanceDeleteRequest struct { // MachineHealthIssue is the report of a machine health issue @@ -1629,7 +1604,7 @@ func (idr *APIInstanceDeleteRequest) Validate() error { // cannot see. In particular, the `IsRepairTenant` capability gate // (TargetedInstanceCreation on the Tenant config) is an authorization // check that stays in the handler before this method runs. -func (idr *APIInstanceDeleteRequest) ToProto(instance *cdbm.Instance) *cwssaws.InstanceReleaseRequest { +func (idr *APIInstanceDeleteRequest) ToProto(instance *cdbm.Instance, user *cdbm.User) *cwssaws.InstanceReleaseRequest { req := instance.ToReleaseRequestProto() if idr.MachineHealthIssue != nil { req.Issue = &cwssaws.Issue{ @@ -1645,37 +1620,20 @@ func (idr *APIInstanceDeleteRequest) ToProto(instance *cdbm.Instance) *cwssaws.I if idr.IsRepairTenant != nil { req.IsRepairTenant = idr.IsRepairTenant } - return req -} -// ToInstanceDeleteAttributionConfig builds the delete attribution config from the API request. -func (idr *APIInstanceDeleteRequest) ToInstanceDeleteAttributionConfig(user *cdbm.User, instance *cdbm.Instance) (string, error) { - config := InstanceDeleteAttributionConfig{ - InitiatedBy: InstanceDeleteInitiatedBy{ - Org: instance.Tenant.Org, - UserID: user.ID.String(), - TenantID: instance.Tenant.ID.String(), - TenantOrg: instance.Tenant.Org, - }, + // Build the delete attribution proto + initiatedBy := &cwssaws.DeleteInitiatedBy{ + Org: instance.Tenant.Org, + UserId: user.ID.String(), + TenantId: instance.Tenant.ID.String(), } - if idr.MachineHealthIssue != nil { - mhi := idr.MachineHealthIssue - reported := InstanceDeleteAttributionTenantReported{ - Category: strings.ToUpper(mhi.Category), - } - if mhi.Summary != nil { - reported.Summary = *mhi.Summary - } - if mhi.Details != nil && *mhi.Details != "" { - reported.Details = mhi.Details - } - config.TenantReported = &reported + if instance.Tenant.OrgDisplayName != nil { + initiatedBy.OrgDisplayName = *instance.Tenant.OrgDisplayName } - data, err := json.Marshal(config) - if err != nil { - return "", err + req.DeleteAttribution = &cwssaws.DeleteAttribution{ + InitiatedBy: initiatedBy, } - return string(data), nil + return req } // SSHKeyGroupsSummaryDeprecated ensures we keep returning empty array until deprecation time even with omitempty diff --git a/rest-api/api/pkg/api/model/instance_test.go b/rest-api/api/pkg/api/model/instance_test.go index a04f10d477..906bdac7a7 100644 --- a/rest-api/api/pkg/api/model/instance_test.go +++ b/rest-api/api/pkg/api/model/instance_test.go @@ -2532,16 +2532,40 @@ func TestAPIInstanceUpdateRequest_Validate_Auto(t *testing.T) { func TestAPIInstanceDeleteRequest_ToProto(t *testing.T) { id := uuid.New() ctrlID := uuid.New() - instance := &cdbm.Instance{ID: id, ControllerInstanceID: &ctrlID} + userID := uuid.New() + tenantID := uuid.New() + org := "test-tenant-org" + orgDisplayName := "Test Tenant Org" + dbUser := &cdbm.User{ID: userID} + instance := &cdbm.Instance{ + ID: id, + ControllerInstanceID: &ctrlID, + Tenant: &cdbm.Tenant{ + ID: tenantID, + Org: org, + OrgDisplayName: &orgDisplayName, + }, + } + + assertDeleteAttribution := func(t *testing.T, got *cwssaws.InstanceReleaseRequest) { + t.Helper() + require.NotNil(t, got.DeleteAttribution) + require.NotNil(t, got.DeleteAttribution.InitiatedBy) + assert.Equal(t, org, got.DeleteAttribution.InitiatedBy.Org) + assert.Equal(t, orgDisplayName, got.DeleteAttribution.InitiatedBy.OrgDisplayName) + assert.Equal(t, userID.String(), got.DeleteAttribution.InitiatedBy.UserId) + assert.Equal(t, tenantID.String(), got.DeleteAttribution.InitiatedBy.TenantId) + } t.Run("empty request sources only the canonical ID", func(t *testing.T) { req := APIInstanceDeleteRequest{} - got := req.ToProto(instance) + got := req.ToProto(instance, dbUser) require.NotNil(t, got) require.NotNil(t, got.Id) assert.Equal(t, ctrlID.String(), got.Id.Value) assert.Nil(t, got.Issue) assert.Nil(t, got.IsRepairTenant) + assertDeleteAttribution(t, got) }) t.Run("overlays MachineHealthIssue with summary and details", func(t *testing.T) { @@ -2552,12 +2576,13 @@ func TestAPIInstanceDeleteRequest_ToProto(t *testing.T) { Details: cutil.GetPtr("port 0 returned link-down for 30 minutes"), }, } - got := req.ToProto(instance) + got := req.ToProto(instance, dbUser) require.NotNil(t, got) require.NotNil(t, got.Issue) assert.Equal(t, cwssaws.IssueCategory_HARDWARE, got.Issue.Category) assert.Equal(t, "burnt out NIC", got.Issue.Summary) assert.Equal(t, "port 0 returned link-down for 30 minutes", got.Issue.Details) + assertDeleteAttribution(t, got) }) t.Run("MachineHealthIssue without optional pointers leaves Summary and Details empty", func(t *testing.T) { @@ -2566,133 +2591,39 @@ func TestAPIInstanceDeleteRequest_ToProto(t *testing.T) { Category: MachineIssueCategoryOther, }, } - got := req.ToProto(instance) + got := req.ToProto(instance, dbUser) require.NotNil(t, got.Issue) assert.Equal(t, cwssaws.IssueCategory_OTHER, got.Issue.Category) assert.Equal(t, "", got.Issue.Summary) assert.Equal(t, "", got.Issue.Details) + assertDeleteAttribution(t, got) }) t.Run("overlays IsRepairTenant when set", func(t *testing.T) { req := APIInstanceDeleteRequest{IsRepairTenant: cutil.GetPtr(true)} - got := req.ToProto(instance) + got := req.ToProto(instance, dbUser) require.NotNil(t, got.IsRepairTenant) assert.True(t, *got.IsRepairTenant) + assertDeleteAttribution(t, got) }) t.Run("uses Instance ID when ControllerInstanceID is nil", func(t *testing.T) { - bare := &cdbm.Instance{ID: id} + bare := &cdbm.Instance{ + ID: id, + Tenant: &cdbm.Tenant{ + ID: tenantID, + Org: org, + }, + } req := APIInstanceDeleteRequest{} - got := req.ToProto(bare) + got := req.ToProto(bare, dbUser) require.NotNil(t, got.Id) assert.Equal(t, id.String(), got.Id.Value) + require.NotNil(t, got.DeleteAttribution) + require.NotNil(t, got.DeleteAttribution.InitiatedBy) + assert.Equal(t, org, got.DeleteAttribution.InitiatedBy.Org) + assert.Equal(t, "", got.DeleteAttribution.InitiatedBy.OrgDisplayName) + assert.Equal(t, userID.String(), got.DeleteAttribution.InitiatedBy.UserId) + assert.Equal(t, tenantID.String(), got.DeleteAttribution.InitiatedBy.TenantId) }) } - -func TestAPIInstanceDeleteRequest_ToInstanceDeleteAttributionConfig(t *testing.T) { - userID := uuid.New() - tenantID := uuid.New() - org := "test-tenant-org" - dbUser := &cdbm.User{ID: userID} - instance := &cdbm.Instance{ - Tenant: &cdbm.Tenant{ID: tenantID, Org: org}, - } - wantInitiated := InstanceDeleteInitiatedBy{ - Org: org, UserID: userID.String(), TenantID: tenantID.String(), TenantOrg: org, - } - - tests := []struct { - name string - req APIInstanceDeleteRequest - wantReported *InstanceDeleteAttributionTenantReported - wantRawKeys []string - wantAbsentKeys []string - }{ - { - name: "without machine health issue", - req: APIInstanceDeleteRequest{}, - wantReported: nil, - wantRawKeys: []string{"initiated_by"}, - wantAbsentKeys: []string{"tenant_reported"}, - }, - { - name: "with machine health issue", - req: APIInstanceDeleteRequest{ - MachineHealthIssue: &APIMachineHealthIssue{ - Category: MachineIssueCategoryHardware, - Summary: cutil.GetPtr("NIC failure"), - Details: cutil.GetPtr("link down on port 0"), - }, - }, - wantReported: &InstanceDeleteAttributionTenantReported{ - Category: "HARDWARE", - Summary: "NIC failure", - Details: cutil.GetPtr("link down on port 0"), - }, - wantRawKeys: []string{"initiated_by", "tenant_reported"}, - }, - { - name: "omits nil details", - req: APIInstanceDeleteRequest{ - MachineHealthIssue: &APIMachineHealthIssue{ - Category: MachineIssueCategoryOther, - Summary: cutil.GetPtr("summary only"), - }, - }, - wantReported: &InstanceDeleteAttributionTenantReported{ - Category: "OTHER", - Summary: "summary only", - }, - wantRawKeys: []string{"initiated_by", "tenant_reported"}, - }, - { - name: "omits empty string details", - req: APIInstanceDeleteRequest{ - MachineHealthIssue: &APIMachineHealthIssue{ - Category: MachineIssueCategoryNetwork, - Summary: cutil.GetPtr("network issue"), - Details: cutil.GetPtr(""), - }, - }, - wantReported: &InstanceDeleteAttributionTenantReported{ - Category: "NETWORK", - Summary: "network issue", - }, - wantRawKeys: []string{"initiated_by", "tenant_reported"}, - }, - } - - for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - raw, err := tt.req.ToInstanceDeleteAttributionConfig(dbUser, instance) - require.NoError(t, err) - - var config InstanceDeleteAttributionConfig - require.NoError(t, json.Unmarshal([]byte(raw), &config)) - assert.Equal(t, wantInitiated, config.InitiatedBy) - - if tt.wantReported == nil { - assert.Nil(t, config.TenantReported) - } else { - require.NotNil(t, config.TenantReported) - assert.Equal(t, tt.wantReported.Category, config.TenantReported.Category) - assert.Equal(t, tt.wantReported.Summary, config.TenantReported.Summary) - if tt.wantReported.Details == nil { - assert.Nil(t, config.TenantReported.Details) - } else { - require.NotNil(t, config.TenantReported.Details) - assert.Equal(t, *tt.wantReported.Details, *config.TenantReported.Details) - } - } - - var parsed map[string]json.RawMessage - require.NoError(t, json.Unmarshal([]byte(raw), &parsed)) - for _, key := range tt.wantRawKeys { - assert.Contains(t, parsed, key) - } - for _, key := range tt.wantAbsentKeys { - assert.NotContains(t, parsed, key) - } - }) - } -} diff --git a/rest-api/workflow-schema/schema/site-agent/workflows/v1/nico_nico.pb.go b/rest-api/workflow-schema/schema/site-agent/workflows/v1/nico_nico.pb.go index e07101e591..fa6164ff07 100644 --- a/rest-api/workflow-schema/schema/site-agent/workflows/v1/nico_nico.pb.go +++ b/rest-api/workflow-schema/schema/site-agent/workflows/v1/nico_nico.pb.go @@ -4245,7 +4245,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{325, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{327, 0} } // Legacy action enum. New clients will use `action` oneof below. @@ -4316,7 +4316,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{328, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 0} } type MachineCleanupInfo_CleanupResult int32 @@ -4362,7 +4362,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{331, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{333, 0} } type DpuReprovisioningRequest_Mode int32 @@ -4411,7 +4411,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{411, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{413, 0} } type HostReprovisioningRequest_Mode int32 @@ -4457,7 +4457,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{414, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{416, 0} } type MachineSetAutoUpdateRequest_SetAutoupdateAction int32 @@ -4506,7 +4506,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{475, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{477, 0} } type MachineValidationOnDemandRequest_Action int32 @@ -4552,7 +4552,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{484, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{486, 0} } type AdminPowerControlRequest_SystemPowerControl int32 @@ -4616,7 +4616,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{494, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{496, 0} } type GetRedfishJobStateResponse_RedfishJobState int32 @@ -4671,7 +4671,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{497, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{499, 0} } // Indicates the lifecycle state of a resource that is controlled by a state controller @@ -18590,6 +18590,119 @@ func (x *Issue) GetDetails() string { return "" } +// Records who initiated an instance delete in the cloud API layer. +type DeleteInitiatedBy struct { + state protoimpl.MessageState `protogen:"open.v1"` + Org string `protobuf:"bytes,1,opt,name=org,proto3" json:"org,omitempty"` + OrgDisplayName string `protobuf:"bytes,2,opt,name=org_display_name,json=orgDisplayName,proto3" json:"org_display_name,omitempty"` + UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` + TenantId string `protobuf:"bytes,4,opt,name=tenant_id,json=tenantId,proto3" json:"tenant_id,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *DeleteInitiatedBy) Reset() { + *x = DeleteInitiatedBy{} + mi := &file_nico_nico_proto_msgTypes[210] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *DeleteInitiatedBy) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DeleteInitiatedBy) ProtoMessage() {} + +func (x *DeleteInitiatedBy) ProtoReflect() protoreflect.Message { + mi := &file_nico_nico_proto_msgTypes[210] + 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 DeleteInitiatedBy.ProtoReflect.Descriptor instead. +func (*DeleteInitiatedBy) Descriptor() ([]byte, []int) { + return file_nico_nico_proto_rawDescGZIP(), []int{210} +} + +func (x *DeleteInitiatedBy) GetOrg() string { + if x != nil { + return x.Org + } + return "" +} + +func (x *DeleteInitiatedBy) GetOrgDisplayName() string { + if x != nil { + return x.OrgDisplayName + } + return "" +} + +func (x *DeleteInitiatedBy) GetUserId() string { + if x != nil { + return x.UserId + } + return "" +} + +func (x *DeleteInitiatedBy) GetTenantId() string { + if x != nil { + return x.TenantId + } + return "" +} + +type DeleteAttribution struct { + state protoimpl.MessageState `protogen:"open.v1"` + InitiatedBy *DeleteInitiatedBy `protobuf:"bytes,1,opt,name=initiated_by,json=initiatedBy,proto3" json:"initiated_by,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *DeleteAttribution) Reset() { + *x = DeleteAttribution{} + mi := &file_nico_nico_proto_msgTypes[211] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *DeleteAttribution) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DeleteAttribution) ProtoMessage() {} + +func (x *DeleteAttribution) ProtoReflect() protoreflect.Message { + mi := &file_nico_nico_proto_msgTypes[211] + 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 DeleteAttribution.ProtoReflect.Descriptor instead. +func (*DeleteAttribution) Descriptor() ([]byte, []int) { + return file_nico_nico_proto_rawDescGZIP(), []int{211} +} + +func (x *DeleteAttribution) GetInitiatedBy() *DeleteInitiatedBy { + if x != nil { + return x.InitiatedBy + } + return nil +} + type InstanceReleaseRequest struct { state protoimpl.MessageState `protogen:"open.v1"` Id *InstanceId `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` @@ -18597,13 +18710,15 @@ type InstanceReleaseRequest struct { Issue *Issue `protobuf:"bytes,2,opt,name=issue,proto3,oneof" json:"issue,omitempty"` // Optional flag indicating the call is from repair tenant (default: false) IsRepairTenant *bool `protobuf:"varint,3,opt,name=is_repair_tenant,json=isRepairTenant,proto3,oneof" json:"is_repair_tenant,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + // Optional cloud-side attribution for who initiated the delete + DeleteAttribution *DeleteAttribution `protobuf:"bytes,4,opt,name=delete_attribution,json=deleteAttribution,proto3,oneof" json:"delete_attribution,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } func (x *InstanceReleaseRequest) Reset() { *x = InstanceReleaseRequest{} - mi := &file_nico_nico_proto_msgTypes[210] + mi := &file_nico_nico_proto_msgTypes[212] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18615,7 +18730,7 @@ func (x *InstanceReleaseRequest) String() string { func (*InstanceReleaseRequest) ProtoMessage() {} func (x *InstanceReleaseRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[210] + mi := &file_nico_nico_proto_msgTypes[212] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18628,7 +18743,7 @@ func (x *InstanceReleaseRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceReleaseRequest.ProtoReflect.Descriptor instead. func (*InstanceReleaseRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{210} + return file_nico_nico_proto_rawDescGZIP(), []int{212} } func (x *InstanceReleaseRequest) GetId() *InstanceId { @@ -18652,6 +18767,13 @@ func (x *InstanceReleaseRequest) GetIsRepairTenant() bool { return false } +func (x *InstanceReleaseRequest) GetDeleteAttribution() *DeleteAttribution { + if x != nil { + return x.DeleteAttribution + } + return nil +} + type InstanceReleaseResult struct { state protoimpl.MessageState `protogen:"open.v1"` unknownFields protoimpl.UnknownFields @@ -18660,7 +18782,7 @@ type InstanceReleaseResult struct { func (x *InstanceReleaseResult) Reset() { *x = InstanceReleaseResult{} - mi := &file_nico_nico_proto_msgTypes[211] + mi := &file_nico_nico_proto_msgTypes[213] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18672,7 +18794,7 @@ func (x *InstanceReleaseResult) String() string { func (*InstanceReleaseResult) ProtoMessage() {} func (x *InstanceReleaseResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[211] + mi := &file_nico_nico_proto_msgTypes[213] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18685,7 +18807,7 @@ func (x *InstanceReleaseResult) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceReleaseResult.ProtoReflect.Descriptor instead. func (*InstanceReleaseResult) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{211} + return file_nico_nico_proto_rawDescGZIP(), []int{213} } type MachinesByIdsRequest struct { @@ -18698,7 +18820,7 @@ type MachinesByIdsRequest struct { func (x *MachinesByIdsRequest) Reset() { *x = MachinesByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[212] + mi := &file_nico_nico_proto_msgTypes[214] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18710,7 +18832,7 @@ func (x *MachinesByIdsRequest) String() string { func (*MachinesByIdsRequest) ProtoMessage() {} func (x *MachinesByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[212] + mi := &file_nico_nico_proto_msgTypes[214] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18723,7 +18845,7 @@ func (x *MachinesByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachinesByIdsRequest.ProtoReflect.Descriptor instead. func (*MachinesByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{212} + return file_nico_nico_proto_rawDescGZIP(), []int{214} } func (x *MachinesByIdsRequest) GetMachineIds() []*MachineId { @@ -18763,7 +18885,7 @@ type MachineSearchConfig struct { func (x *MachineSearchConfig) Reset() { *x = MachineSearchConfig{} - mi := &file_nico_nico_proto_msgTypes[213] + mi := &file_nico_nico_proto_msgTypes[215] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18775,7 +18897,7 @@ func (x *MachineSearchConfig) String() string { func (*MachineSearchConfig) ProtoMessage() {} func (x *MachineSearchConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[213] + mi := &file_nico_nico_proto_msgTypes[215] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18788,7 +18910,7 @@ func (x *MachineSearchConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineSearchConfig.ProtoReflect.Descriptor instead. func (*MachineSearchConfig) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{213} + return file_nico_nico_proto_rawDescGZIP(), []int{215} } func (x *MachineSearchConfig) GetIncludeDpus() bool { @@ -18877,7 +18999,7 @@ type MachineStateHistoriesRequest struct { func (x *MachineStateHistoriesRequest) Reset() { *x = MachineStateHistoriesRequest{} - mi := &file_nico_nico_proto_msgTypes[214] + mi := &file_nico_nico_proto_msgTypes[216] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18889,7 +19011,7 @@ func (x *MachineStateHistoriesRequest) String() string { func (*MachineStateHistoriesRequest) ProtoMessage() {} func (x *MachineStateHistoriesRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[214] + mi := &file_nico_nico_proto_msgTypes[216] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18902,7 +19024,7 @@ func (x *MachineStateHistoriesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineStateHistoriesRequest.ProtoReflect.Descriptor instead. func (*MachineStateHistoriesRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{214} + return file_nico_nico_proto_rawDescGZIP(), []int{216} } func (x *MachineStateHistoriesRequest) GetMachineIds() []*MachineId { @@ -18922,7 +19044,7 @@ type MachineStateHistories struct { func (x *MachineStateHistories) Reset() { *x = MachineStateHistories{} - mi := &file_nico_nico_proto_msgTypes[215] + mi := &file_nico_nico_proto_msgTypes[217] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18934,7 +19056,7 @@ func (x *MachineStateHistories) String() string { func (*MachineStateHistories) ProtoMessage() {} func (x *MachineStateHistories) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[215] + mi := &file_nico_nico_proto_msgTypes[217] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18947,7 +19069,7 @@ func (x *MachineStateHistories) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineStateHistories.ProtoReflect.Descriptor instead. func (*MachineStateHistories) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{215} + return file_nico_nico_proto_rawDescGZIP(), []int{217} } func (x *MachineStateHistories) GetHistories() map[string]*MachineStateHistoryRecords { @@ -18967,7 +19089,7 @@ type MachineStateHistoryRecords struct { func (x *MachineStateHistoryRecords) Reset() { *x = MachineStateHistoryRecords{} - mi := &file_nico_nico_proto_msgTypes[216] + mi := &file_nico_nico_proto_msgTypes[218] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18979,7 +19101,7 @@ func (x *MachineStateHistoryRecords) String() string { func (*MachineStateHistoryRecords) ProtoMessage() {} func (x *MachineStateHistoryRecords) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[216] + mi := &file_nico_nico_proto_msgTypes[218] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18992,7 +19114,7 @@ func (x *MachineStateHistoryRecords) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineStateHistoryRecords.ProtoReflect.Descriptor instead. func (*MachineStateHistoryRecords) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{216} + return file_nico_nico_proto_rawDescGZIP(), []int{218} } func (x *MachineStateHistoryRecords) GetRecords() []*MachineEvent { @@ -19015,7 +19137,7 @@ type MachineHealthHistoriesRequest struct { func (x *MachineHealthHistoriesRequest) Reset() { *x = MachineHealthHistoriesRequest{} - mi := &file_nico_nico_proto_msgTypes[217] + mi := &file_nico_nico_proto_msgTypes[219] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19027,7 +19149,7 @@ func (x *MachineHealthHistoriesRequest) String() string { func (*MachineHealthHistoriesRequest) ProtoMessage() {} func (x *MachineHealthHistoriesRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[217] + mi := &file_nico_nico_proto_msgTypes[219] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19040,7 +19162,7 @@ func (x *MachineHealthHistoriesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineHealthHistoriesRequest.ProtoReflect.Descriptor instead. func (*MachineHealthHistoriesRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{217} + return file_nico_nico_proto_rawDescGZIP(), []int{219} } func (x *MachineHealthHistoriesRequest) GetMachineIds() []*MachineId { @@ -19074,7 +19196,7 @@ type HealthHistories struct { func (x *HealthHistories) Reset() { *x = HealthHistories{} - mi := &file_nico_nico_proto_msgTypes[218] + mi := &file_nico_nico_proto_msgTypes[220] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19086,7 +19208,7 @@ func (x *HealthHistories) String() string { func (*HealthHistories) ProtoMessage() {} func (x *HealthHistories) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[218] + mi := &file_nico_nico_proto_msgTypes[220] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19099,7 +19221,7 @@ func (x *HealthHistories) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthHistories.ProtoReflect.Descriptor instead. func (*HealthHistories) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{218} + return file_nico_nico_proto_rawDescGZIP(), []int{220} } func (x *HealthHistories) GetHistories() map[string]*HealthHistoryRecords { @@ -19119,7 +19241,7 @@ type HealthHistoryRecords struct { func (x *HealthHistoryRecords) Reset() { *x = HealthHistoryRecords{} - mi := &file_nico_nico_proto_msgTypes[219] + mi := &file_nico_nico_proto_msgTypes[221] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19131,7 +19253,7 @@ func (x *HealthHistoryRecords) String() string { func (*HealthHistoryRecords) ProtoMessage() {} func (x *HealthHistoryRecords) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[219] + mi := &file_nico_nico_proto_msgTypes[221] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19144,7 +19266,7 @@ func (x *HealthHistoryRecords) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthHistoryRecords.ProtoReflect.Descriptor instead. func (*HealthHistoryRecords) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{219} + return file_nico_nico_proto_rawDescGZIP(), []int{221} } func (x *HealthHistoryRecords) GetRecords() []*HealthHistoryRecord { @@ -19167,7 +19289,7 @@ type HealthHistoryRecord struct { func (x *HealthHistoryRecord) Reset() { *x = HealthHistoryRecord{} - mi := &file_nico_nico_proto_msgTypes[220] + mi := &file_nico_nico_proto_msgTypes[222] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19179,7 +19301,7 @@ func (x *HealthHistoryRecord) String() string { func (*HealthHistoryRecord) ProtoMessage() {} func (x *HealthHistoryRecord) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[220] + mi := &file_nico_nico_proto_msgTypes[222] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19192,7 +19314,7 @@ func (x *HealthHistoryRecord) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthHistoryRecord.ProtoReflect.Descriptor instead. func (*HealthHistoryRecord) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{220} + return file_nico_nico_proto_rawDescGZIP(), []int{222} } func (x *HealthHistoryRecord) GetHealth() *HealthReport { @@ -19218,7 +19340,7 @@ type TenantByOrganizationIdsRequest struct { func (x *TenantByOrganizationIdsRequest) Reset() { *x = TenantByOrganizationIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[221] + mi := &file_nico_nico_proto_msgTypes[223] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19230,7 +19352,7 @@ func (x *TenantByOrganizationIdsRequest) String() string { func (*TenantByOrganizationIdsRequest) ProtoMessage() {} func (x *TenantByOrganizationIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[221] + mi := &file_nico_nico_proto_msgTypes[223] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19243,7 +19365,7 @@ func (x *TenantByOrganizationIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantByOrganizationIdsRequest.ProtoReflect.Descriptor instead. func (*TenantByOrganizationIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{221} + return file_nico_nico_proto_rawDescGZIP(), []int{223} } func (x *TenantByOrganizationIdsRequest) GetOrganizationIds() []string { @@ -19262,7 +19384,7 @@ type TenantSearchFilter struct { func (x *TenantSearchFilter) Reset() { *x = TenantSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[222] + mi := &file_nico_nico_proto_msgTypes[224] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19274,7 +19396,7 @@ func (x *TenantSearchFilter) String() string { func (*TenantSearchFilter) ProtoMessage() {} func (x *TenantSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[222] + mi := &file_nico_nico_proto_msgTypes[224] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19287,7 +19409,7 @@ func (x *TenantSearchFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantSearchFilter.ProtoReflect.Descriptor instead. func (*TenantSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{222} + return file_nico_nico_proto_rawDescGZIP(), []int{224} } func (x *TenantSearchFilter) GetTenantOrganizationName() string { @@ -19306,7 +19428,7 @@ type TenantList struct { func (x *TenantList) Reset() { *x = TenantList{} - mi := &file_nico_nico_proto_msgTypes[223] + mi := &file_nico_nico_proto_msgTypes[225] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19318,7 +19440,7 @@ func (x *TenantList) String() string { func (*TenantList) ProtoMessage() {} func (x *TenantList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[223] + mi := &file_nico_nico_proto_msgTypes[225] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19331,7 +19453,7 @@ func (x *TenantList) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantList.ProtoReflect.Descriptor instead. func (*TenantList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{223} + return file_nico_nico_proto_rawDescGZIP(), []int{225} } func (x *TenantList) GetTenants() []*Tenant { @@ -19350,7 +19472,7 @@ type TenantOrganizationIdList struct { func (x *TenantOrganizationIdList) Reset() { *x = TenantOrganizationIdList{} - mi := &file_nico_nico_proto_msgTypes[224] + mi := &file_nico_nico_proto_msgTypes[226] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19362,7 +19484,7 @@ func (x *TenantOrganizationIdList) String() string { func (*TenantOrganizationIdList) ProtoMessage() {} func (x *TenantOrganizationIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[224] + mi := &file_nico_nico_proto_msgTypes[226] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19375,7 +19497,7 @@ func (x *TenantOrganizationIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantOrganizationIdList.ProtoReflect.Descriptor instead. func (*TenantOrganizationIdList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{224} + return file_nico_nico_proto_rawDescGZIP(), []int{226} } func (x *TenantOrganizationIdList) GetTenantOrganizationIds() []string { @@ -19394,7 +19516,7 @@ type InterfaceList struct { func (x *InterfaceList) Reset() { *x = InterfaceList{} - mi := &file_nico_nico_proto_msgTypes[225] + mi := &file_nico_nico_proto_msgTypes[227] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19406,7 +19528,7 @@ func (x *InterfaceList) String() string { func (*InterfaceList) ProtoMessage() {} func (x *InterfaceList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[225] + mi := &file_nico_nico_proto_msgTypes[227] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19419,7 +19541,7 @@ func (x *InterfaceList) ProtoReflect() protoreflect.Message { // Deprecated: Use InterfaceList.ProtoReflect.Descriptor instead. func (*InterfaceList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{225} + return file_nico_nico_proto_rawDescGZIP(), []int{227} } func (x *InterfaceList) GetInterfaces() []*MachineInterface { @@ -19438,7 +19560,7 @@ type MachineList struct { func (x *MachineList) Reset() { *x = MachineList{} - mi := &file_nico_nico_proto_msgTypes[226] + mi := &file_nico_nico_proto_msgTypes[228] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19450,7 +19572,7 @@ func (x *MachineList) String() string { func (*MachineList) ProtoMessage() {} func (x *MachineList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[226] + mi := &file_nico_nico_proto_msgTypes[228] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19463,7 +19585,7 @@ func (x *MachineList) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineList.ProtoReflect.Descriptor instead. func (*MachineList) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{226} + return file_nico_nico_proto_rawDescGZIP(), []int{228} } func (x *MachineList) GetMachines() []*Machine { @@ -19482,7 +19604,7 @@ type InterfaceDeleteQuery struct { func (x *InterfaceDeleteQuery) Reset() { *x = InterfaceDeleteQuery{} - mi := &file_nico_nico_proto_msgTypes[227] + mi := &file_nico_nico_proto_msgTypes[229] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19494,7 +19616,7 @@ func (x *InterfaceDeleteQuery) String() string { func (*InterfaceDeleteQuery) ProtoMessage() {} func (x *InterfaceDeleteQuery) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[227] + mi := &file_nico_nico_proto_msgTypes[229] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19507,7 +19629,7 @@ func (x *InterfaceDeleteQuery) ProtoReflect() protoreflect.Message { // Deprecated: Use InterfaceDeleteQuery.ProtoReflect.Descriptor instead. func (*InterfaceDeleteQuery) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{227} + return file_nico_nico_proto_rawDescGZIP(), []int{229} } func (x *InterfaceDeleteQuery) GetId() *MachineInterfaceId { @@ -19527,7 +19649,7 @@ type InterfaceSearchQuery struct { func (x *InterfaceSearchQuery) Reset() { *x = InterfaceSearchQuery{} - mi := &file_nico_nico_proto_msgTypes[228] + mi := &file_nico_nico_proto_msgTypes[230] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19539,7 +19661,7 @@ func (x *InterfaceSearchQuery) String() string { func (*InterfaceSearchQuery) ProtoMessage() {} func (x *InterfaceSearchQuery) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[228] + mi := &file_nico_nico_proto_msgTypes[230] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19552,7 +19674,7 @@ func (x *InterfaceSearchQuery) ProtoReflect() protoreflect.Message { // Deprecated: Use InterfaceSearchQuery.ProtoReflect.Descriptor instead. func (*InterfaceSearchQuery) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{228} + return file_nico_nico_proto_rawDescGZIP(), []int{230} } func (x *InterfaceSearchQuery) GetId() *MachineInterfaceId { @@ -19579,7 +19701,7 @@ type AssignStaticAddressRequest struct { func (x *AssignStaticAddressRequest) Reset() { *x = AssignStaticAddressRequest{} - mi := &file_nico_nico_proto_msgTypes[229] + mi := &file_nico_nico_proto_msgTypes[231] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19591,7 +19713,7 @@ func (x *AssignStaticAddressRequest) String() string { func (*AssignStaticAddressRequest) ProtoMessage() {} func (x *AssignStaticAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[229] + mi := &file_nico_nico_proto_msgTypes[231] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19604,7 +19726,7 @@ func (x *AssignStaticAddressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AssignStaticAddressRequest.ProtoReflect.Descriptor instead. func (*AssignStaticAddressRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{229} + return file_nico_nico_proto_rawDescGZIP(), []int{231} } func (x *AssignStaticAddressRequest) GetInterfaceId() *MachineInterfaceId { @@ -19632,7 +19754,7 @@ type AssignStaticAddressResponse struct { func (x *AssignStaticAddressResponse) Reset() { *x = AssignStaticAddressResponse{} - mi := &file_nico_nico_proto_msgTypes[230] + mi := &file_nico_nico_proto_msgTypes[232] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19644,7 +19766,7 @@ func (x *AssignStaticAddressResponse) String() string { func (*AssignStaticAddressResponse) ProtoMessage() {} func (x *AssignStaticAddressResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[230] + mi := &file_nico_nico_proto_msgTypes[232] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19657,7 +19779,7 @@ func (x *AssignStaticAddressResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AssignStaticAddressResponse.ProtoReflect.Descriptor instead. func (*AssignStaticAddressResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{230} + return file_nico_nico_proto_rawDescGZIP(), []int{232} } func (x *AssignStaticAddressResponse) GetInterfaceId() *MachineInterfaceId { @@ -19691,7 +19813,7 @@ type RemoveStaticAddressRequest struct { func (x *RemoveStaticAddressRequest) Reset() { *x = RemoveStaticAddressRequest{} - mi := &file_nico_nico_proto_msgTypes[231] + mi := &file_nico_nico_proto_msgTypes[233] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19703,7 +19825,7 @@ func (x *RemoveStaticAddressRequest) String() string { func (*RemoveStaticAddressRequest) ProtoMessage() {} func (x *RemoveStaticAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[231] + mi := &file_nico_nico_proto_msgTypes[233] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19716,7 +19838,7 @@ func (x *RemoveStaticAddressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveStaticAddressRequest.ProtoReflect.Descriptor instead. func (*RemoveStaticAddressRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{231} + return file_nico_nico_proto_rawDescGZIP(), []int{233} } func (x *RemoveStaticAddressRequest) GetInterfaceId() *MachineInterfaceId { @@ -19744,7 +19866,7 @@ type RemoveStaticAddressResponse struct { func (x *RemoveStaticAddressResponse) Reset() { *x = RemoveStaticAddressResponse{} - mi := &file_nico_nico_proto_msgTypes[232] + mi := &file_nico_nico_proto_msgTypes[234] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19756,7 +19878,7 @@ func (x *RemoveStaticAddressResponse) String() string { func (*RemoveStaticAddressResponse) ProtoMessage() {} func (x *RemoveStaticAddressResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[232] + mi := &file_nico_nico_proto_msgTypes[234] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19769,7 +19891,7 @@ func (x *RemoveStaticAddressResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveStaticAddressResponse.ProtoReflect.Descriptor instead. func (*RemoveStaticAddressResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{232} + return file_nico_nico_proto_rawDescGZIP(), []int{234} } func (x *RemoveStaticAddressResponse) GetInterfaceId() *MachineInterfaceId { @@ -19802,7 +19924,7 @@ type FindInterfaceAddressesRequest struct { func (x *FindInterfaceAddressesRequest) Reset() { *x = FindInterfaceAddressesRequest{} - mi := &file_nico_nico_proto_msgTypes[233] + mi := &file_nico_nico_proto_msgTypes[235] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19814,7 +19936,7 @@ func (x *FindInterfaceAddressesRequest) String() string { func (*FindInterfaceAddressesRequest) ProtoMessage() {} func (x *FindInterfaceAddressesRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[233] + mi := &file_nico_nico_proto_msgTypes[235] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19827,7 +19949,7 @@ func (x *FindInterfaceAddressesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FindInterfaceAddressesRequest.ProtoReflect.Descriptor instead. func (*FindInterfaceAddressesRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{233} + return file_nico_nico_proto_rawDescGZIP(), []int{235} } func (x *FindInterfaceAddressesRequest) GetInterfaceId() *MachineInterfaceId { @@ -19847,7 +19969,7 @@ type InterfaceAddress struct { func (x *InterfaceAddress) Reset() { *x = InterfaceAddress{} - mi := &file_nico_nico_proto_msgTypes[234] + mi := &file_nico_nico_proto_msgTypes[236] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19859,7 +19981,7 @@ func (x *InterfaceAddress) String() string { func (*InterfaceAddress) ProtoMessage() {} func (x *InterfaceAddress) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[234] + mi := &file_nico_nico_proto_msgTypes[236] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19872,7 +19994,7 @@ func (x *InterfaceAddress) ProtoReflect() protoreflect.Message { // Deprecated: Use InterfaceAddress.ProtoReflect.Descriptor instead. func (*InterfaceAddress) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{234} + return file_nico_nico_proto_rawDescGZIP(), []int{236} } func (x *InterfaceAddress) GetAddress() string { @@ -19899,7 +20021,7 @@ type FindInterfaceAddressesResponse struct { func (x *FindInterfaceAddressesResponse) Reset() { *x = FindInterfaceAddressesResponse{} - mi := &file_nico_nico_proto_msgTypes[235] + mi := &file_nico_nico_proto_msgTypes[237] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19911,7 +20033,7 @@ func (x *FindInterfaceAddressesResponse) String() string { func (*FindInterfaceAddressesResponse) ProtoMessage() {} func (x *FindInterfaceAddressesResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[235] + mi := &file_nico_nico_proto_msgTypes[237] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19924,7 +20046,7 @@ func (x *FindInterfaceAddressesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use FindInterfaceAddressesResponse.ProtoReflect.Descriptor instead. func (*FindInterfaceAddressesResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{235} + return file_nico_nico_proto_rawDescGZIP(), []int{237} } func (x *FindInterfaceAddressesResponse) GetInterfaceId() *MachineInterfaceId { @@ -19955,7 +20077,7 @@ type BmcInfo struct { func (x *BmcInfo) Reset() { *x = BmcInfo{} - mi := &file_nico_nico_proto_msgTypes[236] + mi := &file_nico_nico_proto_msgTypes[238] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19967,7 +20089,7 @@ func (x *BmcInfo) String() string { func (*BmcInfo) ProtoMessage() {} func (x *BmcInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[236] + mi := &file_nico_nico_proto_msgTypes[238] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19980,7 +20102,7 @@ func (x *BmcInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use BmcInfo.ProtoReflect.Descriptor instead. func (*BmcInfo) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{236} + return file_nico_nico_proto_rawDescGZIP(), []int{238} } func (x *BmcInfo) GetIp() string { @@ -20036,7 +20158,7 @@ type SwitchNvosInfo struct { func (x *SwitchNvosInfo) Reset() { *x = SwitchNvosInfo{} - mi := &file_nico_nico_proto_msgTypes[237] + mi := &file_nico_nico_proto_msgTypes[239] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20048,7 +20170,7 @@ func (x *SwitchNvosInfo) String() string { func (*SwitchNvosInfo) ProtoMessage() {} func (x *SwitchNvosInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[237] + mi := &file_nico_nico_proto_msgTypes[239] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20061,7 +20183,7 @@ func (x *SwitchNvosInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SwitchNvosInfo.ProtoReflect.Descriptor instead. func (*SwitchNvosInfo) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{237} + return file_nico_nico_proto_rawDescGZIP(), []int{239} } func (x *SwitchNvosInfo) GetIp() string { @@ -20166,7 +20288,7 @@ type Machine struct { func (x *Machine) Reset() { *x = Machine{} - mi := &file_nico_nico_proto_msgTypes[238] + mi := &file_nico_nico_proto_msgTypes[240] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20178,7 +20300,7 @@ func (x *Machine) String() string { func (*Machine) ProtoMessage() {} func (x *Machine) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[238] + mi := &file_nico_nico_proto_msgTypes[240] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20191,7 +20313,7 @@ func (x *Machine) ProtoReflect() protoreflect.Message { // Deprecated: Use Machine.ProtoReflect.Descriptor instead. func (*Machine) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{238} + return file_nico_nico_proto_rawDescGZIP(), []int{240} } func (x *Machine) GetId() *MachineId { @@ -20498,7 +20620,7 @@ type DpfMachineState struct { func (x *DpfMachineState) Reset() { *x = DpfMachineState{} - mi := &file_nico_nico_proto_msgTypes[239] + mi := &file_nico_nico_proto_msgTypes[241] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20510,7 +20632,7 @@ func (x *DpfMachineState) String() string { func (*DpfMachineState) ProtoMessage() {} func (x *DpfMachineState) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[239] + mi := &file_nico_nico_proto_msgTypes[241] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20523,7 +20645,7 @@ func (x *DpfMachineState) ProtoReflect() protoreflect.Message { // Deprecated: Use DpfMachineState.ProtoReflect.Descriptor instead. func (*DpfMachineState) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{239} + return file_nico_nico_proto_rawDescGZIP(), []int{241} } func (x *DpfMachineState) GetEnabled() bool { @@ -20555,7 +20677,7 @@ type InstanceNetworkRestrictions struct { func (x *InstanceNetworkRestrictions) Reset() { *x = InstanceNetworkRestrictions{} - mi := &file_nico_nico_proto_msgTypes[240] + mi := &file_nico_nico_proto_msgTypes[242] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20567,7 +20689,7 @@ func (x *InstanceNetworkRestrictions) String() string { func (*InstanceNetworkRestrictions) ProtoMessage() {} func (x *InstanceNetworkRestrictions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[240] + mi := &file_nico_nico_proto_msgTypes[242] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20580,7 +20702,7 @@ func (x *InstanceNetworkRestrictions) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceNetworkRestrictions.ProtoReflect.Descriptor instead. func (*InstanceNetworkRestrictions) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{240} + return file_nico_nico_proto_rawDescGZIP(), []int{242} } func (x *InstanceNetworkRestrictions) GetNetworkSegmentMembershipType() InstanceNetworkSegmentMembershipType { @@ -20615,7 +20737,7 @@ type MachineMetadataUpdateRequest struct { func (x *MachineMetadataUpdateRequest) Reset() { *x = MachineMetadataUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[241] + mi := &file_nico_nico_proto_msgTypes[243] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20627,7 +20749,7 @@ func (x *MachineMetadataUpdateRequest) String() string { func (*MachineMetadataUpdateRequest) ProtoMessage() {} func (x *MachineMetadataUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[241] + mi := &file_nico_nico_proto_msgTypes[243] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20640,7 +20762,7 @@ func (x *MachineMetadataUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineMetadataUpdateRequest.ProtoReflect.Descriptor instead. func (*MachineMetadataUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{241} + return file_nico_nico_proto_rawDescGZIP(), []int{243} } func (x *MachineMetadataUpdateRequest) GetMachineId() *MachineId { @@ -20681,7 +20803,7 @@ type RackMetadataUpdateRequest struct { func (x *RackMetadataUpdateRequest) Reset() { *x = RackMetadataUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[242] + mi := &file_nico_nico_proto_msgTypes[244] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20693,7 +20815,7 @@ func (x *RackMetadataUpdateRequest) String() string { func (*RackMetadataUpdateRequest) ProtoMessage() {} func (x *RackMetadataUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[242] + mi := &file_nico_nico_proto_msgTypes[244] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20706,7 +20828,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{242} + return file_nico_nico_proto_rawDescGZIP(), []int{244} } func (x *RackMetadataUpdateRequest) GetRackId() *RackId { @@ -20747,7 +20869,7 @@ type SwitchMetadataUpdateRequest struct { func (x *SwitchMetadataUpdateRequest) Reset() { *x = SwitchMetadataUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[243] + mi := &file_nico_nico_proto_msgTypes[245] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20759,7 +20881,7 @@ func (x *SwitchMetadataUpdateRequest) String() string { func (*SwitchMetadataUpdateRequest) ProtoMessage() {} func (x *SwitchMetadataUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[243] + mi := &file_nico_nico_proto_msgTypes[245] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20772,7 +20894,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{243} + return file_nico_nico_proto_rawDescGZIP(), []int{245} } func (x *SwitchMetadataUpdateRequest) GetSwitchId() *SwitchId { @@ -20813,7 +20935,7 @@ type PowerShelfMetadataUpdateRequest struct { func (x *PowerShelfMetadataUpdateRequest) Reset() { *x = PowerShelfMetadataUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[244] + mi := &file_nico_nico_proto_msgTypes[246] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20825,7 +20947,7 @@ func (x *PowerShelfMetadataUpdateRequest) String() string { func (*PowerShelfMetadataUpdateRequest) ProtoMessage() {} func (x *PowerShelfMetadataUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[244] + mi := &file_nico_nico_proto_msgTypes[246] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20838,7 +20960,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{244} + return file_nico_nico_proto_rawDescGZIP(), []int{246} } func (x *PowerShelfMetadataUpdateRequest) GetPowerShelfId() *PowerShelfId { @@ -20872,7 +20994,7 @@ type DpuAgentInventoryReport struct { func (x *DpuAgentInventoryReport) Reset() { *x = DpuAgentInventoryReport{} - mi := &file_nico_nico_proto_msgTypes[245] + mi := &file_nico_nico_proto_msgTypes[247] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20884,7 +21006,7 @@ func (x *DpuAgentInventoryReport) String() string { func (*DpuAgentInventoryReport) ProtoMessage() {} func (x *DpuAgentInventoryReport) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[245] + mi := &file_nico_nico_proto_msgTypes[247] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20897,7 +21019,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{245} + return file_nico_nico_proto_rawDescGZIP(), []int{247} } func (x *DpuAgentInventoryReport) GetMachineId() *MachineId { @@ -20924,7 +21046,7 @@ type MachineComponentInventory struct { func (x *MachineComponentInventory) Reset() { *x = MachineComponentInventory{} - mi := &file_nico_nico_proto_msgTypes[246] + mi := &file_nico_nico_proto_msgTypes[248] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20936,7 +21058,7 @@ func (x *MachineComponentInventory) String() string { func (*MachineComponentInventory) ProtoMessage() {} func (x *MachineComponentInventory) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[246] + mi := &file_nico_nico_proto_msgTypes[248] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20949,7 +21071,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{246} + return file_nico_nico_proto_rawDescGZIP(), []int{248} } func (x *MachineComponentInventory) GetComponents() []*MachineInventorySoftwareComponent { @@ -20970,7 +21092,7 @@ type MachineInventorySoftwareComponent struct { func (x *MachineInventorySoftwareComponent) Reset() { *x = MachineInventorySoftwareComponent{} - mi := &file_nico_nico_proto_msgTypes[247] + mi := &file_nico_nico_proto_msgTypes[249] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20982,7 +21104,7 @@ func (x *MachineInventorySoftwareComponent) String() string { func (*MachineInventorySoftwareComponent) ProtoMessage() {} func (x *MachineInventorySoftwareComponent) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[247] + mi := &file_nico_nico_proto_msgTypes[249] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20995,7 +21117,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{247} + return file_nico_nico_proto_rawDescGZIP(), []int{249} } func (x *MachineInventorySoftwareComponent) GetName() string { @@ -21030,7 +21152,7 @@ type HealthSourceOrigin struct { func (x *HealthSourceOrigin) Reset() { *x = HealthSourceOrigin{} - mi := &file_nico_nico_proto_msgTypes[248] + mi := &file_nico_nico_proto_msgTypes[250] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21042,7 +21164,7 @@ func (x *HealthSourceOrigin) String() string { func (*HealthSourceOrigin) ProtoMessage() {} func (x *HealthSourceOrigin) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[248] + mi := &file_nico_nico_proto_msgTypes[250] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21055,7 +21177,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{248} + return file_nico_nico_proto_rawDescGZIP(), []int{250} } func (x *HealthSourceOrigin) GetMode() HealthReportApplyMode { @@ -21087,7 +21209,7 @@ type ControllerStateReason struct { func (x *ControllerStateReason) Reset() { *x = ControllerStateReason{} - mi := &file_nico_nico_proto_msgTypes[249] + mi := &file_nico_nico_proto_msgTypes[251] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21099,7 +21221,7 @@ func (x *ControllerStateReason) String() string { func (*ControllerStateReason) ProtoMessage() {} func (x *ControllerStateReason) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[249] + mi := &file_nico_nico_proto_msgTypes[251] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21112,7 +21234,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{249} + return file_nico_nico_proto_rawDescGZIP(), []int{251} } func (x *ControllerStateReason) GetOutcome() ControllerStateOutcome { @@ -21147,7 +21269,7 @@ type ControllerStateSourceReference struct { func (x *ControllerStateSourceReference) Reset() { *x = ControllerStateSourceReference{} - mi := &file_nico_nico_proto_msgTypes[250] + mi := &file_nico_nico_proto_msgTypes[252] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21159,7 +21281,7 @@ func (x *ControllerStateSourceReference) String() string { func (*ControllerStateSourceReference) ProtoMessage() {} func (x *ControllerStateSourceReference) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[250] + mi := &file_nico_nico_proto_msgTypes[252] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21172,7 +21294,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{250} + return file_nico_nico_proto_rawDescGZIP(), []int{252} } func (x *ControllerStateSourceReference) GetFile() string { @@ -21206,7 +21328,7 @@ type StateSla struct { func (x *StateSla) Reset() { *x = StateSla{} - mi := &file_nico_nico_proto_msgTypes[251] + mi := &file_nico_nico_proto_msgTypes[253] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21218,7 +21340,7 @@ func (x *StateSla) String() string { func (*StateSla) ProtoMessage() {} func (x *StateSla) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[251] + mi := &file_nico_nico_proto_msgTypes[253] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21231,7 +21353,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{251} + return file_nico_nico_proto_rawDescGZIP(), []int{253} } func (x *StateSla) GetSla() *durationpb.Duration { @@ -21261,7 +21383,7 @@ type InstanceTenantStatus struct { func (x *InstanceTenantStatus) Reset() { *x = InstanceTenantStatus{} - mi := &file_nico_nico_proto_msgTypes[252] + mi := &file_nico_nico_proto_msgTypes[254] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21273,7 +21395,7 @@ func (x *InstanceTenantStatus) String() string { func (*InstanceTenantStatus) ProtoMessage() {} func (x *InstanceTenantStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[252] + mi := &file_nico_nico_proto_msgTypes[254] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21286,7 +21408,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{252} + return file_nico_nico_proto_rawDescGZIP(), []int{254} } func (x *InstanceTenantStatus) GetState() TenantState { @@ -21317,7 +21439,7 @@ type MachineEvent struct { func (x *MachineEvent) Reset() { *x = MachineEvent{} - mi := &file_nico_nico_proto_msgTypes[253] + mi := &file_nico_nico_proto_msgTypes[255] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21329,7 +21451,7 @@ func (x *MachineEvent) String() string { func (*MachineEvent) ProtoMessage() {} func (x *MachineEvent) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[253] + mi := &file_nico_nico_proto_msgTypes[255] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21342,7 +21464,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{253} + return file_nico_nico_proto_rawDescGZIP(), []int{255} } func (x *MachineEvent) GetEvent() string { @@ -21392,7 +21514,7 @@ type MachineInterface struct { func (x *MachineInterface) Reset() { *x = MachineInterface{} - mi := &file_nico_nico_proto_msgTypes[254] + mi := &file_nico_nico_proto_msgTypes[256] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21404,7 +21526,7 @@ func (x *MachineInterface) String() string { func (*MachineInterface) ProtoMessage() {} func (x *MachineInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[254] + mi := &file_nico_nico_proto_msgTypes[256] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21417,7 +21539,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{254} + return file_nico_nico_proto_rawDescGZIP(), []int{256} } func (x *MachineInterface) GetId() *MachineInterfaceId { @@ -21553,7 +21675,7 @@ type InfinibandStatusObservation struct { func (x *InfinibandStatusObservation) Reset() { *x = InfinibandStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[255] + mi := &file_nico_nico_proto_msgTypes[257] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21565,7 +21687,7 @@ func (x *InfinibandStatusObservation) String() string { func (*InfinibandStatusObservation) ProtoMessage() {} func (x *InfinibandStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[255] + mi := &file_nico_nico_proto_msgTypes[257] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21578,7 +21700,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{255} + return file_nico_nico_proto_rawDescGZIP(), []int{257} } func (x *InfinibandStatusObservation) GetIbInterfaces() []*MachineIbInterface { @@ -21630,7 +21752,7 @@ type MachineIbInterface struct { func (x *MachineIbInterface) Reset() { *x = MachineIbInterface{} - mi := &file_nico_nico_proto_msgTypes[256] + mi := &file_nico_nico_proto_msgTypes[258] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21642,7 +21764,7 @@ func (x *MachineIbInterface) String() string { func (*MachineIbInterface) ProtoMessage() {} func (x *MachineIbInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[256] + mi := &file_nico_nico_proto_msgTypes[258] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21655,7 +21777,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{256} + return file_nico_nico_proto_rawDescGZIP(), []int{258} } func (x *MachineIbInterface) GetPfGuid() string { @@ -21734,7 +21856,7 @@ type DhcpDiscovery struct { func (x *DhcpDiscovery) Reset() { *x = DhcpDiscovery{} - mi := &file_nico_nico_proto_msgTypes[257] + mi := &file_nico_nico_proto_msgTypes[259] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21746,7 +21868,7 @@ func (x *DhcpDiscovery) String() string { func (*DhcpDiscovery) ProtoMessage() {} func (x *DhcpDiscovery) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[257] + mi := &file_nico_nico_proto_msgTypes[259] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21759,7 +21881,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{257} + return file_nico_nico_proto_rawDescGZIP(), []int{259} } func (x *DhcpDiscovery) GetMacAddress() string { @@ -21846,7 +21968,7 @@ type ExpireDhcpLeaseRequest struct { func (x *ExpireDhcpLeaseRequest) Reset() { *x = ExpireDhcpLeaseRequest{} - mi := &file_nico_nico_proto_msgTypes[258] + mi := &file_nico_nico_proto_msgTypes[260] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21858,7 +21980,7 @@ func (x *ExpireDhcpLeaseRequest) String() string { func (*ExpireDhcpLeaseRequest) ProtoMessage() {} func (x *ExpireDhcpLeaseRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[258] + mi := &file_nico_nico_proto_msgTypes[260] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21871,7 +21993,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{258} + return file_nico_nico_proto_rawDescGZIP(), []int{260} } func (x *ExpireDhcpLeaseRequest) GetIpAddress() string { @@ -21898,7 +22020,7 @@ type ExpireDhcpLeaseResponse struct { func (x *ExpireDhcpLeaseResponse) Reset() { *x = ExpireDhcpLeaseResponse{} - mi := &file_nico_nico_proto_msgTypes[259] + mi := &file_nico_nico_proto_msgTypes[261] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21910,7 +22032,7 @@ func (x *ExpireDhcpLeaseResponse) String() string { func (*ExpireDhcpLeaseResponse) ProtoMessage() {} func (x *ExpireDhcpLeaseResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[259] + mi := &file_nico_nico_proto_msgTypes[261] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21923,7 +22045,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{259} + return file_nico_nico_proto_rawDescGZIP(), []int{261} } func (x *ExpireDhcpLeaseResponse) GetIpAddress() string { @@ -21971,7 +22093,7 @@ type DhcpRecord struct { func (x *DhcpRecord) Reset() { *x = DhcpRecord{} - mi := &file_nico_nico_proto_msgTypes[260] + mi := &file_nico_nico_proto_msgTypes[262] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21983,7 +22105,7 @@ func (x *DhcpRecord) String() string { func (*DhcpRecord) ProtoMessage() {} func (x *DhcpRecord) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[260] + mi := &file_nico_nico_proto_msgTypes[262] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21996,7 +22118,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{260} + return file_nico_nico_proto_rawDescGZIP(), []int{262} } func (x *DhcpRecord) GetMachineId() *MachineId { @@ -22113,7 +22235,7 @@ type NetworkSegmentList struct { func (x *NetworkSegmentList) Reset() { *x = NetworkSegmentList{} - mi := &file_nico_nico_proto_msgTypes[261] + mi := &file_nico_nico_proto_msgTypes[263] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22125,7 +22247,7 @@ func (x *NetworkSegmentList) String() string { func (*NetworkSegmentList) ProtoMessage() {} func (x *NetworkSegmentList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[261] + mi := &file_nico_nico_proto_msgTypes[263] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22138,7 +22260,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{261} + return file_nico_nico_proto_rawDescGZIP(), []int{263} } func (x *NetworkSegmentList) GetNetworkSegments() []*NetworkSegment { @@ -22158,7 +22280,7 @@ type SSHKeyValidationRequest struct { func (x *SSHKeyValidationRequest) Reset() { *x = SSHKeyValidationRequest{} - mi := &file_nico_nico_proto_msgTypes[262] + mi := &file_nico_nico_proto_msgTypes[264] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22170,7 +22292,7 @@ func (x *SSHKeyValidationRequest) String() string { func (*SSHKeyValidationRequest) ProtoMessage() {} func (x *SSHKeyValidationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[262] + mi := &file_nico_nico_proto_msgTypes[264] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22183,7 +22305,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{262} + return file_nico_nico_proto_rawDescGZIP(), []int{264} } func (x *SSHKeyValidationRequest) GetUser() string { @@ -22210,7 +22332,7 @@ type SSHKeyValidationResponse struct { func (x *SSHKeyValidationResponse) Reset() { *x = SSHKeyValidationResponse{} - mi := &file_nico_nico_proto_msgTypes[263] + mi := &file_nico_nico_proto_msgTypes[265] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22222,7 +22344,7 @@ func (x *SSHKeyValidationResponse) String() string { func (*SSHKeyValidationResponse) ProtoMessage() {} func (x *SSHKeyValidationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[263] + mi := &file_nico_nico_proto_msgTypes[265] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22235,7 +22357,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{263} + return file_nico_nico_proto_rawDescGZIP(), []int{265} } func (x *SSHKeyValidationResponse) GetIsAuthenticated() bool { @@ -22261,7 +22383,7 @@ type GetBmcCredentialsRequest struct { func (x *GetBmcCredentialsRequest) Reset() { *x = GetBmcCredentialsRequest{} - mi := &file_nico_nico_proto_msgTypes[264] + mi := &file_nico_nico_proto_msgTypes[266] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22273,7 +22395,7 @@ func (x *GetBmcCredentialsRequest) String() string { func (*GetBmcCredentialsRequest) ProtoMessage() {} func (x *GetBmcCredentialsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[264] + mi := &file_nico_nico_proto_msgTypes[266] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22286,7 +22408,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{264} + return file_nico_nico_proto_rawDescGZIP(), []int{266} } func (x *GetBmcCredentialsRequest) GetMacAddr() string { @@ -22305,7 +22427,7 @@ type GetSwitchNvosCredentialsRequest struct { func (x *GetSwitchNvosCredentialsRequest) Reset() { *x = GetSwitchNvosCredentialsRequest{} - mi := &file_nico_nico_proto_msgTypes[265] + mi := &file_nico_nico_proto_msgTypes[267] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22317,7 +22439,7 @@ func (x *GetSwitchNvosCredentialsRequest) String() string { func (*GetSwitchNvosCredentialsRequest) ProtoMessage() {} func (x *GetSwitchNvosCredentialsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[265] + mi := &file_nico_nico_proto_msgTypes[267] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22330,7 +22452,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{265} + return file_nico_nico_proto_rawDescGZIP(), []int{267} } func (x *GetSwitchNvosCredentialsRequest) GetSwitchId() *SwitchId { @@ -22349,7 +22471,7 @@ type GetBmcCredentialsResponse struct { func (x *GetBmcCredentialsResponse) Reset() { *x = GetBmcCredentialsResponse{} - mi := &file_nico_nico_proto_msgTypes[266] + mi := &file_nico_nico_proto_msgTypes[268] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22361,7 +22483,7 @@ func (x *GetBmcCredentialsResponse) String() string { func (*GetBmcCredentialsResponse) ProtoMessage() {} func (x *GetBmcCredentialsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[266] + mi := &file_nico_nico_proto_msgTypes[268] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22374,7 +22496,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{266} + return file_nico_nico_proto_rawDescGZIP(), []int{268} } func (x *GetBmcCredentialsResponse) GetCredentials() *BmcCredentials { @@ -22397,7 +22519,7 @@ type BmcCredentials struct { func (x *BmcCredentials) Reset() { *x = BmcCredentials{} - mi := &file_nico_nico_proto_msgTypes[267] + mi := &file_nico_nico_proto_msgTypes[269] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22409,7 +22531,7 @@ func (x *BmcCredentials) String() string { func (*BmcCredentials) ProtoMessage() {} func (x *BmcCredentials) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[267] + mi := &file_nico_nico_proto_msgTypes[269] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22422,7 +22544,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{267} + return file_nico_nico_proto_rawDescGZIP(), []int{269} } func (x *BmcCredentials) GetType() isBmcCredentials_Type { @@ -22474,7 +22596,7 @@ type GetSiteExplorationRequest struct { func (x *GetSiteExplorationRequest) Reset() { *x = GetSiteExplorationRequest{} - mi := &file_nico_nico_proto_msgTypes[268] + mi := &file_nico_nico_proto_msgTypes[270] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22486,7 +22608,7 @@ func (x *GetSiteExplorationRequest) String() string { func (*GetSiteExplorationRequest) ProtoMessage() {} func (x *GetSiteExplorationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[268] + mi := &file_nico_nico_proto_msgTypes[270] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22499,7 +22621,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{268} + return file_nico_nico_proto_rawDescGZIP(), []int{270} } type ClearSiteExplorationErrorRequest struct { @@ -22512,7 +22634,7 @@ type ClearSiteExplorationErrorRequest struct { func (x *ClearSiteExplorationErrorRequest) Reset() { *x = ClearSiteExplorationErrorRequest{} - mi := &file_nico_nico_proto_msgTypes[269] + mi := &file_nico_nico_proto_msgTypes[271] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22524,7 +22646,7 @@ func (x *ClearSiteExplorationErrorRequest) String() string { func (*ClearSiteExplorationErrorRequest) ProtoMessage() {} func (x *ClearSiteExplorationErrorRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[269] + mi := &file_nico_nico_proto_msgTypes[271] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22537,7 +22659,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{269} + return file_nico_nico_proto_rawDescGZIP(), []int{271} } func (x *ClearSiteExplorationErrorRequest) GetIpAddress() string { @@ -22560,7 +22682,7 @@ type ReExploreEndpointRequest struct { func (x *ReExploreEndpointRequest) Reset() { *x = ReExploreEndpointRequest{} - mi := &file_nico_nico_proto_msgTypes[270] + mi := &file_nico_nico_proto_msgTypes[272] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22572,7 +22694,7 @@ func (x *ReExploreEndpointRequest) String() string { func (*ReExploreEndpointRequest) ProtoMessage() {} func (x *ReExploreEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[270] + mi := &file_nico_nico_proto_msgTypes[272] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22585,7 +22707,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{270} + return file_nico_nico_proto_rawDescGZIP(), []int{272} } func (x *ReExploreEndpointRequest) GetIpAddress() string { @@ -22612,7 +22734,7 @@ type RefreshEndpointReportRequest struct { func (x *RefreshEndpointReportRequest) Reset() { *x = RefreshEndpointReportRequest{} - mi := &file_nico_nico_proto_msgTypes[271] + mi := &file_nico_nico_proto_msgTypes[273] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22624,7 +22746,7 @@ func (x *RefreshEndpointReportRequest) String() string { func (*RefreshEndpointReportRequest) ProtoMessage() {} func (x *RefreshEndpointReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[271] + mi := &file_nico_nico_proto_msgTypes[273] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22637,7 +22759,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{271} + return file_nico_nico_proto_rawDescGZIP(), []int{273} } func (x *RefreshEndpointReportRequest) GetIpAddress() string { @@ -22657,7 +22779,7 @@ type DeleteExploredEndpointRequest struct { func (x *DeleteExploredEndpointRequest) Reset() { *x = DeleteExploredEndpointRequest{} - mi := &file_nico_nico_proto_msgTypes[272] + mi := &file_nico_nico_proto_msgTypes[274] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22669,7 +22791,7 @@ func (x *DeleteExploredEndpointRequest) String() string { func (*DeleteExploredEndpointRequest) ProtoMessage() {} func (x *DeleteExploredEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[272] + mi := &file_nico_nico_proto_msgTypes[274] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22682,7 +22804,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{272} + return file_nico_nico_proto_rawDescGZIP(), []int{274} } func (x *DeleteExploredEndpointRequest) GetIpAddress() string { @@ -22704,7 +22826,7 @@ type PauseExploredEndpointRemediationRequest struct { func (x *PauseExploredEndpointRemediationRequest) Reset() { *x = PauseExploredEndpointRemediationRequest{} - mi := &file_nico_nico_proto_msgTypes[273] + mi := &file_nico_nico_proto_msgTypes[275] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22716,7 +22838,7 @@ func (x *PauseExploredEndpointRemediationRequest) String() string { func (*PauseExploredEndpointRemediationRequest) ProtoMessage() {} func (x *PauseExploredEndpointRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[273] + mi := &file_nico_nico_proto_msgTypes[275] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22729,7 +22851,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{273} + return file_nico_nico_proto_rawDescGZIP(), []int{275} } func (x *PauseExploredEndpointRemediationRequest) GetIpAddress() string { @@ -22758,7 +22880,7 @@ type DeleteExploredEndpointResponse struct { func (x *DeleteExploredEndpointResponse) Reset() { *x = DeleteExploredEndpointResponse{} - mi := &file_nico_nico_proto_msgTypes[274] + mi := &file_nico_nico_proto_msgTypes[276] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22770,7 +22892,7 @@ func (x *DeleteExploredEndpointResponse) String() string { func (*DeleteExploredEndpointResponse) ProtoMessage() {} func (x *DeleteExploredEndpointResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[274] + mi := &file_nico_nico_proto_msgTypes[276] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22783,7 +22905,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{274} + return file_nico_nico_proto_rawDescGZIP(), []int{276} } func (x *DeleteExploredEndpointResponse) GetDeleted() bool { @@ -22812,7 +22934,7 @@ type BmcEndpointRequest struct { func (x *BmcEndpointRequest) Reset() { *x = BmcEndpointRequest{} - mi := &file_nico_nico_proto_msgTypes[275] + mi := &file_nico_nico_proto_msgTypes[277] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22824,7 +22946,7 @@ func (x *BmcEndpointRequest) String() string { func (*BmcEndpointRequest) ProtoMessage() {} func (x *BmcEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[275] + mi := &file_nico_nico_proto_msgTypes[277] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22837,7 +22959,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{275} + return file_nico_nico_proto_rawDescGZIP(), []int{277} } func (x *BmcEndpointRequest) GetIpAddress() string { @@ -22870,7 +22992,7 @@ type SshTimeoutConfig struct { func (x *SshTimeoutConfig) Reset() { *x = SshTimeoutConfig{} - mi := &file_nico_nico_proto_msgTypes[276] + mi := &file_nico_nico_proto_msgTypes[278] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22882,7 +23004,7 @@ func (x *SshTimeoutConfig) String() string { func (*SshTimeoutConfig) ProtoMessage() {} func (x *SshTimeoutConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[276] + mi := &file_nico_nico_proto_msgTypes[278] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22895,7 +23017,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{276} + return file_nico_nico_proto_rawDescGZIP(), []int{278} } func (x *SshTimeoutConfig) GetTcpConnectionTimeout() uint64 { @@ -22936,7 +23058,7 @@ type SshRequest struct { func (x *SshRequest) Reset() { *x = SshRequest{} - mi := &file_nico_nico_proto_msgTypes[277] + mi := &file_nico_nico_proto_msgTypes[279] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22948,7 +23070,7 @@ func (x *SshRequest) String() string { func (*SshRequest) ProtoMessage() {} func (x *SshRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[277] + mi := &file_nico_nico_proto_msgTypes[279] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22961,7 +23083,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{277} + return file_nico_nico_proto_rawDescGZIP(), []int{279} } func (x *SshRequest) GetEndpointRequest() *BmcEndpointRequest { @@ -22986,7 +23108,7 @@ type CopyBfbToDpuRshimRequest struct { func (x *CopyBfbToDpuRshimRequest) Reset() { *x = CopyBfbToDpuRshimRequest{} - mi := &file_nico_nico_proto_msgTypes[278] + mi := &file_nico_nico_proto_msgTypes[280] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22998,7 +23120,7 @@ func (x *CopyBfbToDpuRshimRequest) String() string { func (*CopyBfbToDpuRshimRequest) ProtoMessage() {} func (x *CopyBfbToDpuRshimRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[278] + mi := &file_nico_nico_proto_msgTypes[280] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23011,7 +23133,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{278} + return file_nico_nico_proto_rawDescGZIP(), []int{280} } func (x *CopyBfbToDpuRshimRequest) GetSshRequest() *SshRequest { @@ -23048,7 +23170,7 @@ type UpdateMachineHardwareInfoRequest struct { func (x *UpdateMachineHardwareInfoRequest) Reset() { *x = UpdateMachineHardwareInfoRequest{} - mi := &file_nico_nico_proto_msgTypes[279] + mi := &file_nico_nico_proto_msgTypes[281] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23060,7 +23182,7 @@ func (x *UpdateMachineHardwareInfoRequest) String() string { func (*UpdateMachineHardwareInfoRequest) ProtoMessage() {} func (x *UpdateMachineHardwareInfoRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[279] + mi := &file_nico_nico_proto_msgTypes[281] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23073,7 +23195,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{279} + return file_nico_nico_proto_rawDescGZIP(), []int{281} } func (x *UpdateMachineHardwareInfoRequest) GetMachineId() *MachineId { @@ -23106,7 +23228,7 @@ type MachineHardwareInfo struct { func (x *MachineHardwareInfo) Reset() { *x = MachineHardwareInfo{} - mi := &file_nico_nico_proto_msgTypes[280] + mi := &file_nico_nico_proto_msgTypes[282] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23118,7 +23240,7 @@ func (x *MachineHardwareInfo) String() string { func (*MachineHardwareInfo) ProtoMessage() {} func (x *MachineHardwareInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[280] + mi := &file_nico_nico_proto_msgTypes[282] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23131,7 +23253,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{280} + return file_nico_nico_proto_rawDescGZIP(), []int{282} } func (x *MachineHardwareInfo) GetGpus() []*Gpu { @@ -23150,7 +23272,7 @@ type ManagedHostNetworkConfigRequest struct { func (x *ManagedHostNetworkConfigRequest) Reset() { *x = ManagedHostNetworkConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[281] + mi := &file_nico_nico_proto_msgTypes[283] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23162,7 +23284,7 @@ func (x *ManagedHostNetworkConfigRequest) String() string { func (*ManagedHostNetworkConfigRequest) ProtoMessage() {} func (x *ManagedHostNetworkConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[281] + mi := &file_nico_nico_proto_msgTypes[283] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23175,7 +23297,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{281} + return file_nico_nico_proto_rawDescGZIP(), []int{283} } func (x *ManagedHostNetworkConfigRequest) GetDpuMachineId() *MachineId { @@ -23305,7 +23427,7 @@ type ManagedHostNetworkConfigResponse struct { func (x *ManagedHostNetworkConfigResponse) Reset() { *x = ManagedHostNetworkConfigResponse{} - mi := &file_nico_nico_proto_msgTypes[282] + mi := &file_nico_nico_proto_msgTypes[284] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23317,7 +23439,7 @@ func (x *ManagedHostNetworkConfigResponse) String() string { func (*ManagedHostNetworkConfigResponse) ProtoMessage() {} func (x *ManagedHostNetworkConfigResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[282] + mi := &file_nico_nico_proto_msgTypes[284] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23330,7 +23452,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{282} + return file_nico_nico_proto_rawDescGZIP(), []int{284} } func (x *ManagedHostNetworkConfigResponse) GetAsn() uint32 { @@ -23621,7 +23743,7 @@ type TrafficInterceptConfig struct { func (x *TrafficInterceptConfig) Reset() { *x = TrafficInterceptConfig{} - mi := &file_nico_nico_proto_msgTypes[283] + mi := &file_nico_nico_proto_msgTypes[285] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23633,7 +23755,7 @@ func (x *TrafficInterceptConfig) String() string { func (*TrafficInterceptConfig) ProtoMessage() {} func (x *TrafficInterceptConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[283] + mi := &file_nico_nico_proto_msgTypes[285] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23646,7 +23768,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{283} + return file_nico_nico_proto_rawDescGZIP(), []int{285} } func (x *TrafficInterceptConfig) GetAdditionalOverlayVtepIp() string { @@ -23703,7 +23825,7 @@ type TrafficInterceptBridging struct { func (x *TrafficInterceptBridging) Reset() { *x = TrafficInterceptBridging{} - mi := &file_nico_nico_proto_msgTypes[284] + mi := &file_nico_nico_proto_msgTypes[286] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23715,7 +23837,7 @@ func (x *TrafficInterceptBridging) String() string { func (*TrafficInterceptBridging) ProtoMessage() {} func (x *TrafficInterceptBridging) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[284] + mi := &file_nico_nico_proto_msgTypes[286] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23728,7 +23850,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{284} + return file_nico_nico_proto_rawDescGZIP(), []int{286} } func (x *TrafficInterceptBridging) GetInternalBridgeRoutingPrefix() string { @@ -23789,7 +23911,7 @@ type ManagedHostDpuExtensionServiceConfig struct { func (x *ManagedHostDpuExtensionServiceConfig) Reset() { *x = ManagedHostDpuExtensionServiceConfig{} - mi := &file_nico_nico_proto_msgTypes[285] + mi := &file_nico_nico_proto_msgTypes[287] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23801,7 +23923,7 @@ func (x *ManagedHostDpuExtensionServiceConfig) String() string { func (*ManagedHostDpuExtensionServiceConfig) ProtoMessage() {} func (x *ManagedHostDpuExtensionServiceConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[285] + mi := &file_nico_nico_proto_msgTypes[287] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23814,7 +23936,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{285} + return file_nico_nico_proto_rawDescGZIP(), []int{287} } func (x *ManagedHostDpuExtensionServiceConfig) GetServiceId() string { @@ -23883,7 +24005,7 @@ type ManagedHostQuarantineState struct { func (x *ManagedHostQuarantineState) Reset() { *x = ManagedHostQuarantineState{} - mi := &file_nico_nico_proto_msgTypes[286] + mi := &file_nico_nico_proto_msgTypes[288] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23895,7 +24017,7 @@ func (x *ManagedHostQuarantineState) String() string { func (*ManagedHostQuarantineState) ProtoMessage() {} func (x *ManagedHostQuarantineState) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[286] + mi := &file_nico_nico_proto_msgTypes[288] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23908,7 +24030,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{286} + return file_nico_nico_proto_rawDescGZIP(), []int{288} } func (x *ManagedHostQuarantineState) GetMode() ManagedHostQuarantineMode { @@ -23934,7 +24056,7 @@ type GetManagedHostQuarantineStateRequest struct { func (x *GetManagedHostQuarantineStateRequest) Reset() { *x = GetManagedHostQuarantineStateRequest{} - mi := &file_nico_nico_proto_msgTypes[287] + mi := &file_nico_nico_proto_msgTypes[289] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23946,7 +24068,7 @@ func (x *GetManagedHostQuarantineStateRequest) String() string { func (*GetManagedHostQuarantineStateRequest) ProtoMessage() {} func (x *GetManagedHostQuarantineStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[287] + mi := &file_nico_nico_proto_msgTypes[289] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23959,7 +24081,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{287} + return file_nico_nico_proto_rawDescGZIP(), []int{289} } func (x *GetManagedHostQuarantineStateRequest) GetMachineId() *MachineId { @@ -23978,7 +24100,7 @@ type GetManagedHostQuarantineStateResponse struct { func (x *GetManagedHostQuarantineStateResponse) Reset() { *x = GetManagedHostQuarantineStateResponse{} - mi := &file_nico_nico_proto_msgTypes[288] + mi := &file_nico_nico_proto_msgTypes[290] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23990,7 +24112,7 @@ func (x *GetManagedHostQuarantineStateResponse) String() string { func (*GetManagedHostQuarantineStateResponse) ProtoMessage() {} func (x *GetManagedHostQuarantineStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[288] + mi := &file_nico_nico_proto_msgTypes[290] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24003,7 +24125,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{288} + return file_nico_nico_proto_rawDescGZIP(), []int{290} } func (x *GetManagedHostQuarantineStateResponse) GetQuarantineState() *ManagedHostQuarantineState { @@ -24023,7 +24145,7 @@ type SetManagedHostQuarantineStateRequest struct { func (x *SetManagedHostQuarantineStateRequest) Reset() { *x = SetManagedHostQuarantineStateRequest{} - mi := &file_nico_nico_proto_msgTypes[289] + mi := &file_nico_nico_proto_msgTypes[291] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24035,7 +24157,7 @@ func (x *SetManagedHostQuarantineStateRequest) String() string { func (*SetManagedHostQuarantineStateRequest) ProtoMessage() {} func (x *SetManagedHostQuarantineStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[289] + mi := &file_nico_nico_proto_msgTypes[291] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24048,7 +24170,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{289} + return file_nico_nico_proto_rawDescGZIP(), []int{291} } func (x *SetManagedHostQuarantineStateRequest) GetMachineId() *MachineId { @@ -24074,7 +24196,7 @@ type SetManagedHostQuarantineStateResponse struct { func (x *SetManagedHostQuarantineStateResponse) Reset() { *x = SetManagedHostQuarantineStateResponse{} - mi := &file_nico_nico_proto_msgTypes[290] + mi := &file_nico_nico_proto_msgTypes[292] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24086,7 +24208,7 @@ func (x *SetManagedHostQuarantineStateResponse) String() string { func (*SetManagedHostQuarantineStateResponse) ProtoMessage() {} func (x *SetManagedHostQuarantineStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[290] + mi := &file_nico_nico_proto_msgTypes[292] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24099,7 +24221,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{290} + return file_nico_nico_proto_rawDescGZIP(), []int{292} } func (x *SetManagedHostQuarantineStateResponse) GetPriorQuarantineState() *ManagedHostQuarantineState { @@ -24118,7 +24240,7 @@ type ClearManagedHostQuarantineStateRequest struct { func (x *ClearManagedHostQuarantineStateRequest) Reset() { *x = ClearManagedHostQuarantineStateRequest{} - mi := &file_nico_nico_proto_msgTypes[291] + mi := &file_nico_nico_proto_msgTypes[293] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24130,7 +24252,7 @@ func (x *ClearManagedHostQuarantineStateRequest) String() string { func (*ClearManagedHostQuarantineStateRequest) ProtoMessage() {} func (x *ClearManagedHostQuarantineStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[291] + mi := &file_nico_nico_proto_msgTypes[293] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24143,7 +24265,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{291} + return file_nico_nico_proto_rawDescGZIP(), []int{293} } func (x *ClearManagedHostQuarantineStateRequest) GetMachineId() *MachineId { @@ -24162,7 +24284,7 @@ type ClearManagedHostQuarantineStateResponse struct { func (x *ClearManagedHostQuarantineStateResponse) Reset() { *x = ClearManagedHostQuarantineStateResponse{} - mi := &file_nico_nico_proto_msgTypes[292] + mi := &file_nico_nico_proto_msgTypes[294] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24174,7 +24296,7 @@ func (x *ClearManagedHostQuarantineStateResponse) String() string { func (*ClearManagedHostQuarantineStateResponse) ProtoMessage() {} func (x *ClearManagedHostQuarantineStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[292] + mi := &file_nico_nico_proto_msgTypes[294] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24187,7 +24309,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{292} + return file_nico_nico_proto_rawDescGZIP(), []int{294} } func (x *ClearManagedHostQuarantineStateResponse) GetPriorQuarantineState() *ManagedHostQuarantineState { @@ -24209,7 +24331,7 @@ type ManagedHostNetworkConfig struct { func (x *ManagedHostNetworkConfig) Reset() { *x = ManagedHostNetworkConfig{} - mi := &file_nico_nico_proto_msgTypes[293] + mi := &file_nico_nico_proto_msgTypes[295] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24221,7 +24343,7 @@ func (x *ManagedHostNetworkConfig) String() string { func (*ManagedHostNetworkConfig) ProtoMessage() {} func (x *ManagedHostNetworkConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[293] + mi := &file_nico_nico_proto_msgTypes[295] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24234,7 +24356,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{293} + return file_nico_nico_proto_rawDescGZIP(), []int{295} } func (x *ManagedHostNetworkConfig) GetLoopbackIp() string { @@ -24350,7 +24472,7 @@ type FlatInterfaceConfig struct { func (x *FlatInterfaceConfig) Reset() { *x = FlatInterfaceConfig{} - mi := &file_nico_nico_proto_msgTypes[294] + mi := &file_nico_nico_proto_msgTypes[296] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24362,7 +24484,7 @@ func (x *FlatInterfaceConfig) String() string { func (*FlatInterfaceConfig) ProtoMessage() {} func (x *FlatInterfaceConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[294] + mi := &file_nico_nico_proto_msgTypes[296] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24375,7 +24497,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{294} + return file_nico_nico_proto_rawDescGZIP(), []int{296} } func (x *FlatInterfaceConfig) GetFunctionType() InterfaceFunctionType { @@ -24548,7 +24670,7 @@ type FlatInterfaceRoutingProfile struct { func (x *FlatInterfaceRoutingProfile) Reset() { *x = FlatInterfaceRoutingProfile{} - mi := &file_nico_nico_proto_msgTypes[295] + mi := &file_nico_nico_proto_msgTypes[297] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24560,7 +24682,7 @@ func (x *FlatInterfaceRoutingProfile) String() string { func (*FlatInterfaceRoutingProfile) ProtoMessage() {} func (x *FlatInterfaceRoutingProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[295] + mi := &file_nico_nico_proto_msgTypes[297] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24573,7 +24695,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{295} + return file_nico_nico_proto_rawDescGZIP(), []int{297} } func (x *FlatInterfaceRoutingProfile) GetAllowedAnycastPrefixes() []*PrefixFilterPolicyEntry { @@ -24600,7 +24722,7 @@ type FlatInterfaceIpv6Config struct { func (x *FlatInterfaceIpv6Config) Reset() { *x = FlatInterfaceIpv6Config{} - mi := &file_nico_nico_proto_msgTypes[296] + mi := &file_nico_nico_proto_msgTypes[298] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24612,7 +24734,7 @@ func (x *FlatInterfaceIpv6Config) String() string { func (*FlatInterfaceIpv6Config) ProtoMessage() {} func (x *FlatInterfaceIpv6Config) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[296] + mi := &file_nico_nico_proto_msgTypes[298] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24625,7 +24747,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{296} + return file_nico_nico_proto_rawDescGZIP(), []int{298} } func (x *FlatInterfaceIpv6Config) GetIp() string { @@ -24662,7 +24784,7 @@ type FlatInterfaceNetworkSecurityGroupConfig struct { func (x *FlatInterfaceNetworkSecurityGroupConfig) Reset() { *x = FlatInterfaceNetworkSecurityGroupConfig{} - mi := &file_nico_nico_proto_msgTypes[297] + mi := &file_nico_nico_proto_msgTypes[299] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24674,7 +24796,7 @@ func (x *FlatInterfaceNetworkSecurityGroupConfig) String() string { func (*FlatInterfaceNetworkSecurityGroupConfig) ProtoMessage() {} func (x *FlatInterfaceNetworkSecurityGroupConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[297] + mi := &file_nico_nico_proto_msgTypes[299] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24687,7 +24809,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{297} + return file_nico_nico_proto_rawDescGZIP(), []int{299} } func (x *FlatInterfaceNetworkSecurityGroupConfig) GetId() string { @@ -24733,7 +24855,7 @@ type ManagedHostNetworkStatusRequest struct { func (x *ManagedHostNetworkStatusRequest) Reset() { *x = ManagedHostNetworkStatusRequest{} - mi := &file_nico_nico_proto_msgTypes[298] + mi := &file_nico_nico_proto_msgTypes[300] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24745,7 +24867,7 @@ func (x *ManagedHostNetworkStatusRequest) String() string { func (*ManagedHostNetworkStatusRequest) ProtoMessage() {} func (x *ManagedHostNetworkStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[298] + mi := &file_nico_nico_proto_msgTypes[300] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24758,7 +24880,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{298} + return file_nico_nico_proto_rawDescGZIP(), []int{300} } type ManagedHostNetworkStatusResponse struct { @@ -24770,7 +24892,7 @@ type ManagedHostNetworkStatusResponse struct { func (x *ManagedHostNetworkStatusResponse) Reset() { *x = ManagedHostNetworkStatusResponse{} - mi := &file_nico_nico_proto_msgTypes[299] + mi := &file_nico_nico_proto_msgTypes[301] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24782,7 +24904,7 @@ func (x *ManagedHostNetworkStatusResponse) String() string { func (*ManagedHostNetworkStatusResponse) ProtoMessage() {} func (x *ManagedHostNetworkStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[299] + mi := &file_nico_nico_proto_msgTypes[301] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24795,7 +24917,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{299} + return file_nico_nico_proto_rawDescGZIP(), []int{301} } func (x *ManagedHostNetworkStatusResponse) GetAll() []*DpuNetworkStatus { @@ -24817,7 +24939,7 @@ type DpuAgentUpgradeCheckRequest struct { func (x *DpuAgentUpgradeCheckRequest) Reset() { *x = DpuAgentUpgradeCheckRequest{} - mi := &file_nico_nico_proto_msgTypes[300] + mi := &file_nico_nico_proto_msgTypes[302] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24829,7 +24951,7 @@ func (x *DpuAgentUpgradeCheckRequest) String() string { func (*DpuAgentUpgradeCheckRequest) ProtoMessage() {} func (x *DpuAgentUpgradeCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[300] + mi := &file_nico_nico_proto_msgTypes[302] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24842,7 +24964,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{300} + return file_nico_nico_proto_rawDescGZIP(), []int{302} } func (x *DpuAgentUpgradeCheckRequest) GetMachineId() string { @@ -24884,7 +25006,7 @@ type DpuAgentUpgradeCheckResponse struct { func (x *DpuAgentUpgradeCheckResponse) Reset() { *x = DpuAgentUpgradeCheckResponse{} - mi := &file_nico_nico_proto_msgTypes[301] + mi := &file_nico_nico_proto_msgTypes[303] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24896,7 +25018,7 @@ func (x *DpuAgentUpgradeCheckResponse) String() string { func (*DpuAgentUpgradeCheckResponse) ProtoMessage() {} func (x *DpuAgentUpgradeCheckResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[301] + mi := &file_nico_nico_proto_msgTypes[303] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24909,7 +25031,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{301} + return file_nico_nico_proto_rawDescGZIP(), []int{303} } func (x *DpuAgentUpgradeCheckResponse) GetShouldUpgrade() bool { @@ -24942,7 +25064,7 @@ type DpuAgentUpgradePolicyRequest struct { func (x *DpuAgentUpgradePolicyRequest) Reset() { *x = DpuAgentUpgradePolicyRequest{} - mi := &file_nico_nico_proto_msgTypes[302] + mi := &file_nico_nico_proto_msgTypes[304] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24954,7 +25076,7 @@ func (x *DpuAgentUpgradePolicyRequest) String() string { func (*DpuAgentUpgradePolicyRequest) ProtoMessage() {} func (x *DpuAgentUpgradePolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[302] + mi := &file_nico_nico_proto_msgTypes[304] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24967,7 +25089,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{302} + return file_nico_nico_proto_rawDescGZIP(), []int{304} } func (x *DpuAgentUpgradePolicyRequest) GetNewPolicy() AgentUpgradePolicy { @@ -24989,7 +25111,7 @@ type DpuAgentUpgradePolicyResponse struct { func (x *DpuAgentUpgradePolicyResponse) Reset() { *x = DpuAgentUpgradePolicyResponse{} - mi := &file_nico_nico_proto_msgTypes[303] + mi := &file_nico_nico_proto_msgTypes[305] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25001,7 +25123,7 @@ func (x *DpuAgentUpgradePolicyResponse) String() string { func (*DpuAgentUpgradePolicyResponse) ProtoMessage() {} func (x *DpuAgentUpgradePolicyResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[303] + mi := &file_nico_nico_proto_msgTypes[305] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25014,7 +25136,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{303} + return file_nico_nico_proto_rawDescGZIP(), []int{305} } func (x *DpuAgentUpgradePolicyResponse) GetActivePolicy() AgentUpgradePolicy { @@ -25051,7 +25173,7 @@ type AdminForceDeleteMachineRequest struct { func (x *AdminForceDeleteMachineRequest) Reset() { *x = AdminForceDeleteMachineRequest{} - mi := &file_nico_nico_proto_msgTypes[304] + mi := &file_nico_nico_proto_msgTypes[306] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25063,7 +25185,7 @@ func (x *AdminForceDeleteMachineRequest) String() string { func (*AdminForceDeleteMachineRequest) ProtoMessage() {} func (x *AdminForceDeleteMachineRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[304] + mi := &file_nico_nico_proto_msgTypes[306] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25076,7 +25198,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{304} + return file_nico_nico_proto_rawDescGZIP(), []int{306} } func (x *AdminForceDeleteMachineRequest) GetHostQuery() string { @@ -25153,7 +25275,7 @@ type AdminForceDeleteMachineResponse struct { func (x *AdminForceDeleteMachineResponse) Reset() { *x = AdminForceDeleteMachineResponse{} - mi := &file_nico_nico_proto_msgTypes[305] + mi := &file_nico_nico_proto_msgTypes[307] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25165,7 +25287,7 @@ func (x *AdminForceDeleteMachineResponse) String() string { func (*AdminForceDeleteMachineResponse) ProtoMessage() {} func (x *AdminForceDeleteMachineResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[305] + mi := &file_nico_nico_proto_msgTypes[307] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25178,7 +25300,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{305} + return file_nico_nico_proto_rawDescGZIP(), []int{307} } func (x *AdminForceDeleteMachineResponse) GetAllDone() bool { @@ -25329,7 +25451,7 @@ type DisableSecureBootResponse struct { func (x *DisableSecureBootResponse) Reset() { *x = DisableSecureBootResponse{} - mi := &file_nico_nico_proto_msgTypes[306] + mi := &file_nico_nico_proto_msgTypes[308] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25341,7 +25463,7 @@ func (x *DisableSecureBootResponse) String() string { func (*DisableSecureBootResponse) ProtoMessage() {} func (x *DisableSecureBootResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[306] + mi := &file_nico_nico_proto_msgTypes[308] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25354,7 +25476,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{306} + return file_nico_nico_proto_rawDescGZIP(), []int{308} } type LockdownRequest struct { @@ -25368,7 +25490,7 @@ type LockdownRequest struct { func (x *LockdownRequest) Reset() { *x = LockdownRequest{} - mi := &file_nico_nico_proto_msgTypes[307] + mi := &file_nico_nico_proto_msgTypes[309] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25380,7 +25502,7 @@ func (x *LockdownRequest) String() string { func (*LockdownRequest) ProtoMessage() {} func (x *LockdownRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[307] + mi := &file_nico_nico_proto_msgTypes[309] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25393,7 +25515,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{307} + return file_nico_nico_proto_rawDescGZIP(), []int{309} } func (x *LockdownRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -25425,7 +25547,7 @@ type LockdownResponse struct { func (x *LockdownResponse) Reset() { *x = LockdownResponse{} - mi := &file_nico_nico_proto_msgTypes[308] + mi := &file_nico_nico_proto_msgTypes[310] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25437,7 +25559,7 @@ func (x *LockdownResponse) String() string { func (*LockdownResponse) ProtoMessage() {} func (x *LockdownResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[308] + mi := &file_nico_nico_proto_msgTypes[310] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25450,7 +25572,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{308} + return file_nico_nico_proto_rawDescGZIP(), []int{310} } type LockdownStatusRequest struct { @@ -25463,7 +25585,7 @@ type LockdownStatusRequest struct { func (x *LockdownStatusRequest) Reset() { *x = LockdownStatusRequest{} - mi := &file_nico_nico_proto_msgTypes[309] + mi := &file_nico_nico_proto_msgTypes[311] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25475,7 +25597,7 @@ func (x *LockdownStatusRequest) String() string { func (*LockdownStatusRequest) ProtoMessage() {} func (x *LockdownStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[309] + mi := &file_nico_nico_proto_msgTypes[311] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25488,7 +25610,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{309} + return file_nico_nico_proto_rawDescGZIP(), []int{311} } func (x *LockdownStatusRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -25515,7 +25637,7 @@ type MachineSetupStatusRequest struct { func (x *MachineSetupStatusRequest) Reset() { *x = MachineSetupStatusRequest{} - mi := &file_nico_nico_proto_msgTypes[310] + mi := &file_nico_nico_proto_msgTypes[312] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25527,7 +25649,7 @@ func (x *MachineSetupStatusRequest) String() string { func (*MachineSetupStatusRequest) ProtoMessage() {} func (x *MachineSetupStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[310] + mi := &file_nico_nico_proto_msgTypes[312] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25540,7 +25662,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{310} + return file_nico_nico_proto_rawDescGZIP(), []int{312} } func (x *MachineSetupStatusRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -25568,7 +25690,7 @@ type MachineSetupRequest struct { func (x *MachineSetupRequest) Reset() { *x = MachineSetupRequest{} - mi := &file_nico_nico_proto_msgTypes[311] + mi := &file_nico_nico_proto_msgTypes[313] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25580,7 +25702,7 @@ func (x *MachineSetupRequest) String() string { func (*MachineSetupRequest) ProtoMessage() {} func (x *MachineSetupRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[311] + mi := &file_nico_nico_proto_msgTypes[313] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25593,7 +25715,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{311} + return file_nico_nico_proto_rawDescGZIP(), []int{313} } func (x *MachineSetupRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -25625,7 +25747,7 @@ type MachineSetupResponse struct { func (x *MachineSetupResponse) Reset() { *x = MachineSetupResponse{} - mi := &file_nico_nico_proto_msgTypes[312] + mi := &file_nico_nico_proto_msgTypes[314] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25637,7 +25759,7 @@ func (x *MachineSetupResponse) String() string { func (*MachineSetupResponse) ProtoMessage() {} func (x *MachineSetupResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[312] + mi := &file_nico_nico_proto_msgTypes[314] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25650,7 +25772,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{312} + return file_nico_nico_proto_rawDescGZIP(), []int{314} } type SetDpuFirstBootOrderRequest struct { @@ -25664,7 +25786,7 @@ type SetDpuFirstBootOrderRequest struct { func (x *SetDpuFirstBootOrderRequest) Reset() { *x = SetDpuFirstBootOrderRequest{} - mi := &file_nico_nico_proto_msgTypes[313] + mi := &file_nico_nico_proto_msgTypes[315] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25676,7 +25798,7 @@ func (x *SetDpuFirstBootOrderRequest) String() string { func (*SetDpuFirstBootOrderRequest) ProtoMessage() {} func (x *SetDpuFirstBootOrderRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[313] + mi := &file_nico_nico_proto_msgTypes[315] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25689,7 +25811,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{313} + return file_nico_nico_proto_rawDescGZIP(), []int{315} } func (x *SetDpuFirstBootOrderRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -25721,7 +25843,7 @@ type SetDpuFirstBootOrderResponse struct { func (x *SetDpuFirstBootOrderResponse) Reset() { *x = SetDpuFirstBootOrderResponse{} - mi := &file_nico_nico_proto_msgTypes[314] + mi := &file_nico_nico_proto_msgTypes[316] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25733,7 +25855,7 @@ func (x *SetDpuFirstBootOrderResponse) String() string { func (*SetDpuFirstBootOrderResponse) ProtoMessage() {} func (x *SetDpuFirstBootOrderResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[314] + mi := &file_nico_nico_proto_msgTypes[316] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25746,7 +25868,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{314} + return file_nico_nico_proto_rawDescGZIP(), []int{316} } // Must provide either machine_id or ip/mac pair @@ -25760,7 +25882,7 @@ type AdminRebootRequest struct { func (x *AdminRebootRequest) Reset() { *x = AdminRebootRequest{} - mi := &file_nico_nico_proto_msgTypes[315] + mi := &file_nico_nico_proto_msgTypes[317] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25772,7 +25894,7 @@ func (x *AdminRebootRequest) String() string { func (*AdminRebootRequest) ProtoMessage() {} func (x *AdminRebootRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[315] + mi := &file_nico_nico_proto_msgTypes[317] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25785,7 +25907,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{315} + return file_nico_nico_proto_rawDescGZIP(), []int{317} } func (x *AdminRebootRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -25810,7 +25932,7 @@ type AdminRebootResponse struct { func (x *AdminRebootResponse) Reset() { *x = AdminRebootResponse{} - mi := &file_nico_nico_proto_msgTypes[316] + mi := &file_nico_nico_proto_msgTypes[318] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25822,7 +25944,7 @@ func (x *AdminRebootResponse) String() string { func (*AdminRebootResponse) ProtoMessage() {} func (x *AdminRebootResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[316] + mi := &file_nico_nico_proto_msgTypes[318] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25835,7 +25957,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{316} + return file_nico_nico_proto_rawDescGZIP(), []int{318} } // Must provide either machine_id or ip/mac pair @@ -25852,7 +25974,7 @@ type AdminBmcResetRequest struct { func (x *AdminBmcResetRequest) Reset() { *x = AdminBmcResetRequest{} - mi := &file_nico_nico_proto_msgTypes[317] + mi := &file_nico_nico_proto_msgTypes[319] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25864,7 +25986,7 @@ func (x *AdminBmcResetRequest) String() string { func (*AdminBmcResetRequest) ProtoMessage() {} func (x *AdminBmcResetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[317] + mi := &file_nico_nico_proto_msgTypes[319] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25877,7 +25999,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{317} + return file_nico_nico_proto_rawDescGZIP(), []int{319} } func (x *AdminBmcResetRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -25909,7 +26031,7 @@ type AdminBmcResetResponse struct { func (x *AdminBmcResetResponse) Reset() { *x = AdminBmcResetResponse{} - mi := &file_nico_nico_proto_msgTypes[318] + mi := &file_nico_nico_proto_msgTypes[320] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25921,7 +26043,7 @@ func (x *AdminBmcResetResponse) String() string { func (*AdminBmcResetResponse) ProtoMessage() {} func (x *AdminBmcResetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[318] + mi := &file_nico_nico_proto_msgTypes[320] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25934,7 +26056,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{318} + return file_nico_nico_proto_rawDescGZIP(), []int{320} } type EnableInfiniteBootRequest struct { @@ -25947,7 +26069,7 @@ type EnableInfiniteBootRequest struct { func (x *EnableInfiniteBootRequest) Reset() { *x = EnableInfiniteBootRequest{} - mi := &file_nico_nico_proto_msgTypes[319] + mi := &file_nico_nico_proto_msgTypes[321] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25959,7 +26081,7 @@ func (x *EnableInfiniteBootRequest) String() string { func (*EnableInfiniteBootRequest) ProtoMessage() {} func (x *EnableInfiniteBootRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[319] + mi := &file_nico_nico_proto_msgTypes[321] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25972,7 +26094,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{319} + return file_nico_nico_proto_rawDescGZIP(), []int{321} } func (x *EnableInfiniteBootRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -25997,7 +26119,7 @@ type EnableInfiniteBootResponse struct { func (x *EnableInfiniteBootResponse) Reset() { *x = EnableInfiniteBootResponse{} - mi := &file_nico_nico_proto_msgTypes[320] + mi := &file_nico_nico_proto_msgTypes[322] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26009,7 +26131,7 @@ func (x *EnableInfiniteBootResponse) String() string { func (*EnableInfiniteBootResponse) ProtoMessage() {} func (x *EnableInfiniteBootResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[320] + mi := &file_nico_nico_proto_msgTypes[322] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26022,7 +26144,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{320} + return file_nico_nico_proto_rawDescGZIP(), []int{322} } type IsInfiniteBootEnabledRequest struct { @@ -26035,7 +26157,7 @@ type IsInfiniteBootEnabledRequest struct { func (x *IsInfiniteBootEnabledRequest) Reset() { *x = IsInfiniteBootEnabledRequest{} - mi := &file_nico_nico_proto_msgTypes[321] + mi := &file_nico_nico_proto_msgTypes[323] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26047,7 +26169,7 @@ func (x *IsInfiniteBootEnabledRequest) String() string { func (*IsInfiniteBootEnabledRequest) ProtoMessage() {} func (x *IsInfiniteBootEnabledRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[321] + mi := &file_nico_nico_proto_msgTypes[323] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26060,7 +26182,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{321} + return file_nico_nico_proto_rawDescGZIP(), []int{323} } func (x *IsInfiniteBootEnabledRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -26086,7 +26208,7 @@ type IsInfiniteBootEnabledResponse struct { func (x *IsInfiniteBootEnabledResponse) Reset() { *x = IsInfiniteBootEnabledResponse{} - mi := &file_nico_nico_proto_msgTypes[322] + mi := &file_nico_nico_proto_msgTypes[324] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26098,7 +26220,7 @@ func (x *IsInfiniteBootEnabledResponse) String() string { func (*IsInfiniteBootEnabledResponse) ProtoMessage() {} func (x *IsInfiniteBootEnabledResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[322] + mi := &file_nico_nico_proto_msgTypes[324] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26111,7 +26233,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{322} + return file_nico_nico_proto_rawDescGZIP(), []int{324} } func (x *IsInfiniteBootEnabledResponse) GetIsEnabled() bool { @@ -26135,7 +26257,7 @@ type BMCMetaDataGetRequest struct { func (x *BMCMetaDataGetRequest) Reset() { *x = BMCMetaDataGetRequest{} - mi := &file_nico_nico_proto_msgTypes[323] + mi := &file_nico_nico_proto_msgTypes[325] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26147,7 +26269,7 @@ func (x *BMCMetaDataGetRequest) String() string { func (*BMCMetaDataGetRequest) ProtoMessage() {} func (x *BMCMetaDataGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[323] + mi := &file_nico_nico_proto_msgTypes[325] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26160,7 +26282,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{323} + return file_nico_nico_proto_rawDescGZIP(), []int{325} } func (x *BMCMetaDataGetRequest) GetMachineId() *MachineId { @@ -26207,7 +26329,7 @@ type BMCMetaDataGetResponse struct { func (x *BMCMetaDataGetResponse) Reset() { *x = BMCMetaDataGetResponse{} - mi := &file_nico_nico_proto_msgTypes[324] + mi := &file_nico_nico_proto_msgTypes[326] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26219,7 +26341,7 @@ func (x *BMCMetaDataGetResponse) String() string { func (*BMCMetaDataGetResponse) ProtoMessage() {} func (x *BMCMetaDataGetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[324] + mi := &file_nico_nico_proto_msgTypes[326] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26232,7 +26354,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{324} + return file_nico_nico_proto_rawDescGZIP(), []int{326} } func (x *BMCMetaDataGetResponse) GetIp() string { @@ -26302,7 +26424,7 @@ type MachineCredentialsUpdateRequest struct { func (x *MachineCredentialsUpdateRequest) Reset() { *x = MachineCredentialsUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[325] + mi := &file_nico_nico_proto_msgTypes[327] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26314,7 +26436,7 @@ func (x *MachineCredentialsUpdateRequest) String() string { func (*MachineCredentialsUpdateRequest) ProtoMessage() {} func (x *MachineCredentialsUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[325] + mi := &file_nico_nico_proto_msgTypes[327] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26327,7 +26449,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{325} + return file_nico_nico_proto_rawDescGZIP(), []int{327} } func (x *MachineCredentialsUpdateRequest) GetMachineId() *MachineId { @@ -26359,7 +26481,7 @@ type MachineCredentialsUpdateResponse struct { func (x *MachineCredentialsUpdateResponse) Reset() { *x = MachineCredentialsUpdateResponse{} - mi := &file_nico_nico_proto_msgTypes[326] + mi := &file_nico_nico_proto_msgTypes[328] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26371,7 +26493,7 @@ func (x *MachineCredentialsUpdateResponse) String() string { func (*MachineCredentialsUpdateResponse) ProtoMessage() {} func (x *MachineCredentialsUpdateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[326] + mi := &file_nico_nico_proto_msgTypes[328] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26384,7 +26506,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{326} + return file_nico_nico_proto_rawDescGZIP(), []int{328} } type ForgeAgentControlRequest struct { @@ -26396,7 +26518,7 @@ type ForgeAgentControlRequest struct { func (x *ForgeAgentControlRequest) Reset() { *x = ForgeAgentControlRequest{} - mi := &file_nico_nico_proto_msgTypes[327] + mi := &file_nico_nico_proto_msgTypes[329] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26408,7 +26530,7 @@ func (x *ForgeAgentControlRequest) String() string { func (*ForgeAgentControlRequest) ProtoMessage() {} func (x *ForgeAgentControlRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[327] + mi := &file_nico_nico_proto_msgTypes[329] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26421,7 +26543,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{327} + return file_nico_nico_proto_rawDescGZIP(), []int{329} } func (x *ForgeAgentControlRequest) GetMachineId() *MachineId { @@ -26454,7 +26576,7 @@ type ForgeAgentControlResponse struct { func (x *ForgeAgentControlResponse) Reset() { *x = ForgeAgentControlResponse{} - mi := &file_nico_nico_proto_msgTypes[328] + mi := &file_nico_nico_proto_msgTypes[330] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26466,7 +26588,7 @@ func (x *ForgeAgentControlResponse) String() string { func (*ForgeAgentControlResponse) ProtoMessage() {} func (x *ForgeAgentControlResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[328] + mi := &file_nico_nico_proto_msgTypes[330] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26479,7 +26601,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{328} + return file_nico_nico_proto_rawDescGZIP(), []int{330} } func (x *ForgeAgentControlResponse) GetLegacyAction() ForgeAgentControlResponse_LegacyAction { @@ -26673,7 +26795,7 @@ type MachineDiscoveryInfo struct { func (x *MachineDiscoveryInfo) Reset() { *x = MachineDiscoveryInfo{} - mi := &file_nico_nico_proto_msgTypes[329] + mi := &file_nico_nico_proto_msgTypes[331] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26685,7 +26807,7 @@ func (x *MachineDiscoveryInfo) String() string { func (*MachineDiscoveryInfo) ProtoMessage() {} func (x *MachineDiscoveryInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[329] + mi := &file_nico_nico_proto_msgTypes[331] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26698,7 +26820,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{329} + return file_nico_nico_proto_rawDescGZIP(), []int{331} } func (x *MachineDiscoveryInfo) GetMachineInterfaceId() *MachineInterfaceId { @@ -26764,7 +26886,7 @@ type MachineDiscoveryCompletedRequest struct { func (x *MachineDiscoveryCompletedRequest) Reset() { *x = MachineDiscoveryCompletedRequest{} - mi := &file_nico_nico_proto_msgTypes[330] + mi := &file_nico_nico_proto_msgTypes[332] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26776,7 +26898,7 @@ func (x *MachineDiscoveryCompletedRequest) String() string { func (*MachineDiscoveryCompletedRequest) ProtoMessage() {} func (x *MachineDiscoveryCompletedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[330] + mi := &file_nico_nico_proto_msgTypes[332] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26789,7 +26911,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{330} + return file_nico_nico_proto_rawDescGZIP(), []int{332} } func (x *MachineDiscoveryCompletedRequest) GetMachineId() *MachineId { @@ -26819,7 +26941,7 @@ type MachineCleanupInfo struct { func (x *MachineCleanupInfo) Reset() { *x = MachineCleanupInfo{} - mi := &file_nico_nico_proto_msgTypes[331] + mi := &file_nico_nico_proto_msgTypes[333] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26831,7 +26953,7 @@ func (x *MachineCleanupInfo) String() string { func (*MachineCleanupInfo) ProtoMessage() {} func (x *MachineCleanupInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[331] + mi := &file_nico_nico_proto_msgTypes[333] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26844,7 +26966,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{331} + return file_nico_nico_proto_rawDescGZIP(), []int{333} } func (x *MachineCleanupInfo) GetMachineId() *MachineId { @@ -26907,7 +27029,7 @@ type MachineCertificate struct { func (x *MachineCertificate) Reset() { *x = MachineCertificate{} - mi := &file_nico_nico_proto_msgTypes[332] + mi := &file_nico_nico_proto_msgTypes[334] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26919,7 +27041,7 @@ func (x *MachineCertificate) String() string { func (*MachineCertificate) ProtoMessage() {} func (x *MachineCertificate) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[332] + mi := &file_nico_nico_proto_msgTypes[334] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26932,7 +27054,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{332} + return file_nico_nico_proto_rawDescGZIP(), []int{334} } func (x *MachineCertificate) GetPublicKey() []byte { @@ -26964,7 +27086,7 @@ type MachineCertificateRenewRequest struct { func (x *MachineCertificateRenewRequest) Reset() { *x = MachineCertificateRenewRequest{} - mi := &file_nico_nico_proto_msgTypes[333] + mi := &file_nico_nico_proto_msgTypes[335] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26976,7 +27098,7 @@ func (x *MachineCertificateRenewRequest) String() string { func (*MachineCertificateRenewRequest) ProtoMessage() {} func (x *MachineCertificateRenewRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[333] + mi := &file_nico_nico_proto_msgTypes[335] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26989,7 +27111,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{333} + return file_nico_nico_proto_rawDescGZIP(), []int{335} } type MachineCertificateResult struct { @@ -27002,7 +27124,7 @@ type MachineCertificateResult struct { func (x *MachineCertificateResult) Reset() { *x = MachineCertificateResult{} - mi := &file_nico_nico_proto_msgTypes[334] + mi := &file_nico_nico_proto_msgTypes[336] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27014,7 +27136,7 @@ func (x *MachineCertificateResult) String() string { func (*MachineCertificateResult) ProtoMessage() {} func (x *MachineCertificateResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[334] + mi := &file_nico_nico_proto_msgTypes[336] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27027,7 +27149,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{334} + return file_nico_nico_proto_rawDescGZIP(), []int{336} } func (x *MachineCertificateResult) GetMachineCertificate() *MachineCertificate { @@ -27053,7 +27175,7 @@ type MachineDiscoveryResult struct { func (x *MachineDiscoveryResult) Reset() { *x = MachineDiscoveryResult{} - mi := &file_nico_nico_proto_msgTypes[335] + mi := &file_nico_nico_proto_msgTypes[337] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27065,7 +27187,7 @@ func (x *MachineDiscoveryResult) String() string { func (*MachineDiscoveryResult) ProtoMessage() {} func (x *MachineDiscoveryResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[335] + mi := &file_nico_nico_proto_msgTypes[337] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27078,7 +27200,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{335} + return file_nico_nico_proto_rawDescGZIP(), []int{337} } func (x *MachineDiscoveryResult) GetMachineId() *MachineId { @@ -27117,7 +27239,7 @@ type MachineDiscoveryCompletedResponse struct { func (x *MachineDiscoveryCompletedResponse) Reset() { *x = MachineDiscoveryCompletedResponse{} - mi := &file_nico_nico_proto_msgTypes[336] + mi := &file_nico_nico_proto_msgTypes[338] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27129,7 +27251,7 @@ func (x *MachineDiscoveryCompletedResponse) String() string { func (*MachineDiscoveryCompletedResponse) ProtoMessage() {} func (x *MachineDiscoveryCompletedResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[336] + mi := &file_nico_nico_proto_msgTypes[338] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27142,7 +27264,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{336} + return file_nico_nico_proto_rawDescGZIP(), []int{338} } type MachineCleanupResult struct { @@ -27153,7 +27275,7 @@ type MachineCleanupResult struct { func (x *MachineCleanupResult) Reset() { *x = MachineCleanupResult{} - mi := &file_nico_nico_proto_msgTypes[337] + mi := &file_nico_nico_proto_msgTypes[339] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27165,7 +27287,7 @@ func (x *MachineCleanupResult) String() string { func (*MachineCleanupResult) ProtoMessage() {} func (x *MachineCleanupResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[337] + mi := &file_nico_nico_proto_msgTypes[339] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27178,7 +27300,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{337} + return file_nico_nico_proto_rawDescGZIP(), []int{339} } type ForgeScoutErrorReport struct { @@ -27196,7 +27318,7 @@ type ForgeScoutErrorReport struct { func (x *ForgeScoutErrorReport) Reset() { *x = ForgeScoutErrorReport{} - mi := &file_nico_nico_proto_msgTypes[338] + mi := &file_nico_nico_proto_msgTypes[340] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27208,7 +27330,7 @@ func (x *ForgeScoutErrorReport) String() string { func (*ForgeScoutErrorReport) ProtoMessage() {} func (x *ForgeScoutErrorReport) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[338] + mi := &file_nico_nico_proto_msgTypes[340] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27221,7 +27343,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{338} + return file_nico_nico_proto_rawDescGZIP(), []int{340} } func (x *ForgeScoutErrorReport) GetMachineId() *MachineId { @@ -27253,7 +27375,7 @@ type ForgeScoutErrorReportResult struct { func (x *ForgeScoutErrorReportResult) Reset() { *x = ForgeScoutErrorReportResult{} - mi := &file_nico_nico_proto_msgTypes[339] + mi := &file_nico_nico_proto_msgTypes[341] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27265,7 +27387,7 @@ func (x *ForgeScoutErrorReportResult) String() string { func (*ForgeScoutErrorReportResult) ProtoMessage() {} func (x *ForgeScoutErrorReportResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[339] + mi := &file_nico_nico_proto_msgTypes[341] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27278,7 +27400,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{339} + return file_nico_nico_proto_rawDescGZIP(), []int{341} } type PxeInstructionRequest struct { @@ -27302,7 +27424,7 @@ type PxeInstructionRequest struct { func (x *PxeInstructionRequest) Reset() { *x = PxeInstructionRequest{} - mi := &file_nico_nico_proto_msgTypes[340] + mi := &file_nico_nico_proto_msgTypes[342] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27314,7 +27436,7 @@ func (x *PxeInstructionRequest) String() string { func (*PxeInstructionRequest) ProtoMessage() {} func (x *PxeInstructionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[340] + mi := &file_nico_nico_proto_msgTypes[342] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27327,7 +27449,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{340} + return file_nico_nico_proto_rawDescGZIP(), []int{342} } func (x *PxeInstructionRequest) GetArch() MachineArchitecture { @@ -27375,7 +27497,7 @@ type PxeInstructions struct { func (x *PxeInstructions) Reset() { *x = PxeInstructions{} - mi := &file_nico_nico_proto_msgTypes[341] + mi := &file_nico_nico_proto_msgTypes[343] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27387,7 +27509,7 @@ func (x *PxeInstructions) String() string { func (*PxeInstructions) ProtoMessage() {} func (x *PxeInstructions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[341] + mi := &file_nico_nico_proto_msgTypes[343] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27400,7 +27522,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{341} + return file_nico_nico_proto_rawDescGZIP(), []int{343} } func (x *PxeInstructions) GetPxeScript() string { @@ -27458,7 +27580,7 @@ type CloudInitDiscoveryInstructions struct { func (x *CloudInitDiscoveryInstructions) Reset() { *x = CloudInitDiscoveryInstructions{} - mi := &file_nico_nico_proto_msgTypes[342] + mi := &file_nico_nico_proto_msgTypes[344] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27470,7 +27592,7 @@ func (x *CloudInitDiscoveryInstructions) String() string { func (*CloudInitDiscoveryInstructions) ProtoMessage() {} func (x *CloudInitDiscoveryInstructions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[342] + mi := &file_nico_nico_proto_msgTypes[344] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27483,7 +27605,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{342} + return file_nico_nico_proto_rawDescGZIP(), []int{344} } func (x *CloudInitDiscoveryInstructions) GetMachineInterface() *MachineInterface { @@ -27567,7 +27689,7 @@ type CloudInitMetaData struct { func (x *CloudInitMetaData) Reset() { *x = CloudInitMetaData{} - mi := &file_nico_nico_proto_msgTypes[343] + mi := &file_nico_nico_proto_msgTypes[345] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27579,7 +27701,7 @@ func (x *CloudInitMetaData) String() string { func (*CloudInitMetaData) ProtoMessage() {} func (x *CloudInitMetaData) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[343] + mi := &file_nico_nico_proto_msgTypes[345] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27592,7 +27714,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{343} + return file_nico_nico_proto_rawDescGZIP(), []int{345} } func (x *CloudInitMetaData) GetInstanceId() string { @@ -27625,7 +27747,7 @@ type CloudInitInstructionsRequest struct { func (x *CloudInitInstructionsRequest) Reset() { *x = CloudInitInstructionsRequest{} - mi := &file_nico_nico_proto_msgTypes[344] + mi := &file_nico_nico_proto_msgTypes[346] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27637,7 +27759,7 @@ func (x *CloudInitInstructionsRequest) String() string { func (*CloudInitInstructionsRequest) ProtoMessage() {} func (x *CloudInitInstructionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[344] + mi := &file_nico_nico_proto_msgTypes[346] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27650,7 +27772,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{344} + return file_nico_nico_proto_rawDescGZIP(), []int{346} } func (x *CloudInitInstructionsRequest) GetIp() string { @@ -27677,7 +27799,7 @@ type CloudInitInstructions struct { func (x *CloudInitInstructions) Reset() { *x = CloudInitInstructions{} - mi := &file_nico_nico_proto_msgTypes[345] + mi := &file_nico_nico_proto_msgTypes[347] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27689,7 +27811,7 @@ func (x *CloudInitInstructions) String() string { func (*CloudInitInstructions) ProtoMessage() {} func (x *CloudInitInstructions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[345] + mi := &file_nico_nico_proto_msgTypes[347] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27702,7 +27824,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{345} + return file_nico_nico_proto_rawDescGZIP(), []int{347} } func (x *CloudInitInstructions) GetCustomCloudInit() string { @@ -27770,7 +27892,7 @@ type DpuNetworkStatus struct { func (x *DpuNetworkStatus) Reset() { *x = DpuNetworkStatus{} - mi := &file_nico_nico_proto_msgTypes[346] + mi := &file_nico_nico_proto_msgTypes[348] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27782,7 +27904,7 @@ func (x *DpuNetworkStatus) String() string { func (*DpuNetworkStatus) ProtoMessage() {} func (x *DpuNetworkStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[346] + mi := &file_nico_nico_proto_msgTypes[348] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27795,7 +27917,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{346} + return file_nico_nico_proto_rawDescGZIP(), []int{348} } func (x *DpuNetworkStatus) GetDpuMachineId() *MachineId { @@ -27913,7 +28035,7 @@ type LastDhcpRequest struct { func (x *LastDhcpRequest) Reset() { *x = LastDhcpRequest{} - mi := &file_nico_nico_proto_msgTypes[347] + mi := &file_nico_nico_proto_msgTypes[349] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27925,7 +28047,7 @@ func (x *LastDhcpRequest) String() string { func (*LastDhcpRequest) ProtoMessage() {} func (x *LastDhcpRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[347] + mi := &file_nico_nico_proto_msgTypes[349] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27938,7 +28060,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{347} + return file_nico_nico_proto_rawDescGZIP(), []int{349} } func (x *LastDhcpRequest) GetHostInterfaceId() *MachineInterfaceId { @@ -27972,7 +28094,7 @@ type DpuExtensionServiceStatusObservation struct { func (x *DpuExtensionServiceStatusObservation) Reset() { *x = DpuExtensionServiceStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[348] + mi := &file_nico_nico_proto_msgTypes[350] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27984,7 +28106,7 @@ func (x *DpuExtensionServiceStatusObservation) String() string { func (*DpuExtensionServiceStatusObservation) ProtoMessage() {} func (x *DpuExtensionServiceStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[348] + mi := &file_nico_nico_proto_msgTypes[350] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27997,7 +28119,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{348} + return file_nico_nico_proto_rawDescGZIP(), []int{350} } func (x *DpuExtensionServiceStatusObservation) GetServiceId() string { @@ -28068,7 +28190,7 @@ type DpuExtensionServiceComponent struct { func (x *DpuExtensionServiceComponent) Reset() { *x = DpuExtensionServiceComponent{} - mi := &file_nico_nico_proto_msgTypes[349] + mi := &file_nico_nico_proto_msgTypes[351] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28080,7 +28202,7 @@ func (x *DpuExtensionServiceComponent) String() string { func (*DpuExtensionServiceComponent) ProtoMessage() {} func (x *DpuExtensionServiceComponent) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[349] + mi := &file_nico_nico_proto_msgTypes[351] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28093,7 +28215,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{349} + return file_nico_nico_proto_rawDescGZIP(), []int{351} } func (x *DpuExtensionServiceComponent) GetName() string { @@ -28133,7 +28255,7 @@ type OptionalHealthReport struct { func (x *OptionalHealthReport) Reset() { *x = OptionalHealthReport{} - mi := &file_nico_nico_proto_msgTypes[350] + mi := &file_nico_nico_proto_msgTypes[352] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28145,7 +28267,7 @@ func (x *OptionalHealthReport) String() string { func (*OptionalHealthReport) ProtoMessage() {} func (x *OptionalHealthReport) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[350] + mi := &file_nico_nico_proto_msgTypes[352] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28158,7 +28280,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{350} + return file_nico_nico_proto_rawDescGZIP(), []int{352} } func (x *OptionalHealthReport) GetReport() *HealthReport { @@ -28178,7 +28300,7 @@ type HealthReportEntry struct { func (x *HealthReportEntry) Reset() { *x = HealthReportEntry{} - mi := &file_nico_nico_proto_msgTypes[351] + mi := &file_nico_nico_proto_msgTypes[353] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28190,7 +28312,7 @@ func (x *HealthReportEntry) String() string { func (*HealthReportEntry) ProtoMessage() {} func (x *HealthReportEntry) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[351] + mi := &file_nico_nico_proto_msgTypes[353] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28203,7 +28325,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{351} + return file_nico_nico_proto_rawDescGZIP(), []int{353} } func (x *HealthReportEntry) GetReport() *HealthReport { @@ -28231,7 +28353,7 @@ type InsertMachineHealthReportRequest struct { func (x *InsertMachineHealthReportRequest) Reset() { *x = InsertMachineHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[352] + mi := &file_nico_nico_proto_msgTypes[354] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28243,7 +28365,7 @@ func (x *InsertMachineHealthReportRequest) String() string { func (*InsertMachineHealthReportRequest) ProtoMessage() {} func (x *InsertMachineHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[352] + mi := &file_nico_nico_proto_msgTypes[354] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28256,7 +28378,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{352} + return file_nico_nico_proto_rawDescGZIP(), []int{354} } func (x *InsertMachineHealthReportRequest) GetMachineId() *MachineId { @@ -28284,7 +28406,7 @@ type InsertRackHealthReportRequest struct { func (x *InsertRackHealthReportRequest) Reset() { *x = InsertRackHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[353] + mi := &file_nico_nico_proto_msgTypes[355] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28296,7 +28418,7 @@ func (x *InsertRackHealthReportRequest) String() string { func (*InsertRackHealthReportRequest) ProtoMessage() {} func (x *InsertRackHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[353] + mi := &file_nico_nico_proto_msgTypes[355] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28309,7 +28431,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{353} + return file_nico_nico_proto_rawDescGZIP(), []int{355} } func (x *InsertRackHealthReportRequest) GetRackId() *RackId { @@ -28337,7 +28459,7 @@ type RemoveRackHealthReportRequest struct { func (x *RemoveRackHealthReportRequest) Reset() { *x = RemoveRackHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[354] + mi := &file_nico_nico_proto_msgTypes[356] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28349,7 +28471,7 @@ func (x *RemoveRackHealthReportRequest) String() string { func (*RemoveRackHealthReportRequest) ProtoMessage() {} func (x *RemoveRackHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[354] + mi := &file_nico_nico_proto_msgTypes[356] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28362,7 +28484,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{354} + return file_nico_nico_proto_rawDescGZIP(), []int{356} } func (x *RemoveRackHealthReportRequest) GetRackId() *RackId { @@ -28389,7 +28511,7 @@ type ListRackHealthReportsRequest struct { func (x *ListRackHealthReportsRequest) Reset() { *x = ListRackHealthReportsRequest{} - mi := &file_nico_nico_proto_msgTypes[355] + mi := &file_nico_nico_proto_msgTypes[357] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28401,7 +28523,7 @@ func (x *ListRackHealthReportsRequest) String() string { func (*ListRackHealthReportsRequest) ProtoMessage() {} func (x *ListRackHealthReportsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[355] + mi := &file_nico_nico_proto_msgTypes[357] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28414,7 +28536,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{355} + return file_nico_nico_proto_rawDescGZIP(), []int{357} } func (x *ListRackHealthReportsRequest) GetRackId() *RackId { @@ -28435,7 +28557,7 @@ type InsertSwitchHealthReportRequest struct { func (x *InsertSwitchHealthReportRequest) Reset() { *x = InsertSwitchHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[356] + mi := &file_nico_nico_proto_msgTypes[358] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28447,7 +28569,7 @@ func (x *InsertSwitchHealthReportRequest) String() string { func (*InsertSwitchHealthReportRequest) ProtoMessage() {} func (x *InsertSwitchHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[356] + mi := &file_nico_nico_proto_msgTypes[358] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28460,7 +28582,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{356} + return file_nico_nico_proto_rawDescGZIP(), []int{358} } func (x *InsertSwitchHealthReportRequest) GetSwitchId() *SwitchId { @@ -28488,7 +28610,7 @@ type RemoveSwitchHealthReportRequest struct { func (x *RemoveSwitchHealthReportRequest) Reset() { *x = RemoveSwitchHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[357] + mi := &file_nico_nico_proto_msgTypes[359] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28500,7 +28622,7 @@ func (x *RemoveSwitchHealthReportRequest) String() string { func (*RemoveSwitchHealthReportRequest) ProtoMessage() {} func (x *RemoveSwitchHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[357] + mi := &file_nico_nico_proto_msgTypes[359] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28513,7 +28635,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{357} + return file_nico_nico_proto_rawDescGZIP(), []int{359} } func (x *RemoveSwitchHealthReportRequest) GetSwitchId() *SwitchId { @@ -28540,7 +28662,7 @@ type ListSwitchHealthReportsRequest struct { func (x *ListSwitchHealthReportsRequest) Reset() { *x = ListSwitchHealthReportsRequest{} - mi := &file_nico_nico_proto_msgTypes[358] + mi := &file_nico_nico_proto_msgTypes[360] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28552,7 +28674,7 @@ func (x *ListSwitchHealthReportsRequest) String() string { func (*ListSwitchHealthReportsRequest) ProtoMessage() {} func (x *ListSwitchHealthReportsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[358] + mi := &file_nico_nico_proto_msgTypes[360] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28565,7 +28687,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{358} + return file_nico_nico_proto_rawDescGZIP(), []int{360} } func (x *ListSwitchHealthReportsRequest) GetSwitchId() *SwitchId { @@ -28586,7 +28708,7 @@ type InsertPowerShelfHealthReportRequest struct { func (x *InsertPowerShelfHealthReportRequest) Reset() { *x = InsertPowerShelfHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[359] + mi := &file_nico_nico_proto_msgTypes[361] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28598,7 +28720,7 @@ func (x *InsertPowerShelfHealthReportRequest) String() string { func (*InsertPowerShelfHealthReportRequest) ProtoMessage() {} func (x *InsertPowerShelfHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[359] + mi := &file_nico_nico_proto_msgTypes[361] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28611,7 +28733,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{359} + return file_nico_nico_proto_rawDescGZIP(), []int{361} } func (x *InsertPowerShelfHealthReportRequest) GetPowerShelfId() *PowerShelfId { @@ -28639,7 +28761,7 @@ type RemovePowerShelfHealthReportRequest struct { func (x *RemovePowerShelfHealthReportRequest) Reset() { *x = RemovePowerShelfHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[360] + mi := &file_nico_nico_proto_msgTypes[362] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28651,7 +28773,7 @@ func (x *RemovePowerShelfHealthReportRequest) String() string { func (*RemovePowerShelfHealthReportRequest) ProtoMessage() {} func (x *RemovePowerShelfHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[360] + mi := &file_nico_nico_proto_msgTypes[362] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28664,7 +28786,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{360} + return file_nico_nico_proto_rawDescGZIP(), []int{362} } func (x *RemovePowerShelfHealthReportRequest) GetPowerShelfId() *PowerShelfId { @@ -28691,7 +28813,7 @@ type ListPowerShelfHealthReportsRequest struct { func (x *ListPowerShelfHealthReportsRequest) Reset() { *x = ListPowerShelfHealthReportsRequest{} - mi := &file_nico_nico_proto_msgTypes[361] + mi := &file_nico_nico_proto_msgTypes[363] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28703,7 +28825,7 @@ func (x *ListPowerShelfHealthReportsRequest) String() string { func (*ListPowerShelfHealthReportsRequest) ProtoMessage() {} func (x *ListPowerShelfHealthReportsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[361] + mi := &file_nico_nico_proto_msgTypes[363] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28716,7 +28838,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{361} + return file_nico_nico_proto_rawDescGZIP(), []int{363} } func (x *ListPowerShelfHealthReportsRequest) GetPowerShelfId() *PowerShelfId { @@ -28735,7 +28857,7 @@ type ListHealthReportResponse struct { func (x *ListHealthReportResponse) Reset() { *x = ListHealthReportResponse{} - mi := &file_nico_nico_proto_msgTypes[362] + mi := &file_nico_nico_proto_msgTypes[364] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28747,7 +28869,7 @@ func (x *ListHealthReportResponse) String() string { func (*ListHealthReportResponse) ProtoMessage() {} func (x *ListHealthReportResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[362] + mi := &file_nico_nico_proto_msgTypes[364] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28760,7 +28882,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{362} + return file_nico_nico_proto_rawDescGZIP(), []int{364} } func (x *ListHealthReportResponse) GetHealthReportEntries() []*HealthReportEntry { @@ -28781,7 +28903,7 @@ type RemoveMachineHealthReportRequest struct { func (x *RemoveMachineHealthReportRequest) Reset() { *x = RemoveMachineHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[363] + mi := &file_nico_nico_proto_msgTypes[365] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28793,7 +28915,7 @@ func (x *RemoveMachineHealthReportRequest) String() string { func (*RemoveMachineHealthReportRequest) ProtoMessage() {} func (x *RemoveMachineHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[363] + mi := &file_nico_nico_proto_msgTypes[365] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28806,7 +28928,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{363} + return file_nico_nico_proto_rawDescGZIP(), []int{365} } func (x *RemoveMachineHealthReportRequest) GetMachineId() *MachineId { @@ -28833,7 +28955,7 @@ type ListNVLinkDomainHealthReportsRequest struct { func (x *ListNVLinkDomainHealthReportsRequest) Reset() { *x = ListNVLinkDomainHealthReportsRequest{} - mi := &file_nico_nico_proto_msgTypes[364] + mi := &file_nico_nico_proto_msgTypes[366] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28845,7 +28967,7 @@ func (x *ListNVLinkDomainHealthReportsRequest) String() string { func (*ListNVLinkDomainHealthReportsRequest) ProtoMessage() {} func (x *ListNVLinkDomainHealthReportsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[364] + mi := &file_nico_nico_proto_msgTypes[366] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28858,7 +28980,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{364} + return file_nico_nico_proto_rawDescGZIP(), []int{366} } func (x *ListNVLinkDomainHealthReportsRequest) GetDomainId() *NVLinkDomainId { @@ -28879,7 +29001,7 @@ type InsertNVLinkDomainHealthReportRequest struct { func (x *InsertNVLinkDomainHealthReportRequest) Reset() { *x = InsertNVLinkDomainHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[365] + mi := &file_nico_nico_proto_msgTypes[367] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28891,7 +29013,7 @@ func (x *InsertNVLinkDomainHealthReportRequest) String() string { func (*InsertNVLinkDomainHealthReportRequest) ProtoMessage() {} func (x *InsertNVLinkDomainHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[365] + mi := &file_nico_nico_proto_msgTypes[367] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28904,7 +29026,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{365} + return file_nico_nico_proto_rawDescGZIP(), []int{367} } func (x *InsertNVLinkDomainHealthReportRequest) GetDomainId() *NVLinkDomainId { @@ -28932,7 +29054,7 @@ type RemoveNVLinkDomainHealthReportRequest struct { func (x *RemoveNVLinkDomainHealthReportRequest) Reset() { *x = RemoveNVLinkDomainHealthReportRequest{} - mi := &file_nico_nico_proto_msgTypes[366] + mi := &file_nico_nico_proto_msgTypes[368] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28944,7 +29066,7 @@ func (x *RemoveNVLinkDomainHealthReportRequest) String() string { func (*RemoveNVLinkDomainHealthReportRequest) ProtoMessage() {} func (x *RemoveNVLinkDomainHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[366] + mi := &file_nico_nico_proto_msgTypes[368] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28957,7 +29079,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{366} + return file_nico_nico_proto_rawDescGZIP(), []int{368} } func (x *RemoveNVLinkDomainHealthReportRequest) GetDomainId() *NVLinkDomainId { @@ -29013,7 +29135,7 @@ type InstanceInterfaceStatusObservation struct { func (x *InstanceInterfaceStatusObservation) Reset() { *x = InstanceInterfaceStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[367] + mi := &file_nico_nico_proto_msgTypes[369] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29025,7 +29147,7 @@ func (x *InstanceInterfaceStatusObservation) String() string { func (*InstanceInterfaceStatusObservation) ProtoMessage() {} func (x *InstanceInterfaceStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[367] + mi := &file_nico_nico_proto_msgTypes[369] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29038,7 +29160,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{367} + return file_nico_nico_proto_rawDescGZIP(), []int{369} } func (x *InstanceInterfaceStatusObservation) GetFunctionType() InterfaceFunctionType { @@ -29109,7 +29231,7 @@ type FabricInterfaceData struct { func (x *FabricInterfaceData) Reset() { *x = FabricInterfaceData{} - mi := &file_nico_nico_proto_msgTypes[368] + mi := &file_nico_nico_proto_msgTypes[370] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29121,7 +29243,7 @@ func (x *FabricInterfaceData) String() string { func (*FabricInterfaceData) ProtoMessage() {} func (x *FabricInterfaceData) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[368] + mi := &file_nico_nico_proto_msgTypes[370] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29134,7 +29256,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{368} + return file_nico_nico_proto_rawDescGZIP(), []int{370} } func (x *FabricInterfaceData) GetInterfaceName() string { @@ -29166,7 +29288,7 @@ type LinkData struct { func (x *LinkData) Reset() { *x = LinkData{} - mi := &file_nico_nico_proto_msgTypes[369] + mi := &file_nico_nico_proto_msgTypes[371] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29178,7 +29300,7 @@ func (x *LinkData) String() string { func (*LinkData) ProtoMessage() {} func (x *LinkData) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[369] + mi := &file_nico_nico_proto_msgTypes[371] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29191,7 +29313,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{369} + return file_nico_nico_proto_rawDescGZIP(), []int{371} } func (x *LinkData) GetLinkType() string { @@ -29249,7 +29371,7 @@ type Tenant struct { func (x *Tenant) Reset() { *x = Tenant{} - mi := &file_nico_nico_proto_msgTypes[370] + mi := &file_nico_nico_proto_msgTypes[372] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29261,7 +29383,7 @@ func (x *Tenant) String() string { func (*Tenant) ProtoMessage() {} func (x *Tenant) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[370] + mi := &file_nico_nico_proto_msgTypes[372] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29274,7 +29396,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{370} + return file_nico_nico_proto_rawDescGZIP(), []int{372} } func (x *Tenant) GetOrganizationId() string { @@ -29317,7 +29439,7 @@ type CreateTenantRequest struct { func (x *CreateTenantRequest) Reset() { *x = CreateTenantRequest{} - mi := &file_nico_nico_proto_msgTypes[371] + mi := &file_nico_nico_proto_msgTypes[373] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29329,7 +29451,7 @@ func (x *CreateTenantRequest) String() string { func (*CreateTenantRequest) ProtoMessage() {} func (x *CreateTenantRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[371] + mi := &file_nico_nico_proto_msgTypes[373] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29342,7 +29464,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{371} + return file_nico_nico_proto_rawDescGZIP(), []int{373} } func (x *CreateTenantRequest) GetOrganizationId() string { @@ -29375,7 +29497,7 @@ type CreateTenantResponse struct { func (x *CreateTenantResponse) Reset() { *x = CreateTenantResponse{} - mi := &file_nico_nico_proto_msgTypes[372] + mi := &file_nico_nico_proto_msgTypes[374] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29387,7 +29509,7 @@ func (x *CreateTenantResponse) String() string { func (*CreateTenantResponse) ProtoMessage() {} func (x *CreateTenantResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[372] + mi := &file_nico_nico_proto_msgTypes[374] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29400,7 +29522,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{372} + return file_nico_nico_proto_rawDescGZIP(), []int{374} } func (x *CreateTenantResponse) GetTenant() *Tenant { @@ -29425,7 +29547,7 @@ type UpdateTenantRequest struct { func (x *UpdateTenantRequest) Reset() { *x = UpdateTenantRequest{} - mi := &file_nico_nico_proto_msgTypes[373] + mi := &file_nico_nico_proto_msgTypes[375] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29437,7 +29559,7 @@ func (x *UpdateTenantRequest) String() string { func (*UpdateTenantRequest) ProtoMessage() {} func (x *UpdateTenantRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[373] + mi := &file_nico_nico_proto_msgTypes[375] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29450,7 +29572,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{373} + return file_nico_nico_proto_rawDescGZIP(), []int{375} } func (x *UpdateTenantRequest) GetOrganizationId() string { @@ -29491,7 +29613,7 @@ type UpdateTenantResponse struct { func (x *UpdateTenantResponse) Reset() { *x = UpdateTenantResponse{} - mi := &file_nico_nico_proto_msgTypes[374] + mi := &file_nico_nico_proto_msgTypes[376] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29503,7 +29625,7 @@ func (x *UpdateTenantResponse) String() string { func (*UpdateTenantResponse) ProtoMessage() {} func (x *UpdateTenantResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[374] + mi := &file_nico_nico_proto_msgTypes[376] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29516,7 +29638,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{374} + return file_nico_nico_proto_rawDescGZIP(), []int{376} } func (x *UpdateTenantResponse) GetTenant() *Tenant { @@ -29535,7 +29657,7 @@ type FindTenantRequest struct { func (x *FindTenantRequest) Reset() { *x = FindTenantRequest{} - mi := &file_nico_nico_proto_msgTypes[375] + mi := &file_nico_nico_proto_msgTypes[377] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29547,7 +29669,7 @@ func (x *FindTenantRequest) String() string { func (*FindTenantRequest) ProtoMessage() {} func (x *FindTenantRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[375] + mi := &file_nico_nico_proto_msgTypes[377] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29560,7 +29682,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{375} + return file_nico_nico_proto_rawDescGZIP(), []int{377} } func (x *FindTenantRequest) GetTenantOrganizationId() string { @@ -29579,7 +29701,7 @@ type FindTenantResponse struct { func (x *FindTenantResponse) Reset() { *x = FindTenantResponse{} - mi := &file_nico_nico_proto_msgTypes[376] + mi := &file_nico_nico_proto_msgTypes[378] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29591,7 +29713,7 @@ func (x *FindTenantResponse) String() string { func (*FindTenantResponse) ProtoMessage() {} func (x *FindTenantResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[376] + mi := &file_nico_nico_proto_msgTypes[378] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29604,7 +29726,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{376} + return file_nico_nico_proto_rawDescGZIP(), []int{378} } func (x *FindTenantResponse) GetTenant() *Tenant { @@ -29627,7 +29749,7 @@ type TenantKeysetIdentifier struct { func (x *TenantKeysetIdentifier) Reset() { *x = TenantKeysetIdentifier{} - mi := &file_nico_nico_proto_msgTypes[377] + mi := &file_nico_nico_proto_msgTypes[379] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29639,7 +29761,7 @@ func (x *TenantKeysetIdentifier) String() string { func (*TenantKeysetIdentifier) ProtoMessage() {} func (x *TenantKeysetIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[377] + mi := &file_nico_nico_proto_msgTypes[379] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29652,7 +29774,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{377} + return file_nico_nico_proto_rawDescGZIP(), []int{379} } func (x *TenantKeysetIdentifier) GetOrganizationId() string { @@ -29679,7 +29801,7 @@ type TenantPublicKey struct { func (x *TenantPublicKey) Reset() { *x = TenantPublicKey{} - mi := &file_nico_nico_proto_msgTypes[378] + mi := &file_nico_nico_proto_msgTypes[380] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29691,7 +29813,7 @@ func (x *TenantPublicKey) String() string { func (*TenantPublicKey) ProtoMessage() {} func (x *TenantPublicKey) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[378] + mi := &file_nico_nico_proto_msgTypes[380] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29704,7 +29826,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{378} + return file_nico_nico_proto_rawDescGZIP(), []int{380} } func (x *TenantPublicKey) GetPublicKey() string { @@ -29730,7 +29852,7 @@ type TenantKeysetContent struct { func (x *TenantKeysetContent) Reset() { *x = TenantKeysetContent{} - mi := &file_nico_nico_proto_msgTypes[379] + mi := &file_nico_nico_proto_msgTypes[381] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29742,7 +29864,7 @@ func (x *TenantKeysetContent) String() string { func (*TenantKeysetContent) ProtoMessage() {} func (x *TenantKeysetContent) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[379] + mi := &file_nico_nico_proto_msgTypes[381] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29755,7 +29877,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{379} + return file_nico_nico_proto_rawDescGZIP(), []int{381} } func (x *TenantKeysetContent) GetPublicKeys() []*TenantPublicKey { @@ -29777,7 +29899,7 @@ type TenantKeyset struct { func (x *TenantKeyset) Reset() { *x = TenantKeyset{} - mi := &file_nico_nico_proto_msgTypes[380] + mi := &file_nico_nico_proto_msgTypes[382] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29789,7 +29911,7 @@ func (x *TenantKeyset) String() string { func (*TenantKeyset) ProtoMessage() {} func (x *TenantKeyset) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[380] + mi := &file_nico_nico_proto_msgTypes[382] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29802,7 +29924,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{380} + return file_nico_nico_proto_rawDescGZIP(), []int{382} } func (x *TenantKeyset) GetKeysetIdentifier() *TenantKeysetIdentifier { @@ -29841,7 +29963,7 @@ type CreateTenantKeysetRequest struct { func (x *CreateTenantKeysetRequest) Reset() { *x = CreateTenantKeysetRequest{} - mi := &file_nico_nico_proto_msgTypes[381] + mi := &file_nico_nico_proto_msgTypes[383] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29853,7 +29975,7 @@ func (x *CreateTenantKeysetRequest) String() string { func (*CreateTenantKeysetRequest) ProtoMessage() {} func (x *CreateTenantKeysetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[381] + mi := &file_nico_nico_proto_msgTypes[383] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29866,7 +29988,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{381} + return file_nico_nico_proto_rawDescGZIP(), []int{383} } func (x *CreateTenantKeysetRequest) GetKeysetIdentifier() *TenantKeysetIdentifier { @@ -29899,7 +30021,7 @@ type CreateTenantKeysetResponse struct { func (x *CreateTenantKeysetResponse) Reset() { *x = CreateTenantKeysetResponse{} - mi := &file_nico_nico_proto_msgTypes[382] + mi := &file_nico_nico_proto_msgTypes[384] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29911,7 +30033,7 @@ func (x *CreateTenantKeysetResponse) String() string { func (*CreateTenantKeysetResponse) ProtoMessage() {} func (x *CreateTenantKeysetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[382] + mi := &file_nico_nico_proto_msgTypes[384] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29924,7 +30046,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{382} + return file_nico_nico_proto_rawDescGZIP(), []int{384} } func (x *CreateTenantKeysetResponse) GetKeyset() *TenantKeyset { @@ -29943,7 +30065,7 @@ type TenantKeySetList struct { func (x *TenantKeySetList) Reset() { *x = TenantKeySetList{} - mi := &file_nico_nico_proto_msgTypes[383] + mi := &file_nico_nico_proto_msgTypes[385] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29955,7 +30077,7 @@ func (x *TenantKeySetList) String() string { func (*TenantKeySetList) ProtoMessage() {} func (x *TenantKeySetList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[383] + mi := &file_nico_nico_proto_msgTypes[385] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29968,7 +30090,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{383} + return file_nico_nico_proto_rawDescGZIP(), []int{385} } func (x *TenantKeySetList) GetKeyset() []*TenantKeyset { @@ -29996,7 +30118,7 @@ type UpdateTenantKeysetRequest struct { func (x *UpdateTenantKeysetRequest) Reset() { *x = UpdateTenantKeysetRequest{} - mi := &file_nico_nico_proto_msgTypes[384] + mi := &file_nico_nico_proto_msgTypes[386] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30008,7 +30130,7 @@ func (x *UpdateTenantKeysetRequest) String() string { func (*UpdateTenantKeysetRequest) ProtoMessage() {} func (x *UpdateTenantKeysetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[384] + mi := &file_nico_nico_proto_msgTypes[386] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30021,7 +30143,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{384} + return file_nico_nico_proto_rawDescGZIP(), []int{386} } func (x *UpdateTenantKeysetRequest) GetKeysetIdentifier() *TenantKeysetIdentifier { @@ -30060,7 +30182,7 @@ type UpdateTenantKeysetResponse struct { func (x *UpdateTenantKeysetResponse) Reset() { *x = UpdateTenantKeysetResponse{} - mi := &file_nico_nico_proto_msgTypes[385] + mi := &file_nico_nico_proto_msgTypes[387] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30072,7 +30194,7 @@ func (x *UpdateTenantKeysetResponse) String() string { func (*UpdateTenantKeysetResponse) ProtoMessage() {} func (x *UpdateTenantKeysetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[385] + mi := &file_nico_nico_proto_msgTypes[387] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30085,7 +30207,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{385} + return file_nico_nico_proto_rawDescGZIP(), []int{387} } type DeleteTenantKeysetRequest struct { @@ -30097,7 +30219,7 @@ type DeleteTenantKeysetRequest struct { func (x *DeleteTenantKeysetRequest) Reset() { *x = DeleteTenantKeysetRequest{} - mi := &file_nico_nico_proto_msgTypes[386] + mi := &file_nico_nico_proto_msgTypes[388] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30109,7 +30231,7 @@ func (x *DeleteTenantKeysetRequest) String() string { func (*DeleteTenantKeysetRequest) ProtoMessage() {} func (x *DeleteTenantKeysetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[386] + mi := &file_nico_nico_proto_msgTypes[388] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30122,7 +30244,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{386} + return file_nico_nico_proto_rawDescGZIP(), []int{388} } func (x *DeleteTenantKeysetRequest) GetKeysetIdentifier() *TenantKeysetIdentifier { @@ -30140,7 +30262,7 @@ type DeleteTenantKeysetResponse struct { func (x *DeleteTenantKeysetResponse) Reset() { *x = DeleteTenantKeysetResponse{} - mi := &file_nico_nico_proto_msgTypes[387] + mi := &file_nico_nico_proto_msgTypes[389] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30152,7 +30274,7 @@ func (x *DeleteTenantKeysetResponse) String() string { func (*DeleteTenantKeysetResponse) ProtoMessage() {} func (x *DeleteTenantKeysetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[387] + mi := &file_nico_nico_proto_msgTypes[389] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30165,7 +30287,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{387} + return file_nico_nico_proto_rawDescGZIP(), []int{389} } type TenantKeysetSearchFilter struct { @@ -30177,7 +30299,7 @@ type TenantKeysetSearchFilter struct { func (x *TenantKeysetSearchFilter) Reset() { *x = TenantKeysetSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[388] + mi := &file_nico_nico_proto_msgTypes[390] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30189,7 +30311,7 @@ func (x *TenantKeysetSearchFilter) String() string { func (*TenantKeysetSearchFilter) ProtoMessage() {} func (x *TenantKeysetSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[388] + mi := &file_nico_nico_proto_msgTypes[390] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30202,7 +30324,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{388} + return file_nico_nico_proto_rawDescGZIP(), []int{390} } func (x *TenantKeysetSearchFilter) GetTenantOrgId() string { @@ -30221,7 +30343,7 @@ type TenantKeysetIdList struct { func (x *TenantKeysetIdList) Reset() { *x = TenantKeysetIdList{} - mi := &file_nico_nico_proto_msgTypes[389] + mi := &file_nico_nico_proto_msgTypes[391] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30233,7 +30355,7 @@ func (x *TenantKeysetIdList) String() string { func (*TenantKeysetIdList) ProtoMessage() {} func (x *TenantKeysetIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[389] + mi := &file_nico_nico_proto_msgTypes[391] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30246,7 +30368,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{389} + return file_nico_nico_proto_rawDescGZIP(), []int{391} } func (x *TenantKeysetIdList) GetKeysetIds() []*TenantKeysetIdentifier { @@ -30266,7 +30388,7 @@ type TenantKeysetsByIdsRequest struct { func (x *TenantKeysetsByIdsRequest) Reset() { *x = TenantKeysetsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[390] + mi := &file_nico_nico_proto_msgTypes[392] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30278,7 +30400,7 @@ func (x *TenantKeysetsByIdsRequest) String() string { func (*TenantKeysetsByIdsRequest) ProtoMessage() {} func (x *TenantKeysetsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[390] + mi := &file_nico_nico_proto_msgTypes[392] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30291,7 +30413,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{390} + return file_nico_nico_proto_rawDescGZIP(), []int{392} } func (x *TenantKeysetsByIdsRequest) GetKeysetIds() []*TenantKeysetIdentifier { @@ -30323,7 +30445,7 @@ type ValidateTenantPublicKeyRequest struct { func (x *ValidateTenantPublicKeyRequest) Reset() { *x = ValidateTenantPublicKeyRequest{} - mi := &file_nico_nico_proto_msgTypes[391] + mi := &file_nico_nico_proto_msgTypes[393] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30335,7 +30457,7 @@ func (x *ValidateTenantPublicKeyRequest) String() string { func (*ValidateTenantPublicKeyRequest) ProtoMessage() {} func (x *ValidateTenantPublicKeyRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[391] + mi := &file_nico_nico_proto_msgTypes[393] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30348,7 +30470,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{391} + return file_nico_nico_proto_rawDescGZIP(), []int{393} } func (x *ValidateTenantPublicKeyRequest) GetInstanceId() string { @@ -30374,7 +30496,7 @@ type ValidateTenantPublicKeyResponse struct { func (x *ValidateTenantPublicKeyResponse) Reset() { *x = ValidateTenantPublicKeyResponse{} - mi := &file_nico_nico_proto_msgTypes[392] + mi := &file_nico_nico_proto_msgTypes[394] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30386,7 +30508,7 @@ func (x *ValidateTenantPublicKeyResponse) String() string { func (*ValidateTenantPublicKeyResponse) ProtoMessage() {} func (x *ValidateTenantPublicKeyResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[392] + mi := &file_nico_nico_proto_msgTypes[394] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30399,7 +30521,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{392} + return file_nico_nico_proto_rawDescGZIP(), []int{394} } type ListResourcePoolsRequest struct { @@ -30411,7 +30533,7 @@ type ListResourcePoolsRequest struct { func (x *ListResourcePoolsRequest) Reset() { *x = ListResourcePoolsRequest{} - mi := &file_nico_nico_proto_msgTypes[393] + mi := &file_nico_nico_proto_msgTypes[395] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30423,7 +30545,7 @@ func (x *ListResourcePoolsRequest) String() string { func (*ListResourcePoolsRequest) ProtoMessage() {} func (x *ListResourcePoolsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[393] + mi := &file_nico_nico_proto_msgTypes[395] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30436,7 +30558,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{393} + return file_nico_nico_proto_rawDescGZIP(), []int{395} } func (x *ListResourcePoolsRequest) GetAutoAssignable() bool { @@ -30455,7 +30577,7 @@ type ResourcePools struct { func (x *ResourcePools) Reset() { *x = ResourcePools{} - mi := &file_nico_nico_proto_msgTypes[394] + mi := &file_nico_nico_proto_msgTypes[396] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30467,7 +30589,7 @@ func (x *ResourcePools) String() string { func (*ResourcePools) ProtoMessage() {} func (x *ResourcePools) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[394] + mi := &file_nico_nico_proto_msgTypes[396] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30480,7 +30602,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{394} + return file_nico_nico_proto_rawDescGZIP(), []int{396} } func (x *ResourcePools) GetPools() []*ResourcePool { @@ -30503,7 +30625,7 @@ type ResourcePool struct { func (x *ResourcePool) Reset() { *x = ResourcePool{} - mi := &file_nico_nico_proto_msgTypes[395] + mi := &file_nico_nico_proto_msgTypes[397] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30515,7 +30637,7 @@ func (x *ResourcePool) String() string { func (*ResourcePool) ProtoMessage() {} func (x *ResourcePool) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[395] + mi := &file_nico_nico_proto_msgTypes[397] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30528,7 +30650,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{395} + return file_nico_nico_proto_rawDescGZIP(), []int{397} } func (x *ResourcePool) GetName() string { @@ -30576,7 +30698,7 @@ type GrowResourcePoolRequest struct { func (x *GrowResourcePoolRequest) Reset() { *x = GrowResourcePoolRequest{} - mi := &file_nico_nico_proto_msgTypes[396] + mi := &file_nico_nico_proto_msgTypes[398] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30588,7 +30710,7 @@ func (x *GrowResourcePoolRequest) String() string { func (*GrowResourcePoolRequest) ProtoMessage() {} func (x *GrowResourcePoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[396] + mi := &file_nico_nico_proto_msgTypes[398] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30601,7 +30723,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{396} + return file_nico_nico_proto_rawDescGZIP(), []int{398} } func (x *GrowResourcePoolRequest) GetText() string { @@ -30619,7 +30741,7 @@ type GrowResourcePoolResponse struct { func (x *GrowResourcePoolResponse) Reset() { *x = GrowResourcePoolResponse{} - mi := &file_nico_nico_proto_msgTypes[397] + mi := &file_nico_nico_proto_msgTypes[399] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30631,7 +30753,7 @@ func (x *GrowResourcePoolResponse) String() string { func (*GrowResourcePoolResponse) ProtoMessage() {} func (x *GrowResourcePoolResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[397] + mi := &file_nico_nico_proto_msgTypes[399] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30644,7 +30766,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{397} + return file_nico_nico_proto_rawDescGZIP(), []int{399} } type Range struct { @@ -30657,7 +30779,7 @@ type Range struct { func (x *Range) Reset() { *x = Range{} - mi := &file_nico_nico_proto_msgTypes[398] + mi := &file_nico_nico_proto_msgTypes[400] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30669,7 +30791,7 @@ func (x *Range) String() string { func (*Range) ProtoMessage() {} func (x *Range) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[398] + mi := &file_nico_nico_proto_msgTypes[400] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30682,7 +30804,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{398} + return file_nico_nico_proto_rawDescGZIP(), []int{400} } func (x *Range) GetStart() string { @@ -30709,7 +30831,7 @@ type MigrateVpcVniResponse struct { func (x *MigrateVpcVniResponse) Reset() { *x = MigrateVpcVniResponse{} - mi := &file_nico_nico_proto_msgTypes[399] + mi := &file_nico_nico_proto_msgTypes[401] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30721,7 +30843,7 @@ func (x *MigrateVpcVniResponse) String() string { func (*MigrateVpcVniResponse) ProtoMessage() {} func (x *MigrateVpcVniResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[399] + mi := &file_nico_nico_proto_msgTypes[401] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30734,7 +30856,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{399} + return file_nico_nico_proto_rawDescGZIP(), []int{401} } func (x *MigrateVpcVniResponse) GetUpdatedCount() uint32 { @@ -30764,7 +30886,7 @@ type MaintenanceRequest struct { func (x *MaintenanceRequest) Reset() { *x = MaintenanceRequest{} - mi := &file_nico_nico_proto_msgTypes[400] + mi := &file_nico_nico_proto_msgTypes[402] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30776,7 +30898,7 @@ func (x *MaintenanceRequest) String() string { func (*MaintenanceRequest) ProtoMessage() {} func (x *MaintenanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[400] + mi := &file_nico_nico_proto_msgTypes[402] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30789,7 +30911,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{400} + return file_nico_nico_proto_rawDescGZIP(), []int{402} } func (x *MaintenanceRequest) GetOperation() MaintenanceOperation { @@ -30824,7 +30946,7 @@ type SetDynamicConfigRequest struct { func (x *SetDynamicConfigRequest) Reset() { *x = SetDynamicConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[401] + mi := &file_nico_nico_proto_msgTypes[403] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30836,7 +30958,7 @@ func (x *SetDynamicConfigRequest) String() string { func (*SetDynamicConfigRequest) ProtoMessage() {} func (x *SetDynamicConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[401] + mi := &file_nico_nico_proto_msgTypes[403] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30849,7 +30971,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{401} + return file_nico_nico_proto_rawDescGZIP(), []int{403} } func (x *SetDynamicConfigRequest) GetSetting() ConfigSetting { @@ -30882,7 +31004,7 @@ type FindIpAddressRequest struct { func (x *FindIpAddressRequest) Reset() { *x = FindIpAddressRequest{} - mi := &file_nico_nico_proto_msgTypes[402] + mi := &file_nico_nico_proto_msgTypes[404] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30894,7 +31016,7 @@ func (x *FindIpAddressRequest) String() string { func (*FindIpAddressRequest) ProtoMessage() {} func (x *FindIpAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[402] + mi := &file_nico_nico_proto_msgTypes[404] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30907,7 +31029,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{402} + return file_nico_nico_proto_rawDescGZIP(), []int{404} } func (x *FindIpAddressRequest) GetIp() string { @@ -30927,7 +31049,7 @@ type FindIpAddressResponse struct { func (x *FindIpAddressResponse) Reset() { *x = FindIpAddressResponse{} - mi := &file_nico_nico_proto_msgTypes[403] + mi := &file_nico_nico_proto_msgTypes[405] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30939,7 +31061,7 @@ func (x *FindIpAddressResponse) String() string { func (*FindIpAddressResponse) ProtoMessage() {} func (x *FindIpAddressResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[403] + mi := &file_nico_nico_proto_msgTypes[405] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30952,7 +31074,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{403} + return file_nico_nico_proto_rawDescGZIP(), []int{405} } func (x *FindIpAddressResponse) GetMatches() []*IpAddressMatch { @@ -30978,7 +31100,7 @@ type IdentifyUuidRequest struct { func (x *IdentifyUuidRequest) Reset() { *x = IdentifyUuidRequest{} - mi := &file_nico_nico_proto_msgTypes[404] + mi := &file_nico_nico_proto_msgTypes[406] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30990,7 +31112,7 @@ func (x *IdentifyUuidRequest) String() string { func (*IdentifyUuidRequest) ProtoMessage() {} func (x *IdentifyUuidRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[404] + mi := &file_nico_nico_proto_msgTypes[406] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31003,7 +31125,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{404} + return file_nico_nico_proto_rawDescGZIP(), []int{406} } func (x *IdentifyUuidRequest) GetUuid() *UUID { @@ -31023,7 +31145,7 @@ type IdentifyUuidResponse struct { func (x *IdentifyUuidResponse) Reset() { *x = IdentifyUuidResponse{} - mi := &file_nico_nico_proto_msgTypes[405] + mi := &file_nico_nico_proto_msgTypes[407] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31035,7 +31157,7 @@ func (x *IdentifyUuidResponse) String() string { func (*IdentifyUuidResponse) ProtoMessage() {} func (x *IdentifyUuidResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[405] + mi := &file_nico_nico_proto_msgTypes[407] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31048,7 +31170,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{405} + return file_nico_nico_proto_rawDescGZIP(), []int{407} } func (x *IdentifyUuidResponse) GetUuid() *UUID { @@ -31078,7 +31200,7 @@ type FindBmcIpsRequest struct { func (x *FindBmcIpsRequest) Reset() { *x = FindBmcIpsRequest{} - mi := &file_nico_nico_proto_msgTypes[406] + mi := &file_nico_nico_proto_msgTypes[408] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31090,7 +31212,7 @@ func (x *FindBmcIpsRequest) String() string { func (*FindBmcIpsRequest) ProtoMessage() {} func (x *FindBmcIpsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[406] + mi := &file_nico_nico_proto_msgTypes[408] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31103,7 +31225,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{406} + return file_nico_nico_proto_rawDescGZIP(), []int{408} } func (x *FindBmcIpsRequest) GetLookupBy() isFindBmcIpsRequest_LookupBy { @@ -31156,7 +31278,7 @@ type IdentifyMacRequest struct { func (x *IdentifyMacRequest) Reset() { *x = IdentifyMacRequest{} - mi := &file_nico_nico_proto_msgTypes[407] + mi := &file_nico_nico_proto_msgTypes[409] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31168,7 +31290,7 @@ func (x *IdentifyMacRequest) String() string { func (*IdentifyMacRequest) ProtoMessage() {} func (x *IdentifyMacRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[407] + mi := &file_nico_nico_proto_msgTypes[409] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31181,7 +31303,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{407} + return file_nico_nico_proto_rawDescGZIP(), []int{409} } func (x *IdentifyMacRequest) GetMacAddress() string { @@ -31202,7 +31324,7 @@ type IdentifyMacResponse struct { func (x *IdentifyMacResponse) Reset() { *x = IdentifyMacResponse{} - mi := &file_nico_nico_proto_msgTypes[408] + mi := &file_nico_nico_proto_msgTypes[410] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31214,7 +31336,7 @@ func (x *IdentifyMacResponse) String() string { func (*IdentifyMacResponse) ProtoMessage() {} func (x *IdentifyMacResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[408] + mi := &file_nico_nico_proto_msgTypes[410] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31227,7 +31349,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{408} + return file_nico_nico_proto_rawDescGZIP(), []int{410} } func (x *IdentifyMacResponse) GetMacAddress() string { @@ -31262,7 +31384,7 @@ type IdentifySerialRequest struct { func (x *IdentifySerialRequest) Reset() { *x = IdentifySerialRequest{} - mi := &file_nico_nico_proto_msgTypes[409] + mi := &file_nico_nico_proto_msgTypes[411] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31274,7 +31396,7 @@ func (x *IdentifySerialRequest) String() string { func (*IdentifySerialRequest) ProtoMessage() {} func (x *IdentifySerialRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[409] + mi := &file_nico_nico_proto_msgTypes[411] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31287,7 +31409,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{409} + return file_nico_nico_proto_rawDescGZIP(), []int{411} } func (x *IdentifySerialRequest) GetSerialNumber() string { @@ -31314,7 +31436,7 @@ type IdentifySerialResponse struct { func (x *IdentifySerialResponse) Reset() { *x = IdentifySerialResponse{} - mi := &file_nico_nico_proto_msgTypes[410] + mi := &file_nico_nico_proto_msgTypes[412] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31326,7 +31448,7 @@ func (x *IdentifySerialResponse) String() string { func (*IdentifySerialResponse) ProtoMessage() {} func (x *IdentifySerialResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[410] + mi := &file_nico_nico_proto_msgTypes[412] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31339,7 +31461,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{410} + return file_nico_nico_proto_rawDescGZIP(), []int{412} } func (x *IdentifySerialResponse) GetSerialNumber() string { @@ -31370,7 +31492,7 @@ type DpuReprovisioningRequest struct { func (x *DpuReprovisioningRequest) Reset() { *x = DpuReprovisioningRequest{} - mi := &file_nico_nico_proto_msgTypes[411] + mi := &file_nico_nico_proto_msgTypes[413] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31382,7 +31504,7 @@ func (x *DpuReprovisioningRequest) String() string { func (*DpuReprovisioningRequest) ProtoMessage() {} func (x *DpuReprovisioningRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[411] + mi := &file_nico_nico_proto_msgTypes[413] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31395,7 +31517,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{411} + return file_nico_nico_proto_rawDescGZIP(), []int{413} } func (x *DpuReprovisioningRequest) GetDpuId() *MachineId { @@ -31441,7 +31563,7 @@ type DpuReprovisioningListRequest struct { func (x *DpuReprovisioningListRequest) Reset() { *x = DpuReprovisioningListRequest{} - mi := &file_nico_nico_proto_msgTypes[412] + mi := &file_nico_nico_proto_msgTypes[414] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31453,7 +31575,7 @@ func (x *DpuReprovisioningListRequest) String() string { func (*DpuReprovisioningListRequest) ProtoMessage() {} func (x *DpuReprovisioningListRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[412] + mi := &file_nico_nico_proto_msgTypes[414] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31466,7 +31588,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{412} + return file_nico_nico_proto_rawDescGZIP(), []int{414} } type DpuReprovisioningListResponse struct { @@ -31478,7 +31600,7 @@ type DpuReprovisioningListResponse struct { func (x *DpuReprovisioningListResponse) Reset() { *x = DpuReprovisioningListResponse{} - mi := &file_nico_nico_proto_msgTypes[413] + mi := &file_nico_nico_proto_msgTypes[415] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31490,7 +31612,7 @@ func (x *DpuReprovisioningListResponse) String() string { func (*DpuReprovisioningListResponse) ProtoMessage() {} func (x *DpuReprovisioningListResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[413] + mi := &file_nico_nico_proto_msgTypes[415] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31503,7 +31625,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{413} + return file_nico_nico_proto_rawDescGZIP(), []int{415} } func (x *DpuReprovisioningListResponse) GetDpus() []*DpuReprovisioningListResponse_DpuReprovisioningListItem { @@ -31524,7 +31646,7 @@ type HostReprovisioningRequest struct { func (x *HostReprovisioningRequest) Reset() { *x = HostReprovisioningRequest{} - mi := &file_nico_nico_proto_msgTypes[414] + mi := &file_nico_nico_proto_msgTypes[416] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31536,7 +31658,7 @@ func (x *HostReprovisioningRequest) String() string { func (*HostReprovisioningRequest) ProtoMessage() {} func (x *HostReprovisioningRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[414] + mi := &file_nico_nico_proto_msgTypes[416] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31549,7 +31671,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{414} + return file_nico_nico_proto_rawDescGZIP(), []int{416} } func (x *HostReprovisioningRequest) GetMachineId() *MachineId { @@ -31581,7 +31703,7 @@ type HostReprovisioningListRequest struct { func (x *HostReprovisioningListRequest) Reset() { *x = HostReprovisioningListRequest{} - mi := &file_nico_nico_proto_msgTypes[415] + mi := &file_nico_nico_proto_msgTypes[417] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31593,7 +31715,7 @@ func (x *HostReprovisioningListRequest) String() string { func (*HostReprovisioningListRequest) ProtoMessage() {} func (x *HostReprovisioningListRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[415] + mi := &file_nico_nico_proto_msgTypes[417] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31606,7 +31728,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{415} + return file_nico_nico_proto_rawDescGZIP(), []int{417} } type HostReprovisioningListResponse struct { @@ -31618,7 +31740,7 @@ type HostReprovisioningListResponse struct { func (x *HostReprovisioningListResponse) Reset() { *x = HostReprovisioningListResponse{} - mi := &file_nico_nico_proto_msgTypes[416] + mi := &file_nico_nico_proto_msgTypes[418] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31630,7 +31752,7 @@ func (x *HostReprovisioningListResponse) String() string { func (*HostReprovisioningListResponse) ProtoMessage() {} func (x *HostReprovisioningListResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[416] + mi := &file_nico_nico_proto_msgTypes[418] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31643,7 +31765,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{416} + return file_nico_nico_proto_rawDescGZIP(), []int{418} } func (x *HostReprovisioningListResponse) GetHosts() []*HostReprovisioningListResponse_HostReprovisioningListItem { @@ -31662,7 +31784,7 @@ type DpuOsOperationalState struct { func (x *DpuOsOperationalState) Reset() { *x = DpuOsOperationalState{} - mi := &file_nico_nico_proto_msgTypes[417] + mi := &file_nico_nico_proto_msgTypes[419] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31674,7 +31796,7 @@ func (x *DpuOsOperationalState) String() string { func (*DpuOsOperationalState) ProtoMessage() {} func (x *DpuOsOperationalState) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[417] + mi := &file_nico_nico_proto_msgTypes[419] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31687,7 +31809,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{417} + return file_nico_nico_proto_rawDescGZIP(), []int{419} } func (x *DpuOsOperationalState) GetStateDetail() string { @@ -31708,7 +31830,7 @@ type DpuRepresentorStatus struct { func (x *DpuRepresentorStatus) Reset() { *x = DpuRepresentorStatus{} - mi := &file_nico_nico_proto_msgTypes[418] + mi := &file_nico_nico_proto_msgTypes[420] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31720,7 +31842,7 @@ func (x *DpuRepresentorStatus) String() string { func (*DpuRepresentorStatus) ProtoMessage() {} func (x *DpuRepresentorStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[418] + mi := &file_nico_nico_proto_msgTypes[420] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31733,7 +31855,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{418} + return file_nico_nico_proto_rawDescGZIP(), []int{420} } func (x *DpuRepresentorStatus) GetName() string { @@ -31769,7 +31891,7 @@ type DpuInfoStatusObservation struct { func (x *DpuInfoStatusObservation) Reset() { *x = DpuInfoStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[419] + mi := &file_nico_nico_proto_msgTypes[421] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31781,7 +31903,7 @@ func (x *DpuInfoStatusObservation) String() string { func (*DpuInfoStatusObservation) ProtoMessage() {} func (x *DpuInfoStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[419] + mi := &file_nico_nico_proto_msgTypes[421] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31794,7 +31916,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{419} + return file_nico_nico_proto_rawDescGZIP(), []int{421} } func (x *DpuInfoStatusObservation) GetOsOperationalState() *DpuOsOperationalState { @@ -31836,7 +31958,7 @@ type DpuInfo struct { func (x *DpuInfo) Reset() { *x = DpuInfo{} - mi := &file_nico_nico_proto_msgTypes[420] + mi := &file_nico_nico_proto_msgTypes[422] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31848,7 +31970,7 @@ func (x *DpuInfo) String() string { func (*DpuInfo) ProtoMessage() {} func (x *DpuInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[420] + mi := &file_nico_nico_proto_msgTypes[422] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31861,7 +31983,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{420} + return file_nico_nico_proto_rawDescGZIP(), []int{422} } func (x *DpuInfo) GetId() string { @@ -31893,7 +32015,7 @@ type GetDpuInfoListRequest struct { func (x *GetDpuInfoListRequest) Reset() { *x = GetDpuInfoListRequest{} - mi := &file_nico_nico_proto_msgTypes[421] + mi := &file_nico_nico_proto_msgTypes[423] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31905,7 +32027,7 @@ func (x *GetDpuInfoListRequest) String() string { func (*GetDpuInfoListRequest) ProtoMessage() {} func (x *GetDpuInfoListRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[421] + mi := &file_nico_nico_proto_msgTypes[423] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31918,7 +32040,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{421} + return file_nico_nico_proto_rawDescGZIP(), []int{423} } type GetDpuInfoListResponse struct { @@ -31930,7 +32052,7 @@ type GetDpuInfoListResponse struct { func (x *GetDpuInfoListResponse) Reset() { *x = GetDpuInfoListResponse{} - mi := &file_nico_nico_proto_msgTypes[422] + mi := &file_nico_nico_proto_msgTypes[424] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31942,7 +32064,7 @@ func (x *GetDpuInfoListResponse) String() string { func (*GetDpuInfoListResponse) ProtoMessage() {} func (x *GetDpuInfoListResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[422] + mi := &file_nico_nico_proto_msgTypes[424] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31955,7 +32077,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{422} + return file_nico_nico_proto_rawDescGZIP(), []int{424} } func (x *GetDpuInfoListResponse) GetDpuList() []*DpuInfo { @@ -31976,7 +32098,7 @@ type IpAddressMatch struct { func (x *IpAddressMatch) Reset() { *x = IpAddressMatch{} - mi := &file_nico_nico_proto_msgTypes[423] + mi := &file_nico_nico_proto_msgTypes[425] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31988,7 +32110,7 @@ func (x *IpAddressMatch) String() string { func (*IpAddressMatch) ProtoMessage() {} func (x *IpAddressMatch) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[423] + mi := &file_nico_nico_proto_msgTypes[425] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32001,7 +32123,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{423} + return file_nico_nico_proto_rawDescGZIP(), []int{425} } func (x *IpAddressMatch) GetIpType() IpType { @@ -32036,7 +32158,7 @@ type MachineBootOverride struct { func (x *MachineBootOverride) Reset() { *x = MachineBootOverride{} - mi := &file_nico_nico_proto_msgTypes[424] + mi := &file_nico_nico_proto_msgTypes[426] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32048,7 +32170,7 @@ func (x *MachineBootOverride) String() string { func (*MachineBootOverride) ProtoMessage() {} func (x *MachineBootOverride) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[424] + mi := &file_nico_nico_proto_msgTypes[426] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32061,7 +32183,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{424} + return file_nico_nico_proto_rawDescGZIP(), []int{426} } func (x *MachineBootOverride) GetMachineInterfaceId() *MachineInterfaceId { @@ -32098,7 +32220,7 @@ type ConnectedDevice struct { func (x *ConnectedDevice) Reset() { *x = ConnectedDevice{} - mi := &file_nico_nico_proto_msgTypes[425] + mi := &file_nico_nico_proto_msgTypes[427] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32110,7 +32232,7 @@ func (x *ConnectedDevice) String() string { func (*ConnectedDevice) ProtoMessage() {} func (x *ConnectedDevice) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[425] + mi := &file_nico_nico_proto_msgTypes[427] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32123,7 +32245,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{425} + return file_nico_nico_proto_rawDescGZIP(), []int{427} } func (x *ConnectedDevice) GetId() *MachineId { @@ -32163,7 +32285,7 @@ type ConnectedDeviceList struct { func (x *ConnectedDeviceList) Reset() { *x = ConnectedDeviceList{} - mi := &file_nico_nico_proto_msgTypes[426] + mi := &file_nico_nico_proto_msgTypes[428] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32175,7 +32297,7 @@ func (x *ConnectedDeviceList) String() string { func (*ConnectedDeviceList) ProtoMessage() {} func (x *ConnectedDeviceList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[426] + mi := &file_nico_nico_proto_msgTypes[428] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32188,7 +32310,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{426} + return file_nico_nico_proto_rawDescGZIP(), []int{428} } func (x *ConnectedDeviceList) GetConnectedDevices() []*ConnectedDevice { @@ -32207,7 +32329,7 @@ type BmcIpList struct { func (x *BmcIpList) Reset() { *x = BmcIpList{} - mi := &file_nico_nico_proto_msgTypes[427] + mi := &file_nico_nico_proto_msgTypes[429] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32219,7 +32341,7 @@ func (x *BmcIpList) String() string { func (*BmcIpList) ProtoMessage() {} func (x *BmcIpList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[427] + mi := &file_nico_nico_proto_msgTypes[429] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32232,7 +32354,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{427} + return file_nico_nico_proto_rawDescGZIP(), []int{429} } func (x *BmcIpList) GetBmcIps() []string { @@ -32251,7 +32373,7 @@ type BmcIp struct { func (x *BmcIp) Reset() { *x = BmcIp{} - mi := &file_nico_nico_proto_msgTypes[428] + mi := &file_nico_nico_proto_msgTypes[430] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32263,7 +32385,7 @@ func (x *BmcIp) String() string { func (*BmcIp) ProtoMessage() {} func (x *BmcIp) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[428] + mi := &file_nico_nico_proto_msgTypes[430] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32276,7 +32398,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{428} + return file_nico_nico_proto_rawDescGZIP(), []int{430} } func (x *BmcIp) GetBmcIp() string { @@ -32296,7 +32418,7 @@ type MacAddressBmcIp struct { func (x *MacAddressBmcIp) Reset() { *x = MacAddressBmcIp{} - mi := &file_nico_nico_proto_msgTypes[429] + mi := &file_nico_nico_proto_msgTypes[431] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32308,7 +32430,7 @@ func (x *MacAddressBmcIp) String() string { func (*MacAddressBmcIp) ProtoMessage() {} func (x *MacAddressBmcIp) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[429] + mi := &file_nico_nico_proto_msgTypes[431] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32321,7 +32443,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{429} + return file_nico_nico_proto_rawDescGZIP(), []int{431} } func (x *MacAddressBmcIp) GetBmcIp() string { @@ -32347,7 +32469,7 @@ type MachineIdBmcIpPairs struct { func (x *MachineIdBmcIpPairs) Reset() { *x = MachineIdBmcIpPairs{} - mi := &file_nico_nico_proto_msgTypes[430] + mi := &file_nico_nico_proto_msgTypes[432] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32359,7 +32481,7 @@ func (x *MachineIdBmcIpPairs) String() string { func (*MachineIdBmcIpPairs) ProtoMessage() {} func (x *MachineIdBmcIpPairs) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[430] + mi := &file_nico_nico_proto_msgTypes[432] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32372,7 +32494,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{430} + return file_nico_nico_proto_rawDescGZIP(), []int{432} } func (x *MachineIdBmcIpPairs) GetPairs() []*MachineIdBmcIp { @@ -32392,7 +32514,7 @@ type MachineIdBmcIp struct { func (x *MachineIdBmcIp) Reset() { *x = MachineIdBmcIp{} - mi := &file_nico_nico_proto_msgTypes[431] + mi := &file_nico_nico_proto_msgTypes[433] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32404,7 +32526,7 @@ func (x *MachineIdBmcIp) String() string { func (*MachineIdBmcIp) ProtoMessage() {} func (x *MachineIdBmcIp) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[431] + mi := &file_nico_nico_proto_msgTypes[433] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32417,7 +32539,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{431} + return file_nico_nico_proto_rawDescGZIP(), []int{433} } func (x *MachineIdBmcIp) GetMachineId() *MachineId { @@ -32450,7 +32572,7 @@ type NetworkDevice struct { func (x *NetworkDevice) Reset() { *x = NetworkDevice{} - mi := &file_nico_nico_proto_msgTypes[432] + mi := &file_nico_nico_proto_msgTypes[434] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32462,7 +32584,7 @@ func (x *NetworkDevice) String() string { func (*NetworkDevice) ProtoMessage() {} func (x *NetworkDevice) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[432] + mi := &file_nico_nico_proto_msgTypes[434] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32475,7 +32597,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{432} + return file_nico_nico_proto_rawDescGZIP(), []int{434} } func (x *NetworkDevice) GetId() string { @@ -32536,7 +32658,7 @@ type NetworkTopologyRequest struct { func (x *NetworkTopologyRequest) Reset() { *x = NetworkTopologyRequest{} - mi := &file_nico_nico_proto_msgTypes[433] + mi := &file_nico_nico_proto_msgTypes[435] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32548,7 +32670,7 @@ func (x *NetworkTopologyRequest) String() string { func (*NetworkTopologyRequest) ProtoMessage() {} func (x *NetworkTopologyRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[433] + mi := &file_nico_nico_proto_msgTypes[435] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32561,7 +32683,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{433} + return file_nico_nico_proto_rawDescGZIP(), []int{435} } func (x *NetworkTopologyRequest) GetId() string { @@ -32580,7 +32702,7 @@ type NetworkDeviceIdList struct { func (x *NetworkDeviceIdList) Reset() { *x = NetworkDeviceIdList{} - mi := &file_nico_nico_proto_msgTypes[434] + mi := &file_nico_nico_proto_msgTypes[436] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32592,7 +32714,7 @@ func (x *NetworkDeviceIdList) String() string { func (*NetworkDeviceIdList) ProtoMessage() {} func (x *NetworkDeviceIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[434] + mi := &file_nico_nico_proto_msgTypes[436] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32605,7 +32727,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{434} + return file_nico_nico_proto_rawDescGZIP(), []int{436} } func (x *NetworkDeviceIdList) GetNetworkDeviceIds() []string { @@ -32624,7 +32746,7 @@ type NetworkTopologyData struct { func (x *NetworkTopologyData) Reset() { *x = NetworkTopologyData{} - mi := &file_nico_nico_proto_msgTypes[435] + mi := &file_nico_nico_proto_msgTypes[437] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32636,7 +32758,7 @@ func (x *NetworkTopologyData) String() string { func (*NetworkTopologyData) ProtoMessage() {} func (x *NetworkTopologyData) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[435] + mi := &file_nico_nico_proto_msgTypes[437] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32649,7 +32771,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{435} + return file_nico_nico_proto_rawDescGZIP(), []int{437} } func (x *NetworkTopologyData) GetNetworkDevices() []*NetworkDevice { @@ -32683,7 +32805,7 @@ type RouteServers struct { func (x *RouteServers) Reset() { *x = RouteServers{} - mi := &file_nico_nico_proto_msgTypes[436] + mi := &file_nico_nico_proto_msgTypes[438] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32695,7 +32817,7 @@ func (x *RouteServers) String() string { func (*RouteServers) ProtoMessage() {} func (x *RouteServers) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[436] + mi := &file_nico_nico_proto_msgTypes[438] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32708,7 +32830,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{436} + return file_nico_nico_proto_rawDescGZIP(), []int{438} } func (x *RouteServers) GetRouteServers() []string { @@ -32734,7 +32856,7 @@ type RouteServerEntries struct { func (x *RouteServerEntries) Reset() { *x = RouteServerEntries{} - mi := &file_nico_nico_proto_msgTypes[437] + mi := &file_nico_nico_proto_msgTypes[439] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32746,7 +32868,7 @@ func (x *RouteServerEntries) String() string { func (*RouteServerEntries) ProtoMessage() {} func (x *RouteServerEntries) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[437] + mi := &file_nico_nico_proto_msgTypes[439] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32759,7 +32881,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{437} + return file_nico_nico_proto_rawDescGZIP(), []int{439} } func (x *RouteServerEntries) GetRouteServers() []*RouteServer { @@ -32782,7 +32904,7 @@ type RouteServer struct { func (x *RouteServer) Reset() { *x = RouteServer{} - mi := &file_nico_nico_proto_msgTypes[438] + mi := &file_nico_nico_proto_msgTypes[440] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32794,7 +32916,7 @@ func (x *RouteServer) String() string { func (*RouteServer) ProtoMessage() {} func (x *RouteServer) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[438] + mi := &file_nico_nico_proto_msgTypes[440] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32807,7 +32929,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{438} + return file_nico_nico_proto_rawDescGZIP(), []int{440} } func (x *RouteServer) GetAddress() string { @@ -32836,7 +32958,7 @@ type SetHostUefiPasswordRequest struct { func (x *SetHostUefiPasswordRequest) Reset() { *x = SetHostUefiPasswordRequest{} - mi := &file_nico_nico_proto_msgTypes[439] + mi := &file_nico_nico_proto_msgTypes[441] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32848,7 +32970,7 @@ func (x *SetHostUefiPasswordRequest) String() string { func (*SetHostUefiPasswordRequest) ProtoMessage() {} func (x *SetHostUefiPasswordRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[439] + mi := &file_nico_nico_proto_msgTypes[441] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32861,7 +32983,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{439} + return file_nico_nico_proto_rawDescGZIP(), []int{441} } func (x *SetHostUefiPasswordRequest) GetHostId() *MachineId { @@ -32887,7 +33009,7 @@ type SetHostUefiPasswordResponse struct { func (x *SetHostUefiPasswordResponse) Reset() { *x = SetHostUefiPasswordResponse{} - mi := &file_nico_nico_proto_msgTypes[440] + mi := &file_nico_nico_proto_msgTypes[442] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32899,7 +33021,7 @@ func (x *SetHostUefiPasswordResponse) String() string { func (*SetHostUefiPasswordResponse) ProtoMessage() {} func (x *SetHostUefiPasswordResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[440] + mi := &file_nico_nico_proto_msgTypes[442] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32912,7 +33034,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{440} + return file_nico_nico_proto_rawDescGZIP(), []int{442} } func (x *SetHostUefiPasswordResponse) GetJobId() string { @@ -32934,7 +33056,7 @@ type ClearHostUefiPasswordRequest struct { func (x *ClearHostUefiPasswordRequest) Reset() { *x = ClearHostUefiPasswordRequest{} - mi := &file_nico_nico_proto_msgTypes[441] + mi := &file_nico_nico_proto_msgTypes[443] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32946,7 +33068,7 @@ func (x *ClearHostUefiPasswordRequest) String() string { func (*ClearHostUefiPasswordRequest) ProtoMessage() {} func (x *ClearHostUefiPasswordRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[441] + mi := &file_nico_nico_proto_msgTypes[443] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32959,7 +33081,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{441} + return file_nico_nico_proto_rawDescGZIP(), []int{443} } func (x *ClearHostUefiPasswordRequest) GetHostId() *MachineId { @@ -32985,7 +33107,7 @@ type ClearHostUefiPasswordResponse struct { func (x *ClearHostUefiPasswordResponse) Reset() { *x = ClearHostUefiPasswordResponse{} - mi := &file_nico_nico_proto_msgTypes[442] + mi := &file_nico_nico_proto_msgTypes[444] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32997,7 +33119,7 @@ func (x *ClearHostUefiPasswordResponse) String() string { func (*ClearHostUefiPasswordResponse) ProtoMessage() {} func (x *ClearHostUefiPasswordResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[442] + mi := &file_nico_nico_proto_msgTypes[444] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33010,7 +33132,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{442} + return file_nico_nico_proto_rawDescGZIP(), []int{444} } func (x *ClearHostUefiPasswordResponse) GetJobId() string { @@ -33046,7 +33168,7 @@ type OsImageAttributes struct { func (x *OsImageAttributes) Reset() { *x = OsImageAttributes{} - mi := &file_nico_nico_proto_msgTypes[443] + mi := &file_nico_nico_proto_msgTypes[445] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33058,7 +33180,7 @@ func (x *OsImageAttributes) String() string { func (*OsImageAttributes) ProtoMessage() {} func (x *OsImageAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[443] + mi := &file_nico_nico_proto_msgTypes[445] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33071,7 +33193,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{443} + return file_nico_nico_proto_rawDescGZIP(), []int{445} } func (x *OsImageAttributes) GetId() *UUID { @@ -33192,7 +33314,7 @@ type OsImage struct { func (x *OsImage) Reset() { *x = OsImage{} - mi := &file_nico_nico_proto_msgTypes[444] + mi := &file_nico_nico_proto_msgTypes[446] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33204,7 +33326,7 @@ func (x *OsImage) String() string { func (*OsImage) ProtoMessage() {} func (x *OsImage) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[444] + mi := &file_nico_nico_proto_msgTypes[446] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33217,7 +33339,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{444} + return file_nico_nico_proto_rawDescGZIP(), []int{446} } func (x *OsImage) GetAttributes() *OsImageAttributes { @@ -33264,7 +33386,7 @@ type ListOsImageRequest struct { func (x *ListOsImageRequest) Reset() { *x = ListOsImageRequest{} - mi := &file_nico_nico_proto_msgTypes[445] + mi := &file_nico_nico_proto_msgTypes[447] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33276,7 +33398,7 @@ func (x *ListOsImageRequest) String() string { func (*ListOsImageRequest) ProtoMessage() {} func (x *ListOsImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[445] + mi := &file_nico_nico_proto_msgTypes[447] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33289,7 +33411,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{445} + return file_nico_nico_proto_rawDescGZIP(), []int{447} } func (x *ListOsImageRequest) GetTenantOrganizationId() string { @@ -33308,7 +33430,7 @@ type ListOsImageResponse struct { func (x *ListOsImageResponse) Reset() { *x = ListOsImageResponse{} - mi := &file_nico_nico_proto_msgTypes[446] + mi := &file_nico_nico_proto_msgTypes[448] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33320,7 +33442,7 @@ func (x *ListOsImageResponse) String() string { func (*ListOsImageResponse) ProtoMessage() {} func (x *ListOsImageResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[446] + mi := &file_nico_nico_proto_msgTypes[448] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33333,7 +33455,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{446} + return file_nico_nico_proto_rawDescGZIP(), []int{448} } func (x *ListOsImageResponse) GetImages() []*OsImage { @@ -33353,7 +33475,7 @@ type DeleteOsImageRequest struct { func (x *DeleteOsImageRequest) Reset() { *x = DeleteOsImageRequest{} - mi := &file_nico_nico_proto_msgTypes[447] + mi := &file_nico_nico_proto_msgTypes[449] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33365,7 +33487,7 @@ func (x *DeleteOsImageRequest) String() string { func (*DeleteOsImageRequest) ProtoMessage() {} func (x *DeleteOsImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[447] + mi := &file_nico_nico_proto_msgTypes[449] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33378,7 +33500,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{447} + return file_nico_nico_proto_rawDescGZIP(), []int{449} } func (x *DeleteOsImageRequest) GetId() *UUID { @@ -33403,7 +33525,7 @@ type DeleteOsImageResponse struct { func (x *DeleteOsImageResponse) Reset() { *x = DeleteOsImageResponse{} - mi := &file_nico_nico_proto_msgTypes[448] + mi := &file_nico_nico_proto_msgTypes[450] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33415,7 +33537,7 @@ func (x *DeleteOsImageResponse) String() string { func (*DeleteOsImageResponse) ProtoMessage() {} func (x *DeleteOsImageResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[448] + mi := &file_nico_nico_proto_msgTypes[450] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33428,7 +33550,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{448} + return file_nico_nico_proto_rawDescGZIP(), []int{450} } // Request/Response messages for iPXE Script Template management @@ -33441,7 +33563,7 @@ type GetIpxeTemplateRequest struct { func (x *GetIpxeTemplateRequest) Reset() { *x = GetIpxeTemplateRequest{} - mi := &file_nico_nico_proto_msgTypes[449] + mi := &file_nico_nico_proto_msgTypes[451] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33453,7 +33575,7 @@ func (x *GetIpxeTemplateRequest) String() string { func (*GetIpxeTemplateRequest) ProtoMessage() {} func (x *GetIpxeTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[449] + mi := &file_nico_nico_proto_msgTypes[451] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33466,7 +33588,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{449} + return file_nico_nico_proto_rawDescGZIP(), []int{451} } func (x *GetIpxeTemplateRequest) GetId() *IpxeTemplateId { @@ -33484,7 +33606,7 @@ type ListIpxeTemplatesRequest struct { func (x *ListIpxeTemplatesRequest) Reset() { *x = ListIpxeTemplatesRequest{} - mi := &file_nico_nico_proto_msgTypes[450] + mi := &file_nico_nico_proto_msgTypes[452] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33496,7 +33618,7 @@ func (x *ListIpxeTemplatesRequest) String() string { func (*ListIpxeTemplatesRequest) ProtoMessage() {} func (x *ListIpxeTemplatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[450] + mi := &file_nico_nico_proto_msgTypes[452] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33509,7 +33631,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{450} + return file_nico_nico_proto_rawDescGZIP(), []int{452} } type IpxeTemplateList struct { @@ -33521,7 +33643,7 @@ type IpxeTemplateList struct { func (x *IpxeTemplateList) Reset() { *x = IpxeTemplateList{} - mi := &file_nico_nico_proto_msgTypes[451] + mi := &file_nico_nico_proto_msgTypes[453] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33533,7 +33655,7 @@ func (x *IpxeTemplateList) String() string { func (*IpxeTemplateList) ProtoMessage() {} func (x *IpxeTemplateList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[451] + mi := &file_nico_nico_proto_msgTypes[453] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33546,7 +33668,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{451} + return file_nico_nico_proto_rawDescGZIP(), []int{453} } func (x *IpxeTemplateList) GetTemplates() []*IpxeTemplate { @@ -33587,7 +33709,7 @@ type ExpectedHostNic struct { func (x *ExpectedHostNic) Reset() { *x = ExpectedHostNic{} - mi := &file_nico_nico_proto_msgTypes[452] + mi := &file_nico_nico_proto_msgTypes[454] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33599,7 +33721,7 @@ func (x *ExpectedHostNic) String() string { func (*ExpectedHostNic) ProtoMessage() {} func (x *ExpectedHostNic) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[452] + mi := &file_nico_nico_proto_msgTypes[454] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33612,7 +33734,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{452} + return file_nico_nico_proto_rawDescGZIP(), []int{454} } func (x *ExpectedHostNic) GetMacAddress() string { @@ -33678,7 +33800,7 @@ type HostLifecycleProfile struct { func (x *HostLifecycleProfile) Reset() { *x = HostLifecycleProfile{} - mi := &file_nico_nico_proto_msgTypes[453] + mi := &file_nico_nico_proto_msgTypes[455] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33690,7 +33812,7 @@ func (x *HostLifecycleProfile) String() string { func (*HostLifecycleProfile) ProtoMessage() {} func (x *HostLifecycleProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[453] + mi := &file_nico_nico_proto_msgTypes[455] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33703,7 +33825,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{453} + return file_nico_nico_proto_rawDescGZIP(), []int{455} } func (x *HostLifecycleProfile) GetDisableLockdown() bool { @@ -33761,7 +33883,7 @@ type ExpectedMachine struct { func (x *ExpectedMachine) Reset() { *x = ExpectedMachine{} - mi := &file_nico_nico_proto_msgTypes[454] + mi := &file_nico_nico_proto_msgTypes[456] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33773,7 +33895,7 @@ func (x *ExpectedMachine) String() string { func (*ExpectedMachine) ProtoMessage() {} func (x *ExpectedMachine) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[454] + mi := &file_nico_nico_proto_msgTypes[456] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33786,7 +33908,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{454} + return file_nico_nico_proto_rawDescGZIP(), []int{456} } func (x *ExpectedMachine) GetBmcMacAddress() string { @@ -33977,7 +34099,7 @@ type ExpectedMachineRequest struct { func (x *ExpectedMachineRequest) Reset() { *x = ExpectedMachineRequest{} - mi := &file_nico_nico_proto_msgTypes[455] + mi := &file_nico_nico_proto_msgTypes[457] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33989,7 +34111,7 @@ func (x *ExpectedMachineRequest) String() string { func (*ExpectedMachineRequest) ProtoMessage() {} func (x *ExpectedMachineRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[455] + mi := &file_nico_nico_proto_msgTypes[457] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34002,7 +34124,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{455} + return file_nico_nico_proto_rawDescGZIP(), []int{457} } func (x *ExpectedMachineRequest) GetBmcMacAddress() string { @@ -34028,7 +34150,7 @@ type ExpectedMachineList struct { func (x *ExpectedMachineList) Reset() { *x = ExpectedMachineList{} - mi := &file_nico_nico_proto_msgTypes[456] + mi := &file_nico_nico_proto_msgTypes[458] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34040,7 +34162,7 @@ func (x *ExpectedMachineList) String() string { func (*ExpectedMachineList) ProtoMessage() {} func (x *ExpectedMachineList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[456] + mi := &file_nico_nico_proto_msgTypes[458] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34053,7 +34175,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{456} + return file_nico_nico_proto_rawDescGZIP(), []int{458} } func (x *ExpectedMachineList) GetExpectedMachines() []*ExpectedMachine { @@ -34072,7 +34194,7 @@ type LinkedExpectedMachineList struct { func (x *LinkedExpectedMachineList) Reset() { *x = LinkedExpectedMachineList{} - mi := &file_nico_nico_proto_msgTypes[457] + mi := &file_nico_nico_proto_msgTypes[459] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34084,7 +34206,7 @@ func (x *LinkedExpectedMachineList) String() string { func (*LinkedExpectedMachineList) ProtoMessage() {} func (x *LinkedExpectedMachineList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[457] + mi := &file_nico_nico_proto_msgTypes[459] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34097,7 +34219,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{457} + return file_nico_nico_proto_rawDescGZIP(), []int{459} } func (x *LinkedExpectedMachineList) GetExpectedMachines() []*LinkedExpectedMachine { @@ -34121,7 +34243,7 @@ type LinkedExpectedMachine struct { func (x *LinkedExpectedMachine) Reset() { *x = LinkedExpectedMachine{} - mi := &file_nico_nico_proto_msgTypes[458] + mi := &file_nico_nico_proto_msgTypes[460] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34133,7 +34255,7 @@ func (x *LinkedExpectedMachine) String() string { func (*LinkedExpectedMachine) ProtoMessage() {} func (x *LinkedExpectedMachine) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[458] + mi := &file_nico_nico_proto_msgTypes[460] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34146,7 +34268,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{458} + return file_nico_nico_proto_rawDescGZIP(), []int{460} } func (x *LinkedExpectedMachine) GetChassisSerialNumber() string { @@ -34200,7 +34322,7 @@ type UnexpectedMachineList struct { func (x *UnexpectedMachineList) Reset() { *x = UnexpectedMachineList{} - mi := &file_nico_nico_proto_msgTypes[459] + mi := &file_nico_nico_proto_msgTypes[461] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34212,7 +34334,7 @@ func (x *UnexpectedMachineList) String() string { func (*UnexpectedMachineList) ProtoMessage() {} func (x *UnexpectedMachineList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[459] + mi := &file_nico_nico_proto_msgTypes[461] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34225,7 +34347,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{459} + return file_nico_nico_proto_rawDescGZIP(), []int{461} } func (x *UnexpectedMachineList) GetUnexpectedMachines() []*UnexpectedMachine { @@ -34246,7 +34368,7 @@ type UnexpectedMachine struct { func (x *UnexpectedMachine) Reset() { *x = UnexpectedMachine{} - mi := &file_nico_nico_proto_msgTypes[460] + mi := &file_nico_nico_proto_msgTypes[462] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34258,7 +34380,7 @@ func (x *UnexpectedMachine) String() string { func (*UnexpectedMachine) ProtoMessage() {} func (x *UnexpectedMachine) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[460] + mi := &file_nico_nico_proto_msgTypes[462] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34271,7 +34393,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{460} + return file_nico_nico_proto_rawDescGZIP(), []int{462} } func (x *UnexpectedMachine) GetAddress() string { @@ -34307,7 +34429,7 @@ type BatchExpectedMachineOperationRequest struct { func (x *BatchExpectedMachineOperationRequest) Reset() { *x = BatchExpectedMachineOperationRequest{} - mi := &file_nico_nico_proto_msgTypes[461] + mi := &file_nico_nico_proto_msgTypes[463] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34319,7 +34441,7 @@ func (x *BatchExpectedMachineOperationRequest) String() string { func (*BatchExpectedMachineOperationRequest) ProtoMessage() {} func (x *BatchExpectedMachineOperationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[461] + mi := &file_nico_nico_proto_msgTypes[463] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34332,7 +34454,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{461} + return file_nico_nico_proto_rawDescGZIP(), []int{463} } func (x *BatchExpectedMachineOperationRequest) GetExpectedMachines() *ExpectedMachineList { @@ -34365,7 +34487,7 @@ type ExpectedMachineOperationResult struct { func (x *ExpectedMachineOperationResult) Reset() { *x = ExpectedMachineOperationResult{} - mi := &file_nico_nico_proto_msgTypes[462] + mi := &file_nico_nico_proto_msgTypes[464] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34377,7 +34499,7 @@ func (x *ExpectedMachineOperationResult) String() string { func (*ExpectedMachineOperationResult) ProtoMessage() {} func (x *ExpectedMachineOperationResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[462] + mi := &file_nico_nico_proto_msgTypes[464] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34390,7 +34512,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{462} + return file_nico_nico_proto_rawDescGZIP(), []int{464} } func (x *ExpectedMachineOperationResult) GetId() *UUID { @@ -34431,7 +34553,7 @@ type BatchExpectedMachineOperationResponse struct { func (x *BatchExpectedMachineOperationResponse) Reset() { *x = BatchExpectedMachineOperationResponse{} - mi := &file_nico_nico_proto_msgTypes[463] + mi := &file_nico_nico_proto_msgTypes[465] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34443,7 +34565,7 @@ func (x *BatchExpectedMachineOperationResponse) String() string { func (*BatchExpectedMachineOperationResponse) ProtoMessage() {} func (x *BatchExpectedMachineOperationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[463] + mi := &file_nico_nico_proto_msgTypes[465] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34456,7 +34578,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{463} + return file_nico_nico_proto_rawDescGZIP(), []int{465} } func (x *BatchExpectedMachineOperationResponse) GetResults() []*ExpectedMachineOperationResult { @@ -34474,7 +34596,7 @@ type MachineRebootCompletedResponse struct { func (x *MachineRebootCompletedResponse) Reset() { *x = MachineRebootCompletedResponse{} - mi := &file_nico_nico_proto_msgTypes[464] + mi := &file_nico_nico_proto_msgTypes[466] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34486,7 +34608,7 @@ func (x *MachineRebootCompletedResponse) String() string { func (*MachineRebootCompletedResponse) ProtoMessage() {} func (x *MachineRebootCompletedResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[464] + mi := &file_nico_nico_proto_msgTypes[466] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34499,7 +34621,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{464} + return file_nico_nico_proto_rawDescGZIP(), []int{466} } type MachineRebootCompletedRequest struct { @@ -34511,7 +34633,7 @@ type MachineRebootCompletedRequest struct { func (x *MachineRebootCompletedRequest) Reset() { *x = MachineRebootCompletedRequest{} - mi := &file_nico_nico_proto_msgTypes[465] + mi := &file_nico_nico_proto_msgTypes[467] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34523,7 +34645,7 @@ func (x *MachineRebootCompletedRequest) String() string { func (*MachineRebootCompletedRequest) ProtoMessage() {} func (x *MachineRebootCompletedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[465] + mi := &file_nico_nico_proto_msgTypes[467] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34536,7 +34658,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{465} + return file_nico_nico_proto_rawDescGZIP(), []int{467} } func (x *MachineRebootCompletedRequest) GetMachineId() *MachineId { @@ -34561,7 +34683,7 @@ type ScoutFirmwareUpgradeStatusRequest struct { func (x *ScoutFirmwareUpgradeStatusRequest) Reset() { *x = ScoutFirmwareUpgradeStatusRequest{} - mi := &file_nico_nico_proto_msgTypes[466] + mi := &file_nico_nico_proto_msgTypes[468] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34573,7 +34695,7 @@ func (x *ScoutFirmwareUpgradeStatusRequest) String() string { func (*ScoutFirmwareUpgradeStatusRequest) ProtoMessage() {} func (x *ScoutFirmwareUpgradeStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[466] + mi := &file_nico_nico_proto_msgTypes[468] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34586,7 +34708,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{466} + return file_nico_nico_proto_rawDescGZIP(), []int{468} } func (x *ScoutFirmwareUpgradeStatusRequest) GetMachineId() *MachineId { @@ -34649,7 +34771,7 @@ type MachineValidationCompletedRequest struct { func (x *MachineValidationCompletedRequest) Reset() { *x = MachineValidationCompletedRequest{} - mi := &file_nico_nico_proto_msgTypes[467] + mi := &file_nico_nico_proto_msgTypes[469] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34661,7 +34783,7 @@ func (x *MachineValidationCompletedRequest) String() string { func (*MachineValidationCompletedRequest) ProtoMessage() {} func (x *MachineValidationCompletedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[467] + mi := &file_nico_nico_proto_msgTypes[469] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34674,7 +34796,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{467} + return file_nico_nico_proto_rawDescGZIP(), []int{469} } func (x *MachineValidationCompletedRequest) GetMachineId() *MachineId { @@ -34706,7 +34828,7 @@ type MachineValidationCompletedResponse struct { func (x *MachineValidationCompletedResponse) Reset() { *x = MachineValidationCompletedResponse{} - mi := &file_nico_nico_proto_msgTypes[468] + mi := &file_nico_nico_proto_msgTypes[470] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34718,7 +34840,7 @@ func (x *MachineValidationCompletedResponse) String() string { func (*MachineValidationCompletedResponse) ProtoMessage() {} func (x *MachineValidationCompletedResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[468] + mi := &file_nico_nico_proto_msgTypes[470] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34731,7 +34853,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{468} + return file_nico_nico_proto_rawDescGZIP(), []int{470} } type MachineValidationResult struct { @@ -34754,7 +34876,7 @@ type MachineValidationResult struct { func (x *MachineValidationResult) Reset() { *x = MachineValidationResult{} - mi := &file_nico_nico_proto_msgTypes[469] + mi := &file_nico_nico_proto_msgTypes[471] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34766,7 +34888,7 @@ func (x *MachineValidationResult) String() string { func (*MachineValidationResult) ProtoMessage() {} func (x *MachineValidationResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[469] + mi := &file_nico_nico_proto_msgTypes[471] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34779,7 +34901,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{469} + return file_nico_nico_proto_rawDescGZIP(), []int{471} } func (x *MachineValidationResult) GetName() string { @@ -34875,7 +34997,7 @@ type MachineValidationResultPostRequest struct { func (x *MachineValidationResultPostRequest) Reset() { *x = MachineValidationResultPostRequest{} - mi := &file_nico_nico_proto_msgTypes[470] + mi := &file_nico_nico_proto_msgTypes[472] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34887,7 +35009,7 @@ func (x *MachineValidationResultPostRequest) String() string { func (*MachineValidationResultPostRequest) ProtoMessage() {} func (x *MachineValidationResultPostRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[470] + mi := &file_nico_nico_proto_msgTypes[472] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34900,7 +35022,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{470} + return file_nico_nico_proto_rawDescGZIP(), []int{472} } func (x *MachineValidationResultPostRequest) GetResult() *MachineValidationResult { @@ -34919,7 +35041,7 @@ type MachineValidationResultList struct { func (x *MachineValidationResultList) Reset() { *x = MachineValidationResultList{} - mi := &file_nico_nico_proto_msgTypes[471] + mi := &file_nico_nico_proto_msgTypes[473] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34931,7 +35053,7 @@ func (x *MachineValidationResultList) String() string { func (*MachineValidationResultList) ProtoMessage() {} func (x *MachineValidationResultList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[471] + mi := &file_nico_nico_proto_msgTypes[473] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34944,7 +35066,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{471} + return file_nico_nico_proto_rawDescGZIP(), []int{473} } func (x *MachineValidationResultList) GetResults() []*MachineValidationResult { @@ -34965,7 +35087,7 @@ type MachineValidationGetRequest struct { func (x *MachineValidationGetRequest) Reset() { *x = MachineValidationGetRequest{} - mi := &file_nico_nico_proto_msgTypes[472] + mi := &file_nico_nico_proto_msgTypes[474] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34977,7 +35099,7 @@ func (x *MachineValidationGetRequest) String() string { func (*MachineValidationGetRequest) ProtoMessage() {} func (x *MachineValidationGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[472] + mi := &file_nico_nico_proto_msgTypes[474] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34990,7 +35112,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{472} + return file_nico_nico_proto_rawDescGZIP(), []int{474} } func (x *MachineValidationGetRequest) GetMachineId() *MachineId { @@ -35030,7 +35152,7 @@ type MachineValidationStatus struct { func (x *MachineValidationStatus) Reset() { *x = MachineValidationStatus{} - mi := &file_nico_nico_proto_msgTypes[473] + mi := &file_nico_nico_proto_msgTypes[475] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35042,7 +35164,7 @@ func (x *MachineValidationStatus) String() string { func (*MachineValidationStatus) ProtoMessage() {} func (x *MachineValidationStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[473] + mi := &file_nico_nico_proto_msgTypes[475] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35055,7 +35177,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{473} + return file_nico_nico_proto_rawDescGZIP(), []int{475} } func (x *MachineValidationStatus) GetMachineValidationState() isMachineValidationStatus_MachineValidationState { @@ -35145,7 +35267,7 @@ type MachineValidationRun struct { func (x *MachineValidationRun) Reset() { *x = MachineValidationRun{} - mi := &file_nico_nico_proto_msgTypes[474] + mi := &file_nico_nico_proto_msgTypes[476] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35157,7 +35279,7 @@ func (x *MachineValidationRun) String() string { func (*MachineValidationRun) ProtoMessage() {} func (x *MachineValidationRun) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[474] + mi := &file_nico_nico_proto_msgTypes[476] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35170,7 +35292,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{474} + return file_nico_nico_proto_rawDescGZIP(), []int{476} } func (x *MachineValidationRun) GetValidationId() *MachineValidationId { @@ -35246,7 +35368,7 @@ type MachineSetAutoUpdateRequest struct { func (x *MachineSetAutoUpdateRequest) Reset() { *x = MachineSetAutoUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[475] + mi := &file_nico_nico_proto_msgTypes[477] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35258,7 +35380,7 @@ func (x *MachineSetAutoUpdateRequest) String() string { func (*MachineSetAutoUpdateRequest) ProtoMessage() {} func (x *MachineSetAutoUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[475] + mi := &file_nico_nico_proto_msgTypes[477] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35271,7 +35393,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{475} + return file_nico_nico_proto_rawDescGZIP(), []int{477} } func (x *MachineSetAutoUpdateRequest) GetMachineId() *MachineId { @@ -35296,7 +35418,7 @@ type MachineSetAutoUpdateResponse struct { func (x *MachineSetAutoUpdateResponse) Reset() { *x = MachineSetAutoUpdateResponse{} - mi := &file_nico_nico_proto_msgTypes[476] + mi := &file_nico_nico_proto_msgTypes[478] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35308,7 +35430,7 @@ func (x *MachineSetAutoUpdateResponse) String() string { func (*MachineSetAutoUpdateResponse) ProtoMessage() {} func (x *MachineSetAutoUpdateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[476] + mi := &file_nico_nico_proto_msgTypes[478] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35321,7 +35443,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{476} + return file_nico_nico_proto_rawDescGZIP(), []int{478} } type GetMachineValidationExternalConfigRequest struct { @@ -35333,7 +35455,7 @@ type GetMachineValidationExternalConfigRequest struct { func (x *GetMachineValidationExternalConfigRequest) Reset() { *x = GetMachineValidationExternalConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[477] + mi := &file_nico_nico_proto_msgTypes[479] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35345,7 +35467,7 @@ func (x *GetMachineValidationExternalConfigRequest) String() string { func (*GetMachineValidationExternalConfigRequest) ProtoMessage() {} func (x *GetMachineValidationExternalConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[477] + mi := &file_nico_nico_proto_msgTypes[479] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35358,7 +35480,7 @@ func (x *GetMachineValidationExternalConfigRequest) ProtoReflect() protoreflect. // Deprecated: Use GetMachineValidationExternalConfigRequest.ProtoReflect.Descriptor instead. func (*GetMachineValidationExternalConfigRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{477} + return file_nico_nico_proto_rawDescGZIP(), []int{479} } func (x *GetMachineValidationExternalConfigRequest) GetName() string { @@ -35381,7 +35503,7 @@ type MachineValidationExternalConfig struct { func (x *MachineValidationExternalConfig) Reset() { *x = MachineValidationExternalConfig{} - mi := &file_nico_nico_proto_msgTypes[478] + mi := &file_nico_nico_proto_msgTypes[480] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35393,7 +35515,7 @@ func (x *MachineValidationExternalConfig) String() string { func (*MachineValidationExternalConfig) ProtoMessage() {} func (x *MachineValidationExternalConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[478] + mi := &file_nico_nico_proto_msgTypes[480] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35406,7 +35528,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{478} + return file_nico_nico_proto_rawDescGZIP(), []int{480} } func (x *MachineValidationExternalConfig) GetName() string { @@ -35453,7 +35575,7 @@ type GetMachineValidationExternalConfigResponse struct { func (x *GetMachineValidationExternalConfigResponse) Reset() { *x = GetMachineValidationExternalConfigResponse{} - mi := &file_nico_nico_proto_msgTypes[479] + mi := &file_nico_nico_proto_msgTypes[481] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35465,7 +35587,7 @@ func (x *GetMachineValidationExternalConfigResponse) String() string { func (*GetMachineValidationExternalConfigResponse) ProtoMessage() {} func (x *GetMachineValidationExternalConfigResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[479] + mi := &file_nico_nico_proto_msgTypes[481] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35478,7 +35600,7 @@ func (x *GetMachineValidationExternalConfigResponse) ProtoReflect() protoreflect // Deprecated: Use GetMachineValidationExternalConfigResponse.ProtoReflect.Descriptor instead. func (*GetMachineValidationExternalConfigResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{479} + return file_nico_nico_proto_rawDescGZIP(), []int{481} } func (x *GetMachineValidationExternalConfigResponse) GetConfig() *MachineValidationExternalConfig { @@ -35497,7 +35619,7 @@ type GetMachineValidationExternalConfigsRequest struct { func (x *GetMachineValidationExternalConfigsRequest) Reset() { *x = GetMachineValidationExternalConfigsRequest{} - mi := &file_nico_nico_proto_msgTypes[480] + mi := &file_nico_nico_proto_msgTypes[482] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35509,7 +35631,7 @@ func (x *GetMachineValidationExternalConfigsRequest) String() string { func (*GetMachineValidationExternalConfigsRequest) ProtoMessage() {} func (x *GetMachineValidationExternalConfigsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[480] + mi := &file_nico_nico_proto_msgTypes[482] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35522,7 +35644,7 @@ func (x *GetMachineValidationExternalConfigsRequest) ProtoReflect() protoreflect // Deprecated: Use GetMachineValidationExternalConfigsRequest.ProtoReflect.Descriptor instead. func (*GetMachineValidationExternalConfigsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{480} + return file_nico_nico_proto_rawDescGZIP(), []int{482} } func (x *GetMachineValidationExternalConfigsRequest) GetNames() []string { @@ -35541,7 +35663,7 @@ type GetMachineValidationExternalConfigsResponse struct { func (x *GetMachineValidationExternalConfigsResponse) Reset() { *x = GetMachineValidationExternalConfigsResponse{} - mi := &file_nico_nico_proto_msgTypes[481] + mi := &file_nico_nico_proto_msgTypes[483] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35553,7 +35675,7 @@ func (x *GetMachineValidationExternalConfigsResponse) String() string { func (*GetMachineValidationExternalConfigsResponse) ProtoMessage() {} func (x *GetMachineValidationExternalConfigsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[481] + mi := &file_nico_nico_proto_msgTypes[483] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35566,7 +35688,7 @@ func (x *GetMachineValidationExternalConfigsResponse) ProtoReflect() protoreflec // Deprecated: Use GetMachineValidationExternalConfigsResponse.ProtoReflect.Descriptor instead. func (*GetMachineValidationExternalConfigsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{481} + return file_nico_nico_proto_rawDescGZIP(), []int{483} } func (x *GetMachineValidationExternalConfigsResponse) GetConfigs() []*MachineValidationExternalConfig { @@ -35587,7 +35709,7 @@ type AddUpdateMachineValidationExternalConfigRequest struct { func (x *AddUpdateMachineValidationExternalConfigRequest) Reset() { *x = AddUpdateMachineValidationExternalConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[482] + mi := &file_nico_nico_proto_msgTypes[484] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35599,7 +35721,7 @@ func (x *AddUpdateMachineValidationExternalConfigRequest) String() string { func (*AddUpdateMachineValidationExternalConfigRequest) ProtoMessage() {} func (x *AddUpdateMachineValidationExternalConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[482] + mi := &file_nico_nico_proto_msgTypes[484] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35612,7 +35734,7 @@ func (x *AddUpdateMachineValidationExternalConfigRequest) ProtoReflect() protore // Deprecated: Use AddUpdateMachineValidationExternalConfigRequest.ProtoReflect.Descriptor instead. func (*AddUpdateMachineValidationExternalConfigRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{482} + return file_nico_nico_proto_rawDescGZIP(), []int{484} } func (x *AddUpdateMachineValidationExternalConfigRequest) GetName() string { @@ -35645,7 +35767,7 @@ type RemoveMachineValidationExternalConfigRequest struct { func (x *RemoveMachineValidationExternalConfigRequest) Reset() { *x = RemoveMachineValidationExternalConfigRequest{} - mi := &file_nico_nico_proto_msgTypes[483] + mi := &file_nico_nico_proto_msgTypes[485] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35657,7 +35779,7 @@ func (x *RemoveMachineValidationExternalConfigRequest) String() string { func (*RemoveMachineValidationExternalConfigRequest) ProtoMessage() {} func (x *RemoveMachineValidationExternalConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[483] + mi := &file_nico_nico_proto_msgTypes[485] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35670,7 +35792,7 @@ func (x *RemoveMachineValidationExternalConfigRequest) ProtoReflect() protorefle // Deprecated: Use RemoveMachineValidationExternalConfigRequest.ProtoReflect.Descriptor instead. func (*RemoveMachineValidationExternalConfigRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{483} + return file_nico_nico_proto_rawDescGZIP(), []int{485} } func (x *RemoveMachineValidationExternalConfigRequest) GetName() string { @@ -35694,7 +35816,7 @@ type MachineValidationOnDemandRequest struct { func (x *MachineValidationOnDemandRequest) Reset() { *x = MachineValidationOnDemandRequest{} - mi := &file_nico_nico_proto_msgTypes[484] + mi := &file_nico_nico_proto_msgTypes[486] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35706,7 +35828,7 @@ func (x *MachineValidationOnDemandRequest) String() string { func (*MachineValidationOnDemandRequest) ProtoMessage() {} func (x *MachineValidationOnDemandRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[484] + mi := &file_nico_nico_proto_msgTypes[486] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35719,7 +35841,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{484} + return file_nico_nico_proto_rawDescGZIP(), []int{486} } func (x *MachineValidationOnDemandRequest) GetMachineId() *MachineId { @@ -35773,7 +35895,7 @@ type MachineValidationOnDemandResponse struct { func (x *MachineValidationOnDemandResponse) Reset() { *x = MachineValidationOnDemandResponse{} - mi := &file_nico_nico_proto_msgTypes[485] + mi := &file_nico_nico_proto_msgTypes[487] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35785,7 +35907,7 @@ func (x *MachineValidationOnDemandResponse) String() string { func (*MachineValidationOnDemandResponse) ProtoMessage() {} func (x *MachineValidationOnDemandResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[485] + mi := &file_nico_nico_proto_msgTypes[487] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35798,7 +35920,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{485} + return file_nico_nico_proto_rawDescGZIP(), []int{487} } func (x *MachineValidationOnDemandResponse) GetValidationId() *MachineValidationId { @@ -35828,7 +35950,7 @@ type FirmwareUpgradeActivity struct { func (x *FirmwareUpgradeActivity) Reset() { *x = FirmwareUpgradeActivity{} - mi := &file_nico_nico_proto_msgTypes[486] + mi := &file_nico_nico_proto_msgTypes[488] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35840,7 +35962,7 @@ func (x *FirmwareUpgradeActivity) String() string { func (*FirmwareUpgradeActivity) ProtoMessage() {} func (x *FirmwareUpgradeActivity) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[486] + mi := &file_nico_nico_proto_msgTypes[488] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35853,7 +35975,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{486} + return file_nico_nico_proto_rawDescGZIP(), []int{488} } func (x *FirmwareUpgradeActivity) GetFirmwareVersion() string { @@ -35899,7 +36021,7 @@ type NvosUpdateActivity struct { func (x *NvosUpdateActivity) Reset() { *x = NvosUpdateActivity{} - mi := &file_nico_nico_proto_msgTypes[487] + mi := &file_nico_nico_proto_msgTypes[489] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35911,7 +36033,7 @@ func (x *NvosUpdateActivity) String() string { func (*NvosUpdateActivity) ProtoMessage() {} func (x *NvosUpdateActivity) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[487] + mi := &file_nico_nico_proto_msgTypes[489] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35924,7 +36046,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{487} + return file_nico_nico_proto_rawDescGZIP(), []int{489} } func (x *NvosUpdateActivity) GetConfigJson() string { @@ -35949,7 +36071,7 @@ type ConfigureNmxClusterActivity struct { func (x *ConfigureNmxClusterActivity) Reset() { *x = ConfigureNmxClusterActivity{} - mi := &file_nico_nico_proto_msgTypes[488] + mi := &file_nico_nico_proto_msgTypes[490] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35961,7 +36083,7 @@ func (x *ConfigureNmxClusterActivity) String() string { func (*ConfigureNmxClusterActivity) ProtoMessage() {} func (x *ConfigureNmxClusterActivity) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[488] + mi := &file_nico_nico_proto_msgTypes[490] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35974,7 +36096,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{488} + return file_nico_nico_proto_rawDescGZIP(), []int{490} } type PowerSequenceActivity struct { @@ -35985,7 +36107,7 @@ type PowerSequenceActivity struct { func (x *PowerSequenceActivity) Reset() { *x = PowerSequenceActivity{} - mi := &file_nico_nico_proto_msgTypes[489] + mi := &file_nico_nico_proto_msgTypes[491] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35997,7 +36119,7 @@ func (x *PowerSequenceActivity) String() string { func (*PowerSequenceActivity) ProtoMessage() {} func (x *PowerSequenceActivity) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[489] + mi := &file_nico_nico_proto_msgTypes[491] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36010,7 +36132,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{489} + return file_nico_nico_proto_rawDescGZIP(), []int{491} } // A single maintenance activity with its per-activity configuration. @@ -36030,7 +36152,7 @@ type MaintenanceActivityConfig struct { func (x *MaintenanceActivityConfig) Reset() { *x = MaintenanceActivityConfig{} - mi := &file_nico_nico_proto_msgTypes[490] + mi := &file_nico_nico_proto_msgTypes[492] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36042,7 +36164,7 @@ func (x *MaintenanceActivityConfig) String() string { func (*MaintenanceActivityConfig) ProtoMessage() {} func (x *MaintenanceActivityConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[490] + mi := &file_nico_nico_proto_msgTypes[492] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36055,7 +36177,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{490} + return file_nico_nico_proto_rawDescGZIP(), []int{492} } func (x *MaintenanceActivityConfig) GetActivity() isMaintenanceActivityConfig_Activity { @@ -36146,7 +36268,7 @@ type RackMaintenanceScope struct { func (x *RackMaintenanceScope) Reset() { *x = RackMaintenanceScope{} - mi := &file_nico_nico_proto_msgTypes[491] + mi := &file_nico_nico_proto_msgTypes[493] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36158,7 +36280,7 @@ func (x *RackMaintenanceScope) String() string { func (*RackMaintenanceScope) ProtoMessage() {} func (x *RackMaintenanceScope) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[491] + mi := &file_nico_nico_proto_msgTypes[493] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36171,7 +36293,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{491} + return file_nico_nico_proto_rawDescGZIP(), []int{493} } func (x *RackMaintenanceScope) GetMachineIds() []string { @@ -36215,7 +36337,7 @@ type RackMaintenanceOnDemandRequest struct { func (x *RackMaintenanceOnDemandRequest) Reset() { *x = RackMaintenanceOnDemandRequest{} - mi := &file_nico_nico_proto_msgTypes[492] + mi := &file_nico_nico_proto_msgTypes[494] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36227,7 +36349,7 @@ func (x *RackMaintenanceOnDemandRequest) String() string { func (*RackMaintenanceOnDemandRequest) ProtoMessage() {} func (x *RackMaintenanceOnDemandRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[492] + mi := &file_nico_nico_proto_msgTypes[494] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36240,7 +36362,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{492} + return file_nico_nico_proto_rawDescGZIP(), []int{494} } func (x *RackMaintenanceOnDemandRequest) GetRackId() *RackId { @@ -36265,7 +36387,7 @@ type RackMaintenanceOnDemandResponse struct { func (x *RackMaintenanceOnDemandResponse) Reset() { *x = RackMaintenanceOnDemandResponse{} - mi := &file_nico_nico_proto_msgTypes[493] + mi := &file_nico_nico_proto_msgTypes[495] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36277,7 +36399,7 @@ func (x *RackMaintenanceOnDemandResponse) String() string { func (*RackMaintenanceOnDemandResponse) ProtoMessage() {} func (x *RackMaintenanceOnDemandResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[493] + mi := &file_nico_nico_proto_msgTypes[495] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36290,7 +36412,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{493} + return file_nico_nico_proto_rawDescGZIP(), []int{495} } type AdminPowerControlRequest struct { @@ -36304,7 +36426,7 @@ type AdminPowerControlRequest struct { func (x *AdminPowerControlRequest) Reset() { *x = AdminPowerControlRequest{} - mi := &file_nico_nico_proto_msgTypes[494] + mi := &file_nico_nico_proto_msgTypes[496] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36316,7 +36438,7 @@ func (x *AdminPowerControlRequest) String() string { func (*AdminPowerControlRequest) ProtoMessage() {} func (x *AdminPowerControlRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[494] + mi := &file_nico_nico_proto_msgTypes[496] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36329,7 +36451,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{494} + return file_nico_nico_proto_rawDescGZIP(), []int{496} } func (x *AdminPowerControlRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -36362,7 +36484,7 @@ type AdminPowerControlResponse struct { func (x *AdminPowerControlResponse) Reset() { *x = AdminPowerControlResponse{} - mi := &file_nico_nico_proto_msgTypes[495] + mi := &file_nico_nico_proto_msgTypes[497] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36374,7 +36496,7 @@ func (x *AdminPowerControlResponse) String() string { func (*AdminPowerControlResponse) ProtoMessage() {} func (x *AdminPowerControlResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[495] + mi := &file_nico_nico_proto_msgTypes[497] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36387,7 +36509,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{495} + return file_nico_nico_proto_rawDescGZIP(), []int{497} } func (x *AdminPowerControlResponse) GetMsg() string { @@ -36407,7 +36529,7 @@ type GetRedfishJobStateRequest struct { func (x *GetRedfishJobStateRequest) Reset() { *x = GetRedfishJobStateRequest{} - mi := &file_nico_nico_proto_msgTypes[496] + mi := &file_nico_nico_proto_msgTypes[498] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36419,7 +36541,7 @@ func (x *GetRedfishJobStateRequest) String() string { func (*GetRedfishJobStateRequest) ProtoMessage() {} func (x *GetRedfishJobStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[496] + mi := &file_nico_nico_proto_msgTypes[498] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36432,7 +36554,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{496} + return file_nico_nico_proto_rawDescGZIP(), []int{498} } func (x *GetRedfishJobStateRequest) GetMachineId() *MachineId { @@ -36458,7 +36580,7 @@ type GetRedfishJobStateResponse struct { func (x *GetRedfishJobStateResponse) Reset() { *x = GetRedfishJobStateResponse{} - mi := &file_nico_nico_proto_msgTypes[497] + mi := &file_nico_nico_proto_msgTypes[499] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36470,7 +36592,7 @@ func (x *GetRedfishJobStateResponse) String() string { func (*GetRedfishJobStateResponse) ProtoMessage() {} func (x *GetRedfishJobStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[497] + mi := &file_nico_nico_proto_msgTypes[499] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36483,7 +36605,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{497} + return file_nico_nico_proto_rawDescGZIP(), []int{499} } func (x *GetRedfishJobStateResponse) GetJobState() GetRedfishJobStateResponse_RedfishJobState { @@ -36502,7 +36624,7 @@ type MachineValidationRunList struct { func (x *MachineValidationRunList) Reset() { *x = MachineValidationRunList{} - mi := &file_nico_nico_proto_msgTypes[498] + mi := &file_nico_nico_proto_msgTypes[500] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36514,7 +36636,7 @@ func (x *MachineValidationRunList) String() string { func (*MachineValidationRunList) ProtoMessage() {} func (x *MachineValidationRunList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[498] + mi := &file_nico_nico_proto_msgTypes[500] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36527,7 +36649,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{498} + return file_nico_nico_proto_rawDescGZIP(), []int{500} } func (x *MachineValidationRunList) GetRuns() []*MachineValidationRun { @@ -36547,7 +36669,7 @@ type MachineValidationRunListGetRequest struct { func (x *MachineValidationRunListGetRequest) Reset() { *x = MachineValidationRunListGetRequest{} - mi := &file_nico_nico_proto_msgTypes[499] + mi := &file_nico_nico_proto_msgTypes[501] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36559,7 +36681,7 @@ func (x *MachineValidationRunListGetRequest) String() string { func (*MachineValidationRunListGetRequest) ProtoMessage() {} func (x *MachineValidationRunListGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[499] + mi := &file_nico_nico_proto_msgTypes[501] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36572,7 +36694,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{499} + return file_nico_nico_proto_rawDescGZIP(), []int{501} } func (x *MachineValidationRunListGetRequest) GetMachineId() *MachineId { @@ -36598,7 +36720,7 @@ type MachineValidationRunItemSearchFilter struct { func (x *MachineValidationRunItemSearchFilter) Reset() { *x = MachineValidationRunItemSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[500] + mi := &file_nico_nico_proto_msgTypes[502] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36610,7 +36732,7 @@ func (x *MachineValidationRunItemSearchFilter) String() string { func (*MachineValidationRunItemSearchFilter) ProtoMessage() {} func (x *MachineValidationRunItemSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[500] + mi := &file_nico_nico_proto_msgTypes[502] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36623,7 +36745,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{500} + return file_nico_nico_proto_rawDescGZIP(), []int{502} } func (x *MachineValidationRunItemSearchFilter) GetValidationId() *MachineValidationId { @@ -36642,7 +36764,7 @@ type MachineValidationRunItemIdList struct { func (x *MachineValidationRunItemIdList) Reset() { *x = MachineValidationRunItemIdList{} - mi := &file_nico_nico_proto_msgTypes[501] + mi := &file_nico_nico_proto_msgTypes[503] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36654,7 +36776,7 @@ func (x *MachineValidationRunItemIdList) String() string { func (*MachineValidationRunItemIdList) ProtoMessage() {} func (x *MachineValidationRunItemIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[501] + mi := &file_nico_nico_proto_msgTypes[503] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36667,7 +36789,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{501} + return file_nico_nico_proto_rawDescGZIP(), []int{503} } func (x *MachineValidationRunItemIdList) GetRunItemIds() []*UUID { @@ -36686,7 +36808,7 @@ type MachineValidationRunItemsByIdsRequest struct { func (x *MachineValidationRunItemsByIdsRequest) Reset() { *x = MachineValidationRunItemsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[502] + mi := &file_nico_nico_proto_msgTypes[504] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36698,7 +36820,7 @@ func (x *MachineValidationRunItemsByIdsRequest) String() string { func (*MachineValidationRunItemsByIdsRequest) ProtoMessage() {} func (x *MachineValidationRunItemsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[502] + mi := &file_nico_nico_proto_msgTypes[504] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36711,7 +36833,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{502} + return file_nico_nico_proto_rawDescGZIP(), []int{504} } func (x *MachineValidationRunItemsByIdsRequest) GetRunItemIds() []*UUID { @@ -36730,7 +36852,7 @@ type MachineValidationRunItemList struct { func (x *MachineValidationRunItemList) Reset() { *x = MachineValidationRunItemList{} - mi := &file_nico_nico_proto_msgTypes[503] + mi := &file_nico_nico_proto_msgTypes[505] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36742,7 +36864,7 @@ func (x *MachineValidationRunItemList) String() string { func (*MachineValidationRunItemList) ProtoMessage() {} func (x *MachineValidationRunItemList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[503] + mi := &file_nico_nico_proto_msgTypes[505] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36755,7 +36877,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{503} + return file_nico_nico_proto_rawDescGZIP(), []int{505} } func (x *MachineValidationRunItemList) GetRunItems() []*MachineValidationRunItem { @@ -36791,7 +36913,7 @@ type MachineValidationRunItem struct { func (x *MachineValidationRunItem) Reset() { *x = MachineValidationRunItem{} - mi := &file_nico_nico_proto_msgTypes[504] + mi := &file_nico_nico_proto_msgTypes[506] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36803,7 +36925,7 @@ func (x *MachineValidationRunItem) String() string { func (*MachineValidationRunItem) ProtoMessage() {} func (x *MachineValidationRunItem) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[504] + mi := &file_nico_nico_proto_msgTypes[506] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36816,7 +36938,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{504} + return file_nico_nico_proto_rawDescGZIP(), []int{506} } func (x *MachineValidationRunItem) GetRunItemId() *UUID { @@ -36954,7 +37076,7 @@ type MachineValidationAttemptGetRequest struct { func (x *MachineValidationAttemptGetRequest) Reset() { *x = MachineValidationAttemptGetRequest{} - mi := &file_nico_nico_proto_msgTypes[505] + mi := &file_nico_nico_proto_msgTypes[507] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36966,7 +37088,7 @@ func (x *MachineValidationAttemptGetRequest) String() string { func (*MachineValidationAttemptGetRequest) ProtoMessage() {} func (x *MachineValidationAttemptGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[505] + mi := &file_nico_nico_proto_msgTypes[507] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36979,7 +37101,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{505} + return file_nico_nico_proto_rawDescGZIP(), []int{507} } func (x *MachineValidationAttemptGetRequest) GetAttemptId() *UUID { @@ -37012,7 +37134,7 @@ type MachineValidationAttempt struct { func (x *MachineValidationAttempt) Reset() { *x = MachineValidationAttempt{} - mi := &file_nico_nico_proto_msgTypes[506] + mi := &file_nico_nico_proto_msgTypes[508] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37024,7 +37146,7 @@ func (x *MachineValidationAttempt) String() string { func (*MachineValidationAttempt) ProtoMessage() {} func (x *MachineValidationAttempt) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[506] + mi := &file_nico_nico_proto_msgTypes[508] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37037,7 +37159,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{506} + return file_nico_nico_proto_rawDescGZIP(), []int{508} } func (x *MachineValidationAttempt) GetAttemptId() *UUID { @@ -37160,7 +37282,7 @@ type MachineValidationHeartbeatRequest struct { func (x *MachineValidationHeartbeatRequest) Reset() { *x = MachineValidationHeartbeatRequest{} - mi := &file_nico_nico_proto_msgTypes[507] + mi := &file_nico_nico_proto_msgTypes[509] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37172,7 +37294,7 @@ func (x *MachineValidationHeartbeatRequest) String() string { func (*MachineValidationHeartbeatRequest) ProtoMessage() {} func (x *MachineValidationHeartbeatRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[507] + mi := &file_nico_nico_proto_msgTypes[509] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37185,7 +37307,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{507} + return file_nico_nico_proto_rawDescGZIP(), []int{509} } func (x *MachineValidationHeartbeatRequest) GetValidationId() *MachineValidationId { @@ -37260,7 +37382,7 @@ type MachineValidationHeartbeatResponse struct { func (x *MachineValidationHeartbeatResponse) Reset() { *x = MachineValidationHeartbeatResponse{} - mi := &file_nico_nico_proto_msgTypes[508] + mi := &file_nico_nico_proto_msgTypes[510] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37272,7 +37394,7 @@ func (x *MachineValidationHeartbeatResponse) String() string { func (*MachineValidationHeartbeatResponse) ProtoMessage() {} func (x *MachineValidationHeartbeatResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[508] + mi := &file_nico_nico_proto_msgTypes[510] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37285,7 +37407,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{508} + return file_nico_nico_proto_rawDescGZIP(), []int{510} } func (x *MachineValidationHeartbeatResponse) GetAccepted() bool { @@ -37304,7 +37426,7 @@ type IsBmcInManagedHostResponse struct { func (x *IsBmcInManagedHostResponse) Reset() { *x = IsBmcInManagedHostResponse{} - mi := &file_nico_nico_proto_msgTypes[509] + mi := &file_nico_nico_proto_msgTypes[511] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37316,7 +37438,7 @@ func (x *IsBmcInManagedHostResponse) String() string { func (*IsBmcInManagedHostResponse) ProtoMessage() {} func (x *IsBmcInManagedHostResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[509] + mi := &file_nico_nico_proto_msgTypes[511] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37329,7 +37451,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{509} + return file_nico_nico_proto_rawDescGZIP(), []int{511} } func (x *IsBmcInManagedHostResponse) GetInManagedHost() bool { @@ -37348,7 +37470,7 @@ type BmcCredentialStatusResponse struct { func (x *BmcCredentialStatusResponse) Reset() { *x = BmcCredentialStatusResponse{} - mi := &file_nico_nico_proto_msgTypes[510] + mi := &file_nico_nico_proto_msgTypes[512] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37360,7 +37482,7 @@ func (x *BmcCredentialStatusResponse) String() string { func (*BmcCredentialStatusResponse) ProtoMessage() {} func (x *BmcCredentialStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[510] + mi := &file_nico_nico_proto_msgTypes[512] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37373,7 +37495,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{510} + return file_nico_nico_proto_rawDescGZIP(), []int{512} } func (x *BmcCredentialStatusResponse) GetHaveCredentials() bool { @@ -37399,7 +37521,7 @@ type MachineValidationTestsGetRequest struct { func (x *MachineValidationTestsGetRequest) Reset() { *x = MachineValidationTestsGetRequest{} - mi := &file_nico_nico_proto_msgTypes[511] + mi := &file_nico_nico_proto_msgTypes[513] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37411,7 +37533,7 @@ func (x *MachineValidationTestsGetRequest) String() string { func (*MachineValidationTestsGetRequest) ProtoMessage() {} func (x *MachineValidationTestsGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[511] + mi := &file_nico_nico_proto_msgTypes[513] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37424,7 +37546,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{511} + return file_nico_nico_proto_rawDescGZIP(), []int{513} } func (x *MachineValidationTestsGetRequest) GetSupportedPlatforms() []string { @@ -37494,7 +37616,7 @@ type MachineValidationTestUpdateRequest struct { func (x *MachineValidationTestUpdateRequest) Reset() { *x = MachineValidationTestUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[512] + mi := &file_nico_nico_proto_msgTypes[514] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37506,7 +37628,7 @@ func (x *MachineValidationTestUpdateRequest) String() string { func (*MachineValidationTestUpdateRequest) ProtoMessage() {} func (x *MachineValidationTestUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[512] + mi := &file_nico_nico_proto_msgTypes[514] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37519,7 +37641,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{512} + return file_nico_nico_proto_rawDescGZIP(), []int{514} } func (x *MachineValidationTestUpdateRequest) GetTestId() string { @@ -37569,7 +37691,7 @@ type MachineValidationTestAddRequest struct { func (x *MachineValidationTestAddRequest) Reset() { *x = MachineValidationTestAddRequest{} - mi := &file_nico_nico_proto_msgTypes[513] + mi := &file_nico_nico_proto_msgTypes[515] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37581,7 +37703,7 @@ func (x *MachineValidationTestAddRequest) String() string { func (*MachineValidationTestAddRequest) ProtoMessage() {} func (x *MachineValidationTestAddRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[513] + mi := &file_nico_nico_proto_msgTypes[515] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37594,7 +37716,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{513} + return file_nico_nico_proto_rawDescGZIP(), []int{515} } func (x *MachineValidationTestAddRequest) GetName() string { @@ -37733,7 +37855,7 @@ type MachineValidationTestAddUpdateResponse struct { func (x *MachineValidationTestAddUpdateResponse) Reset() { *x = MachineValidationTestAddUpdateResponse{} - mi := &file_nico_nico_proto_msgTypes[514] + mi := &file_nico_nico_proto_msgTypes[516] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37745,7 +37867,7 @@ func (x *MachineValidationTestAddUpdateResponse) String() string { func (*MachineValidationTestAddUpdateResponse) ProtoMessage() {} func (x *MachineValidationTestAddUpdateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[514] + mi := &file_nico_nico_proto_msgTypes[516] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37758,7 +37880,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{514} + return file_nico_nico_proto_rawDescGZIP(), []int{516} } func (x *MachineValidationTestAddUpdateResponse) GetTestId() string { @@ -37784,7 +37906,7 @@ type MachineValidationTestsGetResponse struct { func (x *MachineValidationTestsGetResponse) Reset() { *x = MachineValidationTestsGetResponse{} - mi := &file_nico_nico_proto_msgTypes[515] + mi := &file_nico_nico_proto_msgTypes[517] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37796,7 +37918,7 @@ func (x *MachineValidationTestsGetResponse) String() string { func (*MachineValidationTestsGetResponse) ProtoMessage() {} func (x *MachineValidationTestsGetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[515] + mi := &file_nico_nico_proto_msgTypes[517] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37809,7 +37931,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{515} + return file_nico_nico_proto_rawDescGZIP(), []int{517} } func (x *MachineValidationTestsGetResponse) GetTests() []*MachineValidationTest { @@ -37829,7 +37951,7 @@ type MachineValidationTestVerfiedRequest struct { func (x *MachineValidationTestVerfiedRequest) Reset() { *x = MachineValidationTestVerfiedRequest{} - mi := &file_nico_nico_proto_msgTypes[516] + mi := &file_nico_nico_proto_msgTypes[518] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37841,7 +37963,7 @@ func (x *MachineValidationTestVerfiedRequest) String() string { func (*MachineValidationTestVerfiedRequest) ProtoMessage() {} func (x *MachineValidationTestVerfiedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[516] + mi := &file_nico_nico_proto_msgTypes[518] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37854,7 +37976,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{516} + return file_nico_nico_proto_rawDescGZIP(), []int{518} } func (x *MachineValidationTestVerfiedRequest) GetTestId() string { @@ -37880,7 +38002,7 @@ type MachineValidationTestVerfiedResponse struct { func (x *MachineValidationTestVerfiedResponse) Reset() { *x = MachineValidationTestVerfiedResponse{} - mi := &file_nico_nico_proto_msgTypes[517] + mi := &file_nico_nico_proto_msgTypes[519] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37892,7 +38014,7 @@ func (x *MachineValidationTestVerfiedResponse) String() string { func (*MachineValidationTestVerfiedResponse) ProtoMessage() {} func (x *MachineValidationTestVerfiedResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[517] + mi := &file_nico_nico_proto_msgTypes[519] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37905,7 +38027,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{517} + return file_nico_nico_proto_rawDescGZIP(), []int{519} } func (x *MachineValidationTestVerfiedResponse) GetMessage() string { @@ -37946,7 +38068,7 @@ type MachineValidationTest struct { func (x *MachineValidationTest) Reset() { *x = MachineValidationTest{} - mi := &file_nico_nico_proto_msgTypes[518] + mi := &file_nico_nico_proto_msgTypes[520] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37958,7 +38080,7 @@ func (x *MachineValidationTest) String() string { func (*MachineValidationTest) ProtoMessage() {} func (x *MachineValidationTest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[518] + mi := &file_nico_nico_proto_msgTypes[520] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37971,7 +38093,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{518} + return file_nico_nico_proto_rawDescGZIP(), []int{520} } func (x *MachineValidationTest) GetTestId() string { @@ -38145,7 +38267,7 @@ type MachineValidationTestNextVersionResponse struct { func (x *MachineValidationTestNextVersionResponse) Reset() { *x = MachineValidationTestNextVersionResponse{} - mi := &file_nico_nico_proto_msgTypes[519] + mi := &file_nico_nico_proto_msgTypes[521] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38157,7 +38279,7 @@ func (x *MachineValidationTestNextVersionResponse) String() string { func (*MachineValidationTestNextVersionResponse) ProtoMessage() {} func (x *MachineValidationTestNextVersionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[519] + mi := &file_nico_nico_proto_msgTypes[521] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38170,7 +38292,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{519} + return file_nico_nico_proto_rawDescGZIP(), []int{521} } func (x *MachineValidationTestNextVersionResponse) GetTestId() string { @@ -38196,7 +38318,7 @@ type MachineValidationTestNextVersionRequest struct { func (x *MachineValidationTestNextVersionRequest) Reset() { *x = MachineValidationTestNextVersionRequest{} - mi := &file_nico_nico_proto_msgTypes[520] + mi := &file_nico_nico_proto_msgTypes[522] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38208,7 +38330,7 @@ func (x *MachineValidationTestNextVersionRequest) String() string { func (*MachineValidationTestNextVersionRequest) ProtoMessage() {} func (x *MachineValidationTestNextVersionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[520] + mi := &file_nico_nico_proto_msgTypes[522] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38221,7 +38343,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{520} + return file_nico_nico_proto_rawDescGZIP(), []int{522} } func (x *MachineValidationTestNextVersionRequest) GetTestId() string { @@ -38242,7 +38364,7 @@ type MachineValidationTestEnableDisableTestRequest struct { func (x *MachineValidationTestEnableDisableTestRequest) Reset() { *x = MachineValidationTestEnableDisableTestRequest{} - mi := &file_nico_nico_proto_msgTypes[521] + mi := &file_nico_nico_proto_msgTypes[523] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38254,7 +38376,7 @@ func (x *MachineValidationTestEnableDisableTestRequest) String() string { func (*MachineValidationTestEnableDisableTestRequest) ProtoMessage() {} func (x *MachineValidationTestEnableDisableTestRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[521] + mi := &file_nico_nico_proto_msgTypes[523] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38267,7 +38389,7 @@ func (x *MachineValidationTestEnableDisableTestRequest) ProtoReflect() protorefl // Deprecated: Use MachineValidationTestEnableDisableTestRequest.ProtoReflect.Descriptor instead. func (*MachineValidationTestEnableDisableTestRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{521} + return file_nico_nico_proto_rawDescGZIP(), []int{523} } func (x *MachineValidationTestEnableDisableTestRequest) GetTestId() string { @@ -38300,7 +38422,7 @@ type MachineValidationTestEnableDisableTestResponse struct { func (x *MachineValidationTestEnableDisableTestResponse) Reset() { *x = MachineValidationTestEnableDisableTestResponse{} - mi := &file_nico_nico_proto_msgTypes[522] + mi := &file_nico_nico_proto_msgTypes[524] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38312,7 +38434,7 @@ func (x *MachineValidationTestEnableDisableTestResponse) String() string { func (*MachineValidationTestEnableDisableTestResponse) ProtoMessage() {} func (x *MachineValidationTestEnableDisableTestResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[522] + mi := &file_nico_nico_proto_msgTypes[524] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38325,7 +38447,7 @@ func (x *MachineValidationTestEnableDisableTestResponse) ProtoReflect() protoref // Deprecated: Use MachineValidationTestEnableDisableTestResponse.ProtoReflect.Descriptor instead. func (*MachineValidationTestEnableDisableTestResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{522} + return file_nico_nico_proto_rawDescGZIP(), []int{524} } func (x *MachineValidationTestEnableDisableTestResponse) GetMessage() string { @@ -38347,7 +38469,7 @@ type MachineValidationRunRequest struct { func (x *MachineValidationRunRequest) Reset() { *x = MachineValidationRunRequest{} - mi := &file_nico_nico_proto_msgTypes[523] + mi := &file_nico_nico_proto_msgTypes[525] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38359,7 +38481,7 @@ func (x *MachineValidationRunRequest) String() string { func (*MachineValidationRunRequest) ProtoMessage() {} func (x *MachineValidationRunRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[523] + mi := &file_nico_nico_proto_msgTypes[525] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38372,7 +38494,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{523} + return file_nico_nico_proto_rawDescGZIP(), []int{525} } func (x *MachineValidationRunRequest) GetValidationId() *MachineValidationId { @@ -38412,7 +38534,7 @@ type MachineValidationRunResponse struct { func (x *MachineValidationRunResponse) Reset() { *x = MachineValidationRunResponse{} - mi := &file_nico_nico_proto_msgTypes[524] + mi := &file_nico_nico_proto_msgTypes[526] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38424,7 +38546,7 @@ func (x *MachineValidationRunResponse) String() string { func (*MachineValidationRunResponse) ProtoMessage() {} func (x *MachineValidationRunResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[524] + mi := &file_nico_nico_proto_msgTypes[526] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38437,7 +38559,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{524} + return file_nico_nico_proto_rawDescGZIP(), []int{526} } func (x *MachineValidationRunResponse) GetMessage() string { @@ -38460,7 +38582,7 @@ type MachineCapabilityAttributesCpu struct { func (x *MachineCapabilityAttributesCpu) Reset() { *x = MachineCapabilityAttributesCpu{} - mi := &file_nico_nico_proto_msgTypes[525] + mi := &file_nico_nico_proto_msgTypes[527] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38472,7 +38594,7 @@ func (x *MachineCapabilityAttributesCpu) String() string { func (*MachineCapabilityAttributesCpu) ProtoMessage() {} func (x *MachineCapabilityAttributesCpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[525] + mi := &file_nico_nico_proto_msgTypes[527] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38485,7 +38607,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{525} + return file_nico_nico_proto_rawDescGZIP(), []int{527} } func (x *MachineCapabilityAttributesCpu) GetName() string { @@ -38539,7 +38661,7 @@ type MachineCapabilityAttributesGpu struct { func (x *MachineCapabilityAttributesGpu) Reset() { *x = MachineCapabilityAttributesGpu{} - mi := &file_nico_nico_proto_msgTypes[526] + mi := &file_nico_nico_proto_msgTypes[528] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38551,7 +38673,7 @@ func (x *MachineCapabilityAttributesGpu) String() string { func (*MachineCapabilityAttributesGpu) ProtoMessage() {} func (x *MachineCapabilityAttributesGpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[526] + mi := &file_nico_nico_proto_msgTypes[528] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38564,7 +38686,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{526} + return file_nico_nico_proto_rawDescGZIP(), []int{528} } func (x *MachineCapabilityAttributesGpu) GetName() string { @@ -38635,7 +38757,7 @@ type MachineCapabilityAttributesMemory struct { func (x *MachineCapabilityAttributesMemory) Reset() { *x = MachineCapabilityAttributesMemory{} - mi := &file_nico_nico_proto_msgTypes[527] + mi := &file_nico_nico_proto_msgTypes[529] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38647,7 +38769,7 @@ func (x *MachineCapabilityAttributesMemory) String() string { func (*MachineCapabilityAttributesMemory) ProtoMessage() {} func (x *MachineCapabilityAttributesMemory) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[527] + mi := &file_nico_nico_proto_msgTypes[529] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38660,7 +38782,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{527} + return file_nico_nico_proto_rawDescGZIP(), []int{529} } func (x *MachineCapabilityAttributesMemory) GetName() string { @@ -38703,7 +38825,7 @@ type MachineCapabilityAttributesStorage struct { func (x *MachineCapabilityAttributesStorage) Reset() { *x = MachineCapabilityAttributesStorage{} - mi := &file_nico_nico_proto_msgTypes[528] + mi := &file_nico_nico_proto_msgTypes[530] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38715,7 +38837,7 @@ func (x *MachineCapabilityAttributesStorage) String() string { func (*MachineCapabilityAttributesStorage) ProtoMessage() {} func (x *MachineCapabilityAttributesStorage) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[528] + mi := &file_nico_nico_proto_msgTypes[530] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38728,7 +38850,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{528} + return file_nico_nico_proto_rawDescGZIP(), []int{530} } func (x *MachineCapabilityAttributesStorage) GetName() string { @@ -38771,7 +38893,7 @@ type MachineCapabilityAttributesNetwork struct { func (x *MachineCapabilityAttributesNetwork) Reset() { *x = MachineCapabilityAttributesNetwork{} - mi := &file_nico_nico_proto_msgTypes[529] + mi := &file_nico_nico_proto_msgTypes[531] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38783,7 +38905,7 @@ func (x *MachineCapabilityAttributesNetwork) String() string { func (*MachineCapabilityAttributesNetwork) ProtoMessage() {} func (x *MachineCapabilityAttributesNetwork) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[529] + mi := &file_nico_nico_proto_msgTypes[531] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38796,7 +38918,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{529} + return file_nico_nico_proto_rawDescGZIP(), []int{531} } func (x *MachineCapabilityAttributesNetwork) GetName() string { @@ -38846,7 +38968,7 @@ type MachineCapabilityAttributesInfiniband struct { func (x *MachineCapabilityAttributesInfiniband) Reset() { *x = MachineCapabilityAttributesInfiniband{} - mi := &file_nico_nico_proto_msgTypes[530] + mi := &file_nico_nico_proto_msgTypes[532] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38858,7 +38980,7 @@ func (x *MachineCapabilityAttributesInfiniband) String() string { func (*MachineCapabilityAttributesInfiniband) ProtoMessage() {} func (x *MachineCapabilityAttributesInfiniband) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[530] + mi := &file_nico_nico_proto_msgTypes[532] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38871,7 +38993,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{530} + return file_nico_nico_proto_rawDescGZIP(), []int{532} } func (x *MachineCapabilityAttributesInfiniband) GetName() string { @@ -38913,7 +39035,7 @@ type MachineCapabilityAttributesDpu struct { func (x *MachineCapabilityAttributesDpu) Reset() { *x = MachineCapabilityAttributesDpu{} - mi := &file_nico_nico_proto_msgTypes[531] + mi := &file_nico_nico_proto_msgTypes[533] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38925,7 +39047,7 @@ func (x *MachineCapabilityAttributesDpu) String() string { func (*MachineCapabilityAttributesDpu) ProtoMessage() {} func (x *MachineCapabilityAttributesDpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[531] + mi := &file_nico_nico_proto_msgTypes[533] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38938,7 +39060,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{531} + return file_nico_nico_proto_rawDescGZIP(), []int{533} } func (x *MachineCapabilityAttributesDpu) GetName() string { @@ -38977,7 +39099,7 @@ type MachineCapabilitiesSet struct { func (x *MachineCapabilitiesSet) Reset() { *x = MachineCapabilitiesSet{} - mi := &file_nico_nico_proto_msgTypes[532] + mi := &file_nico_nico_proto_msgTypes[534] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38989,7 +39111,7 @@ func (x *MachineCapabilitiesSet) String() string { func (*MachineCapabilitiesSet) ProtoMessage() {} func (x *MachineCapabilitiesSet) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[532] + mi := &file_nico_nico_proto_msgTypes[534] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39002,7 +39124,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{532} + return file_nico_nico_proto_rawDescGZIP(), []int{534} } func (x *MachineCapabilitiesSet) GetCpu() []*MachineCapabilityAttributesCpu { @@ -39066,7 +39188,7 @@ type InstanceTypeAttributes struct { func (x *InstanceTypeAttributes) Reset() { *x = InstanceTypeAttributes{} - mi := &file_nico_nico_proto_msgTypes[533] + mi := &file_nico_nico_proto_msgTypes[535] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39078,7 +39200,7 @@ func (x *InstanceTypeAttributes) String() string { func (*InstanceTypeAttributes) ProtoMessage() {} func (x *InstanceTypeAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[533] + mi := &file_nico_nico_proto_msgTypes[535] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39091,7 +39213,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{533} + return file_nico_nico_proto_rawDescGZIP(), []int{535} } func (x *InstanceTypeAttributes) GetDesiredCapabilities() []*InstanceTypeMachineCapabilityFilterAttributes { @@ -39120,7 +39242,7 @@ type InstanceType struct { func (x *InstanceType) Reset() { *x = InstanceType{} - mi := &file_nico_nico_proto_msgTypes[534] + mi := &file_nico_nico_proto_msgTypes[536] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39132,7 +39254,7 @@ func (x *InstanceType) String() string { func (*InstanceType) ProtoMessage() {} func (x *InstanceType) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[534] + mi := &file_nico_nico_proto_msgTypes[536] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39145,7 +39267,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{534} + return file_nico_nico_proto_rawDescGZIP(), []int{536} } func (x *InstanceType) GetId() string { @@ -39216,7 +39338,7 @@ type InstanceTypeMachineCapabilityFilterAttributes struct { func (x *InstanceTypeMachineCapabilityFilterAttributes) Reset() { *x = InstanceTypeMachineCapabilityFilterAttributes{} - mi := &file_nico_nico_proto_msgTypes[535] + mi := &file_nico_nico_proto_msgTypes[537] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39228,7 +39350,7 @@ func (x *InstanceTypeMachineCapabilityFilterAttributes) String() string { func (*InstanceTypeMachineCapabilityFilterAttributes) ProtoMessage() {} func (x *InstanceTypeMachineCapabilityFilterAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[535] + mi := &file_nico_nico_proto_msgTypes[537] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39241,7 +39363,7 @@ func (x *InstanceTypeMachineCapabilityFilterAttributes) ProtoReflect() protorefl // Deprecated: Use InstanceTypeMachineCapabilityFilterAttributes.ProtoReflect.Descriptor instead. func (*InstanceTypeMachineCapabilityFilterAttributes) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{535} + return file_nico_nico_proto_rawDescGZIP(), []int{537} } func (x *InstanceTypeMachineCapabilityFilterAttributes) GetCapabilityType() MachineCapabilityType { @@ -39332,7 +39454,7 @@ type CreateInstanceTypeRequest struct { func (x *CreateInstanceTypeRequest) Reset() { *x = CreateInstanceTypeRequest{} - mi := &file_nico_nico_proto_msgTypes[536] + mi := &file_nico_nico_proto_msgTypes[538] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39344,7 +39466,7 @@ func (x *CreateInstanceTypeRequest) String() string { func (*CreateInstanceTypeRequest) ProtoMessage() {} func (x *CreateInstanceTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[536] + mi := &file_nico_nico_proto_msgTypes[538] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39357,7 +39479,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{536} + return file_nico_nico_proto_rawDescGZIP(), []int{538} } func (x *CreateInstanceTypeRequest) GetId() string { @@ -39390,7 +39512,7 @@ type CreateInstanceTypeResponse struct { func (x *CreateInstanceTypeResponse) Reset() { *x = CreateInstanceTypeResponse{} - mi := &file_nico_nico_proto_msgTypes[537] + mi := &file_nico_nico_proto_msgTypes[539] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39402,7 +39524,7 @@ func (x *CreateInstanceTypeResponse) String() string { func (*CreateInstanceTypeResponse) ProtoMessage() {} func (x *CreateInstanceTypeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[537] + mi := &file_nico_nico_proto_msgTypes[539] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39415,7 +39537,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{537} + return file_nico_nico_proto_rawDescGZIP(), []int{539} } func (x *CreateInstanceTypeResponse) GetInstanceType() *InstanceType { @@ -39433,7 +39555,7 @@ type FindInstanceTypeIdsRequest struct { func (x *FindInstanceTypeIdsRequest) Reset() { *x = FindInstanceTypeIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[538] + mi := &file_nico_nico_proto_msgTypes[540] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39445,7 +39567,7 @@ func (x *FindInstanceTypeIdsRequest) String() string { func (*FindInstanceTypeIdsRequest) ProtoMessage() {} func (x *FindInstanceTypeIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[538] + mi := &file_nico_nico_proto_msgTypes[540] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39458,7 +39580,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{538} + return file_nico_nico_proto_rawDescGZIP(), []int{540} } type FindInstanceTypeIdsResponse struct { @@ -39470,7 +39592,7 @@ type FindInstanceTypeIdsResponse struct { func (x *FindInstanceTypeIdsResponse) Reset() { *x = FindInstanceTypeIdsResponse{} - mi := &file_nico_nico_proto_msgTypes[539] + mi := &file_nico_nico_proto_msgTypes[541] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39482,7 +39604,7 @@ func (x *FindInstanceTypeIdsResponse) String() string { func (*FindInstanceTypeIdsResponse) ProtoMessage() {} func (x *FindInstanceTypeIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[539] + mi := &file_nico_nico_proto_msgTypes[541] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39495,7 +39617,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{539} + return file_nico_nico_proto_rawDescGZIP(), []int{541} } func (x *FindInstanceTypeIdsResponse) GetInstanceTypeIds() []string { @@ -39518,7 +39640,7 @@ type FindInstanceTypesByIdsRequest struct { func (x *FindInstanceTypesByIdsRequest) Reset() { *x = FindInstanceTypesByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[540] + mi := &file_nico_nico_proto_msgTypes[542] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39530,7 +39652,7 @@ func (x *FindInstanceTypesByIdsRequest) String() string { func (*FindInstanceTypesByIdsRequest) ProtoMessage() {} func (x *FindInstanceTypesByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[540] + mi := &file_nico_nico_proto_msgTypes[542] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39543,7 +39665,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{540} + return file_nico_nico_proto_rawDescGZIP(), []int{542} } func (x *FindInstanceTypesByIdsRequest) GetInstanceTypeIds() []string { @@ -39576,7 +39698,7 @@ type FindInstanceTypesByIdsResponse struct { func (x *FindInstanceTypesByIdsResponse) Reset() { *x = FindInstanceTypesByIdsResponse{} - mi := &file_nico_nico_proto_msgTypes[541] + mi := &file_nico_nico_proto_msgTypes[543] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39588,7 +39710,7 @@ func (x *FindInstanceTypesByIdsResponse) String() string { func (*FindInstanceTypesByIdsResponse) ProtoMessage() {} func (x *FindInstanceTypesByIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[541] + mi := &file_nico_nico_proto_msgTypes[543] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39601,7 +39723,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{541} + return file_nico_nico_proto_rawDescGZIP(), []int{543} } func (x *FindInstanceTypesByIdsResponse) GetInstanceTypes() []*InstanceType { @@ -39620,7 +39742,7 @@ type DeleteInstanceTypeRequest struct { func (x *DeleteInstanceTypeRequest) Reset() { *x = DeleteInstanceTypeRequest{} - mi := &file_nico_nico_proto_msgTypes[542] + mi := &file_nico_nico_proto_msgTypes[544] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39632,7 +39754,7 @@ func (x *DeleteInstanceTypeRequest) String() string { func (*DeleteInstanceTypeRequest) ProtoMessage() {} func (x *DeleteInstanceTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[542] + mi := &file_nico_nico_proto_msgTypes[544] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39645,7 +39767,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{542} + return file_nico_nico_proto_rawDescGZIP(), []int{544} } func (x *DeleteInstanceTypeRequest) GetId() string { @@ -39663,7 +39785,7 @@ type DeleteInstanceTypeResponse struct { func (x *DeleteInstanceTypeResponse) Reset() { *x = DeleteInstanceTypeResponse{} - mi := &file_nico_nico_proto_msgTypes[543] + mi := &file_nico_nico_proto_msgTypes[545] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39675,7 +39797,7 @@ func (x *DeleteInstanceTypeResponse) String() string { func (*DeleteInstanceTypeResponse) ProtoMessage() {} func (x *DeleteInstanceTypeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[543] + mi := &file_nico_nico_proto_msgTypes[545] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39688,7 +39810,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{543} + return file_nico_nico_proto_rawDescGZIP(), []int{545} } type UpdateInstanceTypeResponse struct { @@ -39700,7 +39822,7 @@ type UpdateInstanceTypeResponse struct { func (x *UpdateInstanceTypeResponse) Reset() { *x = UpdateInstanceTypeResponse{} - mi := &file_nico_nico_proto_msgTypes[544] + mi := &file_nico_nico_proto_msgTypes[546] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39712,7 +39834,7 @@ func (x *UpdateInstanceTypeResponse) String() string { func (*UpdateInstanceTypeResponse) ProtoMessage() {} func (x *UpdateInstanceTypeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[544] + mi := &file_nico_nico_proto_msgTypes[546] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39725,7 +39847,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{544} + return file_nico_nico_proto_rawDescGZIP(), []int{546} } func (x *UpdateInstanceTypeResponse) GetInstanceType() *InstanceType { @@ -39747,7 +39869,7 @@ type UpdateInstanceTypeRequest struct { func (x *UpdateInstanceTypeRequest) Reset() { *x = UpdateInstanceTypeRequest{} - mi := &file_nico_nico_proto_msgTypes[545] + mi := &file_nico_nico_proto_msgTypes[547] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39759,7 +39881,7 @@ func (x *UpdateInstanceTypeRequest) String() string { func (*UpdateInstanceTypeRequest) ProtoMessage() {} func (x *UpdateInstanceTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[545] + mi := &file_nico_nico_proto_msgTypes[547] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39772,7 +39894,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{545} + return file_nico_nico_proto_rawDescGZIP(), []int{547} } func (x *UpdateInstanceTypeRequest) GetId() string { @@ -39813,7 +39935,7 @@ type AssociateMachinesWithInstanceTypeRequest struct { func (x *AssociateMachinesWithInstanceTypeRequest) Reset() { *x = AssociateMachinesWithInstanceTypeRequest{} - mi := &file_nico_nico_proto_msgTypes[546] + mi := &file_nico_nico_proto_msgTypes[548] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39825,7 +39947,7 @@ func (x *AssociateMachinesWithInstanceTypeRequest) String() string { func (*AssociateMachinesWithInstanceTypeRequest) ProtoMessage() {} func (x *AssociateMachinesWithInstanceTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[546] + mi := &file_nico_nico_proto_msgTypes[548] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39838,7 +39960,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{546} + return file_nico_nico_proto_rawDescGZIP(), []int{548} } func (x *AssociateMachinesWithInstanceTypeRequest) GetInstanceTypeId() string { @@ -39863,7 +39985,7 @@ type AssociateMachinesWithInstanceTypeResponse struct { func (x *AssociateMachinesWithInstanceTypeResponse) Reset() { *x = AssociateMachinesWithInstanceTypeResponse{} - mi := &file_nico_nico_proto_msgTypes[547] + mi := &file_nico_nico_proto_msgTypes[549] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39875,7 +39997,7 @@ func (x *AssociateMachinesWithInstanceTypeResponse) String() string { func (*AssociateMachinesWithInstanceTypeResponse) ProtoMessage() {} func (x *AssociateMachinesWithInstanceTypeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[547] + mi := &file_nico_nico_proto_msgTypes[549] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39888,7 +40010,7 @@ func (x *AssociateMachinesWithInstanceTypeResponse) ProtoReflect() protoreflect. // Deprecated: Use AssociateMachinesWithInstanceTypeResponse.ProtoReflect.Descriptor instead. func (*AssociateMachinesWithInstanceTypeResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{547} + return file_nico_nico_proto_rawDescGZIP(), []int{549} } type RemoveMachineInstanceTypeAssociationRequest struct { @@ -39900,7 +40022,7 @@ type RemoveMachineInstanceTypeAssociationRequest struct { func (x *RemoveMachineInstanceTypeAssociationRequest) Reset() { *x = RemoveMachineInstanceTypeAssociationRequest{} - mi := &file_nico_nico_proto_msgTypes[548] + mi := &file_nico_nico_proto_msgTypes[550] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39912,7 +40034,7 @@ func (x *RemoveMachineInstanceTypeAssociationRequest) String() string { func (*RemoveMachineInstanceTypeAssociationRequest) ProtoMessage() {} func (x *RemoveMachineInstanceTypeAssociationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[548] + mi := &file_nico_nico_proto_msgTypes[550] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39925,7 +40047,7 @@ func (x *RemoveMachineInstanceTypeAssociationRequest) ProtoReflect() protoreflec // Deprecated: Use RemoveMachineInstanceTypeAssociationRequest.ProtoReflect.Descriptor instead. func (*RemoveMachineInstanceTypeAssociationRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{548} + return file_nico_nico_proto_rawDescGZIP(), []int{550} } func (x *RemoveMachineInstanceTypeAssociationRequest) GetMachineId() string { @@ -39943,7 +40065,7 @@ type RemoveMachineInstanceTypeAssociationResponse struct { func (x *RemoveMachineInstanceTypeAssociationResponse) Reset() { *x = RemoveMachineInstanceTypeAssociationResponse{} - mi := &file_nico_nico_proto_msgTypes[549] + mi := &file_nico_nico_proto_msgTypes[551] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39955,7 +40077,7 @@ func (x *RemoveMachineInstanceTypeAssociationResponse) String() string { func (*RemoveMachineInstanceTypeAssociationResponse) ProtoMessage() {} func (x *RemoveMachineInstanceTypeAssociationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[549] + mi := &file_nico_nico_proto_msgTypes[551] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39968,7 +40090,7 @@ func (x *RemoveMachineInstanceTypeAssociationResponse) ProtoReflect() protorefle // Deprecated: Use RemoveMachineInstanceTypeAssociationResponse.ProtoReflect.Descriptor instead. func (*RemoveMachineInstanceTypeAssociationResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{549} + return file_nico_nico_proto_rawDescGZIP(), []int{551} } type RedfishBrowseRequest struct { @@ -39980,7 +40102,7 @@ type RedfishBrowseRequest struct { func (x *RedfishBrowseRequest) Reset() { *x = RedfishBrowseRequest{} - mi := &file_nico_nico_proto_msgTypes[550] + mi := &file_nico_nico_proto_msgTypes[552] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39992,7 +40114,7 @@ func (x *RedfishBrowseRequest) String() string { func (*RedfishBrowseRequest) ProtoMessage() {} func (x *RedfishBrowseRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[550] + mi := &file_nico_nico_proto_msgTypes[552] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40005,7 +40127,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{550} + return file_nico_nico_proto_rawDescGZIP(), []int{552} } func (x *RedfishBrowseRequest) GetUri() string { @@ -40026,7 +40148,7 @@ type RedfishBrowseResponse struct { func (x *RedfishBrowseResponse) Reset() { *x = RedfishBrowseResponse{} - mi := &file_nico_nico_proto_msgTypes[551] + mi := &file_nico_nico_proto_msgTypes[553] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40038,7 +40160,7 @@ func (x *RedfishBrowseResponse) String() string { func (*RedfishBrowseResponse) ProtoMessage() {} func (x *RedfishBrowseResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[551] + mi := &file_nico_nico_proto_msgTypes[553] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40051,7 +40173,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{551} + return file_nico_nico_proto_rawDescGZIP(), []int{553} } func (x *RedfishBrowseResponse) GetText() string { @@ -40077,7 +40199,7 @@ type RedfishListActionsRequest struct { func (x *RedfishListActionsRequest) Reset() { *x = RedfishListActionsRequest{} - mi := &file_nico_nico_proto_msgTypes[552] + mi := &file_nico_nico_proto_msgTypes[554] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40089,7 +40211,7 @@ func (x *RedfishListActionsRequest) String() string { func (*RedfishListActionsRequest) ProtoMessage() {} func (x *RedfishListActionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[552] + mi := &file_nico_nico_proto_msgTypes[554] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40102,7 +40224,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{552} + return file_nico_nico_proto_rawDescGZIP(), []int{554} } func (x *RedfishListActionsRequest) GetMachineIp() string { @@ -40121,7 +40243,7 @@ type RedfishListActionsResponse struct { func (x *RedfishListActionsResponse) Reset() { *x = RedfishListActionsResponse{} - mi := &file_nico_nico_proto_msgTypes[553] + mi := &file_nico_nico_proto_msgTypes[555] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40133,7 +40255,7 @@ func (x *RedfishListActionsResponse) String() string { func (*RedfishListActionsResponse) ProtoMessage() {} func (x *RedfishListActionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[553] + mi := &file_nico_nico_proto_msgTypes[555] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40146,7 +40268,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{553} + return file_nico_nico_proto_rawDescGZIP(), []int{555} } func (x *RedfishListActionsResponse) GetActions() []*RedfishAction { @@ -40179,7 +40301,7 @@ type RedfishAction struct { func (x *RedfishAction) Reset() { *x = RedfishAction{} - mi := &file_nico_nico_proto_msgTypes[554] + mi := &file_nico_nico_proto_msgTypes[556] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40191,7 +40313,7 @@ func (x *RedfishAction) String() string { func (*RedfishAction) ProtoMessage() {} func (x *RedfishAction) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[554] + mi := &file_nico_nico_proto_msgTypes[556] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40204,7 +40326,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{554} + return file_nico_nico_proto_rawDescGZIP(), []int{556} } func (x *RedfishAction) GetRequestId() int64 { @@ -40300,7 +40422,7 @@ type OptionalRedfishActionResult struct { func (x *OptionalRedfishActionResult) Reset() { *x = OptionalRedfishActionResult{} - mi := &file_nico_nico_proto_msgTypes[555] + mi := &file_nico_nico_proto_msgTypes[557] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40312,7 +40434,7 @@ func (x *OptionalRedfishActionResult) String() string { func (*OptionalRedfishActionResult) ProtoMessage() {} func (x *OptionalRedfishActionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[555] + mi := &file_nico_nico_proto_msgTypes[557] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40325,7 +40447,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{555} + return file_nico_nico_proto_rawDescGZIP(), []int{557} } func (x *OptionalRedfishActionResult) GetResult() *RedfishActionResult { @@ -40347,7 +40469,7 @@ type RedfishActionResult struct { func (x *RedfishActionResult) Reset() { *x = RedfishActionResult{} - mi := &file_nico_nico_proto_msgTypes[556] + mi := &file_nico_nico_proto_msgTypes[558] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40359,7 +40481,7 @@ func (x *RedfishActionResult) String() string { func (*RedfishActionResult) ProtoMessage() {} func (x *RedfishActionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[556] + mi := &file_nico_nico_proto_msgTypes[558] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40372,7 +40494,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{556} + return file_nico_nico_proto_rawDescGZIP(), []int{558} } func (x *RedfishActionResult) GetHeaders() map[string]string { @@ -40415,7 +40537,7 @@ type RedfishCreateActionRequest struct { func (x *RedfishCreateActionRequest) Reset() { *x = RedfishCreateActionRequest{} - mi := &file_nico_nico_proto_msgTypes[557] + mi := &file_nico_nico_proto_msgTypes[559] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40427,7 +40549,7 @@ func (x *RedfishCreateActionRequest) String() string { func (*RedfishCreateActionRequest) ProtoMessage() {} func (x *RedfishCreateActionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[557] + mi := &file_nico_nico_proto_msgTypes[559] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40440,7 +40562,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{557} + return file_nico_nico_proto_rawDescGZIP(), []int{559} } func (x *RedfishCreateActionRequest) GetIps() []string { @@ -40480,7 +40602,7 @@ type RedfishCreateActionResponse struct { func (x *RedfishCreateActionResponse) Reset() { *x = RedfishCreateActionResponse{} - mi := &file_nico_nico_proto_msgTypes[558] + mi := &file_nico_nico_proto_msgTypes[560] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40492,7 +40614,7 @@ func (x *RedfishCreateActionResponse) String() string { func (*RedfishCreateActionResponse) ProtoMessage() {} func (x *RedfishCreateActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[558] + mi := &file_nico_nico_proto_msgTypes[560] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40505,7 +40627,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{558} + return file_nico_nico_proto_rawDescGZIP(), []int{560} } func (x *RedfishCreateActionResponse) GetRequestId() int64 { @@ -40524,7 +40646,7 @@ type RedfishActionID struct { func (x *RedfishActionID) Reset() { *x = RedfishActionID{} - mi := &file_nico_nico_proto_msgTypes[559] + mi := &file_nico_nico_proto_msgTypes[561] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40536,7 +40658,7 @@ func (x *RedfishActionID) String() string { func (*RedfishActionID) ProtoMessage() {} func (x *RedfishActionID) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[559] + mi := &file_nico_nico_proto_msgTypes[561] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40549,7 +40671,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{559} + return file_nico_nico_proto_rawDescGZIP(), []int{561} } func (x *RedfishActionID) GetRequestId() int64 { @@ -40567,7 +40689,7 @@ type RedfishApproveActionResponse struct { func (x *RedfishApproveActionResponse) Reset() { *x = RedfishApproveActionResponse{} - mi := &file_nico_nico_proto_msgTypes[560] + mi := &file_nico_nico_proto_msgTypes[562] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40579,7 +40701,7 @@ func (x *RedfishApproveActionResponse) String() string { func (*RedfishApproveActionResponse) ProtoMessage() {} func (x *RedfishApproveActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[560] + mi := &file_nico_nico_proto_msgTypes[562] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40592,7 +40714,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{560} + return file_nico_nico_proto_rawDescGZIP(), []int{562} } type RedfishApplyActionResponse struct { @@ -40603,7 +40725,7 @@ type RedfishApplyActionResponse struct { func (x *RedfishApplyActionResponse) Reset() { *x = RedfishApplyActionResponse{} - mi := &file_nico_nico_proto_msgTypes[561] + mi := &file_nico_nico_proto_msgTypes[563] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40615,7 +40737,7 @@ func (x *RedfishApplyActionResponse) String() string { func (*RedfishApplyActionResponse) ProtoMessage() {} func (x *RedfishApplyActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[561] + mi := &file_nico_nico_proto_msgTypes[563] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40628,7 +40750,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{561} + return file_nico_nico_proto_rawDescGZIP(), []int{563} } type RedfishCancelActionResponse struct { @@ -40639,7 +40761,7 @@ type RedfishCancelActionResponse struct { func (x *RedfishCancelActionResponse) Reset() { *x = RedfishCancelActionResponse{} - mi := &file_nico_nico_proto_msgTypes[562] + mi := &file_nico_nico_proto_msgTypes[564] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40651,7 +40773,7 @@ func (x *RedfishCancelActionResponse) String() string { func (*RedfishCancelActionResponse) ProtoMessage() {} func (x *RedfishCancelActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[562] + mi := &file_nico_nico_proto_msgTypes[564] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40664,7 +40786,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{562} + return file_nico_nico_proto_rawDescGZIP(), []int{564} } type UfmBrowseRequest struct { @@ -40679,7 +40801,7 @@ type UfmBrowseRequest struct { func (x *UfmBrowseRequest) Reset() { *x = UfmBrowseRequest{} - mi := &file_nico_nico_proto_msgTypes[563] + mi := &file_nico_nico_proto_msgTypes[565] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40691,7 +40813,7 @@ func (x *UfmBrowseRequest) String() string { func (*UfmBrowseRequest) ProtoMessage() {} func (x *UfmBrowseRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[563] + mi := &file_nico_nico_proto_msgTypes[565] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40704,7 +40826,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{563} + return file_nico_nico_proto_rawDescGZIP(), []int{565} } func (x *UfmBrowseRequest) GetFabricId() string { @@ -40735,7 +40857,7 @@ type UfmBrowseResponse struct { func (x *UfmBrowseResponse) Reset() { *x = UfmBrowseResponse{} - mi := &file_nico_nico_proto_msgTypes[564] + mi := &file_nico_nico_proto_msgTypes[566] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40747,7 +40869,7 @@ func (x *UfmBrowseResponse) String() string { func (*UfmBrowseResponse) ProtoMessage() {} func (x *UfmBrowseResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[564] + mi := &file_nico_nico_proto_msgTypes[566] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40760,7 +40882,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{564} + return file_nico_nico_proto_rawDescGZIP(), []int{566} } func (x *UfmBrowseResponse) GetBody() string { @@ -40795,7 +40917,7 @@ type NetworkSecurityGroupAttributes struct { func (x *NetworkSecurityGroupAttributes) Reset() { *x = NetworkSecurityGroupAttributes{} - mi := &file_nico_nico_proto_msgTypes[565] + mi := &file_nico_nico_proto_msgTypes[567] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40807,7 +40929,7 @@ func (x *NetworkSecurityGroupAttributes) String() string { func (*NetworkSecurityGroupAttributes) ProtoMessage() {} func (x *NetworkSecurityGroupAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[565] + mi := &file_nico_nico_proto_msgTypes[567] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40820,7 +40942,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{565} + return file_nico_nico_proto_rawDescGZIP(), []int{567} } func (x *NetworkSecurityGroupAttributes) GetRules() []*NetworkSecurityGroupRuleAttributes { @@ -40853,7 +40975,7 @@ type NetworkSecurityGroup struct { func (x *NetworkSecurityGroup) Reset() { *x = NetworkSecurityGroup{} - mi := &file_nico_nico_proto_msgTypes[566] + mi := &file_nico_nico_proto_msgTypes[568] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40865,7 +40987,7 @@ func (x *NetworkSecurityGroup) String() string { func (*NetworkSecurityGroup) ProtoMessage() {} func (x *NetworkSecurityGroup) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[566] + mi := &file_nico_nico_proto_msgTypes[568] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40878,7 +41000,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{566} + return file_nico_nico_proto_rawDescGZIP(), []int{568} } func (x *NetworkSecurityGroup) GetId() string { @@ -40949,7 +41071,7 @@ type CreateNetworkSecurityGroupRequest struct { func (x *CreateNetworkSecurityGroupRequest) Reset() { *x = CreateNetworkSecurityGroupRequest{} - mi := &file_nico_nico_proto_msgTypes[567] + mi := &file_nico_nico_proto_msgTypes[569] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40961,7 +41083,7 @@ func (x *CreateNetworkSecurityGroupRequest) String() string { func (*CreateNetworkSecurityGroupRequest) ProtoMessage() {} func (x *CreateNetworkSecurityGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[567] + mi := &file_nico_nico_proto_msgTypes[569] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40974,7 +41096,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{567} + return file_nico_nico_proto_rawDescGZIP(), []int{569} } func (x *CreateNetworkSecurityGroupRequest) GetId() string { @@ -41014,7 +41136,7 @@ type CreateNetworkSecurityGroupResponse struct { func (x *CreateNetworkSecurityGroupResponse) Reset() { *x = CreateNetworkSecurityGroupResponse{} - mi := &file_nico_nico_proto_msgTypes[568] + mi := &file_nico_nico_proto_msgTypes[570] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41026,7 +41148,7 @@ func (x *CreateNetworkSecurityGroupResponse) String() string { func (*CreateNetworkSecurityGroupResponse) ProtoMessage() {} func (x *CreateNetworkSecurityGroupResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[568] + mi := &file_nico_nico_proto_msgTypes[570] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41039,7 +41161,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{568} + return file_nico_nico_proto_rawDescGZIP(), []int{570} } func (x *CreateNetworkSecurityGroupResponse) GetNetworkSecurityGroup() *NetworkSecurityGroup { @@ -41059,7 +41181,7 @@ type FindNetworkSecurityGroupIdsRequest struct { func (x *FindNetworkSecurityGroupIdsRequest) Reset() { *x = FindNetworkSecurityGroupIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[569] + mi := &file_nico_nico_proto_msgTypes[571] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41071,7 +41193,7 @@ func (x *FindNetworkSecurityGroupIdsRequest) String() string { func (*FindNetworkSecurityGroupIdsRequest) ProtoMessage() {} func (x *FindNetworkSecurityGroupIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[569] + mi := &file_nico_nico_proto_msgTypes[571] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41084,7 +41206,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{569} + return file_nico_nico_proto_rawDescGZIP(), []int{571} } func (x *FindNetworkSecurityGroupIdsRequest) GetName() string { @@ -41110,7 +41232,7 @@ type FindNetworkSecurityGroupIdsResponse struct { func (x *FindNetworkSecurityGroupIdsResponse) Reset() { *x = FindNetworkSecurityGroupIdsResponse{} - mi := &file_nico_nico_proto_msgTypes[570] + mi := &file_nico_nico_proto_msgTypes[572] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41122,7 +41244,7 @@ func (x *FindNetworkSecurityGroupIdsResponse) String() string { func (*FindNetworkSecurityGroupIdsResponse) ProtoMessage() {} func (x *FindNetworkSecurityGroupIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[570] + mi := &file_nico_nico_proto_msgTypes[572] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41135,7 +41257,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{570} + return file_nico_nico_proto_rawDescGZIP(), []int{572} } func (x *FindNetworkSecurityGroupIdsResponse) GetNetworkSecurityGroupIds() []string { @@ -41155,7 +41277,7 @@ type FindNetworkSecurityGroupsByIdsRequest struct { func (x *FindNetworkSecurityGroupsByIdsRequest) Reset() { *x = FindNetworkSecurityGroupsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[571] + mi := &file_nico_nico_proto_msgTypes[573] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41167,7 +41289,7 @@ func (x *FindNetworkSecurityGroupsByIdsRequest) String() string { func (*FindNetworkSecurityGroupsByIdsRequest) ProtoMessage() {} func (x *FindNetworkSecurityGroupsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[571] + mi := &file_nico_nico_proto_msgTypes[573] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41180,7 +41302,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{571} + return file_nico_nico_proto_rawDescGZIP(), []int{573} } func (x *FindNetworkSecurityGroupsByIdsRequest) GetNetworkSecurityGroupIds() []string { @@ -41206,7 +41328,7 @@ type FindNetworkSecurityGroupsByIdsResponse struct { func (x *FindNetworkSecurityGroupsByIdsResponse) Reset() { *x = FindNetworkSecurityGroupsByIdsResponse{} - mi := &file_nico_nico_proto_msgTypes[572] + mi := &file_nico_nico_proto_msgTypes[574] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41218,7 +41340,7 @@ func (x *FindNetworkSecurityGroupsByIdsResponse) String() string { func (*FindNetworkSecurityGroupsByIdsResponse) ProtoMessage() {} func (x *FindNetworkSecurityGroupsByIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[572] + mi := &file_nico_nico_proto_msgTypes[574] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41231,7 +41353,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{572} + return file_nico_nico_proto_rawDescGZIP(), []int{574} } func (x *FindNetworkSecurityGroupsByIdsResponse) GetNetworkSecurityGroups() []*NetworkSecurityGroup { @@ -41250,7 +41372,7 @@ type UpdateNetworkSecurityGroupResponse struct { func (x *UpdateNetworkSecurityGroupResponse) Reset() { *x = UpdateNetworkSecurityGroupResponse{} - mi := &file_nico_nico_proto_msgTypes[573] + mi := &file_nico_nico_proto_msgTypes[575] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41262,7 +41384,7 @@ func (x *UpdateNetworkSecurityGroupResponse) String() string { func (*UpdateNetworkSecurityGroupResponse) ProtoMessage() {} func (x *UpdateNetworkSecurityGroupResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[573] + mi := &file_nico_nico_proto_msgTypes[575] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41275,7 +41397,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{573} + return file_nico_nico_proto_rawDescGZIP(), []int{575} } func (x *UpdateNetworkSecurityGroupResponse) GetNetworkSecurityGroup() *NetworkSecurityGroup { @@ -41298,7 +41420,7 @@ type UpdateNetworkSecurityGroupRequest struct { func (x *UpdateNetworkSecurityGroupRequest) Reset() { *x = UpdateNetworkSecurityGroupRequest{} - mi := &file_nico_nico_proto_msgTypes[574] + mi := &file_nico_nico_proto_msgTypes[576] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41310,7 +41432,7 @@ func (x *UpdateNetworkSecurityGroupRequest) String() string { func (*UpdateNetworkSecurityGroupRequest) ProtoMessage() {} func (x *UpdateNetworkSecurityGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[574] + mi := &file_nico_nico_proto_msgTypes[576] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41323,7 +41445,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{574} + return file_nico_nico_proto_rawDescGZIP(), []int{576} } func (x *UpdateNetworkSecurityGroupRequest) GetId() string { @@ -41371,7 +41493,7 @@ type DeleteNetworkSecurityGroupRequest struct { func (x *DeleteNetworkSecurityGroupRequest) Reset() { *x = DeleteNetworkSecurityGroupRequest{} - mi := &file_nico_nico_proto_msgTypes[575] + mi := &file_nico_nico_proto_msgTypes[577] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41383,7 +41505,7 @@ func (x *DeleteNetworkSecurityGroupRequest) String() string { func (*DeleteNetworkSecurityGroupRequest) ProtoMessage() {} func (x *DeleteNetworkSecurityGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[575] + mi := &file_nico_nico_proto_msgTypes[577] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41396,7 +41518,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{575} + return file_nico_nico_proto_rawDescGZIP(), []int{577} } func (x *DeleteNetworkSecurityGroupRequest) GetId() string { @@ -41421,7 +41543,7 @@ type DeleteNetworkSecurityGroupResponse struct { func (x *DeleteNetworkSecurityGroupResponse) Reset() { *x = DeleteNetworkSecurityGroupResponse{} - mi := &file_nico_nico_proto_msgTypes[576] + mi := &file_nico_nico_proto_msgTypes[578] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41433,7 +41555,7 @@ func (x *DeleteNetworkSecurityGroupResponse) String() string { func (*DeleteNetworkSecurityGroupResponse) ProtoMessage() {} func (x *DeleteNetworkSecurityGroupResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[576] + mi := &file_nico_nico_proto_msgTypes[578] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41446,7 +41568,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{576} + return file_nico_nico_proto_rawDescGZIP(), []int{578} } type NetworkSecurityGroupStatus struct { @@ -41460,7 +41582,7 @@ type NetworkSecurityGroupStatus struct { func (x *NetworkSecurityGroupStatus) Reset() { *x = NetworkSecurityGroupStatus{} - mi := &file_nico_nico_proto_msgTypes[577] + mi := &file_nico_nico_proto_msgTypes[579] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41472,7 +41594,7 @@ func (x *NetworkSecurityGroupStatus) String() string { func (*NetworkSecurityGroupStatus) ProtoMessage() {} func (x *NetworkSecurityGroupStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[577] + mi := &file_nico_nico_proto_msgTypes[579] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41485,7 +41607,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{577} + return file_nico_nico_proto_rawDescGZIP(), []int{579} } func (x *NetworkSecurityGroupStatus) GetSource() NetworkSecurityGroupSource { @@ -41538,7 +41660,7 @@ type NetworkSecurityGroupPropagationObjectStatus struct { func (x *NetworkSecurityGroupPropagationObjectStatus) Reset() { *x = NetworkSecurityGroupPropagationObjectStatus{} - mi := &file_nico_nico_proto_msgTypes[578] + mi := &file_nico_nico_proto_msgTypes[580] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41550,7 +41672,7 @@ func (x *NetworkSecurityGroupPropagationObjectStatus) String() string { func (*NetworkSecurityGroupPropagationObjectStatus) ProtoMessage() {} func (x *NetworkSecurityGroupPropagationObjectStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[578] + mi := &file_nico_nico_proto_msgTypes[580] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41563,7 +41685,7 @@ func (x *NetworkSecurityGroupPropagationObjectStatus) ProtoReflect() protoreflec // Deprecated: Use NetworkSecurityGroupPropagationObjectStatus.ProtoReflect.Descriptor instead. func (*NetworkSecurityGroupPropagationObjectStatus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{578} + return file_nico_nico_proto_rawDescGZIP(), []int{580} } func (x *NetworkSecurityGroupPropagationObjectStatus) GetId() string { @@ -41611,7 +41733,7 @@ type GetNetworkSecurityGroupPropagationStatusResponse struct { func (x *GetNetworkSecurityGroupPropagationStatusResponse) Reset() { *x = GetNetworkSecurityGroupPropagationStatusResponse{} - mi := &file_nico_nico_proto_msgTypes[579] + mi := &file_nico_nico_proto_msgTypes[581] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41623,7 +41745,7 @@ func (x *GetNetworkSecurityGroupPropagationStatusResponse) String() string { func (*GetNetworkSecurityGroupPropagationStatusResponse) ProtoMessage() {} func (x *GetNetworkSecurityGroupPropagationStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[579] + mi := &file_nico_nico_proto_msgTypes[581] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41636,7 +41758,7 @@ func (x *GetNetworkSecurityGroupPropagationStatusResponse) ProtoReflect() protor // Deprecated: Use GetNetworkSecurityGroupPropagationStatusResponse.ProtoReflect.Descriptor instead. func (*GetNetworkSecurityGroupPropagationStatusResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{579} + return file_nico_nico_proto_rawDescGZIP(), []int{581} } func (x *GetNetworkSecurityGroupPropagationStatusResponse) GetVpcs() []*NetworkSecurityGroupPropagationObjectStatus { @@ -41662,7 +41784,7 @@ type NetworkSecurityGroupIdList struct { func (x *NetworkSecurityGroupIdList) Reset() { *x = NetworkSecurityGroupIdList{} - mi := &file_nico_nico_proto_msgTypes[580] + mi := &file_nico_nico_proto_msgTypes[582] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41674,7 +41796,7 @@ func (x *NetworkSecurityGroupIdList) String() string { func (*NetworkSecurityGroupIdList) ProtoMessage() {} func (x *NetworkSecurityGroupIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[580] + mi := &file_nico_nico_proto_msgTypes[582] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41687,7 +41809,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{580} + return file_nico_nico_proto_rawDescGZIP(), []int{582} } func (x *NetworkSecurityGroupIdList) GetIds() []string { @@ -41719,7 +41841,7 @@ type GetNetworkSecurityGroupPropagationStatusRequest struct { func (x *GetNetworkSecurityGroupPropagationStatusRequest) Reset() { *x = GetNetworkSecurityGroupPropagationStatusRequest{} - mi := &file_nico_nico_proto_msgTypes[581] + mi := &file_nico_nico_proto_msgTypes[583] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41731,7 +41853,7 @@ func (x *GetNetworkSecurityGroupPropagationStatusRequest) String() string { func (*GetNetworkSecurityGroupPropagationStatusRequest) ProtoMessage() {} func (x *GetNetworkSecurityGroupPropagationStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[581] + mi := &file_nico_nico_proto_msgTypes[583] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41744,7 +41866,7 @@ func (x *GetNetworkSecurityGroupPropagationStatusRequest) ProtoReflect() protore // Deprecated: Use GetNetworkSecurityGroupPropagationStatusRequest.ProtoReflect.Descriptor instead. func (*GetNetworkSecurityGroupPropagationStatusRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{581} + return file_nico_nico_proto_rawDescGZIP(), []int{583} } func (x *GetNetworkSecurityGroupPropagationStatusRequest) GetVpcIds() []string { @@ -41796,7 +41918,7 @@ type NetworkSecurityGroupRuleAttributes struct { func (x *NetworkSecurityGroupRuleAttributes) Reset() { *x = NetworkSecurityGroupRuleAttributes{} - mi := &file_nico_nico_proto_msgTypes[582] + mi := &file_nico_nico_proto_msgTypes[584] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41808,7 +41930,7 @@ func (x *NetworkSecurityGroupRuleAttributes) String() string { func (*NetworkSecurityGroupRuleAttributes) ProtoMessage() {} func (x *NetworkSecurityGroupRuleAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[582] + mi := &file_nico_nico_proto_msgTypes[584] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41821,7 +41943,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{582} + return file_nico_nico_proto_rawDescGZIP(), []int{584} } func (x *NetworkSecurityGroupRuleAttributes) GetId() string { @@ -41965,7 +42087,7 @@ type ResolvedNetworkSecurityGroupRule struct { func (x *ResolvedNetworkSecurityGroupRule) Reset() { *x = ResolvedNetworkSecurityGroupRule{} - mi := &file_nico_nico_proto_msgTypes[583] + mi := &file_nico_nico_proto_msgTypes[585] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41977,7 +42099,7 @@ func (x *ResolvedNetworkSecurityGroupRule) String() string { func (*ResolvedNetworkSecurityGroupRule) ProtoMessage() {} func (x *ResolvedNetworkSecurityGroupRule) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[583] + mi := &file_nico_nico_proto_msgTypes[585] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41990,7 +42112,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{583} + return file_nico_nico_proto_rawDescGZIP(), []int{585} } func (x *ResolvedNetworkSecurityGroupRule) GetRule() *NetworkSecurityGroupRuleAttributes { @@ -42023,7 +42145,7 @@ type GetNetworkSecurityGroupAttachmentsRequest struct { func (x *GetNetworkSecurityGroupAttachmentsRequest) Reset() { *x = GetNetworkSecurityGroupAttachmentsRequest{} - mi := &file_nico_nico_proto_msgTypes[584] + mi := &file_nico_nico_proto_msgTypes[586] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42035,7 +42157,7 @@ func (x *GetNetworkSecurityGroupAttachmentsRequest) String() string { func (*GetNetworkSecurityGroupAttachmentsRequest) ProtoMessage() {} func (x *GetNetworkSecurityGroupAttachmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[584] + mi := &file_nico_nico_proto_msgTypes[586] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42048,7 +42170,7 @@ func (x *GetNetworkSecurityGroupAttachmentsRequest) ProtoReflect() protoreflect. // Deprecated: Use GetNetworkSecurityGroupAttachmentsRequest.ProtoReflect.Descriptor instead. func (*GetNetworkSecurityGroupAttachmentsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{584} + return file_nico_nico_proto_rawDescGZIP(), []int{586} } func (x *GetNetworkSecurityGroupAttachmentsRequest) GetNetworkSecurityGroupIds() []string { @@ -42069,7 +42191,7 @@ type NetworkSecurityGroupAttachments struct { func (x *NetworkSecurityGroupAttachments) Reset() { *x = NetworkSecurityGroupAttachments{} - mi := &file_nico_nico_proto_msgTypes[585] + mi := &file_nico_nico_proto_msgTypes[587] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42081,7 +42203,7 @@ func (x *NetworkSecurityGroupAttachments) String() string { func (*NetworkSecurityGroupAttachments) ProtoMessage() {} func (x *NetworkSecurityGroupAttachments) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[585] + mi := &file_nico_nico_proto_msgTypes[587] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42094,7 +42216,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{585} + return file_nico_nico_proto_rawDescGZIP(), []int{587} } func (x *NetworkSecurityGroupAttachments) GetNetworkSecurityGroupId() string { @@ -42127,7 +42249,7 @@ type GetNetworkSecurityGroupAttachmentsResponse struct { func (x *GetNetworkSecurityGroupAttachmentsResponse) Reset() { *x = GetNetworkSecurityGroupAttachmentsResponse{} - mi := &file_nico_nico_proto_msgTypes[586] + mi := &file_nico_nico_proto_msgTypes[588] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42139,7 +42261,7 @@ func (x *GetNetworkSecurityGroupAttachmentsResponse) String() string { func (*GetNetworkSecurityGroupAttachmentsResponse) ProtoMessage() {} func (x *GetNetworkSecurityGroupAttachmentsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[586] + mi := &file_nico_nico_proto_msgTypes[588] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42152,7 +42274,7 @@ func (x *GetNetworkSecurityGroupAttachmentsResponse) ProtoReflect() protoreflect // Deprecated: Use GetNetworkSecurityGroupAttachmentsResponse.ProtoReflect.Descriptor instead. func (*GetNetworkSecurityGroupAttachmentsResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{586} + return file_nico_nico_proto_rawDescGZIP(), []int{588} } func (x *GetNetworkSecurityGroupAttachmentsResponse) GetAttachments() []*NetworkSecurityGroupAttachments { @@ -42170,7 +42292,7 @@ type GetDesiredFirmwareVersionsRequest struct { func (x *GetDesiredFirmwareVersionsRequest) Reset() { *x = GetDesiredFirmwareVersionsRequest{} - mi := &file_nico_nico_proto_msgTypes[587] + mi := &file_nico_nico_proto_msgTypes[589] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42182,7 +42304,7 @@ func (x *GetDesiredFirmwareVersionsRequest) String() string { func (*GetDesiredFirmwareVersionsRequest) ProtoMessage() {} func (x *GetDesiredFirmwareVersionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[587] + mi := &file_nico_nico_proto_msgTypes[589] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42195,7 +42317,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{587} + return file_nico_nico_proto_rawDescGZIP(), []int{589} } type GetDesiredFirmwareVersionsResponse struct { @@ -42207,7 +42329,7 @@ type GetDesiredFirmwareVersionsResponse struct { func (x *GetDesiredFirmwareVersionsResponse) Reset() { *x = GetDesiredFirmwareVersionsResponse{} - mi := &file_nico_nico_proto_msgTypes[588] + mi := &file_nico_nico_proto_msgTypes[590] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42219,7 +42341,7 @@ func (x *GetDesiredFirmwareVersionsResponse) String() string { func (*GetDesiredFirmwareVersionsResponse) ProtoMessage() {} func (x *GetDesiredFirmwareVersionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[588] + mi := &file_nico_nico_proto_msgTypes[590] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42232,7 +42354,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{588} + return file_nico_nico_proto_rawDescGZIP(), []int{590} } func (x *GetDesiredFirmwareVersionsResponse) GetEntries() []*DesiredFirmwareVersionEntry { @@ -42253,7 +42375,7 @@ type DesiredFirmwareVersionEntry struct { func (x *DesiredFirmwareVersionEntry) Reset() { *x = DesiredFirmwareVersionEntry{} - mi := &file_nico_nico_proto_msgTypes[589] + mi := &file_nico_nico_proto_msgTypes[591] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42265,7 +42387,7 @@ func (x *DesiredFirmwareVersionEntry) String() string { func (*DesiredFirmwareVersionEntry) ProtoMessage() {} func (x *DesiredFirmwareVersionEntry) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[589] + mi := &file_nico_nico_proto_msgTypes[591] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42278,7 +42400,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{589} + return file_nico_nico_proto_rawDescGZIP(), []int{591} } func (x *DesiredFirmwareVersionEntry) GetVendor() string { @@ -42313,7 +42435,7 @@ type SkuComponentChassis struct { func (x *SkuComponentChassis) Reset() { *x = SkuComponentChassis{} - mi := &file_nico_nico_proto_msgTypes[590] + mi := &file_nico_nico_proto_msgTypes[592] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42325,7 +42447,7 @@ func (x *SkuComponentChassis) String() string { func (*SkuComponentChassis) ProtoMessage() {} func (x *SkuComponentChassis) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[590] + mi := &file_nico_nico_proto_msgTypes[592] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42338,7 +42460,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{590} + return file_nico_nico_proto_rawDescGZIP(), []int{592} } func (x *SkuComponentChassis) GetVendor() string { @@ -42374,7 +42496,7 @@ type SkuComponentCpu struct { func (x *SkuComponentCpu) Reset() { *x = SkuComponentCpu{} - mi := &file_nico_nico_proto_msgTypes[591] + mi := &file_nico_nico_proto_msgTypes[593] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42386,7 +42508,7 @@ func (x *SkuComponentCpu) String() string { func (*SkuComponentCpu) ProtoMessage() {} func (x *SkuComponentCpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[591] + mi := &file_nico_nico_proto_msgTypes[593] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42399,7 +42521,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{591} + return file_nico_nico_proto_rawDescGZIP(), []int{593} } func (x *SkuComponentCpu) GetVendor() string { @@ -42442,7 +42564,7 @@ type SkuComponentGpu struct { func (x *SkuComponentGpu) Reset() { *x = SkuComponentGpu{} - mi := &file_nico_nico_proto_msgTypes[592] + mi := &file_nico_nico_proto_msgTypes[594] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42454,7 +42576,7 @@ func (x *SkuComponentGpu) String() string { func (*SkuComponentGpu) ProtoMessage() {} func (x *SkuComponentGpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[592] + mi := &file_nico_nico_proto_msgTypes[594] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42467,7 +42589,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{592} + return file_nico_nico_proto_rawDescGZIP(), []int{594} } func (x *SkuComponentGpu) GetVendor() string { @@ -42510,7 +42632,7 @@ type SkuComponentEthernetDevices struct { func (x *SkuComponentEthernetDevices) Reset() { *x = SkuComponentEthernetDevices{} - mi := &file_nico_nico_proto_msgTypes[593] + mi := &file_nico_nico_proto_msgTypes[595] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42522,7 +42644,7 @@ func (x *SkuComponentEthernetDevices) String() string { func (*SkuComponentEthernetDevices) ProtoMessage() {} func (x *SkuComponentEthernetDevices) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[593] + mi := &file_nico_nico_proto_msgTypes[595] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42535,7 +42657,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{593} + return file_nico_nico_proto_rawDescGZIP(), []int{595} } func (x *SkuComponentEthernetDevices) GetVendor() string { @@ -42589,7 +42711,7 @@ type SkuComponentInfinibandDevices struct { func (x *SkuComponentInfinibandDevices) Reset() { *x = SkuComponentInfinibandDevices{} - mi := &file_nico_nico_proto_msgTypes[594] + mi := &file_nico_nico_proto_msgTypes[596] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42601,7 +42723,7 @@ func (x *SkuComponentInfinibandDevices) String() string { func (*SkuComponentInfinibandDevices) ProtoMessage() {} func (x *SkuComponentInfinibandDevices) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[594] + mi := &file_nico_nico_proto_msgTypes[596] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42614,7 +42736,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{594} + return file_nico_nico_proto_rawDescGZIP(), []int{596} } func (x *SkuComponentInfinibandDevices) GetVendor() string { @@ -42657,7 +42779,7 @@ type SkuComponentStorage struct { func (x *SkuComponentStorage) Reset() { *x = SkuComponentStorage{} - mi := &file_nico_nico_proto_msgTypes[595] + mi := &file_nico_nico_proto_msgTypes[597] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42669,7 +42791,7 @@ func (x *SkuComponentStorage) String() string { func (*SkuComponentStorage) ProtoMessage() {} func (x *SkuComponentStorage) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[595] + mi := &file_nico_nico_proto_msgTypes[597] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42682,7 +42804,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{595} + return file_nico_nico_proto_rawDescGZIP(), []int{597} } func (x *SkuComponentStorage) GetVendor() string { @@ -42724,7 +42846,7 @@ type SkuComponentStorageController struct { func (x *SkuComponentStorageController) Reset() { *x = SkuComponentStorageController{} - mi := &file_nico_nico_proto_msgTypes[596] + mi := &file_nico_nico_proto_msgTypes[598] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42736,7 +42858,7 @@ func (x *SkuComponentStorageController) String() string { func (*SkuComponentStorageController) ProtoMessage() {} func (x *SkuComponentStorageController) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[596] + mi := &file_nico_nico_proto_msgTypes[598] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42749,7 +42871,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{596} + return file_nico_nico_proto_rawDescGZIP(), []int{598} } func (x *SkuComponentStorageController) GetVendor() string { @@ -42784,7 +42906,7 @@ type SkuComponentMemory struct { func (x *SkuComponentMemory) Reset() { *x = SkuComponentMemory{} - mi := &file_nico_nico_proto_msgTypes[597] + mi := &file_nico_nico_proto_msgTypes[599] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42796,7 +42918,7 @@ func (x *SkuComponentMemory) String() string { func (*SkuComponentMemory) ProtoMessage() {} func (x *SkuComponentMemory) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[597] + mi := &file_nico_nico_proto_msgTypes[599] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42809,7 +42931,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{597} + return file_nico_nico_proto_rawDescGZIP(), []int{599} } func (x *SkuComponentMemory) GetMemoryType() string { @@ -42843,7 +42965,7 @@ type SkuComponentTpm struct { func (x *SkuComponentTpm) Reset() { *x = SkuComponentTpm{} - mi := &file_nico_nico_proto_msgTypes[598] + mi := &file_nico_nico_proto_msgTypes[600] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42855,7 +42977,7 @@ func (x *SkuComponentTpm) String() string { func (*SkuComponentTpm) ProtoMessage() {} func (x *SkuComponentTpm) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[598] + mi := &file_nico_nico_proto_msgTypes[600] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42868,7 +42990,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{598} + return file_nico_nico_proto_rawDescGZIP(), []int{600} } func (x *SkuComponentTpm) GetVendor() string { @@ -42901,7 +43023,7 @@ type SkuComponents struct { func (x *SkuComponents) Reset() { *x = SkuComponents{} - mi := &file_nico_nico_proto_msgTypes[599] + mi := &file_nico_nico_proto_msgTypes[601] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42913,7 +43035,7 @@ func (x *SkuComponents) String() string { func (*SkuComponents) ProtoMessage() {} func (x *SkuComponents) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[599] + mi := &file_nico_nico_proto_msgTypes[601] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42926,7 +43048,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{599} + return file_nico_nico_proto_rawDescGZIP(), []int{601} } func (x *SkuComponents) GetChassis() *SkuComponentChassis { @@ -43000,7 +43122,7 @@ type Sku struct { func (x *Sku) Reset() { *x = Sku{} - mi := &file_nico_nico_proto_msgTypes[600] + mi := &file_nico_nico_proto_msgTypes[602] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43012,7 +43134,7 @@ func (x *Sku) String() string { func (*Sku) ProtoMessage() {} func (x *Sku) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[600] + mi := &file_nico_nico_proto_msgTypes[602] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43025,7 +43147,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{600} + return file_nico_nico_proto_rawDescGZIP(), []int{602} } func (x *Sku) GetId() string { @@ -43088,7 +43210,7 @@ type SkuMachinePair struct { func (x *SkuMachinePair) Reset() { *x = SkuMachinePair{} - mi := &file_nico_nico_proto_msgTypes[601] + mi := &file_nico_nico_proto_msgTypes[603] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43100,7 +43222,7 @@ func (x *SkuMachinePair) String() string { func (*SkuMachinePair) ProtoMessage() {} func (x *SkuMachinePair) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[601] + mi := &file_nico_nico_proto_msgTypes[603] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43113,7 +43235,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{601} + return file_nico_nico_proto_rawDescGZIP(), []int{603} } func (x *SkuMachinePair) GetSkuId() string { @@ -43147,7 +43269,7 @@ type RemoveSkuRequest struct { func (x *RemoveSkuRequest) Reset() { *x = RemoveSkuRequest{} - mi := &file_nico_nico_proto_msgTypes[602] + mi := &file_nico_nico_proto_msgTypes[604] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43159,7 +43281,7 @@ func (x *RemoveSkuRequest) String() string { func (*RemoveSkuRequest) ProtoMessage() {} func (x *RemoveSkuRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[602] + mi := &file_nico_nico_proto_msgTypes[604] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43172,7 +43294,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{602} + return file_nico_nico_proto_rawDescGZIP(), []int{604} } func (x *RemoveSkuRequest) GetMachineId() *MachineId { @@ -43198,7 +43320,7 @@ type SkuList struct { func (x *SkuList) Reset() { *x = SkuList{} - mi := &file_nico_nico_proto_msgTypes[603] + mi := &file_nico_nico_proto_msgTypes[605] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43210,7 +43332,7 @@ func (x *SkuList) String() string { func (*SkuList) ProtoMessage() {} func (x *SkuList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[603] + mi := &file_nico_nico_proto_msgTypes[605] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43223,7 +43345,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{603} + return file_nico_nico_proto_rawDescGZIP(), []int{605} } func (x *SkuList) GetSkus() []*Sku { @@ -43242,7 +43364,7 @@ type SkuIdList struct { func (x *SkuIdList) Reset() { *x = SkuIdList{} - mi := &file_nico_nico_proto_msgTypes[604] + mi := &file_nico_nico_proto_msgTypes[606] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43254,7 +43376,7 @@ func (x *SkuIdList) String() string { func (*SkuIdList) ProtoMessage() {} func (x *SkuIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[604] + mi := &file_nico_nico_proto_msgTypes[606] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43267,7 +43389,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{604} + return file_nico_nico_proto_rawDescGZIP(), []int{606} } func (x *SkuIdList) GetIds() []string { @@ -43288,7 +43410,7 @@ type SkuStatus struct { func (x *SkuStatus) Reset() { *x = SkuStatus{} - mi := &file_nico_nico_proto_msgTypes[605] + mi := &file_nico_nico_proto_msgTypes[607] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43300,7 +43422,7 @@ func (x *SkuStatus) String() string { func (*SkuStatus) ProtoMessage() {} func (x *SkuStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[605] + mi := &file_nico_nico_proto_msgTypes[607] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43313,7 +43435,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{605} + return file_nico_nico_proto_rawDescGZIP(), []int{607} } func (x *SkuStatus) GetVerifyRequestTime() *timestamppb.Timestamp { @@ -43346,7 +43468,7 @@ type SkusByIdsRequest struct { func (x *SkusByIdsRequest) Reset() { *x = SkusByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[606] + mi := &file_nico_nico_proto_msgTypes[608] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43358,7 +43480,7 @@ func (x *SkusByIdsRequest) String() string { func (*SkusByIdsRequest) ProtoMessage() {} func (x *SkusByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[606] + mi := &file_nico_nico_proto_msgTypes[608] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43371,7 +43493,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{606} + return file_nico_nico_proto_rawDescGZIP(), []int{608} } func (x *SkusByIdsRequest) GetIds() []string { @@ -43389,7 +43511,7 @@ type SkuSearchFilter struct { func (x *SkuSearchFilter) Reset() { *x = SkuSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[607] + mi := &file_nico_nico_proto_msgTypes[609] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43401,7 +43523,7 @@ func (x *SkuSearchFilter) String() string { func (*SkuSearchFilter) ProtoMessage() {} func (x *SkuSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[607] + mi := &file_nico_nico_proto_msgTypes[609] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43414,7 +43536,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{607} + return file_nico_nico_proto_rawDescGZIP(), []int{609} } type DpaInterface struct { @@ -43454,7 +43576,7 @@ type DpaInterface struct { func (x *DpaInterface) Reset() { *x = DpaInterface{} - mi := &file_nico_nico_proto_msgTypes[608] + mi := &file_nico_nico_proto_msgTypes[610] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43466,7 +43588,7 @@ func (x *DpaInterface) String() string { func (*DpaInterface) ProtoMessage() {} func (x *DpaInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[608] + mi := &file_nico_nico_proto_msgTypes[610] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43479,7 +43601,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{608} + return file_nico_nico_proto_rawDescGZIP(), []int{610} } func (x *DpaInterface) GetId() *DpaInterfaceId { @@ -43636,7 +43758,7 @@ type DpaInterfaceCreationRequest struct { func (x *DpaInterfaceCreationRequest) Reset() { *x = DpaInterfaceCreationRequest{} - mi := &file_nico_nico_proto_msgTypes[609] + mi := &file_nico_nico_proto_msgTypes[611] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43648,7 +43770,7 @@ func (x *DpaInterfaceCreationRequest) String() string { func (*DpaInterfaceCreationRequest) ProtoMessage() {} func (x *DpaInterfaceCreationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[609] + mi := &file_nico_nico_proto_msgTypes[611] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43661,7 +43783,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{609} + return file_nico_nico_proto_rawDescGZIP(), []int{611} } func (x *DpaInterfaceCreationRequest) GetMachineId() *MachineId { @@ -43715,7 +43837,7 @@ type DpaInterfaceIdList struct { func (x *DpaInterfaceIdList) Reset() { *x = DpaInterfaceIdList{} - mi := &file_nico_nico_proto_msgTypes[610] + mi := &file_nico_nico_proto_msgTypes[612] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43727,7 +43849,7 @@ func (x *DpaInterfaceIdList) String() string { func (*DpaInterfaceIdList) ProtoMessage() {} func (x *DpaInterfaceIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[610] + mi := &file_nico_nico_proto_msgTypes[612] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43740,7 +43862,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{610} + return file_nico_nico_proto_rawDescGZIP(), []int{612} } func (x *DpaInterfaceIdList) GetIds() []*DpaInterfaceId { @@ -43760,7 +43882,7 @@ type DpaInterfacesByIdsRequest struct { func (x *DpaInterfacesByIdsRequest) Reset() { *x = DpaInterfacesByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[611] + mi := &file_nico_nico_proto_msgTypes[613] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43772,7 +43894,7 @@ func (x *DpaInterfacesByIdsRequest) String() string { func (*DpaInterfacesByIdsRequest) ProtoMessage() {} func (x *DpaInterfacesByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[611] + mi := &file_nico_nico_proto_msgTypes[613] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43785,7 +43907,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{611} + return file_nico_nico_proto_rawDescGZIP(), []int{613} } func (x *DpaInterfacesByIdsRequest) GetIds() []*DpaInterfaceId { @@ -43811,7 +43933,7 @@ type DpaInterfaceList struct { func (x *DpaInterfaceList) Reset() { *x = DpaInterfaceList{} - mi := &file_nico_nico_proto_msgTypes[612] + mi := &file_nico_nico_proto_msgTypes[614] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43823,7 +43945,7 @@ func (x *DpaInterfaceList) String() string { func (*DpaInterfaceList) ProtoMessage() {} func (x *DpaInterfaceList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[612] + mi := &file_nico_nico_proto_msgTypes[614] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43836,7 +43958,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{612} + return file_nico_nico_proto_rawDescGZIP(), []int{614} } func (x *DpaInterfaceList) GetInterfaces() []*DpaInterface { @@ -43855,7 +43977,7 @@ type DpaNetworkObservationSetRequest struct { func (x *DpaNetworkObservationSetRequest) Reset() { *x = DpaNetworkObservationSetRequest{} - mi := &file_nico_nico_proto_msgTypes[613] + mi := &file_nico_nico_proto_msgTypes[615] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43867,7 +43989,7 @@ func (x *DpaNetworkObservationSetRequest) String() string { func (*DpaNetworkObservationSetRequest) ProtoMessage() {} func (x *DpaNetworkObservationSetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[613] + mi := &file_nico_nico_proto_msgTypes[615] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43880,7 +44002,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{613} + return file_nico_nico_proto_rawDescGZIP(), []int{615} } func (x *DpaNetworkObservationSetRequest) GetId() *DpaInterfaceId { @@ -43899,7 +44021,7 @@ type DpaInterfaceDeletionRequest struct { func (x *DpaInterfaceDeletionRequest) Reset() { *x = DpaInterfaceDeletionRequest{} - mi := &file_nico_nico_proto_msgTypes[614] + mi := &file_nico_nico_proto_msgTypes[616] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43911,7 +44033,7 @@ func (x *DpaInterfaceDeletionRequest) String() string { func (*DpaInterfaceDeletionRequest) ProtoMessage() {} func (x *DpaInterfaceDeletionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[614] + mi := &file_nico_nico_proto_msgTypes[616] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43924,7 +44046,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{614} + return file_nico_nico_proto_rawDescGZIP(), []int{616} } func (x *DpaInterfaceDeletionRequest) GetId() *DpaInterfaceId { @@ -43942,7 +44064,7 @@ type DpaInterfaceDeletionResult struct { func (x *DpaInterfaceDeletionResult) Reset() { *x = DpaInterfaceDeletionResult{} - mi := &file_nico_nico_proto_msgTypes[615] + mi := &file_nico_nico_proto_msgTypes[617] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43954,7 +44076,7 @@ func (x *DpaInterfaceDeletionResult) String() string { func (*DpaInterfaceDeletionResult) ProtoMessage() {} func (x *DpaInterfaceDeletionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[615] + mi := &file_nico_nico_proto_msgTypes[617] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43967,7 +44089,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{615} + return file_nico_nico_proto_rawDescGZIP(), []int{617} } type SkuUpdateMetadataRequest struct { @@ -43981,7 +44103,7 @@ type SkuUpdateMetadataRequest struct { func (x *SkuUpdateMetadataRequest) Reset() { *x = SkuUpdateMetadataRequest{} - mi := &file_nico_nico_proto_msgTypes[616] + mi := &file_nico_nico_proto_msgTypes[618] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43993,7 +44115,7 @@ func (x *SkuUpdateMetadataRequest) String() string { func (*SkuUpdateMetadataRequest) ProtoMessage() {} func (x *SkuUpdateMetadataRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[616] + mi := &file_nico_nico_proto_msgTypes[618] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44006,7 +44128,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{616} + return file_nico_nico_proto_rawDescGZIP(), []int{618} } func (x *SkuUpdateMetadataRequest) GetSkuId() string { @@ -44039,7 +44161,7 @@ type PowerOptionRequest struct { func (x *PowerOptionRequest) Reset() { *x = PowerOptionRequest{} - mi := &file_nico_nico_proto_msgTypes[617] + mi := &file_nico_nico_proto_msgTypes[619] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44051,7 +44173,7 @@ func (x *PowerOptionRequest) String() string { func (*PowerOptionRequest) ProtoMessage() {} func (x *PowerOptionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[617] + mi := &file_nico_nico_proto_msgTypes[619] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44064,7 +44186,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{617} + return file_nico_nico_proto_rawDescGZIP(), []int{619} } func (x *PowerOptionRequest) GetMachineId() []*MachineId { @@ -44084,7 +44206,7 @@ type PowerOptionUpdateRequest struct { func (x *PowerOptionUpdateRequest) Reset() { *x = PowerOptionUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[618] + mi := &file_nico_nico_proto_msgTypes[620] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44096,7 +44218,7 @@ func (x *PowerOptionUpdateRequest) String() string { func (*PowerOptionUpdateRequest) ProtoMessage() {} func (x *PowerOptionUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[618] + mi := &file_nico_nico_proto_msgTypes[620] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44109,7 +44231,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{618} + return file_nico_nico_proto_rawDescGZIP(), []int{620} } func (x *PowerOptionUpdateRequest) GetMachineId() *MachineId { @@ -44145,7 +44267,7 @@ type PowerOptions struct { func (x *PowerOptions) Reset() { *x = PowerOptions{} - mi := &file_nico_nico_proto_msgTypes[619] + mi := &file_nico_nico_proto_msgTypes[621] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44157,7 +44279,7 @@ func (x *PowerOptions) String() string { func (*PowerOptions) ProtoMessage() {} func (x *PowerOptions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[619] + mi := &file_nico_nico_proto_msgTypes[621] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44170,7 +44292,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{619} + return file_nico_nico_proto_rawDescGZIP(), []int{621} } func (x *PowerOptions) GetDesiredState() PowerState { @@ -44259,7 +44381,7 @@ type PowerOptionResponse struct { func (x *PowerOptionResponse) Reset() { *x = PowerOptionResponse{} - mi := &file_nico_nico_proto_msgTypes[620] + mi := &file_nico_nico_proto_msgTypes[622] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44271,7 +44393,7 @@ func (x *PowerOptionResponse) String() string { func (*PowerOptionResponse) ProtoMessage() {} func (x *PowerOptionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[620] + mi := &file_nico_nico_proto_msgTypes[622] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44284,7 +44406,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{620} + return file_nico_nico_proto_rawDescGZIP(), []int{622} } func (x *PowerOptionResponse) GetResponse() []*PowerOptions { @@ -44310,7 +44432,7 @@ type ComputeAllocationAttributes struct { func (x *ComputeAllocationAttributes) Reset() { *x = ComputeAllocationAttributes{} - mi := &file_nico_nico_proto_msgTypes[621] + mi := &file_nico_nico_proto_msgTypes[623] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44322,7 +44444,7 @@ func (x *ComputeAllocationAttributes) String() string { func (*ComputeAllocationAttributes) ProtoMessage() {} func (x *ComputeAllocationAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[621] + mi := &file_nico_nico_proto_msgTypes[623] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44335,7 +44457,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{621} + return file_nico_nico_proto_rawDescGZIP(), []int{623} } func (x *ComputeAllocationAttributes) GetInstanceTypeId() string { @@ -44368,7 +44490,7 @@ type ComputeAllocation struct { func (x *ComputeAllocation) Reset() { *x = ComputeAllocation{} - mi := &file_nico_nico_proto_msgTypes[622] + mi := &file_nico_nico_proto_msgTypes[624] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44380,7 +44502,7 @@ func (x *ComputeAllocation) String() string { func (*ComputeAllocation) ProtoMessage() {} func (x *ComputeAllocation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[622] + mi := &file_nico_nico_proto_msgTypes[624] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44393,7 +44515,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{622} + return file_nico_nico_proto_rawDescGZIP(), []int{624} } func (x *ComputeAllocation) GetId() *ComputeAllocationId { @@ -44465,7 +44587,7 @@ type CreateComputeAllocationRequest struct { func (x *CreateComputeAllocationRequest) Reset() { *x = CreateComputeAllocationRequest{} - mi := &file_nico_nico_proto_msgTypes[623] + mi := &file_nico_nico_proto_msgTypes[625] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44477,7 +44599,7 @@ func (x *CreateComputeAllocationRequest) String() string { func (*CreateComputeAllocationRequest) ProtoMessage() {} func (x *CreateComputeAllocationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[623] + mi := &file_nico_nico_proto_msgTypes[625] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44490,7 +44612,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{623} + return file_nico_nico_proto_rawDescGZIP(), []int{625} } func (x *CreateComputeAllocationRequest) GetId() *ComputeAllocationId { @@ -44537,7 +44659,7 @@ type CreateComputeAllocationResponse struct { func (x *CreateComputeAllocationResponse) Reset() { *x = CreateComputeAllocationResponse{} - mi := &file_nico_nico_proto_msgTypes[624] + mi := &file_nico_nico_proto_msgTypes[626] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44549,7 +44671,7 @@ func (x *CreateComputeAllocationResponse) String() string { func (*CreateComputeAllocationResponse) ProtoMessage() {} func (x *CreateComputeAllocationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[624] + mi := &file_nico_nico_proto_msgTypes[626] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44562,7 +44684,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{624} + return file_nico_nico_proto_rawDescGZIP(), []int{626} } func (x *CreateComputeAllocationResponse) GetAllocation() *ComputeAllocation { @@ -44589,7 +44711,7 @@ type FindComputeAllocationIdsRequest struct { func (x *FindComputeAllocationIdsRequest) Reset() { *x = FindComputeAllocationIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[625] + mi := &file_nico_nico_proto_msgTypes[627] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44601,7 +44723,7 @@ func (x *FindComputeAllocationIdsRequest) String() string { func (*FindComputeAllocationIdsRequest) ProtoMessage() {} func (x *FindComputeAllocationIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[625] + mi := &file_nico_nico_proto_msgTypes[627] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44614,7 +44736,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{625} + return file_nico_nico_proto_rawDescGZIP(), []int{627} } func (x *FindComputeAllocationIdsRequest) GetName() string { @@ -44647,7 +44769,7 @@ type FindComputeAllocationIdsResponse struct { func (x *FindComputeAllocationIdsResponse) Reset() { *x = FindComputeAllocationIdsResponse{} - mi := &file_nico_nico_proto_msgTypes[626] + mi := &file_nico_nico_proto_msgTypes[628] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44659,7 +44781,7 @@ func (x *FindComputeAllocationIdsResponse) String() string { func (*FindComputeAllocationIdsResponse) ProtoMessage() {} func (x *FindComputeAllocationIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[626] + mi := &file_nico_nico_proto_msgTypes[628] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44672,7 +44794,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{626} + return file_nico_nico_proto_rawDescGZIP(), []int{628} } func (x *FindComputeAllocationIdsResponse) GetIds() []*ComputeAllocationId { @@ -44694,7 +44816,7 @@ type FindComputeAllocationsByIdsRequest struct { func (x *FindComputeAllocationsByIdsRequest) Reset() { *x = FindComputeAllocationsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[627] + mi := &file_nico_nico_proto_msgTypes[629] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44706,7 +44828,7 @@ func (x *FindComputeAllocationsByIdsRequest) String() string { func (*FindComputeAllocationsByIdsRequest) ProtoMessage() {} func (x *FindComputeAllocationsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[627] + mi := &file_nico_nico_proto_msgTypes[629] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44719,7 +44841,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{627} + return file_nico_nico_proto_rawDescGZIP(), []int{629} } func (x *FindComputeAllocationsByIdsRequest) GetIds() []*ComputeAllocationId { @@ -44738,7 +44860,7 @@ type FindComputeAllocationsByIdsResponse struct { func (x *FindComputeAllocationsByIdsResponse) Reset() { *x = FindComputeAllocationsByIdsResponse{} - mi := &file_nico_nico_proto_msgTypes[628] + mi := &file_nico_nico_proto_msgTypes[630] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44750,7 +44872,7 @@ func (x *FindComputeAllocationsByIdsResponse) String() string { func (*FindComputeAllocationsByIdsResponse) ProtoMessage() {} func (x *FindComputeAllocationsByIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[628] + mi := &file_nico_nico_proto_msgTypes[630] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44763,7 +44885,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{628} + return file_nico_nico_proto_rawDescGZIP(), []int{630} } func (x *FindComputeAllocationsByIdsResponse) GetAllocations() []*ComputeAllocation { @@ -44782,7 +44904,7 @@ type UpdateComputeAllocationResponse struct { func (x *UpdateComputeAllocationResponse) Reset() { *x = UpdateComputeAllocationResponse{} - mi := &file_nico_nico_proto_msgTypes[629] + mi := &file_nico_nico_proto_msgTypes[631] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44794,7 +44916,7 @@ func (x *UpdateComputeAllocationResponse) String() string { func (*UpdateComputeAllocationResponse) ProtoMessage() {} func (x *UpdateComputeAllocationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[629] + mi := &file_nico_nico_proto_msgTypes[631] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44807,7 +44929,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{629} + return file_nico_nico_proto_rawDescGZIP(), []int{631} } func (x *UpdateComputeAllocationResponse) GetAllocation() *ComputeAllocation { @@ -44831,7 +44953,7 @@ type UpdateComputeAllocationRequest struct { func (x *UpdateComputeAllocationRequest) Reset() { *x = UpdateComputeAllocationRequest{} - mi := &file_nico_nico_proto_msgTypes[630] + mi := &file_nico_nico_proto_msgTypes[632] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44843,7 +44965,7 @@ func (x *UpdateComputeAllocationRequest) String() string { func (*UpdateComputeAllocationRequest) ProtoMessage() {} func (x *UpdateComputeAllocationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[630] + mi := &file_nico_nico_proto_msgTypes[632] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44856,7 +44978,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{630} + return file_nico_nico_proto_rawDescGZIP(), []int{632} } func (x *UpdateComputeAllocationRequest) GetId() *ComputeAllocationId { @@ -44911,7 +45033,7 @@ type DeleteComputeAllocationRequest struct { func (x *DeleteComputeAllocationRequest) Reset() { *x = DeleteComputeAllocationRequest{} - mi := &file_nico_nico_proto_msgTypes[631] + mi := &file_nico_nico_proto_msgTypes[633] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44923,7 +45045,7 @@ func (x *DeleteComputeAllocationRequest) String() string { func (*DeleteComputeAllocationRequest) ProtoMessage() {} func (x *DeleteComputeAllocationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[631] + mi := &file_nico_nico_proto_msgTypes[633] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44936,7 +45058,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{631} + return file_nico_nico_proto_rawDescGZIP(), []int{633} } func (x *DeleteComputeAllocationRequest) GetId() *ComputeAllocationId { @@ -44961,7 +45083,7 @@ type DeleteComputeAllocationResponse struct { func (x *DeleteComputeAllocationResponse) Reset() { *x = DeleteComputeAllocationResponse{} - mi := &file_nico_nico_proto_msgTypes[632] + mi := &file_nico_nico_proto_msgTypes[634] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44973,7 +45095,7 @@ func (x *DeleteComputeAllocationResponse) String() string { func (*DeleteComputeAllocationResponse) ProtoMessage() {} func (x *DeleteComputeAllocationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[632] + mi := &file_nico_nico_proto_msgTypes[634] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44986,7 +45108,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{632} + return file_nico_nico_proto_rawDescGZIP(), []int{634} } // For use with the existing InstanceType message @@ -45011,7 +45133,7 @@ type InstanceTypeAllocationStats struct { func (x *InstanceTypeAllocationStats) Reset() { *x = InstanceTypeAllocationStats{} - mi := &file_nico_nico_proto_msgTypes[633] + mi := &file_nico_nico_proto_msgTypes[635] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45023,7 +45145,7 @@ func (x *InstanceTypeAllocationStats) String() string { func (*InstanceTypeAllocationStats) ProtoMessage() {} func (x *InstanceTypeAllocationStats) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[633] + mi := &file_nico_nico_proto_msgTypes[635] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45036,7 +45158,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{633} + return file_nico_nico_proto_rawDescGZIP(), []int{635} } func (x *InstanceTypeAllocationStats) GetMaxAllocatable() uint32 { @@ -45076,7 +45198,7 @@ type GetRackRequest struct { func (x *GetRackRequest) Reset() { *x = GetRackRequest{} - mi := &file_nico_nico_proto_msgTypes[634] + mi := &file_nico_nico_proto_msgTypes[636] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45088,7 +45210,7 @@ func (x *GetRackRequest) String() string { func (*GetRackRequest) ProtoMessage() {} func (x *GetRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[634] + mi := &file_nico_nico_proto_msgTypes[636] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45101,7 +45223,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{634} + return file_nico_nico_proto_rawDescGZIP(), []int{636} } func (x *GetRackRequest) GetId() string { @@ -45120,7 +45242,7 @@ type GetRackResponse struct { func (x *GetRackResponse) Reset() { *x = GetRackResponse{} - mi := &file_nico_nico_proto_msgTypes[635] + mi := &file_nico_nico_proto_msgTypes[637] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45132,7 +45254,7 @@ func (x *GetRackResponse) String() string { func (*GetRackResponse) ProtoMessage() {} func (x *GetRackResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[635] + mi := &file_nico_nico_proto_msgTypes[637] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45145,7 +45267,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{635} + return file_nico_nico_proto_rawDescGZIP(), []int{637} } func (x *GetRackResponse) GetRack() []*Rack { @@ -45164,7 +45286,7 @@ type RackList struct { func (x *RackList) Reset() { *x = RackList{} - mi := &file_nico_nico_proto_msgTypes[636] + mi := &file_nico_nico_proto_msgTypes[638] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45176,7 +45298,7 @@ func (x *RackList) String() string { func (*RackList) ProtoMessage() {} func (x *RackList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[636] + mi := &file_nico_nico_proto_msgTypes[638] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45189,7 +45311,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{636} + return file_nico_nico_proto_rawDescGZIP(), []int{638} } func (x *RackList) GetRacks() []*Rack { @@ -45209,7 +45331,7 @@ type RackSearchFilter struct { func (x *RackSearchFilter) Reset() { *x = RackSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[637] + mi := &file_nico_nico_proto_msgTypes[639] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45221,7 +45343,7 @@ func (x *RackSearchFilter) String() string { func (*RackSearchFilter) ProtoMessage() {} func (x *RackSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[637] + mi := &file_nico_nico_proto_msgTypes[639] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45234,7 +45356,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{637} + return file_nico_nico_proto_rawDescGZIP(), []int{639} } func (x *RackSearchFilter) GetLabel() *Label { @@ -45253,7 +45375,7 @@ type RackIdList struct { func (x *RackIdList) Reset() { *x = RackIdList{} - mi := &file_nico_nico_proto_msgTypes[638] + mi := &file_nico_nico_proto_msgTypes[640] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45265,7 +45387,7 @@ func (x *RackIdList) String() string { func (*RackIdList) ProtoMessage() {} func (x *RackIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[638] + mi := &file_nico_nico_proto_msgTypes[640] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45278,7 +45400,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{638} + return file_nico_nico_proto_rawDescGZIP(), []int{640} } func (x *RackIdList) GetRackIds() []*RackId { @@ -45297,7 +45419,7 @@ type RacksByIdsRequest struct { func (x *RacksByIdsRequest) Reset() { *x = RacksByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[639] + mi := &file_nico_nico_proto_msgTypes[641] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45309,7 +45431,7 @@ func (x *RacksByIdsRequest) String() string { func (*RacksByIdsRequest) ProtoMessage() {} func (x *RacksByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[639] + mi := &file_nico_nico_proto_msgTypes[641] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45322,7 +45444,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{639} + return file_nico_nico_proto_rawDescGZIP(), []int{641} } func (x *RacksByIdsRequest) GetRackIds() []*RackId { @@ -45350,7 +45472,7 @@ type Rack struct { func (x *Rack) Reset() { *x = Rack{} - mi := &file_nico_nico_proto_msgTypes[640] + mi := &file_nico_nico_proto_msgTypes[642] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45362,7 +45484,7 @@ func (x *Rack) String() string { func (*Rack) ProtoMessage() {} func (x *Rack) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[640] + mi := &file_nico_nico_proto_msgTypes[642] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45375,7 +45497,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{640} + return file_nico_nico_proto_rawDescGZIP(), []int{642} } func (x *Rack) GetId() *RackId { @@ -45449,7 +45571,7 @@ type RackConfig struct { func (x *RackConfig) Reset() { *x = RackConfig{} - mi := &file_nico_nico_proto_msgTypes[641] + mi := &file_nico_nico_proto_msgTypes[643] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45461,7 +45583,7 @@ func (x *RackConfig) String() string { func (*RackConfig) ProtoMessage() {} func (x *RackConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[641] + mi := &file_nico_nico_proto_msgTypes[643] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45474,7 +45596,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{641} + return file_nico_nico_proto_rawDescGZIP(), []int{643} } type RackStatus struct { @@ -45489,7 +45611,7 @@ type RackStatus struct { func (x *RackStatus) Reset() { *x = RackStatus{} - mi := &file_nico_nico_proto_msgTypes[642] + mi := &file_nico_nico_proto_msgTypes[644] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45501,7 +45623,7 @@ func (x *RackStatus) String() string { func (*RackStatus) ProtoMessage() {} func (x *RackStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[642] + mi := &file_nico_nico_proto_msgTypes[644] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45514,7 +45636,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{642} + return file_nico_nico_proto_rawDescGZIP(), []int{644} } func (x *RackStatus) GetHealth() *HealthReport { @@ -45547,7 +45669,7 @@ type RackStateHistoriesRequest struct { func (x *RackStateHistoriesRequest) Reset() { *x = RackStateHistoriesRequest{} - mi := &file_nico_nico_proto_msgTypes[643] + mi := &file_nico_nico_proto_msgTypes[645] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45559,7 +45681,7 @@ func (x *RackStateHistoriesRequest) String() string { func (*RackStateHistoriesRequest) ProtoMessage() {} func (x *RackStateHistoriesRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[643] + mi := &file_nico_nico_proto_msgTypes[645] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45572,7 +45694,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{643} + return file_nico_nico_proto_rawDescGZIP(), []int{645} } func (x *RackStateHistoriesRequest) GetRackIds() []*RackId { @@ -45591,7 +45713,7 @@ type DeleteRackRequest struct { func (x *DeleteRackRequest) Reset() { *x = DeleteRackRequest{} - mi := &file_nico_nico_proto_msgTypes[644] + mi := &file_nico_nico_proto_msgTypes[646] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45603,7 +45725,7 @@ func (x *DeleteRackRequest) String() string { func (*DeleteRackRequest) ProtoMessage() {} func (x *DeleteRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[644] + mi := &file_nico_nico_proto_msgTypes[646] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45616,7 +45738,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{644} + return file_nico_nico_proto_rawDescGZIP(), []int{646} } func (x *DeleteRackRequest) GetId() string { @@ -45637,7 +45759,7 @@ type AdminForceDeleteRackRequest struct { func (x *AdminForceDeleteRackRequest) Reset() { *x = AdminForceDeleteRackRequest{} - mi := &file_nico_nico_proto_msgTypes[645] + mi := &file_nico_nico_proto_msgTypes[647] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45649,7 +45771,7 @@ func (x *AdminForceDeleteRackRequest) String() string { func (*AdminForceDeleteRackRequest) ProtoMessage() {} func (x *AdminForceDeleteRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[645] + mi := &file_nico_nico_proto_msgTypes[647] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45662,7 +45784,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{645} + return file_nico_nico_proto_rawDescGZIP(), []int{647} } func (x *AdminForceDeleteRackRequest) GetRackId() *RackId { @@ -45682,7 +45804,7 @@ type AdminForceDeleteRackResponse struct { func (x *AdminForceDeleteRackResponse) Reset() { *x = AdminForceDeleteRackResponse{} - mi := &file_nico_nico_proto_msgTypes[646] + mi := &file_nico_nico_proto_msgTypes[648] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45694,7 +45816,7 @@ func (x *AdminForceDeleteRackResponse) String() string { func (*AdminForceDeleteRackResponse) ProtoMessage() {} func (x *AdminForceDeleteRackResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[646] + mi := &file_nico_nico_proto_msgTypes[648] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45707,7 +45829,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{646} + return file_nico_nico_proto_rawDescGZIP(), []int{648} } func (x *AdminForceDeleteRackResponse) GetRackId() string { @@ -45729,7 +45851,7 @@ type RackCapabilityCompute struct { func (x *RackCapabilityCompute) Reset() { *x = RackCapabilityCompute{} - mi := &file_nico_nico_proto_msgTypes[647] + mi := &file_nico_nico_proto_msgTypes[649] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45741,7 +45863,7 @@ func (x *RackCapabilityCompute) String() string { func (*RackCapabilityCompute) ProtoMessage() {} func (x *RackCapabilityCompute) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[647] + mi := &file_nico_nico_proto_msgTypes[649] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45754,7 +45876,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{647} + return file_nico_nico_proto_rawDescGZIP(), []int{649} } func (x *RackCapabilityCompute) GetName() string { @@ -45797,7 +45919,7 @@ type RackCapabilitySwitch struct { func (x *RackCapabilitySwitch) Reset() { *x = RackCapabilitySwitch{} - mi := &file_nico_nico_proto_msgTypes[648] + mi := &file_nico_nico_proto_msgTypes[650] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45809,7 +45931,7 @@ func (x *RackCapabilitySwitch) String() string { func (*RackCapabilitySwitch) ProtoMessage() {} func (x *RackCapabilitySwitch) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[648] + mi := &file_nico_nico_proto_msgTypes[650] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45822,7 +45944,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{648} + return file_nico_nico_proto_rawDescGZIP(), []int{650} } func (x *RackCapabilitySwitch) GetName() string { @@ -45865,7 +45987,7 @@ type RackCapabilityPowerShelf struct { func (x *RackCapabilityPowerShelf) Reset() { *x = RackCapabilityPowerShelf{} - mi := &file_nico_nico_proto_msgTypes[649] + mi := &file_nico_nico_proto_msgTypes[651] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45877,7 +45999,7 @@ func (x *RackCapabilityPowerShelf) String() string { func (*RackCapabilityPowerShelf) ProtoMessage() {} func (x *RackCapabilityPowerShelf) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[649] + mi := &file_nico_nico_proto_msgTypes[651] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45890,7 +46012,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{649} + return file_nico_nico_proto_rawDescGZIP(), []int{651} } func (x *RackCapabilityPowerShelf) GetName() string { @@ -45932,7 +46054,7 @@ type RackCapabilitiesSet struct { func (x *RackCapabilitiesSet) Reset() { *x = RackCapabilitiesSet{} - mi := &file_nico_nico_proto_msgTypes[650] + mi := &file_nico_nico_proto_msgTypes[652] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45944,7 +46066,7 @@ func (x *RackCapabilitiesSet) String() string { func (*RackCapabilitiesSet) ProtoMessage() {} func (x *RackCapabilitiesSet) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[650] + mi := &file_nico_nico_proto_msgTypes[652] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45957,7 +46079,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{650} + return file_nico_nico_proto_rawDescGZIP(), []int{652} } func (x *RackCapabilitiesSet) GetCompute() *RackCapabilityCompute { @@ -45994,7 +46116,7 @@ type RackProfile struct { func (x *RackProfile) Reset() { *x = RackProfile{} - mi := &file_nico_nico_proto_msgTypes[651] + mi := &file_nico_nico_proto_msgTypes[653] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46006,7 +46128,7 @@ func (x *RackProfile) String() string { func (*RackProfile) ProtoMessage() {} func (x *RackProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[651] + mi := &file_nico_nico_proto_msgTypes[653] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46019,7 +46141,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{651} + return file_nico_nico_proto_rawDescGZIP(), []int{653} } func (x *RackProfile) GetRackHardwareType() *RackHardwareType { @@ -46066,7 +46188,7 @@ type GetRackProfileRequest struct { func (x *GetRackProfileRequest) Reset() { *x = GetRackProfileRequest{} - mi := &file_nico_nico_proto_msgTypes[652] + mi := &file_nico_nico_proto_msgTypes[654] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46078,7 +46200,7 @@ func (x *GetRackProfileRequest) String() string { func (*GetRackProfileRequest) ProtoMessage() {} func (x *GetRackProfileRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[652] + mi := &file_nico_nico_proto_msgTypes[654] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46091,7 +46213,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{652} + return file_nico_nico_proto_rawDescGZIP(), []int{654} } func (x *GetRackProfileRequest) GetRackId() *RackId { @@ -46112,7 +46234,7 @@ type GetRackProfileResponse struct { func (x *GetRackProfileResponse) Reset() { *x = GetRackProfileResponse{} - mi := &file_nico_nico_proto_msgTypes[653] + mi := &file_nico_nico_proto_msgTypes[655] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46124,7 +46246,7 @@ func (x *GetRackProfileResponse) String() string { func (*GetRackProfileResponse) ProtoMessage() {} func (x *GetRackProfileResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[653] + mi := &file_nico_nico_proto_msgTypes[655] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46137,7 +46259,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{653} + return file_nico_nico_proto_rawDescGZIP(), []int{655} } func (x *GetRackProfileResponse) GetRackId() *RackId { @@ -46171,7 +46293,7 @@ type RackManagerForgeRequest struct { func (x *RackManagerForgeRequest) Reset() { *x = RackManagerForgeRequest{} - mi := &file_nico_nico_proto_msgTypes[654] + mi := &file_nico_nico_proto_msgTypes[656] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46183,7 +46305,7 @@ func (x *RackManagerForgeRequest) String() string { func (*RackManagerForgeRequest) ProtoMessage() {} func (x *RackManagerForgeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[654] + mi := &file_nico_nico_proto_msgTypes[656] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46196,7 +46318,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{654} + return file_nico_nico_proto_rawDescGZIP(), []int{656} } func (x *RackManagerForgeRequest) GetCmd() RackManagerForgeCmd { @@ -46222,7 +46344,7 @@ type RackManagerForgeResponse struct { func (x *RackManagerForgeResponse) Reset() { *x = RackManagerForgeResponse{} - mi := &file_nico_nico_proto_msgTypes[655] + mi := &file_nico_nico_proto_msgTypes[657] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46234,7 +46356,7 @@ func (x *RackManagerForgeResponse) String() string { func (*RackManagerForgeResponse) ProtoMessage() {} func (x *RackManagerForgeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[655] + mi := &file_nico_nico_proto_msgTypes[657] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46247,7 +46369,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{655} + return file_nico_nico_proto_rawDescGZIP(), []int{657} } func (x *RackManagerForgeResponse) GetJsonResult() string { @@ -46268,7 +46390,7 @@ type MachineNVLinkInfo struct { func (x *MachineNVLinkInfo) Reset() { *x = MachineNVLinkInfo{} - mi := &file_nico_nico_proto_msgTypes[656] + mi := &file_nico_nico_proto_msgTypes[658] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46280,7 +46402,7 @@ func (x *MachineNVLinkInfo) String() string { func (*MachineNVLinkInfo) ProtoMessage() {} func (x *MachineNVLinkInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[656] + mi := &file_nico_nico_proto_msgTypes[658] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46293,7 +46415,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{656} + return file_nico_nico_proto_rawDescGZIP(), []int{658} } func (x *MachineNVLinkInfo) GetDomainUuid() *NVLinkDomainId { @@ -46327,7 +46449,7 @@ type UpdateMachineNvLinkInfoRequest struct { func (x *UpdateMachineNvLinkInfoRequest) Reset() { *x = UpdateMachineNvLinkInfoRequest{} - mi := &file_nico_nico_proto_msgTypes[657] + mi := &file_nico_nico_proto_msgTypes[659] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46339,7 +46461,7 @@ func (x *UpdateMachineNvLinkInfoRequest) String() string { func (*UpdateMachineNvLinkInfoRequest) ProtoMessage() {} func (x *UpdateMachineNvLinkInfoRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[657] + mi := &file_nico_nico_proto_msgTypes[659] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46352,7 +46474,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{657} + return file_nico_nico_proto_rawDescGZIP(), []int{659} } func (x *UpdateMachineNvLinkInfoRequest) GetMachineId() *MachineId { @@ -46379,7 +46501,7 @@ type MachineSpxStatusObservation struct { func (x *MachineSpxStatusObservation) Reset() { *x = MachineSpxStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[658] + mi := &file_nico_nico_proto_msgTypes[660] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46391,7 +46513,7 @@ func (x *MachineSpxStatusObservation) String() string { func (*MachineSpxStatusObservation) ProtoMessage() {} func (x *MachineSpxStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[658] + mi := &file_nico_nico_proto_msgTypes[660] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46404,7 +46526,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{658} + return file_nico_nico_proto_rawDescGZIP(), []int{660} } func (x *MachineSpxStatusObservation) GetAttachmentStatus() []*MachineSpxAttachmentStatusObservation { @@ -46434,7 +46556,7 @@ type MachineSpxAttachmentStatusObservation struct { func (x *MachineSpxAttachmentStatusObservation) Reset() { *x = MachineSpxAttachmentStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[659] + mi := &file_nico_nico_proto_msgTypes[661] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46446,7 +46568,7 @@ func (x *MachineSpxAttachmentStatusObservation) String() string { func (*MachineSpxAttachmentStatusObservation) ProtoMessage() {} func (x *MachineSpxAttachmentStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[659] + mi := &file_nico_nico_proto_msgTypes[661] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46459,7 +46581,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{659} + return file_nico_nico_proto_rawDescGZIP(), []int{661} } func (x *MachineSpxAttachmentStatusObservation) GetMacAddress() string { @@ -46509,7 +46631,7 @@ type NVLinkGpu struct { func (x *NVLinkGpu) Reset() { *x = NVLinkGpu{} - mi := &file_nico_nico_proto_msgTypes[660] + mi := &file_nico_nico_proto_msgTypes[662] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46521,7 +46643,7 @@ func (x *NVLinkGpu) String() string { func (*NVLinkGpu) ProtoMessage() {} func (x *NVLinkGpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[660] + mi := &file_nico_nico_proto_msgTypes[662] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46534,7 +46656,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{660} + return file_nico_nico_proto_rawDescGZIP(), []int{662} } func (x *NVLinkGpu) GetTrayIndex() int32 { @@ -46574,7 +46696,7 @@ type MachineNVLinkStatusObservation struct { func (x *MachineNVLinkStatusObservation) Reset() { *x = MachineNVLinkStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[661] + mi := &file_nico_nico_proto_msgTypes[663] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46586,7 +46708,7 @@ func (x *MachineNVLinkStatusObservation) String() string { func (*MachineNVLinkStatusObservation) ProtoMessage() {} func (x *MachineNVLinkStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[661] + mi := &file_nico_nico_proto_msgTypes[663] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46599,7 +46721,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{661} + return file_nico_nico_proto_rawDescGZIP(), []int{663} } func (x *MachineNVLinkStatusObservation) GetGpuStatus() []*MachineNVLinkGpuStatusObservation { @@ -46623,7 +46745,7 @@ type MachineNVLinkGpuStatusObservation struct { func (x *MachineNVLinkGpuStatusObservation) Reset() { *x = MachineNVLinkGpuStatusObservation{} - mi := &file_nico_nico_proto_msgTypes[662] + mi := &file_nico_nico_proto_msgTypes[664] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46635,7 +46757,7 @@ func (x *MachineNVLinkGpuStatusObservation) String() string { func (*MachineNVLinkGpuStatusObservation) ProtoMessage() {} func (x *MachineNVLinkGpuStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[662] + mi := &file_nico_nico_proto_msgTypes[664] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46648,7 +46770,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{662} + return file_nico_nico_proto_rawDescGZIP(), []int{664} } func (x *MachineNVLinkGpuStatusObservation) GetGpuId() string { @@ -46706,7 +46828,7 @@ type NmxcBrowseRequest struct { func (x *NmxcBrowseRequest) Reset() { *x = NmxcBrowseRequest{} - mi := &file_nico_nico_proto_msgTypes[663] + mi := &file_nico_nico_proto_msgTypes[665] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46718,7 +46840,7 @@ func (x *NmxcBrowseRequest) String() string { func (*NmxcBrowseRequest) ProtoMessage() {} func (x *NmxcBrowseRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[663] + mi := &file_nico_nico_proto_msgTypes[665] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46731,7 +46853,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{663} + return file_nico_nico_proto_rawDescGZIP(), []int{665} } func (x *NmxcBrowseRequest) GetChassisSerial() string { @@ -46769,7 +46891,7 @@ type NmxcBrowseResponse struct { func (x *NmxcBrowseResponse) Reset() { *x = NmxcBrowseResponse{} - mi := &file_nico_nico_proto_msgTypes[664] + mi := &file_nico_nico_proto_msgTypes[666] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46781,7 +46903,7 @@ func (x *NmxcBrowseResponse) String() string { func (*NmxcBrowseResponse) ProtoMessage() {} func (x *NmxcBrowseResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[664] + mi := &file_nico_nico_proto_msgTypes[666] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46794,7 +46916,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{664} + return file_nico_nico_proto_rawDescGZIP(), []int{666} } func (x *NmxcBrowseResponse) GetBody() string { @@ -46832,7 +46954,7 @@ type NVLinkPartition struct { func (x *NVLinkPartition) Reset() { *x = NVLinkPartition{} - mi := &file_nico_nico_proto_msgTypes[665] + mi := &file_nico_nico_proto_msgTypes[667] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46844,7 +46966,7 @@ func (x *NVLinkPartition) String() string { func (*NVLinkPartition) ProtoMessage() {} func (x *NVLinkPartition) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[665] + mi := &file_nico_nico_proto_msgTypes[667] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46857,7 +46979,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{665} + return file_nico_nico_proto_rawDescGZIP(), []int{667} } func (x *NVLinkPartition) GetId() *NVLinkPartitionId { @@ -46904,7 +47026,7 @@ type NVLinkPartitionList struct { func (x *NVLinkPartitionList) Reset() { *x = NVLinkPartitionList{} - mi := &file_nico_nico_proto_msgTypes[666] + mi := &file_nico_nico_proto_msgTypes[668] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46916,7 +47038,7 @@ func (x *NVLinkPartitionList) String() string { func (*NVLinkPartitionList) ProtoMessage() {} func (x *NVLinkPartitionList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[666] + mi := &file_nico_nico_proto_msgTypes[668] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46929,7 +47051,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{666} + return file_nico_nico_proto_rawDescGZIP(), []int{668} } func (x *NVLinkPartitionList) GetPartitions() []*NVLinkPartition { @@ -46948,7 +47070,7 @@ type NVLinkPartitionSearchConfig struct { func (x *NVLinkPartitionSearchConfig) Reset() { *x = NVLinkPartitionSearchConfig{} - mi := &file_nico_nico_proto_msgTypes[667] + mi := &file_nico_nico_proto_msgTypes[669] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46960,7 +47082,7 @@ func (x *NVLinkPartitionSearchConfig) String() string { func (*NVLinkPartitionSearchConfig) ProtoMessage() {} func (x *NVLinkPartitionSearchConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[667] + mi := &file_nico_nico_proto_msgTypes[669] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46973,7 +47095,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{667} + return file_nico_nico_proto_rawDescGZIP(), []int{669} } func (x *NVLinkPartitionSearchConfig) GetIncludeHistory() bool { @@ -46993,7 +47115,7 @@ type NVLinkPartitionQuery struct { func (x *NVLinkPartitionQuery) Reset() { *x = NVLinkPartitionQuery{} - mi := &file_nico_nico_proto_msgTypes[668] + mi := &file_nico_nico_proto_msgTypes[670] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47005,7 +47127,7 @@ func (x *NVLinkPartitionQuery) String() string { func (*NVLinkPartitionQuery) ProtoMessage() {} func (x *NVLinkPartitionQuery) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[668] + mi := &file_nico_nico_proto_msgTypes[670] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47018,7 +47140,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{668} + return file_nico_nico_proto_rawDescGZIP(), []int{670} } func (x *NVLinkPartitionQuery) GetId() *UUID { @@ -47045,7 +47167,7 @@ type NVLinkPartitionSearchFilter struct { func (x *NVLinkPartitionSearchFilter) Reset() { *x = NVLinkPartitionSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[669] + mi := &file_nico_nico_proto_msgTypes[671] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47057,7 +47179,7 @@ func (x *NVLinkPartitionSearchFilter) String() string { func (*NVLinkPartitionSearchFilter) ProtoMessage() {} func (x *NVLinkPartitionSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[669] + mi := &file_nico_nico_proto_msgTypes[671] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47070,7 +47192,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{669} + return file_nico_nico_proto_rawDescGZIP(), []int{671} } func (x *NVLinkPartitionSearchFilter) GetTenantOrganizationId() string { @@ -47097,7 +47219,7 @@ type NVLinkPartitionsByIdsRequest struct { func (x *NVLinkPartitionsByIdsRequest) Reset() { *x = NVLinkPartitionsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[670] + mi := &file_nico_nico_proto_msgTypes[672] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47109,7 +47231,7 @@ func (x *NVLinkPartitionsByIdsRequest) String() string { func (*NVLinkPartitionsByIdsRequest) ProtoMessage() {} func (x *NVLinkPartitionsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[670] + mi := &file_nico_nico_proto_msgTypes[672] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47122,7 +47244,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{670} + return file_nico_nico_proto_rawDescGZIP(), []int{672} } func (x *NVLinkPartitionsByIdsRequest) GetPartitionIds() []*NVLinkPartitionId { @@ -47148,7 +47270,7 @@ type NVLinkPartitionIdList struct { func (x *NVLinkPartitionIdList) Reset() { *x = NVLinkPartitionIdList{} - mi := &file_nico_nico_proto_msgTypes[671] + mi := &file_nico_nico_proto_msgTypes[673] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47160,7 +47282,7 @@ func (x *NVLinkPartitionIdList) String() string { func (*NVLinkPartitionIdList) ProtoMessage() {} func (x *NVLinkPartitionIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[671] + mi := &file_nico_nico_proto_msgTypes[673] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47173,7 +47295,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{671} + return file_nico_nico_proto_rawDescGZIP(), []int{673} } func (x *NVLinkPartitionIdList) GetPartitionIds() []*NVLinkPartitionId { @@ -47191,7 +47313,7 @@ type NVLinkFabricSearchFilter struct { func (x *NVLinkFabricSearchFilter) Reset() { *x = NVLinkFabricSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[672] + mi := &file_nico_nico_proto_msgTypes[674] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47203,7 +47325,7 @@ func (x *NVLinkFabricSearchFilter) String() string { func (*NVLinkFabricSearchFilter) ProtoMessage() {} func (x *NVLinkFabricSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[672] + mi := &file_nico_nico_proto_msgTypes[674] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47216,7 +47338,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{672} + return file_nico_nico_proto_rawDescGZIP(), []int{674} } // Describe the desired configuration of an Logical Partition @@ -47231,7 +47353,7 @@ type NVLinkLogicalPartitionConfig struct { func (x *NVLinkLogicalPartitionConfig) Reset() { *x = NVLinkLogicalPartitionConfig{} - mi := &file_nico_nico_proto_msgTypes[673] + mi := &file_nico_nico_proto_msgTypes[675] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47243,7 +47365,7 @@ func (x *NVLinkLogicalPartitionConfig) String() string { func (*NVLinkLogicalPartitionConfig) ProtoMessage() {} func (x *NVLinkLogicalPartitionConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[673] + mi := &file_nico_nico_proto_msgTypes[675] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47256,7 +47378,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{673} + return file_nico_nico_proto_rawDescGZIP(), []int{675} } func (x *NVLinkLogicalPartitionConfig) GetMetadata() *Metadata { @@ -47284,7 +47406,7 @@ type NVLinkLogicalPartitionStatus struct { func (x *NVLinkLogicalPartitionStatus) Reset() { *x = NVLinkLogicalPartitionStatus{} - mi := &file_nico_nico_proto_msgTypes[674] + mi := &file_nico_nico_proto_msgTypes[676] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47296,7 +47418,7 @@ func (x *NVLinkLogicalPartitionStatus) String() string { func (*NVLinkLogicalPartitionStatus) ProtoMessage() {} func (x *NVLinkLogicalPartitionStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[674] + mi := &file_nico_nico_proto_msgTypes[676] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47309,7 +47431,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{674} + return file_nico_nico_proto_rawDescGZIP(), []int{676} } func (x *NVLinkLogicalPartitionStatus) GetState() TenantState { @@ -47333,7 +47455,7 @@ type NVLinkLogicalPartition struct { func (x *NVLinkLogicalPartition) Reset() { *x = NVLinkLogicalPartition{} - mi := &file_nico_nico_proto_msgTypes[675] + mi := &file_nico_nico_proto_msgTypes[677] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47345,7 +47467,7 @@ func (x *NVLinkLogicalPartition) String() string { func (*NVLinkLogicalPartition) ProtoMessage() {} func (x *NVLinkLogicalPartition) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[675] + mi := &file_nico_nico_proto_msgTypes[677] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47358,7 +47480,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{675} + return file_nico_nico_proto_rawDescGZIP(), []int{677} } func (x *NVLinkLogicalPartition) GetId() *NVLinkLogicalPartitionId { @@ -47405,7 +47527,7 @@ type NVLinkLogicalPartitionList struct { func (x *NVLinkLogicalPartitionList) Reset() { *x = NVLinkLogicalPartitionList{} - mi := &file_nico_nico_proto_msgTypes[676] + mi := &file_nico_nico_proto_msgTypes[678] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47417,7 +47539,7 @@ func (x *NVLinkLogicalPartitionList) String() string { func (*NVLinkLogicalPartitionList) ProtoMessage() {} func (x *NVLinkLogicalPartitionList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[676] + mi := &file_nico_nico_proto_msgTypes[678] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47430,7 +47552,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{676} + return file_nico_nico_proto_rawDescGZIP(), []int{678} } func (x *NVLinkLogicalPartitionList) GetPartitions() []*NVLinkLogicalPartition { @@ -47453,7 +47575,7 @@ type NVLinkLogicalPartitionCreationRequest struct { func (x *NVLinkLogicalPartitionCreationRequest) Reset() { *x = NVLinkLogicalPartitionCreationRequest{} - mi := &file_nico_nico_proto_msgTypes[677] + mi := &file_nico_nico_proto_msgTypes[679] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47465,7 +47587,7 @@ func (x *NVLinkLogicalPartitionCreationRequest) String() string { func (*NVLinkLogicalPartitionCreationRequest) ProtoMessage() {} func (x *NVLinkLogicalPartitionCreationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[677] + mi := &file_nico_nico_proto_msgTypes[679] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47478,7 +47600,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{677} + return file_nico_nico_proto_rawDescGZIP(), []int{679} } func (x *NVLinkLogicalPartitionCreationRequest) GetConfig() *NVLinkLogicalPartitionConfig { @@ -47504,7 +47626,7 @@ type NVLinkLogicalPartitionDeletionRequest struct { func (x *NVLinkLogicalPartitionDeletionRequest) Reset() { *x = NVLinkLogicalPartitionDeletionRequest{} - mi := &file_nico_nico_proto_msgTypes[678] + mi := &file_nico_nico_proto_msgTypes[680] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47516,7 +47638,7 @@ func (x *NVLinkLogicalPartitionDeletionRequest) String() string { func (*NVLinkLogicalPartitionDeletionRequest) ProtoMessage() {} func (x *NVLinkLogicalPartitionDeletionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[678] + mi := &file_nico_nico_proto_msgTypes[680] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47529,7 +47651,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{678} + return file_nico_nico_proto_rawDescGZIP(), []int{680} } func (x *NVLinkLogicalPartitionDeletionRequest) GetId() *NVLinkLogicalPartitionId { @@ -47547,7 +47669,7 @@ type NVLinkLogicalPartitionDeletionResult struct { func (x *NVLinkLogicalPartitionDeletionResult) Reset() { *x = NVLinkLogicalPartitionDeletionResult{} - mi := &file_nico_nico_proto_msgTypes[679] + mi := &file_nico_nico_proto_msgTypes[681] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47559,7 +47681,7 @@ func (x *NVLinkLogicalPartitionDeletionResult) String() string { func (*NVLinkLogicalPartitionDeletionResult) ProtoMessage() {} func (x *NVLinkLogicalPartitionDeletionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[679] + mi := &file_nico_nico_proto_msgTypes[681] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47572,7 +47694,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{679} + return file_nico_nico_proto_rawDescGZIP(), []int{681} } type NVLinkLogicalPartitionSearchFilter struct { @@ -47584,7 +47706,7 @@ type NVLinkLogicalPartitionSearchFilter struct { func (x *NVLinkLogicalPartitionSearchFilter) Reset() { *x = NVLinkLogicalPartitionSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[680] + mi := &file_nico_nico_proto_msgTypes[682] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47596,7 +47718,7 @@ func (x *NVLinkLogicalPartitionSearchFilter) String() string { func (*NVLinkLogicalPartitionSearchFilter) ProtoMessage() {} func (x *NVLinkLogicalPartitionSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[680] + mi := &file_nico_nico_proto_msgTypes[682] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47609,7 +47731,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{680} + return file_nico_nico_proto_rawDescGZIP(), []int{682} } func (x *NVLinkLogicalPartitionSearchFilter) GetName() string { @@ -47629,7 +47751,7 @@ type NVLinkLogicalPartitionsByIdsRequest struct { func (x *NVLinkLogicalPartitionsByIdsRequest) Reset() { *x = NVLinkLogicalPartitionsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[681] + mi := &file_nico_nico_proto_msgTypes[683] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47641,7 +47763,7 @@ func (x *NVLinkLogicalPartitionsByIdsRequest) String() string { func (*NVLinkLogicalPartitionsByIdsRequest) ProtoMessage() {} func (x *NVLinkLogicalPartitionsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[681] + mi := &file_nico_nico_proto_msgTypes[683] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47654,7 +47776,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{681} + return file_nico_nico_proto_rawDescGZIP(), []int{683} } func (x *NVLinkLogicalPartitionsByIdsRequest) GetPartitionIds() []*NVLinkLogicalPartitionId { @@ -47680,7 +47802,7 @@ type NVLinkLogicalPartitionIdList struct { func (x *NVLinkLogicalPartitionIdList) Reset() { *x = NVLinkLogicalPartitionIdList{} - mi := &file_nico_nico_proto_msgTypes[682] + mi := &file_nico_nico_proto_msgTypes[684] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47692,7 +47814,7 @@ func (x *NVLinkLogicalPartitionIdList) String() string { func (*NVLinkLogicalPartitionIdList) ProtoMessage() {} func (x *NVLinkLogicalPartitionIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[682] + mi := &file_nico_nico_proto_msgTypes[684] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47705,7 +47827,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{682} + return file_nico_nico_proto_rawDescGZIP(), []int{684} } func (x *NVLinkLogicalPartitionIdList) GetPartitionIds() []*NVLinkLogicalPartitionId { @@ -47726,7 +47848,7 @@ type NVLinkLogicalPartitionUpdateRequest struct { func (x *NVLinkLogicalPartitionUpdateRequest) Reset() { *x = NVLinkLogicalPartitionUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[683] + mi := &file_nico_nico_proto_msgTypes[685] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47738,7 +47860,7 @@ func (x *NVLinkLogicalPartitionUpdateRequest) String() string { func (*NVLinkLogicalPartitionUpdateRequest) ProtoMessage() {} func (x *NVLinkLogicalPartitionUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[683] + mi := &file_nico_nico_proto_msgTypes[685] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47751,7 +47873,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{683} + return file_nico_nico_proto_rawDescGZIP(), []int{685} } func (x *NVLinkLogicalPartitionUpdateRequest) GetId() *NVLinkLogicalPartitionId { @@ -47783,7 +47905,7 @@ type NVLinkLogicalPartitionUpdateResult struct { func (x *NVLinkLogicalPartitionUpdateResult) Reset() { *x = NVLinkLogicalPartitionUpdateResult{} - mi := &file_nico_nico_proto_msgTypes[684] + mi := &file_nico_nico_proto_msgTypes[686] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47795,7 +47917,7 @@ func (x *NVLinkLogicalPartitionUpdateResult) String() string { func (*NVLinkLogicalPartitionUpdateResult) ProtoMessage() {} func (x *NVLinkLogicalPartitionUpdateResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[684] + mi := &file_nico_nico_proto_msgTypes[686] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47808,7 +47930,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{684} + return file_nico_nico_proto_rawDescGZIP(), []int{686} } // Must provide either machine_id or ip/mac pair @@ -47825,7 +47947,7 @@ type CreateBmcUserRequest struct { func (x *CreateBmcUserRequest) Reset() { *x = CreateBmcUserRequest{} - mi := &file_nico_nico_proto_msgTypes[685] + mi := &file_nico_nico_proto_msgTypes[687] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47837,7 +47959,7 @@ func (x *CreateBmcUserRequest) String() string { func (*CreateBmcUserRequest) ProtoMessage() {} func (x *CreateBmcUserRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[685] + mi := &file_nico_nico_proto_msgTypes[687] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47850,7 +47972,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{685} + return file_nico_nico_proto_rawDescGZIP(), []int{687} } func (x *CreateBmcUserRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -47896,7 +48018,7 @@ type CreateBmcUserResponse struct { func (x *CreateBmcUserResponse) Reset() { *x = CreateBmcUserResponse{} - mi := &file_nico_nico_proto_msgTypes[686] + mi := &file_nico_nico_proto_msgTypes[688] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47908,7 +48030,7 @@ func (x *CreateBmcUserResponse) String() string { func (*CreateBmcUserResponse) ProtoMessage() {} func (x *CreateBmcUserResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[686] + mi := &file_nico_nico_proto_msgTypes[688] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47921,7 +48043,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{686} + return file_nico_nico_proto_rawDescGZIP(), []int{688} } type DeleteBmcUserRequest struct { @@ -47935,7 +48057,7 @@ type DeleteBmcUserRequest struct { func (x *DeleteBmcUserRequest) Reset() { *x = DeleteBmcUserRequest{} - mi := &file_nico_nico_proto_msgTypes[687] + mi := &file_nico_nico_proto_msgTypes[689] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47947,7 +48069,7 @@ func (x *DeleteBmcUserRequest) String() string { func (*DeleteBmcUserRequest) ProtoMessage() {} func (x *DeleteBmcUserRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[687] + mi := &file_nico_nico_proto_msgTypes[689] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47960,7 +48082,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{687} + return file_nico_nico_proto_rawDescGZIP(), []int{689} } func (x *DeleteBmcUserRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -47992,7 +48114,7 @@ type DeleteBmcUserResponse struct { func (x *DeleteBmcUserResponse) Reset() { *x = DeleteBmcUserResponse{} - mi := &file_nico_nico_proto_msgTypes[688] + mi := &file_nico_nico_proto_msgTypes[690] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48004,7 +48126,7 @@ func (x *DeleteBmcUserResponse) String() string { func (*DeleteBmcUserResponse) ProtoMessage() {} func (x *DeleteBmcUserResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[688] + mi := &file_nico_nico_proto_msgTypes[690] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48017,7 +48139,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{688} + return file_nico_nico_proto_rawDescGZIP(), []int{690} } type SetFirmwareUpdateTimeWindowRequest struct { @@ -48031,7 +48153,7 @@ type SetFirmwareUpdateTimeWindowRequest struct { func (x *SetFirmwareUpdateTimeWindowRequest) Reset() { *x = SetFirmwareUpdateTimeWindowRequest{} - mi := &file_nico_nico_proto_msgTypes[689] + mi := &file_nico_nico_proto_msgTypes[691] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48043,7 +48165,7 @@ func (x *SetFirmwareUpdateTimeWindowRequest) String() string { func (*SetFirmwareUpdateTimeWindowRequest) ProtoMessage() {} func (x *SetFirmwareUpdateTimeWindowRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[689] + mi := &file_nico_nico_proto_msgTypes[691] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48056,7 +48178,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{689} + return file_nico_nico_proto_rawDescGZIP(), []int{691} } func (x *SetFirmwareUpdateTimeWindowRequest) GetMachineIds() []*MachineId { @@ -48088,7 +48210,7 @@ type SetFirmwareUpdateTimeWindowResponse struct { func (x *SetFirmwareUpdateTimeWindowResponse) Reset() { *x = SetFirmwareUpdateTimeWindowResponse{} - mi := &file_nico_nico_proto_msgTypes[690] + mi := &file_nico_nico_proto_msgTypes[692] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48100,7 +48222,7 @@ func (x *SetFirmwareUpdateTimeWindowResponse) String() string { func (*SetFirmwareUpdateTimeWindowResponse) ProtoMessage() {} func (x *SetFirmwareUpdateTimeWindowResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[690] + mi := &file_nico_nico_proto_msgTypes[692] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48113,7 +48235,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{690} + return file_nico_nico_proto_rawDescGZIP(), []int{692} } type ListHostFirmwareRequest struct { @@ -48124,7 +48246,7 @@ type ListHostFirmwareRequest struct { func (x *ListHostFirmwareRequest) Reset() { *x = ListHostFirmwareRequest{} - mi := &file_nico_nico_proto_msgTypes[691] + mi := &file_nico_nico_proto_msgTypes[693] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48136,7 +48258,7 @@ func (x *ListHostFirmwareRequest) String() string { func (*ListHostFirmwareRequest) ProtoMessage() {} func (x *ListHostFirmwareRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[691] + mi := &file_nico_nico_proto_msgTypes[693] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48149,7 +48271,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{691} + return file_nico_nico_proto_rawDescGZIP(), []int{693} } type ListHostFirmwareResponse struct { @@ -48161,7 +48283,7 @@ type ListHostFirmwareResponse struct { func (x *ListHostFirmwareResponse) Reset() { *x = ListHostFirmwareResponse{} - mi := &file_nico_nico_proto_msgTypes[692] + mi := &file_nico_nico_proto_msgTypes[694] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48173,7 +48295,7 @@ func (x *ListHostFirmwareResponse) String() string { func (*ListHostFirmwareResponse) ProtoMessage() {} func (x *ListHostFirmwareResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[692] + mi := &file_nico_nico_proto_msgTypes[694] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48186,7 +48308,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{692} + return file_nico_nico_proto_rawDescGZIP(), []int{694} } func (x *ListHostFirmwareResponse) GetAvailable() []*AvailableHostFirmware { @@ -48210,7 +48332,7 @@ type AvailableHostFirmware struct { func (x *AvailableHostFirmware) Reset() { *x = AvailableHostFirmware{} - mi := &file_nico_nico_proto_msgTypes[693] + mi := &file_nico_nico_proto_msgTypes[695] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48222,7 +48344,7 @@ func (x *AvailableHostFirmware) String() string { func (*AvailableHostFirmware) ProtoMessage() {} func (x *AvailableHostFirmware) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[693] + mi := &file_nico_nico_proto_msgTypes[695] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48235,7 +48357,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{693} + return file_nico_nico_proto_rawDescGZIP(), []int{695} } func (x *AvailableHostFirmware) GetVendor() string { @@ -48290,7 +48412,7 @@ type TrimTableRequest struct { func (x *TrimTableRequest) Reset() { *x = TrimTableRequest{} - mi := &file_nico_nico_proto_msgTypes[694] + mi := &file_nico_nico_proto_msgTypes[696] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48302,7 +48424,7 @@ func (x *TrimTableRequest) String() string { func (*TrimTableRequest) ProtoMessage() {} func (x *TrimTableRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[694] + mi := &file_nico_nico_proto_msgTypes[696] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48315,7 +48437,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{694} + return file_nico_nico_proto_rawDescGZIP(), []int{696} } func (x *TrimTableRequest) GetTarget() TrimTableTarget { @@ -48341,7 +48463,7 @@ type TrimTableResponse struct { func (x *TrimTableResponse) Reset() { *x = TrimTableResponse{} - mi := &file_nico_nico_proto_msgTypes[695] + mi := &file_nico_nico_proto_msgTypes[697] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48353,7 +48475,7 @@ func (x *TrimTableResponse) String() string { func (*TrimTableResponse) ProtoMessage() {} func (x *TrimTableResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[695] + mi := &file_nico_nico_proto_msgTypes[697] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48366,7 +48488,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{695} + return file_nico_nico_proto_rawDescGZIP(), []int{697} } func (x *TrimTableResponse) GetTotalDeleted() string { @@ -48386,7 +48508,7 @@ type NvlinkNmxcEndpoint struct { func (x *NvlinkNmxcEndpoint) Reset() { *x = NvlinkNmxcEndpoint{} - mi := &file_nico_nico_proto_msgTypes[696] + mi := &file_nico_nico_proto_msgTypes[698] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48398,7 +48520,7 @@ func (x *NvlinkNmxcEndpoint) String() string { func (*NvlinkNmxcEndpoint) ProtoMessage() {} func (x *NvlinkNmxcEndpoint) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[696] + mi := &file_nico_nico_proto_msgTypes[698] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48411,7 +48533,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{696} + return file_nico_nico_proto_rawDescGZIP(), []int{698} } func (x *NvlinkNmxcEndpoint) GetChassisSerial() string { @@ -48437,7 +48559,7 @@ type NvlinkNmxcEndpointList struct { func (x *NvlinkNmxcEndpointList) Reset() { *x = NvlinkNmxcEndpointList{} - mi := &file_nico_nico_proto_msgTypes[697] + mi := &file_nico_nico_proto_msgTypes[699] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48449,7 +48571,7 @@ func (x *NvlinkNmxcEndpointList) String() string { func (*NvlinkNmxcEndpointList) ProtoMessage() {} func (x *NvlinkNmxcEndpointList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[697] + mi := &file_nico_nico_proto_msgTypes[699] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48462,7 +48584,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{697} + return file_nico_nico_proto_rawDescGZIP(), []int{699} } func (x *NvlinkNmxcEndpointList) GetEntries() []*NvlinkNmxcEndpoint { @@ -48481,7 +48603,7 @@ type DeleteNvlinkNmxcEndpointRequest struct { func (x *DeleteNvlinkNmxcEndpointRequest) Reset() { *x = DeleteNvlinkNmxcEndpointRequest{} - mi := &file_nico_nico_proto_msgTypes[698] + mi := &file_nico_nico_proto_msgTypes[700] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48493,7 +48615,7 @@ func (x *DeleteNvlinkNmxcEndpointRequest) String() string { func (*DeleteNvlinkNmxcEndpointRequest) ProtoMessage() {} func (x *DeleteNvlinkNmxcEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[698] + mi := &file_nico_nico_proto_msgTypes[700] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48506,7 +48628,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{698} + return file_nico_nico_proto_rawDescGZIP(), []int{700} } func (x *DeleteNvlinkNmxcEndpointRequest) GetChassisSerial() string { @@ -48528,7 +48650,7 @@ type CreateRemediationRequest struct { func (x *CreateRemediationRequest) Reset() { *x = CreateRemediationRequest{} - mi := &file_nico_nico_proto_msgTypes[699] + mi := &file_nico_nico_proto_msgTypes[701] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48540,7 +48662,7 @@ func (x *CreateRemediationRequest) String() string { func (*CreateRemediationRequest) ProtoMessage() {} func (x *CreateRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[699] + mi := &file_nico_nico_proto_msgTypes[701] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48553,7 +48675,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{699} + return file_nico_nico_proto_rawDescGZIP(), []int{701} } func (x *CreateRemediationRequest) GetScript() string { @@ -48586,7 +48708,7 @@ type CreateRemediationResponse struct { func (x *CreateRemediationResponse) Reset() { *x = CreateRemediationResponse{} - mi := &file_nico_nico_proto_msgTypes[700] + mi := &file_nico_nico_proto_msgTypes[702] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48598,7 +48720,7 @@ func (x *CreateRemediationResponse) String() string { func (*CreateRemediationResponse) ProtoMessage() {} func (x *CreateRemediationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[700] + mi := &file_nico_nico_proto_msgTypes[702] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48611,7 +48733,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{700} + return file_nico_nico_proto_rawDescGZIP(), []int{702} } func (x *CreateRemediationResponse) GetRemediationId() *RemediationId { @@ -48630,7 +48752,7 @@ type RemediationIdList struct { func (x *RemediationIdList) Reset() { *x = RemediationIdList{} - mi := &file_nico_nico_proto_msgTypes[701] + mi := &file_nico_nico_proto_msgTypes[703] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48642,7 +48764,7 @@ func (x *RemediationIdList) String() string { func (*RemediationIdList) ProtoMessage() {} func (x *RemediationIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[701] + mi := &file_nico_nico_proto_msgTypes[703] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48655,7 +48777,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{701} + return file_nico_nico_proto_rawDescGZIP(), []int{703} } func (x *RemediationIdList) GetRemediationIds() []*RemediationId { @@ -48674,7 +48796,7 @@ type RemediationList struct { func (x *RemediationList) Reset() { *x = RemediationList{} - mi := &file_nico_nico_proto_msgTypes[702] + mi := &file_nico_nico_proto_msgTypes[704] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48686,7 +48808,7 @@ func (x *RemediationList) String() string { func (*RemediationList) ProtoMessage() {} func (x *RemediationList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[702] + mi := &file_nico_nico_proto_msgTypes[704] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48699,7 +48821,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{702} + return file_nico_nico_proto_rawDescGZIP(), []int{704} } func (x *RemediationList) GetRemediations() []*Remediation { @@ -48725,7 +48847,7 @@ type Remediation struct { func (x *Remediation) Reset() { *x = Remediation{} - mi := &file_nico_nico_proto_msgTypes[703] + mi := &file_nico_nico_proto_msgTypes[705] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48737,7 +48859,7 @@ func (x *Remediation) String() string { func (*Remediation) ProtoMessage() {} func (x *Remediation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[703] + mi := &file_nico_nico_proto_msgTypes[705] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48750,7 +48872,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{703} + return file_nico_nico_proto_rawDescGZIP(), []int{705} } func (x *Remediation) GetId() *RemediationId { @@ -48818,7 +48940,7 @@ type ApproveRemediationRequest struct { func (x *ApproveRemediationRequest) Reset() { *x = ApproveRemediationRequest{} - mi := &file_nico_nico_proto_msgTypes[704] + mi := &file_nico_nico_proto_msgTypes[706] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48830,7 +48952,7 @@ func (x *ApproveRemediationRequest) String() string { func (*ApproveRemediationRequest) ProtoMessage() {} func (x *ApproveRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[704] + mi := &file_nico_nico_proto_msgTypes[706] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48843,7 +48965,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{704} + return file_nico_nico_proto_rawDescGZIP(), []int{706} } func (x *ApproveRemediationRequest) GetRemediationId() *RemediationId { @@ -48862,7 +48984,7 @@ type RevokeRemediationRequest struct { func (x *RevokeRemediationRequest) Reset() { *x = RevokeRemediationRequest{} - mi := &file_nico_nico_proto_msgTypes[705] + mi := &file_nico_nico_proto_msgTypes[707] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48874,7 +48996,7 @@ func (x *RevokeRemediationRequest) String() string { func (*RevokeRemediationRequest) ProtoMessage() {} func (x *RevokeRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[705] + mi := &file_nico_nico_proto_msgTypes[707] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48887,7 +49009,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{705} + return file_nico_nico_proto_rawDescGZIP(), []int{707} } func (x *RevokeRemediationRequest) GetRemediationId() *RemediationId { @@ -48906,7 +49028,7 @@ type EnableRemediationRequest struct { func (x *EnableRemediationRequest) Reset() { *x = EnableRemediationRequest{} - mi := &file_nico_nico_proto_msgTypes[706] + mi := &file_nico_nico_proto_msgTypes[708] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48918,7 +49040,7 @@ func (x *EnableRemediationRequest) String() string { func (*EnableRemediationRequest) ProtoMessage() {} func (x *EnableRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[706] + mi := &file_nico_nico_proto_msgTypes[708] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48931,7 +49053,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{706} + return file_nico_nico_proto_rawDescGZIP(), []int{708} } func (x *EnableRemediationRequest) GetRemediationId() *RemediationId { @@ -48950,7 +49072,7 @@ type DisableRemediationRequest struct { func (x *DisableRemediationRequest) Reset() { *x = DisableRemediationRequest{} - mi := &file_nico_nico_proto_msgTypes[707] + mi := &file_nico_nico_proto_msgTypes[709] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48962,7 +49084,7 @@ func (x *DisableRemediationRequest) String() string { func (*DisableRemediationRequest) ProtoMessage() {} func (x *DisableRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[707] + mi := &file_nico_nico_proto_msgTypes[709] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48975,7 +49097,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{707} + return file_nico_nico_proto_rawDescGZIP(), []int{709} } func (x *DisableRemediationRequest) GetRemediationId() *RemediationId { @@ -48997,7 +49119,7 @@ type FindAppliedRemediationIdsRequest struct { func (x *FindAppliedRemediationIdsRequest) Reset() { *x = FindAppliedRemediationIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[708] + mi := &file_nico_nico_proto_msgTypes[710] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49009,7 +49131,7 @@ func (x *FindAppliedRemediationIdsRequest) String() string { func (*FindAppliedRemediationIdsRequest) ProtoMessage() {} func (x *FindAppliedRemediationIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[708] + mi := &file_nico_nico_proto_msgTypes[710] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49022,7 +49144,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{708} + return file_nico_nico_proto_rawDescGZIP(), []int{710} } func (x *FindAppliedRemediationIdsRequest) GetRemediationId() *RemediationId { @@ -49049,7 +49171,7 @@ type AppliedRemediationIdList struct { func (x *AppliedRemediationIdList) Reset() { *x = AppliedRemediationIdList{} - mi := &file_nico_nico_proto_msgTypes[709] + mi := &file_nico_nico_proto_msgTypes[711] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49061,7 +49183,7 @@ func (x *AppliedRemediationIdList) String() string { func (*AppliedRemediationIdList) ProtoMessage() {} func (x *AppliedRemediationIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[709] + mi := &file_nico_nico_proto_msgTypes[711] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49074,7 +49196,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{709} + return file_nico_nico_proto_rawDescGZIP(), []int{711} } func (x *AppliedRemediationIdList) GetRemediationIds() []*RemediationId { @@ -49101,7 +49223,7 @@ type FindAppliedRemediationsRequest struct { func (x *FindAppliedRemediationsRequest) Reset() { *x = FindAppliedRemediationsRequest{} - mi := &file_nico_nico_proto_msgTypes[710] + mi := &file_nico_nico_proto_msgTypes[712] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49113,7 +49235,7 @@ func (x *FindAppliedRemediationsRequest) String() string { func (*FindAppliedRemediationsRequest) ProtoMessage() {} func (x *FindAppliedRemediationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[710] + mi := &file_nico_nico_proto_msgTypes[712] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49126,7 +49248,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{710} + return file_nico_nico_proto_rawDescGZIP(), []int{712} } func (x *FindAppliedRemediationsRequest) GetRemediationId() *RemediationId { @@ -49157,7 +49279,7 @@ type AppliedRemediation struct { func (x *AppliedRemediation) Reset() { *x = AppliedRemediation{} - mi := &file_nico_nico_proto_msgTypes[711] + mi := &file_nico_nico_proto_msgTypes[713] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49169,7 +49291,7 @@ func (x *AppliedRemediation) String() string { func (*AppliedRemediation) ProtoMessage() {} func (x *AppliedRemediation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[711] + mi := &file_nico_nico_proto_msgTypes[713] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49182,7 +49304,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{711} + return file_nico_nico_proto_rawDescGZIP(), []int{713} } func (x *AppliedRemediation) GetRemediationId() *RemediationId { @@ -49236,7 +49358,7 @@ type AppliedRemediationList struct { func (x *AppliedRemediationList) Reset() { *x = AppliedRemediationList{} - mi := &file_nico_nico_proto_msgTypes[712] + mi := &file_nico_nico_proto_msgTypes[714] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49248,7 +49370,7 @@ func (x *AppliedRemediationList) String() string { func (*AppliedRemediationList) ProtoMessage() {} func (x *AppliedRemediationList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[712] + mi := &file_nico_nico_proto_msgTypes[714] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49261,7 +49383,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{712} + return file_nico_nico_proto_rawDescGZIP(), []int{714} } func (x *AppliedRemediationList) GetAppliedRemediations() []*AppliedRemediation { @@ -49280,7 +49402,7 @@ type GetNextRemediationForMachineRequest struct { func (x *GetNextRemediationForMachineRequest) Reset() { *x = GetNextRemediationForMachineRequest{} - mi := &file_nico_nico_proto_msgTypes[713] + mi := &file_nico_nico_proto_msgTypes[715] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49292,7 +49414,7 @@ func (x *GetNextRemediationForMachineRequest) String() string { func (*GetNextRemediationForMachineRequest) ProtoMessage() {} func (x *GetNextRemediationForMachineRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[713] + mi := &file_nico_nico_proto_msgTypes[715] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49305,7 +49427,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{713} + return file_nico_nico_proto_rawDescGZIP(), []int{715} } func (x *GetNextRemediationForMachineRequest) GetDpuMachineId() *MachineId { @@ -49325,7 +49447,7 @@ type GetNextRemediationForMachineResponse struct { func (x *GetNextRemediationForMachineResponse) Reset() { *x = GetNextRemediationForMachineResponse{} - mi := &file_nico_nico_proto_msgTypes[714] + mi := &file_nico_nico_proto_msgTypes[716] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49337,7 +49459,7 @@ func (x *GetNextRemediationForMachineResponse) String() string { func (*GetNextRemediationForMachineResponse) ProtoMessage() {} func (x *GetNextRemediationForMachineResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[714] + mi := &file_nico_nico_proto_msgTypes[716] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49350,7 +49472,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{714} + return file_nico_nico_proto_rawDescGZIP(), []int{716} } func (x *GetNextRemediationForMachineResponse) GetRemediationId() *RemediationId { @@ -49378,7 +49500,7 @@ type RemediationAppliedRequest struct { func (x *RemediationAppliedRequest) Reset() { *x = RemediationAppliedRequest{} - mi := &file_nico_nico_proto_msgTypes[715] + mi := &file_nico_nico_proto_msgTypes[717] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49390,7 +49512,7 @@ func (x *RemediationAppliedRequest) String() string { func (*RemediationAppliedRequest) ProtoMessage() {} func (x *RemediationAppliedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[715] + mi := &file_nico_nico_proto_msgTypes[717] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49403,7 +49525,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{715} + return file_nico_nico_proto_rawDescGZIP(), []int{717} } func (x *RemediationAppliedRequest) GetRemediationId() *RemediationId { @@ -49437,7 +49559,7 @@ type RemediationApplicationStatus struct { func (x *RemediationApplicationStatus) Reset() { *x = RemediationApplicationStatus{} - mi := &file_nico_nico_proto_msgTypes[716] + mi := &file_nico_nico_proto_msgTypes[718] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49449,7 +49571,7 @@ func (x *RemediationApplicationStatus) String() string { func (*RemediationApplicationStatus) ProtoMessage() {} func (x *RemediationApplicationStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[716] + mi := &file_nico_nico_proto_msgTypes[718] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49462,7 +49584,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{716} + return file_nico_nico_proto_rawDescGZIP(), []int{718} } func (x *RemediationApplicationStatus) GetSucceeded() bool { @@ -49490,7 +49612,7 @@ type SetPrimaryDpuRequest struct { func (x *SetPrimaryDpuRequest) Reset() { *x = SetPrimaryDpuRequest{} - mi := &file_nico_nico_proto_msgTypes[717] + mi := &file_nico_nico_proto_msgTypes[719] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49502,7 +49624,7 @@ func (x *SetPrimaryDpuRequest) String() string { func (*SetPrimaryDpuRequest) ProtoMessage() {} func (x *SetPrimaryDpuRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[717] + mi := &file_nico_nico_proto_msgTypes[719] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49515,7 +49637,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{717} + return file_nico_nico_proto_rawDescGZIP(), []int{719} } func (x *SetPrimaryDpuRequest) GetHostMachineId() *MachineId { @@ -49550,7 +49672,7 @@ type SetPrimaryInterfaceRequest struct { func (x *SetPrimaryInterfaceRequest) Reset() { *x = SetPrimaryInterfaceRequest{} - mi := &file_nico_nico_proto_msgTypes[718] + mi := &file_nico_nico_proto_msgTypes[720] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49562,7 +49684,7 @@ func (x *SetPrimaryInterfaceRequest) String() string { func (*SetPrimaryInterfaceRequest) ProtoMessage() {} func (x *SetPrimaryInterfaceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[718] + mi := &file_nico_nico_proto_msgTypes[720] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49575,7 +49697,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{718} + return file_nico_nico_proto_rawDescGZIP(), []int{720} } func (x *SetPrimaryInterfaceRequest) GetHostMachineId() *MachineId { @@ -49609,7 +49731,7 @@ type UsernamePassword struct { func (x *UsernamePassword) Reset() { *x = UsernamePassword{} - mi := &file_nico_nico_proto_msgTypes[719] + mi := &file_nico_nico_proto_msgTypes[721] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49621,7 +49743,7 @@ func (x *UsernamePassword) String() string { func (*UsernamePassword) ProtoMessage() {} func (x *UsernamePassword) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[719] + mi := &file_nico_nico_proto_msgTypes[721] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49634,7 +49756,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{719} + return file_nico_nico_proto_rawDescGZIP(), []int{721} } func (x *UsernamePassword) GetUsername() string { @@ -49660,7 +49782,7 @@ type SessionToken struct { func (x *SessionToken) Reset() { *x = SessionToken{} - mi := &file_nico_nico_proto_msgTypes[720] + mi := &file_nico_nico_proto_msgTypes[722] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49672,7 +49794,7 @@ func (x *SessionToken) String() string { func (*SessionToken) ProtoMessage() {} func (x *SessionToken) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[720] + mi := &file_nico_nico_proto_msgTypes[722] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49685,7 +49807,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{720} + return file_nico_nico_proto_rawDescGZIP(), []int{722} } func (x *SessionToken) GetToken() string { @@ -49708,7 +49830,7 @@ type DpuExtensionServiceCredential struct { func (x *DpuExtensionServiceCredential) Reset() { *x = DpuExtensionServiceCredential{} - mi := &file_nico_nico_proto_msgTypes[721] + mi := &file_nico_nico_proto_msgTypes[723] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49720,7 +49842,7 @@ func (x *DpuExtensionServiceCredential) String() string { func (*DpuExtensionServiceCredential) ProtoMessage() {} func (x *DpuExtensionServiceCredential) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[721] + mi := &file_nico_nico_proto_msgTypes[723] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49733,7 +49855,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{721} + return file_nico_nico_proto_rawDescGZIP(), []int{723} } func (x *DpuExtensionServiceCredential) GetRegistryUrl() string { @@ -49782,7 +49904,7 @@ type DpuExtensionServiceVersionInfo struct { func (x *DpuExtensionServiceVersionInfo) Reset() { *x = DpuExtensionServiceVersionInfo{} - mi := &file_nico_nico_proto_msgTypes[722] + mi := &file_nico_nico_proto_msgTypes[724] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49794,7 +49916,7 @@ func (x *DpuExtensionServiceVersionInfo) String() string { func (*DpuExtensionServiceVersionInfo) ProtoMessage() {} func (x *DpuExtensionServiceVersionInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[722] + mi := &file_nico_nico_proto_msgTypes[724] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49807,7 +49929,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{722} + return file_nico_nico_proto_rawDescGZIP(), []int{724} } func (x *DpuExtensionServiceVersionInfo) GetVersion() string { @@ -49868,7 +49990,7 @@ type DpuExtensionService struct { func (x *DpuExtensionService) Reset() { *x = DpuExtensionService{} - mi := &file_nico_nico_proto_msgTypes[723] + mi := &file_nico_nico_proto_msgTypes[725] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49880,7 +50002,7 @@ func (x *DpuExtensionService) String() string { func (*DpuExtensionService) ProtoMessage() {} func (x *DpuExtensionService) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[723] + mi := &file_nico_nico_proto_msgTypes[725] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49893,7 +50015,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{723} + return file_nico_nico_proto_rawDescGZIP(), []int{725} } func (x *DpuExtensionService) GetServiceId() string { @@ -49986,7 +50108,7 @@ type CreateDpuExtensionServiceRequest struct { func (x *CreateDpuExtensionServiceRequest) Reset() { *x = CreateDpuExtensionServiceRequest{} - mi := &file_nico_nico_proto_msgTypes[724] + mi := &file_nico_nico_proto_msgTypes[726] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49998,7 +50120,7 @@ func (x *CreateDpuExtensionServiceRequest) String() string { func (*CreateDpuExtensionServiceRequest) ProtoMessage() {} func (x *CreateDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[724] + mi := &file_nico_nico_proto_msgTypes[726] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50011,7 +50133,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{724} + return file_nico_nico_proto_rawDescGZIP(), []int{726} } func (x *CreateDpuExtensionServiceRequest) GetServiceId() string { @@ -50093,7 +50215,7 @@ type UpdateDpuExtensionServiceRequest struct { func (x *UpdateDpuExtensionServiceRequest) Reset() { *x = UpdateDpuExtensionServiceRequest{} - mi := &file_nico_nico_proto_msgTypes[725] + mi := &file_nico_nico_proto_msgTypes[727] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50105,7 +50227,7 @@ func (x *UpdateDpuExtensionServiceRequest) String() string { func (*UpdateDpuExtensionServiceRequest) ProtoMessage() {} func (x *UpdateDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[725] + mi := &file_nico_nico_proto_msgTypes[727] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50118,7 +50240,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{725} + return file_nico_nico_proto_rawDescGZIP(), []int{727} } func (x *UpdateDpuExtensionServiceRequest) GetServiceId() string { @@ -50183,7 +50305,7 @@ type DeleteDpuExtensionServiceRequest struct { func (x *DeleteDpuExtensionServiceRequest) Reset() { *x = DeleteDpuExtensionServiceRequest{} - mi := &file_nico_nico_proto_msgTypes[726] + mi := &file_nico_nico_proto_msgTypes[728] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50195,7 +50317,7 @@ func (x *DeleteDpuExtensionServiceRequest) String() string { func (*DeleteDpuExtensionServiceRequest) ProtoMessage() {} func (x *DeleteDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[726] + mi := &file_nico_nico_proto_msgTypes[728] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50208,7 +50330,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{726} + return file_nico_nico_proto_rawDescGZIP(), []int{728} } func (x *DeleteDpuExtensionServiceRequest) GetServiceId() string { @@ -50233,7 +50355,7 @@ type DeleteDpuExtensionServiceResponse struct { func (x *DeleteDpuExtensionServiceResponse) Reset() { *x = DeleteDpuExtensionServiceResponse{} - mi := &file_nico_nico_proto_msgTypes[727] + mi := &file_nico_nico_proto_msgTypes[729] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50245,7 +50367,7 @@ func (x *DeleteDpuExtensionServiceResponse) String() string { func (*DeleteDpuExtensionServiceResponse) ProtoMessage() {} func (x *DeleteDpuExtensionServiceResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[727] + mi := &file_nico_nico_proto_msgTypes[729] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50258,7 +50380,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{727} + return file_nico_nico_proto_rawDescGZIP(), []int{729} } type DpuExtensionServiceSearchFilter struct { @@ -50272,7 +50394,7 @@ type DpuExtensionServiceSearchFilter struct { func (x *DpuExtensionServiceSearchFilter) Reset() { *x = DpuExtensionServiceSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[728] + mi := &file_nico_nico_proto_msgTypes[730] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50284,7 +50406,7 @@ func (x *DpuExtensionServiceSearchFilter) String() string { func (*DpuExtensionServiceSearchFilter) ProtoMessage() {} func (x *DpuExtensionServiceSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[728] + mi := &file_nico_nico_proto_msgTypes[730] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50297,7 +50419,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{728} + return file_nico_nico_proto_rawDescGZIP(), []int{730} } func (x *DpuExtensionServiceSearchFilter) GetServiceType() DpuExtensionServiceType { @@ -50330,7 +50452,7 @@ type DpuExtensionServiceIdList struct { func (x *DpuExtensionServiceIdList) Reset() { *x = DpuExtensionServiceIdList{} - mi := &file_nico_nico_proto_msgTypes[729] + mi := &file_nico_nico_proto_msgTypes[731] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50342,7 +50464,7 @@ func (x *DpuExtensionServiceIdList) String() string { func (*DpuExtensionServiceIdList) ProtoMessage() {} func (x *DpuExtensionServiceIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[729] + mi := &file_nico_nico_proto_msgTypes[731] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50355,7 +50477,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{729} + return file_nico_nico_proto_rawDescGZIP(), []int{731} } func (x *DpuExtensionServiceIdList) GetServiceIds() []string { @@ -50374,7 +50496,7 @@ type DpuExtensionServicesByIdsRequest struct { func (x *DpuExtensionServicesByIdsRequest) Reset() { *x = DpuExtensionServicesByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[730] + mi := &file_nico_nico_proto_msgTypes[732] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50386,7 +50508,7 @@ func (x *DpuExtensionServicesByIdsRequest) String() string { func (*DpuExtensionServicesByIdsRequest) ProtoMessage() {} func (x *DpuExtensionServicesByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[730] + mi := &file_nico_nico_proto_msgTypes[732] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50399,7 +50521,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{730} + return file_nico_nico_proto_rawDescGZIP(), []int{732} } func (x *DpuExtensionServicesByIdsRequest) GetServiceIds() []string { @@ -50418,7 +50540,7 @@ type DpuExtensionServiceList struct { func (x *DpuExtensionServiceList) Reset() { *x = DpuExtensionServiceList{} - mi := &file_nico_nico_proto_msgTypes[731] + mi := &file_nico_nico_proto_msgTypes[733] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50430,7 +50552,7 @@ func (x *DpuExtensionServiceList) String() string { func (*DpuExtensionServiceList) ProtoMessage() {} func (x *DpuExtensionServiceList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[731] + mi := &file_nico_nico_proto_msgTypes[733] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50443,7 +50565,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{731} + return file_nico_nico_proto_rawDescGZIP(), []int{733} } func (x *DpuExtensionServiceList) GetServices() []*DpuExtensionService { @@ -50464,7 +50586,7 @@ type GetDpuExtensionServiceVersionsInfoRequest struct { func (x *GetDpuExtensionServiceVersionsInfoRequest) Reset() { *x = GetDpuExtensionServiceVersionsInfoRequest{} - mi := &file_nico_nico_proto_msgTypes[732] + mi := &file_nico_nico_proto_msgTypes[734] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50476,7 +50598,7 @@ func (x *GetDpuExtensionServiceVersionsInfoRequest) String() string { func (*GetDpuExtensionServiceVersionsInfoRequest) ProtoMessage() {} func (x *GetDpuExtensionServiceVersionsInfoRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[732] + mi := &file_nico_nico_proto_msgTypes[734] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50489,7 +50611,7 @@ func (x *GetDpuExtensionServiceVersionsInfoRequest) ProtoReflect() protoreflect. // Deprecated: Use GetDpuExtensionServiceVersionsInfoRequest.ProtoReflect.Descriptor instead. func (*GetDpuExtensionServiceVersionsInfoRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{732} + return file_nico_nico_proto_rawDescGZIP(), []int{734} } func (x *GetDpuExtensionServiceVersionsInfoRequest) GetServiceId() string { @@ -50515,7 +50637,7 @@ type DpuExtensionServiceVersionInfoList struct { func (x *DpuExtensionServiceVersionInfoList) Reset() { *x = DpuExtensionServiceVersionInfoList{} - mi := &file_nico_nico_proto_msgTypes[733] + mi := &file_nico_nico_proto_msgTypes[735] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50527,7 +50649,7 @@ func (x *DpuExtensionServiceVersionInfoList) String() string { func (*DpuExtensionServiceVersionInfoList) ProtoMessage() {} func (x *DpuExtensionServiceVersionInfoList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[733] + mi := &file_nico_nico_proto_msgTypes[735] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50540,7 +50662,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{733} + return file_nico_nico_proto_rawDescGZIP(), []int{735} } func (x *DpuExtensionServiceVersionInfoList) GetVersionInfos() []*DpuExtensionServiceVersionInfo { @@ -50560,7 +50682,7 @@ type FindInstancesByDpuExtensionServiceRequest struct { func (x *FindInstancesByDpuExtensionServiceRequest) Reset() { *x = FindInstancesByDpuExtensionServiceRequest{} - mi := &file_nico_nico_proto_msgTypes[734] + mi := &file_nico_nico_proto_msgTypes[736] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50572,7 +50694,7 @@ func (x *FindInstancesByDpuExtensionServiceRequest) String() string { func (*FindInstancesByDpuExtensionServiceRequest) ProtoMessage() {} func (x *FindInstancesByDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[734] + mi := &file_nico_nico_proto_msgTypes[736] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50585,7 +50707,7 @@ func (x *FindInstancesByDpuExtensionServiceRequest) ProtoReflect() protoreflect. // Deprecated: Use FindInstancesByDpuExtensionServiceRequest.ProtoReflect.Descriptor instead. func (*FindInstancesByDpuExtensionServiceRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{734} + return file_nico_nico_proto_rawDescGZIP(), []int{736} } func (x *FindInstancesByDpuExtensionServiceRequest) GetServiceId() string { @@ -50611,7 +50733,7 @@ type FindInstancesByDpuExtensionServiceResponse struct { func (x *FindInstancesByDpuExtensionServiceResponse) Reset() { *x = FindInstancesByDpuExtensionServiceResponse{} - mi := &file_nico_nico_proto_msgTypes[735] + mi := &file_nico_nico_proto_msgTypes[737] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50623,7 +50745,7 @@ func (x *FindInstancesByDpuExtensionServiceResponse) String() string { func (*FindInstancesByDpuExtensionServiceResponse) ProtoMessage() {} func (x *FindInstancesByDpuExtensionServiceResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[735] + mi := &file_nico_nico_proto_msgTypes[737] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50636,7 +50758,7 @@ func (x *FindInstancesByDpuExtensionServiceResponse) ProtoReflect() protoreflect // Deprecated: Use FindInstancesByDpuExtensionServiceResponse.ProtoReflect.Descriptor instead. func (*FindInstancesByDpuExtensionServiceResponse) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{735} + return file_nico_nico_proto_rawDescGZIP(), []int{737} } func (x *FindInstancesByDpuExtensionServiceResponse) GetInstances() []*InstanceDpuExtensionServiceInfo { @@ -50658,7 +50780,7 @@ type InstanceDpuExtensionServiceInfo struct { func (x *InstanceDpuExtensionServiceInfo) Reset() { *x = InstanceDpuExtensionServiceInfo{} - mi := &file_nico_nico_proto_msgTypes[736] + mi := &file_nico_nico_proto_msgTypes[738] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50670,7 +50792,7 @@ func (x *InstanceDpuExtensionServiceInfo) String() string { func (*InstanceDpuExtensionServiceInfo) ProtoMessage() {} func (x *InstanceDpuExtensionServiceInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[736] + mi := &file_nico_nico_proto_msgTypes[738] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50683,7 +50805,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{736} + return file_nico_nico_proto_rawDescGZIP(), []int{738} } func (x *InstanceDpuExtensionServiceInfo) GetInstanceId() string { @@ -50724,7 +50846,7 @@ type DpuExtensionServiceObservabilityConfigPrometheus struct { func (x *DpuExtensionServiceObservabilityConfigPrometheus) Reset() { *x = DpuExtensionServiceObservabilityConfigPrometheus{} - mi := &file_nico_nico_proto_msgTypes[737] + mi := &file_nico_nico_proto_msgTypes[739] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50736,7 +50858,7 @@ func (x *DpuExtensionServiceObservabilityConfigPrometheus) String() string { func (*DpuExtensionServiceObservabilityConfigPrometheus) ProtoMessage() {} func (x *DpuExtensionServiceObservabilityConfigPrometheus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[737] + mi := &file_nico_nico_proto_msgTypes[739] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50749,7 +50871,7 @@ func (x *DpuExtensionServiceObservabilityConfigPrometheus) ProtoReflect() protor // Deprecated: Use DpuExtensionServiceObservabilityConfigPrometheus.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceObservabilityConfigPrometheus) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{737} + return file_nico_nico_proto_rawDescGZIP(), []int{739} } func (x *DpuExtensionServiceObservabilityConfigPrometheus) GetScrapeIntervalSeconds() uint32 { @@ -50775,7 +50897,7 @@ type DpuExtensionServiceObservabilityConfigLogging struct { func (x *DpuExtensionServiceObservabilityConfigLogging) Reset() { *x = DpuExtensionServiceObservabilityConfigLogging{} - mi := &file_nico_nico_proto_msgTypes[738] + mi := &file_nico_nico_proto_msgTypes[740] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50787,7 +50909,7 @@ func (x *DpuExtensionServiceObservabilityConfigLogging) String() string { func (*DpuExtensionServiceObservabilityConfigLogging) ProtoMessage() {} func (x *DpuExtensionServiceObservabilityConfigLogging) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[738] + mi := &file_nico_nico_proto_msgTypes[740] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50800,7 +50922,7 @@ func (x *DpuExtensionServiceObservabilityConfigLogging) ProtoReflect() protorefl // Deprecated: Use DpuExtensionServiceObservabilityConfigLogging.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceObservabilityConfigLogging) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{738} + return file_nico_nico_proto_rawDescGZIP(), []int{740} } func (x *DpuExtensionServiceObservabilityConfigLogging) GetPath() string { @@ -50827,7 +50949,7 @@ type DpuExtensionServiceObservabilityConfig struct { func (x *DpuExtensionServiceObservabilityConfig) Reset() { *x = DpuExtensionServiceObservabilityConfig{} - mi := &file_nico_nico_proto_msgTypes[739] + mi := &file_nico_nico_proto_msgTypes[741] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50839,7 +50961,7 @@ func (x *DpuExtensionServiceObservabilityConfig) String() string { func (*DpuExtensionServiceObservabilityConfig) ProtoMessage() {} func (x *DpuExtensionServiceObservabilityConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[739] + mi := &file_nico_nico_proto_msgTypes[741] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50852,7 +50974,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{739} + return file_nico_nico_proto_rawDescGZIP(), []int{741} } func (x *DpuExtensionServiceObservabilityConfig) GetName() string { @@ -50914,7 +51036,7 @@ type DpuExtensionServiceObservability struct { func (x *DpuExtensionServiceObservability) Reset() { *x = DpuExtensionServiceObservability{} - mi := &file_nico_nico_proto_msgTypes[740] + mi := &file_nico_nico_proto_msgTypes[742] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50926,7 +51048,7 @@ func (x *DpuExtensionServiceObservability) String() string { func (*DpuExtensionServiceObservability) ProtoMessage() {} func (x *DpuExtensionServiceObservability) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[740] + mi := &file_nico_nico_proto_msgTypes[742] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50939,7 +51061,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{740} + return file_nico_nico_proto_rawDescGZIP(), []int{742} } func (x *DpuExtensionServiceObservability) GetConfigs() []*DpuExtensionServiceObservabilityConfig { @@ -50984,7 +51106,7 @@ type ScoutStreamApiBoundMessage struct { func (x *ScoutStreamApiBoundMessage) Reset() { *x = ScoutStreamApiBoundMessage{} - mi := &file_nico_nico_proto_msgTypes[741] + mi := &file_nico_nico_proto_msgTypes[743] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50996,7 +51118,7 @@ func (x *ScoutStreamApiBoundMessage) String() string { func (*ScoutStreamApiBoundMessage) ProtoMessage() {} func (x *ScoutStreamApiBoundMessage) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[741] + mi := &file_nico_nico_proto_msgTypes[743] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51009,7 +51131,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{741} + return file_nico_nico_proto_rawDescGZIP(), []int{743} } func (x *ScoutStreamApiBoundMessage) GetFlowUuid() *UUID { @@ -51279,7 +51401,7 @@ type ScoutStreamScoutBoundMessage struct { func (x *ScoutStreamScoutBoundMessage) Reset() { *x = ScoutStreamScoutBoundMessage{} - mi := &file_nico_nico_proto_msgTypes[742] + mi := &file_nico_nico_proto_msgTypes[744] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51291,7 +51413,7 @@ func (x *ScoutStreamScoutBoundMessage) String() string { func (*ScoutStreamScoutBoundMessage) ProtoMessage() {} func (x *ScoutStreamScoutBoundMessage) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[742] + mi := &file_nico_nico_proto_msgTypes[744] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51304,7 +51426,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{742} + return file_nico_nico_proto_rawDescGZIP(), []int{744} } func (x *ScoutStreamScoutBoundMessage) GetFlowUuid() *UUID { @@ -51560,7 +51682,7 @@ type ScoutStreamInitRequest struct { func (x *ScoutStreamInitRequest) Reset() { *x = ScoutStreamInitRequest{} - mi := &file_nico_nico_proto_msgTypes[743] + mi := &file_nico_nico_proto_msgTypes[745] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51572,7 +51694,7 @@ func (x *ScoutStreamInitRequest) String() string { func (*ScoutStreamInitRequest) ProtoMessage() {} func (x *ScoutStreamInitRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[743] + mi := &file_nico_nico_proto_msgTypes[745] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51585,7 +51707,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{743} + return file_nico_nico_proto_rawDescGZIP(), []int{745} } func (x *ScoutStreamInitRequest) GetMachineId() *MachineId { @@ -51605,7 +51727,7 @@ type ScoutStreamShowConnectionsRequest struct { func (x *ScoutStreamShowConnectionsRequest) Reset() { *x = ScoutStreamShowConnectionsRequest{} - mi := &file_nico_nico_proto_msgTypes[744] + mi := &file_nico_nico_proto_msgTypes[746] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51617,7 +51739,7 @@ func (x *ScoutStreamShowConnectionsRequest) String() string { func (*ScoutStreamShowConnectionsRequest) ProtoMessage() {} func (x *ScoutStreamShowConnectionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[744] + mi := &file_nico_nico_proto_msgTypes[746] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51630,7 +51752,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{744} + return file_nico_nico_proto_rawDescGZIP(), []int{746} } // ShowConnectionsResponse is the response containing active @@ -51644,7 +51766,7 @@ type ScoutStreamShowConnectionsResponse struct { func (x *ScoutStreamShowConnectionsResponse) Reset() { *x = ScoutStreamShowConnectionsResponse{} - mi := &file_nico_nico_proto_msgTypes[745] + mi := &file_nico_nico_proto_msgTypes[747] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51656,7 +51778,7 @@ func (x *ScoutStreamShowConnectionsResponse) String() string { func (*ScoutStreamShowConnectionsResponse) ProtoMessage() {} func (x *ScoutStreamShowConnectionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[745] + mi := &file_nico_nico_proto_msgTypes[747] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51669,7 +51791,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{745} + return file_nico_nico_proto_rawDescGZIP(), []int{747} } func (x *ScoutStreamShowConnectionsResponse) GetScoutStreamConnections() []*ScoutStreamConnectionInfo { @@ -51690,7 +51812,7 @@ type ScoutStreamDisconnectRequest struct { func (x *ScoutStreamDisconnectRequest) Reset() { *x = ScoutStreamDisconnectRequest{} - mi := &file_nico_nico_proto_msgTypes[746] + mi := &file_nico_nico_proto_msgTypes[748] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51702,7 +51824,7 @@ func (x *ScoutStreamDisconnectRequest) String() string { func (*ScoutStreamDisconnectRequest) ProtoMessage() {} func (x *ScoutStreamDisconnectRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[746] + mi := &file_nico_nico_proto_msgTypes[748] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51715,7 +51837,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{746} + return file_nico_nico_proto_rawDescGZIP(), []int{748} } func (x *ScoutStreamDisconnectRequest) GetMachineId() *MachineId { @@ -51737,7 +51859,7 @@ type ScoutStreamDisconnectResponse struct { func (x *ScoutStreamDisconnectResponse) Reset() { *x = ScoutStreamDisconnectResponse{} - mi := &file_nico_nico_proto_msgTypes[747] + mi := &file_nico_nico_proto_msgTypes[749] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51749,7 +51871,7 @@ func (x *ScoutStreamDisconnectResponse) String() string { func (*ScoutStreamDisconnectResponse) ProtoMessage() {} func (x *ScoutStreamDisconnectResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[747] + mi := &file_nico_nico_proto_msgTypes[749] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51762,7 +51884,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{747} + return file_nico_nico_proto_rawDescGZIP(), []int{749} } func (x *ScoutStreamDisconnectResponse) GetMachineId() *MachineId { @@ -51791,7 +51913,7 @@ type ScoutStreamAdminPingRequest struct { func (x *ScoutStreamAdminPingRequest) Reset() { *x = ScoutStreamAdminPingRequest{} - mi := &file_nico_nico_proto_msgTypes[748] + mi := &file_nico_nico_proto_msgTypes[750] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51803,7 +51925,7 @@ func (x *ScoutStreamAdminPingRequest) String() string { func (*ScoutStreamAdminPingRequest) ProtoMessage() {} func (x *ScoutStreamAdminPingRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[748] + mi := &file_nico_nico_proto_msgTypes[750] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51816,7 +51938,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{748} + return file_nico_nico_proto_rawDescGZIP(), []int{750} } func (x *ScoutStreamAdminPingRequest) GetMachineId() *MachineId { @@ -51837,7 +51959,7 @@ type ScoutStreamAdminPingResponse struct { func (x *ScoutStreamAdminPingResponse) Reset() { *x = ScoutStreamAdminPingResponse{} - mi := &file_nico_nico_proto_msgTypes[749] + mi := &file_nico_nico_proto_msgTypes[751] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51849,7 +51971,7 @@ func (x *ScoutStreamAdminPingResponse) String() string { func (*ScoutStreamAdminPingResponse) ProtoMessage() {} func (x *ScoutStreamAdminPingResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[749] + mi := &file_nico_nico_proto_msgTypes[751] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51862,7 +51984,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{749} + return file_nico_nico_proto_rawDescGZIP(), []int{751} } func (x *ScoutStreamAdminPingResponse) GetPong() string { @@ -51883,7 +52005,7 @@ type ScoutStreamAgentPingRequest struct { func (x *ScoutStreamAgentPingRequest) Reset() { *x = ScoutStreamAgentPingRequest{} - mi := &file_nico_nico_proto_msgTypes[750] + mi := &file_nico_nico_proto_msgTypes[752] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51895,7 +52017,7 @@ func (x *ScoutStreamAgentPingRequest) String() string { func (*ScoutStreamAgentPingRequest) ProtoMessage() {} func (x *ScoutStreamAgentPingRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[750] + mi := &file_nico_nico_proto_msgTypes[752] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51908,7 +52030,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{750} + return file_nico_nico_proto_rawDescGZIP(), []int{752} } // ScoutStreamAgentPingResponse is hopefully a response from @@ -51926,7 +52048,7 @@ type ScoutStreamAgentPingResponse struct { func (x *ScoutStreamAgentPingResponse) Reset() { *x = ScoutStreamAgentPingResponse{} - mi := &file_nico_nico_proto_msgTypes[751] + mi := &file_nico_nico_proto_msgTypes[753] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51938,7 +52060,7 @@ func (x *ScoutStreamAgentPingResponse) String() string { func (*ScoutStreamAgentPingResponse) ProtoMessage() {} func (x *ScoutStreamAgentPingResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[751] + mi := &file_nico_nico_proto_msgTypes[753] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51951,7 +52073,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{751} + return file_nico_nico_proto_rawDescGZIP(), []int{753} } func (x *ScoutStreamAgentPingResponse) GetReply() isScoutStreamAgentPingResponse_Reply { @@ -52012,7 +52134,7 @@ type ScoutStreamConnectionInfo struct { func (x *ScoutStreamConnectionInfo) Reset() { *x = ScoutStreamConnectionInfo{} - mi := &file_nico_nico_proto_msgTypes[752] + mi := &file_nico_nico_proto_msgTypes[754] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52024,7 +52146,7 @@ func (x *ScoutStreamConnectionInfo) String() string { func (*ScoutStreamConnectionInfo) ProtoMessage() {} func (x *ScoutStreamConnectionInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[752] + mi := &file_nico_nico_proto_msgTypes[754] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52037,7 +52159,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{752} + return file_nico_nico_proto_rawDescGZIP(), []int{754} } func (x *ScoutStreamConnectionInfo) GetMachineId() *MachineId { @@ -52074,7 +52196,7 @@ type ScoutStreamError struct { func (x *ScoutStreamError) Reset() { *x = ScoutStreamError{} - mi := &file_nico_nico_proto_msgTypes[753] + mi := &file_nico_nico_proto_msgTypes[755] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52086,7 +52208,7 @@ func (x *ScoutStreamError) String() string { func (*ScoutStreamError) ProtoMessage() {} func (x *ScoutStreamError) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[753] + mi := &file_nico_nico_proto_msgTypes[755] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52099,7 +52221,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{753} + return file_nico_nico_proto_rawDescGZIP(), []int{755} } func (x *ScoutStreamError) GetStatus() ScoutStreamErrorStatus { @@ -52129,7 +52251,7 @@ type PrefixFilterPolicyEntry struct { func (x *PrefixFilterPolicyEntry) Reset() { *x = PrefixFilterPolicyEntry{} - mi := &file_nico_nico_proto_msgTypes[754] + mi := &file_nico_nico_proto_msgTypes[756] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52141,7 +52263,7 @@ func (x *PrefixFilterPolicyEntry) String() string { func (*PrefixFilterPolicyEntry) ProtoMessage() {} func (x *PrefixFilterPolicyEntry) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[754] + mi := &file_nico_nico_proto_msgTypes[756] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52154,7 +52276,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{754} + return file_nico_nico_proto_rawDescGZIP(), []int{756} } func (x *PrefixFilterPolicyEntry) GetPrefix() string { @@ -52189,7 +52311,7 @@ type RoutingProfile struct { func (x *RoutingProfile) Reset() { *x = RoutingProfile{} - mi := &file_nico_nico_proto_msgTypes[755] + mi := &file_nico_nico_proto_msgTypes[757] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52201,7 +52323,7 @@ func (x *RoutingProfile) String() string { func (*RoutingProfile) ProtoMessage() {} func (x *RoutingProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[755] + mi := &file_nico_nico_proto_msgTypes[757] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52214,7 +52336,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{755} + return file_nico_nico_proto_rawDescGZIP(), []int{757} } func (x *RoutingProfile) GetRouteTargetImports() []*RouteTarget { @@ -52280,7 +52402,7 @@ type DomainLegacy struct { func (x *DomainLegacy) Reset() { *x = DomainLegacy{} - mi := &file_nico_nico_proto_msgTypes[756] + mi := &file_nico_nico_proto_msgTypes[758] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52292,7 +52414,7 @@ func (x *DomainLegacy) String() string { func (*DomainLegacy) ProtoMessage() {} func (x *DomainLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[756] + mi := &file_nico_nico_proto_msgTypes[758] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52305,7 +52427,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{756} + return file_nico_nico_proto_rawDescGZIP(), []int{758} } func (x *DomainLegacy) GetId() *DomainId { @@ -52353,7 +52475,7 @@ type DomainListLegacy struct { func (x *DomainListLegacy) Reset() { *x = DomainListLegacy{} - mi := &file_nico_nico_proto_msgTypes[757] + mi := &file_nico_nico_proto_msgTypes[759] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52365,7 +52487,7 @@ func (x *DomainListLegacy) String() string { func (*DomainListLegacy) ProtoMessage() {} func (x *DomainListLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[757] + mi := &file_nico_nico_proto_msgTypes[759] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52378,7 +52500,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{757} + return file_nico_nico_proto_rawDescGZIP(), []int{759} } func (x *DomainListLegacy) GetDomains() []*DomainLegacy { @@ -52398,7 +52520,7 @@ type DomainDeletionLegacy struct { func (x *DomainDeletionLegacy) Reset() { *x = DomainDeletionLegacy{} - mi := &file_nico_nico_proto_msgTypes[758] + mi := &file_nico_nico_proto_msgTypes[760] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52410,7 +52532,7 @@ func (x *DomainDeletionLegacy) String() string { func (*DomainDeletionLegacy) ProtoMessage() {} func (x *DomainDeletionLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[758] + mi := &file_nico_nico_proto_msgTypes[760] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52423,7 +52545,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{758} + return file_nico_nico_proto_rawDescGZIP(), []int{760} } func (x *DomainDeletionLegacy) GetId() *DomainId { @@ -52442,7 +52564,7 @@ type DomainDeletionResultLegacy struct { func (x *DomainDeletionResultLegacy) Reset() { *x = DomainDeletionResultLegacy{} - mi := &file_nico_nico_proto_msgTypes[759] + mi := &file_nico_nico_proto_msgTypes[761] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52454,7 +52576,7 @@ func (x *DomainDeletionResultLegacy) String() string { func (*DomainDeletionResultLegacy) ProtoMessage() {} func (x *DomainDeletionResultLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[759] + mi := &file_nico_nico_proto_msgTypes[761] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52467,7 +52589,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{759} + return file_nico_nico_proto_rawDescGZIP(), []int{761} } // DEPRECATED: Use dns.DomainSearchQuery instead @@ -52481,7 +52603,7 @@ type DomainSearchQueryLegacy struct { func (x *DomainSearchQueryLegacy) Reset() { *x = DomainSearchQueryLegacy{} - mi := &file_nico_nico_proto_msgTypes[760] + mi := &file_nico_nico_proto_msgTypes[762] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52493,7 +52615,7 @@ func (x *DomainSearchQueryLegacy) String() string { func (*DomainSearchQueryLegacy) ProtoMessage() {} func (x *DomainSearchQueryLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[760] + mi := &file_nico_nico_proto_msgTypes[762] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52506,7 +52628,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{760} + return file_nico_nico_proto_rawDescGZIP(), []int{762} } func (x *DomainSearchQueryLegacy) GetId() *DomainId { @@ -52538,7 +52660,7 @@ type PxeDomain struct { func (x *PxeDomain) Reset() { *x = PxeDomain{} - mi := &file_nico_nico_proto_msgTypes[761] + mi := &file_nico_nico_proto_msgTypes[763] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52550,7 +52672,7 @@ func (x *PxeDomain) String() string { func (*PxeDomain) ProtoMessage() {} func (x *PxeDomain) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[761] + mi := &file_nico_nico_proto_msgTypes[763] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52563,7 +52685,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{761} + return file_nico_nico_proto_rawDescGZIP(), []int{763} } func (x *PxeDomain) GetDomain() isPxeDomain_Domain { @@ -52617,7 +52739,7 @@ type MachinePositionQuery struct { func (x *MachinePositionQuery) Reset() { *x = MachinePositionQuery{} - mi := &file_nico_nico_proto_msgTypes[762] + mi := &file_nico_nico_proto_msgTypes[764] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52629,7 +52751,7 @@ func (x *MachinePositionQuery) String() string { func (*MachinePositionQuery) ProtoMessage() {} func (x *MachinePositionQuery) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[762] + mi := &file_nico_nico_proto_msgTypes[764] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52642,7 +52764,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{762} + return file_nico_nico_proto_rawDescGZIP(), []int{764} } func (x *MachinePositionQuery) GetMachineIds() []*MachineId { @@ -52661,7 +52783,7 @@ type MachinePositionInfoList struct { func (x *MachinePositionInfoList) Reset() { *x = MachinePositionInfoList{} - mi := &file_nico_nico_proto_msgTypes[763] + mi := &file_nico_nico_proto_msgTypes[765] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52673,7 +52795,7 @@ func (x *MachinePositionInfoList) String() string { func (*MachinePositionInfoList) ProtoMessage() {} func (x *MachinePositionInfoList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[763] + mi := &file_nico_nico_proto_msgTypes[765] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52686,7 +52808,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{763} + return file_nico_nico_proto_rawDescGZIP(), []int{765} } func (x *MachinePositionInfoList) GetMachinePositionInfo() []*MachinePositionInfo { @@ -52711,7 +52833,7 @@ type MachinePositionInfo struct { func (x *MachinePositionInfo) Reset() { *x = MachinePositionInfo{} - mi := &file_nico_nico_proto_msgTypes[764] + mi := &file_nico_nico_proto_msgTypes[766] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52723,7 +52845,7 @@ func (x *MachinePositionInfo) String() string { func (*MachinePositionInfo) ProtoMessage() {} func (x *MachinePositionInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[764] + mi := &file_nico_nico_proto_msgTypes[766] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52736,7 +52858,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{764} + return file_nico_nico_proto_rawDescGZIP(), []int{766} } func (x *MachinePositionInfo) GetMachineId() *MachineId { @@ -52798,7 +52920,7 @@ type ModifyDPFStateRequest struct { func (x *ModifyDPFStateRequest) Reset() { *x = ModifyDPFStateRequest{} - mi := &file_nico_nico_proto_msgTypes[765] + mi := &file_nico_nico_proto_msgTypes[767] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52810,7 +52932,7 @@ func (x *ModifyDPFStateRequest) String() string { func (*ModifyDPFStateRequest) ProtoMessage() {} func (x *ModifyDPFStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[765] + mi := &file_nico_nico_proto_msgTypes[767] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52823,7 +52945,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{765} + return file_nico_nico_proto_rawDescGZIP(), []int{767} } func (x *ModifyDPFStateRequest) GetMachineId() *MachineId { @@ -52849,7 +52971,7 @@ type DPFStateResponse struct { func (x *DPFStateResponse) Reset() { *x = DPFStateResponse{} - mi := &file_nico_nico_proto_msgTypes[766] + mi := &file_nico_nico_proto_msgTypes[768] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52861,7 +52983,7 @@ func (x *DPFStateResponse) String() string { func (*DPFStateResponse) ProtoMessage() {} func (x *DPFStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[766] + mi := &file_nico_nico_proto_msgTypes[768] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52874,7 +52996,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{766} + return file_nico_nico_proto_rawDescGZIP(), []int{768} } func (x *DPFStateResponse) GetDpfStates() []*DPFStateResponse_DPFState { @@ -52893,7 +53015,7 @@ type GetDPFStateRequest struct { func (x *GetDPFStateRequest) Reset() { *x = GetDPFStateRequest{} - mi := &file_nico_nico_proto_msgTypes[767] + mi := &file_nico_nico_proto_msgTypes[769] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52905,7 +53027,7 @@ func (x *GetDPFStateRequest) String() string { func (*GetDPFStateRequest) ProtoMessage() {} func (x *GetDPFStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[767] + mi := &file_nico_nico_proto_msgTypes[769] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52918,7 +53040,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{767} + return file_nico_nico_proto_rawDescGZIP(), []int{769} } func (x *GetDPFStateRequest) GetMachineIds() []*MachineId { @@ -52937,7 +53059,7 @@ type GetDPFHostSnapshotRequest struct { func (x *GetDPFHostSnapshotRequest) Reset() { *x = GetDPFHostSnapshotRequest{} - mi := &file_nico_nico_proto_msgTypes[768] + mi := &file_nico_nico_proto_msgTypes[770] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52949,7 +53071,7 @@ func (x *GetDPFHostSnapshotRequest) String() string { func (*GetDPFHostSnapshotRequest) ProtoMessage() {} func (x *GetDPFHostSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[768] + mi := &file_nico_nico_proto_msgTypes[770] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52962,7 +53084,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{768} + return file_nico_nico_proto_rawDescGZIP(), []int{770} } func (x *GetDPFHostSnapshotRequest) GetHostMachineId() *MachineId { @@ -52984,7 +53106,7 @@ type DPFHostSnapshotResponse struct { func (x *DPFHostSnapshotResponse) Reset() { *x = DPFHostSnapshotResponse{} - mi := &file_nico_nico_proto_msgTypes[769] + mi := &file_nico_nico_proto_msgTypes[771] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52996,7 +53118,7 @@ func (x *DPFHostSnapshotResponse) String() string { func (*DPFHostSnapshotResponse) ProtoMessage() {} func (x *DPFHostSnapshotResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[769] + mi := &file_nico_nico_proto_msgTypes[771] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53009,7 +53131,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{769} + return file_nico_nico_proto_rawDescGZIP(), []int{771} } func (x *DPFHostSnapshotResponse) GetJsonPayload() string { @@ -53027,7 +53149,7 @@ type GetDPFServiceVersionsRequest struct { func (x *GetDPFServiceVersionsRequest) Reset() { *x = GetDPFServiceVersionsRequest{} - mi := &file_nico_nico_proto_msgTypes[770] + mi := &file_nico_nico_proto_msgTypes[772] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53039,7 +53161,7 @@ func (x *GetDPFServiceVersionsRequest) String() string { func (*GetDPFServiceVersionsRequest) ProtoMessage() {} func (x *GetDPFServiceVersionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[770] + mi := &file_nico_nico_proto_msgTypes[772] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53052,7 +53174,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{770} + return file_nico_nico_proto_rawDescGZIP(), []int{772} } type DPFServiceVersion struct { @@ -53076,7 +53198,7 @@ type DPFServiceVersion struct { func (x *DPFServiceVersion) Reset() { *x = DPFServiceVersion{} - mi := &file_nico_nico_proto_msgTypes[771] + mi := &file_nico_nico_proto_msgTypes[773] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53088,7 +53210,7 @@ func (x *DPFServiceVersion) String() string { func (*DPFServiceVersion) ProtoMessage() {} func (x *DPFServiceVersion) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[771] + mi := &file_nico_nico_proto_msgTypes[773] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53101,7 +53223,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{771} + return file_nico_nico_proto_rawDescGZIP(), []int{773} } func (x *DPFServiceVersion) GetService() string { @@ -53148,7 +53270,7 @@ type DPFServiceVersionsResponse struct { func (x *DPFServiceVersionsResponse) Reset() { *x = DPFServiceVersionsResponse{} - mi := &file_nico_nico_proto_msgTypes[772] + mi := &file_nico_nico_proto_msgTypes[774] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53160,7 +53282,7 @@ func (x *DPFServiceVersionsResponse) String() string { func (*DPFServiceVersionsResponse) ProtoMessage() {} func (x *DPFServiceVersionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[772] + mi := &file_nico_nico_proto_msgTypes[774] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53173,7 +53295,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{772} + return file_nico_nico_proto_rawDescGZIP(), []int{774} } func (x *DPFServiceVersionsResponse) GetServices() []*DPFServiceVersion { @@ -53194,7 +53316,7 @@ type ComponentResult struct { func (x *ComponentResult) Reset() { *x = ComponentResult{} - mi := &file_nico_nico_proto_msgTypes[773] + mi := &file_nico_nico_proto_msgTypes[775] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53206,7 +53328,7 @@ func (x *ComponentResult) String() string { func (*ComponentResult) ProtoMessage() {} func (x *ComponentResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[773] + mi := &file_nico_nico_proto_msgTypes[775] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53219,7 +53341,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{773} + return file_nico_nico_proto_rawDescGZIP(), []int{775} } func (x *ComponentResult) GetComponentId() string { @@ -53252,7 +53374,7 @@ type SwitchIdList struct { func (x *SwitchIdList) Reset() { *x = SwitchIdList{} - mi := &file_nico_nico_proto_msgTypes[774] + mi := &file_nico_nico_proto_msgTypes[776] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53264,7 +53386,7 @@ func (x *SwitchIdList) String() string { func (*SwitchIdList) ProtoMessage() {} func (x *SwitchIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[774] + mi := &file_nico_nico_proto_msgTypes[776] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53277,7 +53399,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{774} + return file_nico_nico_proto_rawDescGZIP(), []int{776} } func (x *SwitchIdList) GetIds() []*SwitchId { @@ -53296,7 +53418,7 @@ type PowerShelfIdList struct { func (x *PowerShelfIdList) Reset() { *x = PowerShelfIdList{} - mi := &file_nico_nico_proto_msgTypes[775] + mi := &file_nico_nico_proto_msgTypes[777] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53308,7 +53430,7 @@ func (x *PowerShelfIdList) String() string { func (*PowerShelfIdList) ProtoMessage() {} func (x *PowerShelfIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[775] + mi := &file_nico_nico_proto_msgTypes[777] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53321,7 +53443,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{775} + return file_nico_nico_proto_rawDescGZIP(), []int{777} } func (x *PowerShelfIdList) GetIds() []*PowerShelfId { @@ -53345,7 +53467,7 @@ type GetComponentInventoryRequest struct { func (x *GetComponentInventoryRequest) Reset() { *x = GetComponentInventoryRequest{} - mi := &file_nico_nico_proto_msgTypes[776] + mi := &file_nico_nico_proto_msgTypes[778] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53357,7 +53479,7 @@ func (x *GetComponentInventoryRequest) String() string { func (*GetComponentInventoryRequest) ProtoMessage() {} func (x *GetComponentInventoryRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[776] + mi := &file_nico_nico_proto_msgTypes[778] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53370,7 +53492,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{776} + return file_nico_nico_proto_rawDescGZIP(), []int{778} } func (x *GetComponentInventoryRequest) GetTarget() isGetComponentInventoryRequest_Target { @@ -53439,7 +53561,7 @@ type ComponentInventoryEntry struct { func (x *ComponentInventoryEntry) Reset() { *x = ComponentInventoryEntry{} - mi := &file_nico_nico_proto_msgTypes[777] + mi := &file_nico_nico_proto_msgTypes[779] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53451,7 +53573,7 @@ func (x *ComponentInventoryEntry) String() string { func (*ComponentInventoryEntry) ProtoMessage() {} func (x *ComponentInventoryEntry) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[777] + mi := &file_nico_nico_proto_msgTypes[779] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53464,7 +53586,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{777} + return file_nico_nico_proto_rawDescGZIP(), []int{779} } func (x *ComponentInventoryEntry) GetResult() *ComponentResult { @@ -53490,7 +53612,7 @@ type GetComponentInventoryResponse struct { func (x *GetComponentInventoryResponse) Reset() { *x = GetComponentInventoryResponse{} - mi := &file_nico_nico_proto_msgTypes[778] + mi := &file_nico_nico_proto_msgTypes[780] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53502,7 +53624,7 @@ func (x *GetComponentInventoryResponse) String() string { func (*GetComponentInventoryResponse) ProtoMessage() {} func (x *GetComponentInventoryResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[778] + mi := &file_nico_nico_proto_msgTypes[780] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53515,7 +53637,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{778} + return file_nico_nico_proto_rawDescGZIP(), []int{780} } func (x *GetComponentInventoryResponse) GetEntries() []*ComponentInventoryEntry { @@ -53543,7 +53665,7 @@ type ComponentPowerControlRequest struct { func (x *ComponentPowerControlRequest) Reset() { *x = ComponentPowerControlRequest{} - mi := &file_nico_nico_proto_msgTypes[779] + mi := &file_nico_nico_proto_msgTypes[781] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53555,7 +53677,7 @@ func (x *ComponentPowerControlRequest) String() string { func (*ComponentPowerControlRequest) ProtoMessage() {} func (x *ComponentPowerControlRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[779] + mi := &file_nico_nico_proto_msgTypes[781] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53568,7 +53690,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{779} + return file_nico_nico_proto_rawDescGZIP(), []int{781} } func (x *ComponentPowerControlRequest) GetTarget() isComponentPowerControlRequest_Target { @@ -53650,7 +53772,7 @@ type ComponentPowerControlResponse struct { func (x *ComponentPowerControlResponse) Reset() { *x = ComponentPowerControlResponse{} - mi := &file_nico_nico_proto_msgTypes[780] + mi := &file_nico_nico_proto_msgTypes[782] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53662,7 +53784,7 @@ func (x *ComponentPowerControlResponse) String() string { func (*ComponentPowerControlResponse) ProtoMessage() {} func (x *ComponentPowerControlResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[780] + mi := &file_nico_nico_proto_msgTypes[782] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53675,7 +53797,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{780} + return file_nico_nico_proto_rawDescGZIP(), []int{782} } func (x *ComponentPowerControlResponse) GetResults() []*ComponentResult { @@ -53697,7 +53819,7 @@ type FirmwareUpdateStatus struct { func (x *FirmwareUpdateStatus) Reset() { *x = FirmwareUpdateStatus{} - mi := &file_nico_nico_proto_msgTypes[781] + mi := &file_nico_nico_proto_msgTypes[783] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53709,7 +53831,7 @@ func (x *FirmwareUpdateStatus) String() string { func (*FirmwareUpdateStatus) ProtoMessage() {} func (x *FirmwareUpdateStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[781] + mi := &file_nico_nico_proto_msgTypes[783] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53722,7 +53844,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{781} + return file_nico_nico_proto_rawDescGZIP(), []int{783} } func (x *FirmwareUpdateStatus) GetResult() *ComponentResult { @@ -53763,7 +53885,7 @@ type UpdateComputeTrayFirmwareTarget struct { func (x *UpdateComputeTrayFirmwareTarget) Reset() { *x = UpdateComputeTrayFirmwareTarget{} - mi := &file_nico_nico_proto_msgTypes[782] + mi := &file_nico_nico_proto_msgTypes[784] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53775,7 +53897,7 @@ func (x *UpdateComputeTrayFirmwareTarget) String() string { func (*UpdateComputeTrayFirmwareTarget) ProtoMessage() {} func (x *UpdateComputeTrayFirmwareTarget) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[782] + mi := &file_nico_nico_proto_msgTypes[784] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53788,7 +53910,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{782} + return file_nico_nico_proto_rawDescGZIP(), []int{784} } func (x *UpdateComputeTrayFirmwareTarget) GetMachineIds() *MachineIdList { @@ -53815,7 +53937,7 @@ type UpdateSwitchFirmwareTarget struct { func (x *UpdateSwitchFirmwareTarget) Reset() { *x = UpdateSwitchFirmwareTarget{} - mi := &file_nico_nico_proto_msgTypes[783] + mi := &file_nico_nico_proto_msgTypes[785] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53827,7 +53949,7 @@ func (x *UpdateSwitchFirmwareTarget) String() string { func (*UpdateSwitchFirmwareTarget) ProtoMessage() {} func (x *UpdateSwitchFirmwareTarget) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[783] + mi := &file_nico_nico_proto_msgTypes[785] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53840,7 +53962,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{783} + return file_nico_nico_proto_rawDescGZIP(), []int{785} } func (x *UpdateSwitchFirmwareTarget) GetSwitchIds() *SwitchIdList { @@ -53867,7 +53989,7 @@ type UpdatePowerShelfFirmwareTarget struct { func (x *UpdatePowerShelfFirmwareTarget) Reset() { *x = UpdatePowerShelfFirmwareTarget{} - mi := &file_nico_nico_proto_msgTypes[784] + mi := &file_nico_nico_proto_msgTypes[786] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53879,7 +54001,7 @@ func (x *UpdatePowerShelfFirmwareTarget) String() string { func (*UpdatePowerShelfFirmwareTarget) ProtoMessage() {} func (x *UpdatePowerShelfFirmwareTarget) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[784] + mi := &file_nico_nico_proto_msgTypes[786] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53892,7 +54014,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{784} + return file_nico_nico_proto_rawDescGZIP(), []int{786} } func (x *UpdatePowerShelfFirmwareTarget) GetPowerShelfIds() *PowerShelfIdList { @@ -53920,7 +54042,7 @@ type UpdateFirmwareObjectTarget struct { func (x *UpdateFirmwareObjectTarget) Reset() { *x = UpdateFirmwareObjectTarget{} - mi := &file_nico_nico_proto_msgTypes[785] + mi := &file_nico_nico_proto_msgTypes[787] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53932,7 +54054,7 @@ func (x *UpdateFirmwareObjectTarget) String() string { func (*UpdateFirmwareObjectTarget) ProtoMessage() {} func (x *UpdateFirmwareObjectTarget) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[785] + mi := &file_nico_nico_proto_msgTypes[787] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53945,7 +54067,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{785} + return file_nico_nico_proto_rawDescGZIP(), []int{787} } func (x *UpdateFirmwareObjectTarget) GetRackIds() *RackIdList { @@ -53982,7 +54104,7 @@ type UpdateComponentFirmwareRequest struct { func (x *UpdateComponentFirmwareRequest) Reset() { *x = UpdateComponentFirmwareRequest{} - mi := &file_nico_nico_proto_msgTypes[786] + mi := &file_nico_nico_proto_msgTypes[788] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53994,7 +54116,7 @@ func (x *UpdateComponentFirmwareRequest) String() string { func (*UpdateComponentFirmwareRequest) ProtoMessage() {} func (x *UpdateComponentFirmwareRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[786] + mi := &file_nico_nico_proto_msgTypes[788] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54007,7 +54129,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{786} + return file_nico_nico_proto_rawDescGZIP(), []int{788} } func (x *UpdateComponentFirmwareRequest) GetTarget() isUpdateComponentFirmwareRequest_Target { @@ -54119,7 +54241,7 @@ type UpdateComponentFirmwareResponse struct { func (x *UpdateComponentFirmwareResponse) Reset() { *x = UpdateComponentFirmwareResponse{} - mi := &file_nico_nico_proto_msgTypes[787] + mi := &file_nico_nico_proto_msgTypes[789] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54131,7 +54253,7 @@ func (x *UpdateComponentFirmwareResponse) String() string { func (*UpdateComponentFirmwareResponse) ProtoMessage() {} func (x *UpdateComponentFirmwareResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[787] + mi := &file_nico_nico_proto_msgTypes[789] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54144,7 +54266,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{787} + return file_nico_nico_proto_rawDescGZIP(), []int{789} } func (x *UpdateComponentFirmwareResponse) GetResults() []*ComponentResult { @@ -54169,7 +54291,7 @@ type GetComponentFirmwareStatusRequest struct { func (x *GetComponentFirmwareStatusRequest) Reset() { *x = GetComponentFirmwareStatusRequest{} - mi := &file_nico_nico_proto_msgTypes[788] + mi := &file_nico_nico_proto_msgTypes[790] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54181,7 +54303,7 @@ func (x *GetComponentFirmwareStatusRequest) String() string { func (*GetComponentFirmwareStatusRequest) ProtoMessage() {} func (x *GetComponentFirmwareStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[788] + mi := &file_nico_nico_proto_msgTypes[790] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54194,7 +54316,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{788} + return file_nico_nico_proto_rawDescGZIP(), []int{790} } func (x *GetComponentFirmwareStatusRequest) GetTarget() isGetComponentFirmwareStatusRequest_Target { @@ -54278,7 +54400,7 @@ type GetComponentFirmwareStatusResponse struct { func (x *GetComponentFirmwareStatusResponse) Reset() { *x = GetComponentFirmwareStatusResponse{} - mi := &file_nico_nico_proto_msgTypes[789] + mi := &file_nico_nico_proto_msgTypes[791] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54290,7 +54412,7 @@ func (x *GetComponentFirmwareStatusResponse) String() string { func (*GetComponentFirmwareStatusResponse) ProtoMessage() {} func (x *GetComponentFirmwareStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[789] + mi := &file_nico_nico_proto_msgTypes[791] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54303,7 +54425,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{789} + return file_nico_nico_proto_rawDescGZIP(), []int{791} } func (x *GetComponentFirmwareStatusResponse) GetStatuses() []*FirmwareUpdateStatus { @@ -54328,7 +54450,7 @@ type ListComponentFirmwareVersionsRequest struct { func (x *ListComponentFirmwareVersionsRequest) Reset() { *x = ListComponentFirmwareVersionsRequest{} - mi := &file_nico_nico_proto_msgTypes[790] + mi := &file_nico_nico_proto_msgTypes[792] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54340,7 +54462,7 @@ func (x *ListComponentFirmwareVersionsRequest) String() string { func (*ListComponentFirmwareVersionsRequest) ProtoMessage() {} func (x *ListComponentFirmwareVersionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[790] + mi := &file_nico_nico_proto_msgTypes[792] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54353,7 +54475,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{790} + return file_nico_nico_proto_rawDescGZIP(), []int{792} } func (x *ListComponentFirmwareVersionsRequest) GetTarget() isListComponentFirmwareVersionsRequest_Target { @@ -54444,7 +54566,7 @@ type ComputeTrayFirmwareVersions struct { func (x *ComputeTrayFirmwareVersions) Reset() { *x = ComputeTrayFirmwareVersions{} - mi := &file_nico_nico_proto_msgTypes[791] + mi := &file_nico_nico_proto_msgTypes[793] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54456,7 +54578,7 @@ func (x *ComputeTrayFirmwareVersions) String() string { func (*ComputeTrayFirmwareVersions) ProtoMessage() {} func (x *ComputeTrayFirmwareVersions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[791] + mi := &file_nico_nico_proto_msgTypes[793] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54469,7 +54591,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{791} + return file_nico_nico_proto_rawDescGZIP(), []int{793} } func (x *ComputeTrayFirmwareVersions) GetComponent() ComputeTrayComponent { @@ -54499,7 +54621,7 @@ type DeviceFirmwareVersions struct { func (x *DeviceFirmwareVersions) Reset() { *x = DeviceFirmwareVersions{} - mi := &file_nico_nico_proto_msgTypes[792] + mi := &file_nico_nico_proto_msgTypes[794] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54511,7 +54633,7 @@ func (x *DeviceFirmwareVersions) String() string { func (*DeviceFirmwareVersions) ProtoMessage() {} func (x *DeviceFirmwareVersions) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[792] + mi := &file_nico_nico_proto_msgTypes[794] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54524,7 +54646,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{792} + return file_nico_nico_proto_rawDescGZIP(), []int{794} } func (x *DeviceFirmwareVersions) GetResult() *ComponentResult { @@ -54557,7 +54679,7 @@ type ListComponentFirmwareVersionsResponse struct { func (x *ListComponentFirmwareVersionsResponse) Reset() { *x = ListComponentFirmwareVersionsResponse{} - mi := &file_nico_nico_proto_msgTypes[793] + mi := &file_nico_nico_proto_msgTypes[795] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54569,7 +54691,7 @@ func (x *ListComponentFirmwareVersionsResponse) String() string { func (*ListComponentFirmwareVersionsResponse) ProtoMessage() {} func (x *ListComponentFirmwareVersionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[793] + mi := &file_nico_nico_proto_msgTypes[795] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54582,7 +54704,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{793} + return file_nico_nico_proto_rawDescGZIP(), []int{795} } func (x *ListComponentFirmwareVersionsResponse) GetDevices() []*DeviceFirmwareVersions { @@ -54604,7 +54726,7 @@ type SpxPartitionCreationRequest struct { func (x *SpxPartitionCreationRequest) Reset() { *x = SpxPartitionCreationRequest{} - mi := &file_nico_nico_proto_msgTypes[794] + mi := &file_nico_nico_proto_msgTypes[796] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54616,7 +54738,7 @@ func (x *SpxPartitionCreationRequest) String() string { func (*SpxPartitionCreationRequest) ProtoMessage() {} func (x *SpxPartitionCreationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[794] + mi := &file_nico_nico_proto_msgTypes[796] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54629,7 +54751,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{794} + return file_nico_nico_proto_rawDescGZIP(), []int{796} } func (x *SpxPartitionCreationRequest) GetMetadata() *Metadata { @@ -54672,7 +54794,7 @@ type SpxPartition struct { func (x *SpxPartition) Reset() { *x = SpxPartition{} - mi := &file_nico_nico_proto_msgTypes[795] + mi := &file_nico_nico_proto_msgTypes[797] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54684,7 +54806,7 @@ func (x *SpxPartition) String() string { func (*SpxPartition) ProtoMessage() {} func (x *SpxPartition) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[795] + mi := &file_nico_nico_proto_msgTypes[797] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54697,7 +54819,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{795} + return file_nico_nico_proto_rawDescGZIP(), []int{797} } func (x *SpxPartition) GetMetadata() *Metadata { @@ -54737,7 +54859,7 @@ type SpxPartitionIdList struct { func (x *SpxPartitionIdList) Reset() { *x = SpxPartitionIdList{} - mi := &file_nico_nico_proto_msgTypes[796] + mi := &file_nico_nico_proto_msgTypes[798] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54749,7 +54871,7 @@ func (x *SpxPartitionIdList) String() string { func (*SpxPartitionIdList) ProtoMessage() {} func (x *SpxPartitionIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[796] + mi := &file_nico_nico_proto_msgTypes[798] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54762,7 +54884,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{796} + return file_nico_nico_proto_rawDescGZIP(), []int{798} } func (x *SpxPartitionIdList) GetSpxPartitionIds() []*SpxPartitionId { @@ -54781,7 +54903,7 @@ type SpxPartitionDeletionRequest struct { func (x *SpxPartitionDeletionRequest) Reset() { *x = SpxPartitionDeletionRequest{} - mi := &file_nico_nico_proto_msgTypes[797] + mi := &file_nico_nico_proto_msgTypes[799] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54793,7 +54915,7 @@ func (x *SpxPartitionDeletionRequest) String() string { func (*SpxPartitionDeletionRequest) ProtoMessage() {} func (x *SpxPartitionDeletionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[797] + mi := &file_nico_nico_proto_msgTypes[799] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54806,7 +54928,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{797} + return file_nico_nico_proto_rawDescGZIP(), []int{799} } func (x *SpxPartitionDeletionRequest) GetId() *SpxPartitionId { @@ -54824,7 +54946,7 @@ type SpxPartitionDeletionResult struct { func (x *SpxPartitionDeletionResult) Reset() { *x = SpxPartitionDeletionResult{} - mi := &file_nico_nico_proto_msgTypes[798] + mi := &file_nico_nico_proto_msgTypes[800] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54836,7 +54958,7 @@ func (x *SpxPartitionDeletionResult) String() string { func (*SpxPartitionDeletionResult) ProtoMessage() {} func (x *SpxPartitionDeletionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[798] + mi := &file_nico_nico_proto_msgTypes[800] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54849,7 +54971,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{798} + return file_nico_nico_proto_rawDescGZIP(), []int{800} } type SpxPartitionSearchFilter struct { @@ -54863,7 +54985,7 @@ type SpxPartitionSearchFilter struct { func (x *SpxPartitionSearchFilter) Reset() { *x = SpxPartitionSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[799] + mi := &file_nico_nico_proto_msgTypes[801] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54875,7 +54997,7 @@ func (x *SpxPartitionSearchFilter) String() string { func (*SpxPartitionSearchFilter) ProtoMessage() {} func (x *SpxPartitionSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[799] + mi := &file_nico_nico_proto_msgTypes[801] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54888,7 +55010,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{799} + return file_nico_nico_proto_rawDescGZIP(), []int{801} } func (x *SpxPartitionSearchFilter) GetName() string { @@ -54921,7 +55043,7 @@ type SpxPartitionList struct { func (x *SpxPartitionList) Reset() { *x = SpxPartitionList{} - mi := &file_nico_nico_proto_msgTypes[800] + mi := &file_nico_nico_proto_msgTypes[802] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54933,7 +55055,7 @@ func (x *SpxPartitionList) String() string { func (*SpxPartitionList) ProtoMessage() {} func (x *SpxPartitionList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[800] + mi := &file_nico_nico_proto_msgTypes[802] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54946,7 +55068,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{800} + return file_nico_nico_proto_rawDescGZIP(), []int{802} } func (x *SpxPartitionList) GetSpxPartitions() []*SpxPartition { @@ -54965,7 +55087,7 @@ type SpxPartitionsByIdsRequest struct { func (x *SpxPartitionsByIdsRequest) Reset() { *x = SpxPartitionsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[801] + mi := &file_nico_nico_proto_msgTypes[803] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54977,7 +55099,7 @@ func (x *SpxPartitionsByIdsRequest) String() string { func (*SpxPartitionsByIdsRequest) ProtoMessage() {} func (x *SpxPartitionsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[801] + mi := &file_nico_nico_proto_msgTypes[803] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54990,7 +55112,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{801} + return file_nico_nico_proto_rawDescGZIP(), []int{803} } func (x *SpxPartitionsByIdsRequest) GetSpxPartitionIds() []*SpxPartitionId { @@ -55013,7 +55135,7 @@ type AdminForceDeleteSwitchRequest struct { func (x *AdminForceDeleteSwitchRequest) Reset() { *x = AdminForceDeleteSwitchRequest{} - mi := &file_nico_nico_proto_msgTypes[802] + mi := &file_nico_nico_proto_msgTypes[804] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55025,7 +55147,7 @@ func (x *AdminForceDeleteSwitchRequest) String() string { func (*AdminForceDeleteSwitchRequest) ProtoMessage() {} func (x *AdminForceDeleteSwitchRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[802] + mi := &file_nico_nico_proto_msgTypes[804] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55038,7 +55160,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{802} + return file_nico_nico_proto_rawDescGZIP(), []int{804} } func (x *AdminForceDeleteSwitchRequest) GetSwitchId() *SwitchId { @@ -55067,7 +55189,7 @@ type AdminForceDeleteSwitchResponse struct { func (x *AdminForceDeleteSwitchResponse) Reset() { *x = AdminForceDeleteSwitchResponse{} - mi := &file_nico_nico_proto_msgTypes[803] + mi := &file_nico_nico_proto_msgTypes[805] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55079,7 +55201,7 @@ func (x *AdminForceDeleteSwitchResponse) String() string { func (*AdminForceDeleteSwitchResponse) ProtoMessage() {} func (x *AdminForceDeleteSwitchResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[803] + mi := &file_nico_nico_proto_msgTypes[805] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55092,7 +55214,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{803} + return file_nico_nico_proto_rawDescGZIP(), []int{805} } func (x *AdminForceDeleteSwitchResponse) GetSwitchId() string { @@ -55122,7 +55244,7 @@ type AdminForceDeletePowerShelfRequest struct { func (x *AdminForceDeletePowerShelfRequest) Reset() { *x = AdminForceDeletePowerShelfRequest{} - mi := &file_nico_nico_proto_msgTypes[804] + mi := &file_nico_nico_proto_msgTypes[806] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55134,7 +55256,7 @@ func (x *AdminForceDeletePowerShelfRequest) String() string { func (*AdminForceDeletePowerShelfRequest) ProtoMessage() {} func (x *AdminForceDeletePowerShelfRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[804] + mi := &file_nico_nico_proto_msgTypes[806] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55147,7 +55269,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{804} + return file_nico_nico_proto_rawDescGZIP(), []int{806} } func (x *AdminForceDeletePowerShelfRequest) GetPowerShelfId() *PowerShelfId { @@ -55176,7 +55298,7 @@ type AdminForceDeletePowerShelfResponse struct { func (x *AdminForceDeletePowerShelfResponse) Reset() { *x = AdminForceDeletePowerShelfResponse{} - mi := &file_nico_nico_proto_msgTypes[805] + mi := &file_nico_nico_proto_msgTypes[807] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55188,7 +55310,7 @@ func (x *AdminForceDeletePowerShelfResponse) String() string { func (*AdminForceDeletePowerShelfResponse) ProtoMessage() {} func (x *AdminForceDeletePowerShelfResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[805] + mi := &file_nico_nico_proto_msgTypes[807] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55201,7 +55323,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{805} + return file_nico_nico_proto_rawDescGZIP(), []int{807} } func (x *AdminForceDeletePowerShelfResponse) GetPowerShelfId() string { @@ -55245,7 +55367,7 @@ type OperatingSystem struct { func (x *OperatingSystem) Reset() { *x = OperatingSystem{} - mi := &file_nico_nico_proto_msgTypes[806] + mi := &file_nico_nico_proto_msgTypes[808] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55257,7 +55379,7 @@ func (x *OperatingSystem) String() string { func (*OperatingSystem) ProtoMessage() {} func (x *OperatingSystem) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[806] + mi := &file_nico_nico_proto_msgTypes[808] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55270,7 +55392,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{806} + return file_nico_nico_proto_rawDescGZIP(), []int{808} } func (x *OperatingSystem) GetId() *OperatingSystemId { @@ -55415,7 +55537,7 @@ type CreateOperatingSystemRequest struct { func (x *CreateOperatingSystemRequest) Reset() { *x = CreateOperatingSystemRequest{} - mi := &file_nico_nico_proto_msgTypes[807] + mi := &file_nico_nico_proto_msgTypes[809] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55427,7 +55549,7 @@ func (x *CreateOperatingSystemRequest) String() string { func (*CreateOperatingSystemRequest) ProtoMessage() {} func (x *CreateOperatingSystemRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[807] + mi := &file_nico_nico_proto_msgTypes[809] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55440,7 +55562,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{807} + return file_nico_nico_proto_rawDescGZIP(), []int{809} } func (x *CreateOperatingSystemRequest) GetName() string { @@ -55538,7 +55660,7 @@ type IpxeTemplateParameters struct { func (x *IpxeTemplateParameters) Reset() { *x = IpxeTemplateParameters{} - mi := &file_nico_nico_proto_msgTypes[808] + mi := &file_nico_nico_proto_msgTypes[810] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55550,7 +55672,7 @@ func (x *IpxeTemplateParameters) String() string { func (*IpxeTemplateParameters) ProtoMessage() {} func (x *IpxeTemplateParameters) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[808] + mi := &file_nico_nico_proto_msgTypes[810] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55563,7 +55685,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{808} + return file_nico_nico_proto_rawDescGZIP(), []int{810} } func (x *IpxeTemplateParameters) GetItems() []*IpxeTemplateParameter { @@ -55583,7 +55705,7 @@ type IpxeTemplateArtifacts struct { func (x *IpxeTemplateArtifacts) Reset() { *x = IpxeTemplateArtifacts{} - mi := &file_nico_nico_proto_msgTypes[809] + mi := &file_nico_nico_proto_msgTypes[811] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55595,7 +55717,7 @@ func (x *IpxeTemplateArtifacts) String() string { func (*IpxeTemplateArtifacts) ProtoMessage() {} func (x *IpxeTemplateArtifacts) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[809] + mi := &file_nico_nico_proto_msgTypes[811] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55608,7 +55730,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{809} + return file_nico_nico_proto_rawDescGZIP(), []int{811} } func (x *IpxeTemplateArtifacts) GetItems() []*IpxeTemplateArtifact { @@ -55638,7 +55760,7 @@ type UpdateOperatingSystemRequest struct { func (x *UpdateOperatingSystemRequest) Reset() { *x = UpdateOperatingSystemRequest{} - mi := &file_nico_nico_proto_msgTypes[810] + mi := &file_nico_nico_proto_msgTypes[812] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55650,7 +55772,7 @@ func (x *UpdateOperatingSystemRequest) String() string { func (*UpdateOperatingSystemRequest) ProtoMessage() {} func (x *UpdateOperatingSystemRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[810] + mi := &file_nico_nico_proto_msgTypes[812] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55663,7 +55785,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{810} + return file_nico_nico_proto_rawDescGZIP(), []int{812} } func (x *UpdateOperatingSystemRequest) GetId() *OperatingSystemId { @@ -55759,7 +55881,7 @@ type DeleteOperatingSystemRequest struct { func (x *DeleteOperatingSystemRequest) Reset() { *x = DeleteOperatingSystemRequest{} - mi := &file_nico_nico_proto_msgTypes[811] + mi := &file_nico_nico_proto_msgTypes[813] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55771,7 +55893,7 @@ func (x *DeleteOperatingSystemRequest) String() string { func (*DeleteOperatingSystemRequest) ProtoMessage() {} func (x *DeleteOperatingSystemRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[811] + mi := &file_nico_nico_proto_msgTypes[813] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55784,7 +55906,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{811} + return file_nico_nico_proto_rawDescGZIP(), []int{813} } func (x *DeleteOperatingSystemRequest) GetId() *OperatingSystemId { @@ -55802,7 +55924,7 @@ type DeleteOperatingSystemResponse struct { func (x *DeleteOperatingSystemResponse) Reset() { *x = DeleteOperatingSystemResponse{} - mi := &file_nico_nico_proto_msgTypes[812] + mi := &file_nico_nico_proto_msgTypes[814] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55814,7 +55936,7 @@ func (x *DeleteOperatingSystemResponse) String() string { func (*DeleteOperatingSystemResponse) ProtoMessage() {} func (x *DeleteOperatingSystemResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[812] + mi := &file_nico_nico_proto_msgTypes[814] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55827,7 +55949,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{812} + return file_nico_nico_proto_rawDescGZIP(), []int{814} } type OperatingSystemSearchFilter struct { @@ -55839,7 +55961,7 @@ type OperatingSystemSearchFilter struct { func (x *OperatingSystemSearchFilter) Reset() { *x = OperatingSystemSearchFilter{} - mi := &file_nico_nico_proto_msgTypes[813] + mi := &file_nico_nico_proto_msgTypes[815] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55851,7 +55973,7 @@ func (x *OperatingSystemSearchFilter) String() string { func (*OperatingSystemSearchFilter) ProtoMessage() {} func (x *OperatingSystemSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[813] + mi := &file_nico_nico_proto_msgTypes[815] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55864,7 +55986,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{813} + return file_nico_nico_proto_rawDescGZIP(), []int{815} } func (x *OperatingSystemSearchFilter) GetTenantOrganizationId() string { @@ -55883,7 +56005,7 @@ type OperatingSystemIdList struct { func (x *OperatingSystemIdList) Reset() { *x = OperatingSystemIdList{} - mi := &file_nico_nico_proto_msgTypes[814] + mi := &file_nico_nico_proto_msgTypes[816] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55895,7 +56017,7 @@ func (x *OperatingSystemIdList) String() string { func (*OperatingSystemIdList) ProtoMessage() {} func (x *OperatingSystemIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[814] + mi := &file_nico_nico_proto_msgTypes[816] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55908,7 +56030,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{814} + return file_nico_nico_proto_rawDescGZIP(), []int{816} } func (x *OperatingSystemIdList) GetIds() []*OperatingSystemId { @@ -55927,7 +56049,7 @@ type OperatingSystemsByIdsRequest struct { func (x *OperatingSystemsByIdsRequest) Reset() { *x = OperatingSystemsByIdsRequest{} - mi := &file_nico_nico_proto_msgTypes[815] + mi := &file_nico_nico_proto_msgTypes[817] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55939,7 +56061,7 @@ func (x *OperatingSystemsByIdsRequest) String() string { func (*OperatingSystemsByIdsRequest) ProtoMessage() {} func (x *OperatingSystemsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[815] + mi := &file_nico_nico_proto_msgTypes[817] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55952,7 +56074,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{815} + return file_nico_nico_proto_rawDescGZIP(), []int{817} } func (x *OperatingSystemsByIdsRequest) GetIds() []*OperatingSystemId { @@ -55971,7 +56093,7 @@ type OperatingSystemList struct { func (x *OperatingSystemList) Reset() { *x = OperatingSystemList{} - mi := &file_nico_nico_proto_msgTypes[816] + mi := &file_nico_nico_proto_msgTypes[818] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55983,7 +56105,7 @@ func (x *OperatingSystemList) String() string { func (*OperatingSystemList) ProtoMessage() {} func (x *OperatingSystemList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[816] + mi := &file_nico_nico_proto_msgTypes[818] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55996,7 +56118,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{816} + return file_nico_nico_proto_rawDescGZIP(), []int{818} } func (x *OperatingSystemList) GetOperatingSystems() []*OperatingSystem { @@ -56015,7 +56137,7 @@ type GetOperatingSystemCachableIpxeTemplateArtifactsRequest struct { func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) Reset() { *x = GetOperatingSystemCachableIpxeTemplateArtifactsRequest{} - mi := &file_nico_nico_proto_msgTypes[817] + mi := &file_nico_nico_proto_msgTypes[819] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56027,7 +56149,7 @@ func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) String() string func (*GetOperatingSystemCachableIpxeTemplateArtifactsRequest) ProtoMessage() {} func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[817] + mi := &file_nico_nico_proto_msgTypes[819] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56040,7 +56162,7 @@ func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) ProtoReflect() // Deprecated: Use GetOperatingSystemCachableIpxeTemplateArtifactsRequest.ProtoReflect.Descriptor instead. func (*GetOperatingSystemCachableIpxeTemplateArtifactsRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{817} + return file_nico_nico_proto_rawDescGZIP(), []int{819} } func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) GetId() *OperatingSystemId { @@ -56059,7 +56181,7 @@ type IpxeTemplateArtifactList struct { func (x *IpxeTemplateArtifactList) Reset() { *x = IpxeTemplateArtifactList{} - mi := &file_nico_nico_proto_msgTypes[818] + mi := &file_nico_nico_proto_msgTypes[820] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56071,7 +56193,7 @@ func (x *IpxeTemplateArtifactList) String() string { func (*IpxeTemplateArtifactList) ProtoMessage() {} func (x *IpxeTemplateArtifactList) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[818] + mi := &file_nico_nico_proto_msgTypes[820] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56084,7 +56206,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{818} + return file_nico_nico_proto_rawDescGZIP(), []int{820} } func (x *IpxeTemplateArtifactList) GetArtifacts() []*IpxeTemplateArtifact { @@ -56106,7 +56228,7 @@ type IpxeTemplateArtifactUpdateRequest struct { func (x *IpxeTemplateArtifactUpdateRequest) Reset() { *x = IpxeTemplateArtifactUpdateRequest{} - mi := &file_nico_nico_proto_msgTypes[819] + mi := &file_nico_nico_proto_msgTypes[821] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56118,7 +56240,7 @@ func (x *IpxeTemplateArtifactUpdateRequest) String() string { func (*IpxeTemplateArtifactUpdateRequest) ProtoMessage() {} func (x *IpxeTemplateArtifactUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[819] + mi := &file_nico_nico_proto_msgTypes[821] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56131,7 +56253,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{819} + return file_nico_nico_proto_rawDescGZIP(), []int{821} } func (x *IpxeTemplateArtifactUpdateRequest) GetName() string { @@ -56158,7 +56280,7 @@ type UpdateOperatingSystemIpxeTemplateArtifactRequest struct { func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) Reset() { *x = UpdateOperatingSystemIpxeTemplateArtifactRequest{} - mi := &file_nico_nico_proto_msgTypes[820] + mi := &file_nico_nico_proto_msgTypes[822] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56170,7 +56292,7 @@ func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) String() string { func (*UpdateOperatingSystemIpxeTemplateArtifactRequest) ProtoMessage() {} func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[820] + mi := &file_nico_nico_proto_msgTypes[822] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56183,7 +56305,7 @@ func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) ProtoReflect() protor // Deprecated: Use UpdateOperatingSystemIpxeTemplateArtifactRequest.ProtoReflect.Descriptor instead. func (*UpdateOperatingSystemIpxeTemplateArtifactRequest) Descriptor() ([]byte, []int) { - return file_nico_nico_proto_rawDescGZIP(), []int{820} + return file_nico_nico_proto_rawDescGZIP(), []int{822} } func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) GetId() *OperatingSystemId { @@ -56210,7 +56332,7 @@ type HostRepresentorInterceptBridging struct { func (x *HostRepresentorInterceptBridging) Reset() { *x = HostRepresentorInterceptBridging{} - mi := &file_nico_nico_proto_msgTypes[821] + mi := &file_nico_nico_proto_msgTypes[823] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56222,7 +56344,7 @@ func (x *HostRepresentorInterceptBridging) String() string { func (*HostRepresentorInterceptBridging) ProtoMessage() {} func (x *HostRepresentorInterceptBridging) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[821] + mi := &file_nico_nico_proto_msgTypes[823] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56235,7 +56357,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{821} + return file_nico_nico_proto_rawDescGZIP(), []int{823} } func (x *HostRepresentorInterceptBridging) GetBridge() string { @@ -56266,7 +56388,7 @@ type ReWrapSecretsRequest struct { func (x *ReWrapSecretsRequest) Reset() { *x = ReWrapSecretsRequest{} - mi := &file_nico_nico_proto_msgTypes[822] + mi := &file_nico_nico_proto_msgTypes[824] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56278,7 +56400,7 @@ func (x *ReWrapSecretsRequest) String() string { func (*ReWrapSecretsRequest) ProtoMessage() {} func (x *ReWrapSecretsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[822] + mi := &file_nico_nico_proto_msgTypes[824] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56291,7 +56413,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{822} + return file_nico_nico_proto_rawDescGZIP(), []int{824} } func (x *ReWrapSecretsRequest) GetBatchSize() uint32 { @@ -56318,7 +56440,7 @@ type ReWrapSecretsResponse struct { func (x *ReWrapSecretsResponse) Reset() { *x = ReWrapSecretsResponse{} - mi := &file_nico_nico_proto_msgTypes[823] + mi := &file_nico_nico_proto_msgTypes[825] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56330,7 +56452,7 @@ func (x *ReWrapSecretsResponse) String() string { func (*ReWrapSecretsResponse) ProtoMessage() {} func (x *ReWrapSecretsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[823] + mi := &file_nico_nico_proto_msgTypes[825] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56343,7 +56465,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{823} + return file_nico_nico_proto_rawDescGZIP(), []int{825} } func (x *ReWrapSecretsResponse) GetReWrapped() uint64 { @@ -56376,7 +56498,7 @@ type GetMachineBootInterfacesRequest struct { func (x *GetMachineBootInterfacesRequest) Reset() { *x = GetMachineBootInterfacesRequest{} - mi := &file_nico_nico_proto_msgTypes[824] + mi := &file_nico_nico_proto_msgTypes[826] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56388,7 +56510,7 @@ func (x *GetMachineBootInterfacesRequest) String() string { func (*GetMachineBootInterfacesRequest) ProtoMessage() {} func (x *GetMachineBootInterfacesRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[824] + mi := &file_nico_nico_proto_msgTypes[826] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56401,7 +56523,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{824} + return file_nico_nico_proto_rawDescGZIP(), []int{826} } func (x *GetMachineBootInterfacesRequest) GetMachineId() *MachineId { @@ -56429,7 +56551,7 @@ type MachineInterfaceBootInterface struct { func (x *MachineInterfaceBootInterface) Reset() { *x = MachineInterfaceBootInterface{} - mi := &file_nico_nico_proto_msgTypes[825] + mi := &file_nico_nico_proto_msgTypes[827] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56441,7 +56563,7 @@ func (x *MachineInterfaceBootInterface) String() string { func (*MachineInterfaceBootInterface) ProtoMessage() {} func (x *MachineInterfaceBootInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[825] + mi := &file_nico_nico_proto_msgTypes[827] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56454,7 +56576,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{825} + return file_nico_nico_proto_rawDescGZIP(), []int{827} } func (x *MachineInterfaceBootInterface) GetMacAddress() string { @@ -56500,7 +56622,7 @@ type PredictedBootInterface struct { func (x *PredictedBootInterface) Reset() { *x = PredictedBootInterface{} - mi := &file_nico_nico_proto_msgTypes[826] + mi := &file_nico_nico_proto_msgTypes[828] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56512,7 +56634,7 @@ func (x *PredictedBootInterface) String() string { func (*PredictedBootInterface) ProtoMessage() {} func (x *PredictedBootInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[826] + mi := &file_nico_nico_proto_msgTypes[828] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56525,7 +56647,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{826} + return file_nico_nico_proto_rawDescGZIP(), []int{828} } func (x *PredictedBootInterface) GetMacAddress() string { @@ -56570,7 +56692,7 @@ type ExploredBootInterface struct { func (x *ExploredBootInterface) Reset() { *x = ExploredBootInterface{} - mi := &file_nico_nico_proto_msgTypes[827] + mi := &file_nico_nico_proto_msgTypes[829] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56582,7 +56704,7 @@ func (x *ExploredBootInterface) String() string { func (*ExploredBootInterface) ProtoMessage() {} func (x *ExploredBootInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[827] + mi := &file_nico_nico_proto_msgTypes[829] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56595,7 +56717,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{827} + return file_nico_nico_proto_rawDescGZIP(), []int{829} } func (x *ExploredBootInterface) GetAddress() string { @@ -56633,7 +56755,7 @@ type RetainedBootInterface struct { func (x *RetainedBootInterface) Reset() { *x = RetainedBootInterface{} - mi := &file_nico_nico_proto_msgTypes[828] + mi := &file_nico_nico_proto_msgTypes[830] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56645,7 +56767,7 @@ func (x *RetainedBootInterface) String() string { func (*RetainedBootInterface) ProtoMessage() {} func (x *RetainedBootInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[828] + mi := &file_nico_nico_proto_msgTypes[830] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56658,7 +56780,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{828} + return file_nico_nico_proto_rawDescGZIP(), []int{830} } func (x *RetainedBootInterface) GetMacAddress() string { @@ -56708,7 +56830,7 @@ type GetMachineBootInterfacesResponse struct { func (x *GetMachineBootInterfacesResponse) Reset() { *x = GetMachineBootInterfacesResponse{} - mi := &file_nico_nico_proto_msgTypes[829] + mi := &file_nico_nico_proto_msgTypes[831] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56720,7 +56842,7 @@ func (x *GetMachineBootInterfacesResponse) String() string { func (*GetMachineBootInterfacesResponse) ProtoMessage() {} func (x *GetMachineBootInterfacesResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[829] + mi := &file_nico_nico_proto_msgTypes[831] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56733,7 +56855,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{829} + return file_nico_nico_proto_rawDescGZIP(), []int{831} } func (x *GetMachineBootInterfacesResponse) GetMachineId() *MachineId { @@ -56803,7 +56925,7 @@ type DNSMessage_DNSQuestion struct { func (x *DNSMessage_DNSQuestion) Reset() { *x = DNSMessage_DNSQuestion{} - mi := &file_nico_nico_proto_msgTypes[831] + mi := &file_nico_nico_proto_msgTypes[833] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56815,7 +56937,7 @@ func (x *DNSMessage_DNSQuestion) String() string { func (*DNSMessage_DNSQuestion) ProtoMessage() {} func (x *DNSMessage_DNSQuestion) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[831] + mi := &file_nico_nico_proto_msgTypes[833] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56861,7 +56983,7 @@ type DNSMessage_DNSResponse struct { func (x *DNSMessage_DNSResponse) Reset() { *x = DNSMessage_DNSResponse{} - mi := &file_nico_nico_proto_msgTypes[832] + mi := &file_nico_nico_proto_msgTypes[834] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56873,7 +56995,7 @@ func (x *DNSMessage_DNSResponse) String() string { func (*DNSMessage_DNSResponse) ProtoMessage() {} func (x *DNSMessage_DNSResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[832] + mi := &file_nico_nico_proto_msgTypes[834] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56905,7 +57027,7 @@ type DNSMessage_DNSResponse_DNSRR struct { func (x *DNSMessage_DNSResponse_DNSRR) Reset() { *x = DNSMessage_DNSResponse_DNSRR{} - mi := &file_nico_nico_proto_msgTypes[833] + mi := &file_nico_nico_proto_msgTypes[835] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56917,7 +57039,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[833] + mi := &file_nico_nico_proto_msgTypes[835] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56951,7 +57073,7 @@ type MachineCredentialsUpdateRequest_Credentials struct { func (x *MachineCredentialsUpdateRequest_Credentials) Reset() { *x = MachineCredentialsUpdateRequest_Credentials{} - mi := &file_nico_nico_proto_msgTypes[839] + mi := &file_nico_nico_proto_msgTypes[841] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56963,7 +57085,7 @@ func (x *MachineCredentialsUpdateRequest_Credentials) String() string { func (*MachineCredentialsUpdateRequest_Credentials) ProtoMessage() {} func (x *MachineCredentialsUpdateRequest_Credentials) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[839] + mi := &file_nico_nico_proto_msgTypes[841] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56976,7 +57098,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{325, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{327, 0} } func (x *MachineCredentialsUpdateRequest_Credentials) GetUser() string { @@ -57010,7 +57132,7 @@ type ForgeAgentControlResponse_ForgeAgentControlExtraInfo struct { func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo) Reset() { *x = ForgeAgentControlResponse_ForgeAgentControlExtraInfo{} - mi := &file_nico_nico_proto_msgTypes[840] + mi := &file_nico_nico_proto_msgTypes[842] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57022,7 +57144,7 @@ func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo) String() string { func (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo) ProtoMessage() {} func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[840] + mi := &file_nico_nico_proto_msgTypes[842] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57035,7 +57157,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{328, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 0} } func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo) GetPair() []*ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair { @@ -57053,7 +57175,7 @@ type ForgeAgentControlResponse_Noop struct { func (x *ForgeAgentControlResponse_Noop) Reset() { *x = ForgeAgentControlResponse_Noop{} - mi := &file_nico_nico_proto_msgTypes[841] + mi := &file_nico_nico_proto_msgTypes[843] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57065,7 +57187,7 @@ func (x *ForgeAgentControlResponse_Noop) String() string { func (*ForgeAgentControlResponse_Noop) ProtoMessage() {} func (x *ForgeAgentControlResponse_Noop) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[841] + mi := &file_nico_nico_proto_msgTypes[843] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57078,7 +57200,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{328, 1} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 1} } type ForgeAgentControlResponse_Reset struct { @@ -57089,7 +57211,7 @@ type ForgeAgentControlResponse_Reset struct { func (x *ForgeAgentControlResponse_Reset) Reset() { *x = ForgeAgentControlResponse_Reset{} - mi := &file_nico_nico_proto_msgTypes[842] + mi := &file_nico_nico_proto_msgTypes[844] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57101,7 +57223,7 @@ func (x *ForgeAgentControlResponse_Reset) String() string { func (*ForgeAgentControlResponse_Reset) ProtoMessage() {} func (x *ForgeAgentControlResponse_Reset) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[842] + mi := &file_nico_nico_proto_msgTypes[844] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57114,7 +57236,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{328, 2} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 2} } type ForgeAgentControlResponse_Discovery struct { @@ -57125,7 +57247,7 @@ type ForgeAgentControlResponse_Discovery struct { func (x *ForgeAgentControlResponse_Discovery) Reset() { *x = ForgeAgentControlResponse_Discovery{} - mi := &file_nico_nico_proto_msgTypes[843] + mi := &file_nico_nico_proto_msgTypes[845] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57137,7 +57259,7 @@ func (x *ForgeAgentControlResponse_Discovery) String() string { func (*ForgeAgentControlResponse_Discovery) ProtoMessage() {} func (x *ForgeAgentControlResponse_Discovery) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[843] + mi := &file_nico_nico_proto_msgTypes[845] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57150,7 +57272,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{328, 3} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 3} } type ForgeAgentControlResponse_Rebuild struct { @@ -57161,7 +57283,7 @@ type ForgeAgentControlResponse_Rebuild struct { func (x *ForgeAgentControlResponse_Rebuild) Reset() { *x = ForgeAgentControlResponse_Rebuild{} - mi := &file_nico_nico_proto_msgTypes[844] + mi := &file_nico_nico_proto_msgTypes[846] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57173,7 +57295,7 @@ func (x *ForgeAgentControlResponse_Rebuild) String() string { func (*ForgeAgentControlResponse_Rebuild) ProtoMessage() {} func (x *ForgeAgentControlResponse_Rebuild) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[844] + mi := &file_nico_nico_proto_msgTypes[846] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57186,7 +57308,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{328, 4} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 4} } type ForgeAgentControlResponse_Retry struct { @@ -57197,7 +57319,7 @@ type ForgeAgentControlResponse_Retry struct { func (x *ForgeAgentControlResponse_Retry) Reset() { *x = ForgeAgentControlResponse_Retry{} - mi := &file_nico_nico_proto_msgTypes[845] + mi := &file_nico_nico_proto_msgTypes[847] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57209,7 +57331,7 @@ func (x *ForgeAgentControlResponse_Retry) String() string { func (*ForgeAgentControlResponse_Retry) ProtoMessage() {} func (x *ForgeAgentControlResponse_Retry) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[845] + mi := &file_nico_nico_proto_msgTypes[847] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57222,7 +57344,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{328, 5} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 5} } type ForgeAgentControlResponse_Measure struct { @@ -57233,7 +57355,7 @@ type ForgeAgentControlResponse_Measure struct { func (x *ForgeAgentControlResponse_Measure) Reset() { *x = ForgeAgentControlResponse_Measure{} - mi := &file_nico_nico_proto_msgTypes[846] + mi := &file_nico_nico_proto_msgTypes[848] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57245,7 +57367,7 @@ func (x *ForgeAgentControlResponse_Measure) String() string { func (*ForgeAgentControlResponse_Measure) ProtoMessage() {} func (x *ForgeAgentControlResponse_Measure) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[846] + mi := &file_nico_nico_proto_msgTypes[848] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57258,7 +57380,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{328, 6} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 6} } type ForgeAgentControlResponse_LogError struct { @@ -57269,7 +57391,7 @@ type ForgeAgentControlResponse_LogError struct { func (x *ForgeAgentControlResponse_LogError) Reset() { *x = ForgeAgentControlResponse_LogError{} - mi := &file_nico_nico_proto_msgTypes[847] + mi := &file_nico_nico_proto_msgTypes[849] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57281,7 +57403,7 @@ func (x *ForgeAgentControlResponse_LogError) String() string { func (*ForgeAgentControlResponse_LogError) ProtoMessage() {} func (x *ForgeAgentControlResponse_LogError) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[847] + mi := &file_nico_nico_proto_msgTypes[849] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57294,7 +57416,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{328, 7} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 7} } type ForgeAgentControlResponse_MachineValidation struct { @@ -57309,7 +57431,7 @@ type ForgeAgentControlResponse_MachineValidation struct { func (x *ForgeAgentControlResponse_MachineValidation) Reset() { *x = ForgeAgentControlResponse_MachineValidation{} - mi := &file_nico_nico_proto_msgTypes[848] + mi := &file_nico_nico_proto_msgTypes[850] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57321,7 +57443,7 @@ func (x *ForgeAgentControlResponse_MachineValidation) String() string { func (*ForgeAgentControlResponse_MachineValidation) ProtoMessage() {} func (x *ForgeAgentControlResponse_MachineValidation) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[848] + mi := &file_nico_nico_proto_msgTypes[850] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57334,7 +57456,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{328, 8} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 8} } func (x *ForgeAgentControlResponse_MachineValidation) GetIsEnabled() bool { @@ -57377,7 +57499,7 @@ type ForgeAgentControlResponse_MachineValidationFilter struct { func (x *ForgeAgentControlResponse_MachineValidationFilter) Reset() { *x = ForgeAgentControlResponse_MachineValidationFilter{} - mi := &file_nico_nico_proto_msgTypes[849] + mi := &file_nico_nico_proto_msgTypes[851] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57389,7 +57511,7 @@ func (x *ForgeAgentControlResponse_MachineValidationFilter) String() string { func (*ForgeAgentControlResponse_MachineValidationFilter) ProtoMessage() {} func (x *ForgeAgentControlResponse_MachineValidationFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[849] + mi := &file_nico_nico_proto_msgTypes[851] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57402,7 +57524,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{328, 9} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 9} } func (x *ForgeAgentControlResponse_MachineValidationFilter) GetTags() []string { @@ -57442,7 +57564,7 @@ type ForgeAgentControlResponse_MlxAction struct { func (x *ForgeAgentControlResponse_MlxAction) Reset() { *x = ForgeAgentControlResponse_MlxAction{} - mi := &file_nico_nico_proto_msgTypes[850] + mi := &file_nico_nico_proto_msgTypes[852] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57454,7 +57576,7 @@ func (x *ForgeAgentControlResponse_MlxAction) String() string { func (*ForgeAgentControlResponse_MlxAction) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxAction) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[850] + mi := &file_nico_nico_proto_msgTypes[852] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57467,7 +57589,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{328, 10} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 10} } func (x *ForgeAgentControlResponse_MlxAction) GetDeviceActions() []*ForgeAgentControlResponse_MlxDeviceAction { @@ -57494,7 +57616,7 @@ type ForgeAgentControlResponse_MlxDeviceAction struct { func (x *ForgeAgentControlResponse_MlxDeviceAction) Reset() { *x = ForgeAgentControlResponse_MlxDeviceAction{} - mi := &file_nico_nico_proto_msgTypes[851] + mi := &file_nico_nico_proto_msgTypes[853] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57506,7 +57628,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceAction) String() string { func (*ForgeAgentControlResponse_MlxDeviceAction) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceAction) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[851] + mi := &file_nico_nico_proto_msgTypes[853] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57519,7 +57641,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{328, 11} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 11} } func (x *ForgeAgentControlResponse_MlxDeviceAction) GetPciName() string { @@ -57628,7 +57750,7 @@ type ForgeAgentControlResponse_MlxDeviceNoop struct { func (x *ForgeAgentControlResponse_MlxDeviceNoop) Reset() { *x = ForgeAgentControlResponse_MlxDeviceNoop{} - mi := &file_nico_nico_proto_msgTypes[852] + mi := &file_nico_nico_proto_msgTypes[854] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57640,7 +57762,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceNoop) String() string { func (*ForgeAgentControlResponse_MlxDeviceNoop) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceNoop) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[852] + mi := &file_nico_nico_proto_msgTypes[854] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57653,7 +57775,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{328, 12} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 12} } type ForgeAgentControlResponse_MlxDeviceLock struct { @@ -57665,7 +57787,7 @@ type ForgeAgentControlResponse_MlxDeviceLock struct { func (x *ForgeAgentControlResponse_MlxDeviceLock) Reset() { *x = ForgeAgentControlResponse_MlxDeviceLock{} - mi := &file_nico_nico_proto_msgTypes[853] + mi := &file_nico_nico_proto_msgTypes[855] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57677,7 +57799,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceLock) String() string { func (*ForgeAgentControlResponse_MlxDeviceLock) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceLock) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[853] + mi := &file_nico_nico_proto_msgTypes[855] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57690,7 +57812,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{328, 13} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 13} } func (x *ForgeAgentControlResponse_MlxDeviceLock) GetKey() string { @@ -57709,7 +57831,7 @@ type ForgeAgentControlResponse_MlxDeviceUnlock struct { func (x *ForgeAgentControlResponse_MlxDeviceUnlock) Reset() { *x = ForgeAgentControlResponse_MlxDeviceUnlock{} - mi := &file_nico_nico_proto_msgTypes[854] + mi := &file_nico_nico_proto_msgTypes[856] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57721,7 +57843,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceUnlock) String() string { func (*ForgeAgentControlResponse_MlxDeviceUnlock) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceUnlock) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[854] + mi := &file_nico_nico_proto_msgTypes[856] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57734,7 +57856,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{328, 14} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 14} } func (x *ForgeAgentControlResponse_MlxDeviceUnlock) GetKey() string { @@ -57753,7 +57875,7 @@ type ForgeAgentControlResponse_MlxDeviceApplyProfile struct { func (x *ForgeAgentControlResponse_MlxDeviceApplyProfile) Reset() { *x = ForgeAgentControlResponse_MlxDeviceApplyProfile{} - mi := &file_nico_nico_proto_msgTypes[855] + mi := &file_nico_nico_proto_msgTypes[857] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57765,7 +57887,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceApplyProfile) String() string { func (*ForgeAgentControlResponse_MlxDeviceApplyProfile) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceApplyProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[855] + mi := &file_nico_nico_proto_msgTypes[857] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57778,7 +57900,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{328, 15} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 15} } func (x *ForgeAgentControlResponse_MlxDeviceApplyProfile) GetSerializedProfile() *SerializableMlxConfigProfile { @@ -57797,7 +57919,7 @@ type ForgeAgentControlResponse_MlxDeviceApplyFirmware struct { func (x *ForgeAgentControlResponse_MlxDeviceApplyFirmware) Reset() { *x = ForgeAgentControlResponse_MlxDeviceApplyFirmware{} - mi := &file_nico_nico_proto_msgTypes[856] + mi := &file_nico_nico_proto_msgTypes[858] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57809,7 +57931,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceApplyFirmware) String() string { func (*ForgeAgentControlResponse_MlxDeviceApplyFirmware) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceApplyFirmware) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[856] + mi := &file_nico_nico_proto_msgTypes[858] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57822,7 +57944,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{328, 16} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 16} } func (x *ForgeAgentControlResponse_MlxDeviceApplyFirmware) GetProfile() *FirmwareFlasherProfile { @@ -57841,7 +57963,7 @@ type ForgeAgentControlResponse_FirmwareUpgrade struct { func (x *ForgeAgentControlResponse_FirmwareUpgrade) Reset() { *x = ForgeAgentControlResponse_FirmwareUpgrade{} - mi := &file_nico_nico_proto_msgTypes[857] + mi := &file_nico_nico_proto_msgTypes[859] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57853,7 +57975,7 @@ func (x *ForgeAgentControlResponse_FirmwareUpgrade) String() string { func (*ForgeAgentControlResponse_FirmwareUpgrade) ProtoMessage() {} func (x *ForgeAgentControlResponse_FirmwareUpgrade) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[857] + mi := &file_nico_nico_proto_msgTypes[859] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57866,7 +57988,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{328, 17} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 17} } func (x *ForgeAgentControlResponse_FirmwareUpgrade) GetTask() *ScoutFirmwareUpgradeTask { @@ -57886,7 +58008,7 @@ type ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair struct { func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair) Reset() { *x = ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair{} - mi := &file_nico_nico_proto_msgTypes[858] + mi := &file_nico_nico_proto_msgTypes[860] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57898,7 +58020,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[858] + mi := &file_nico_nico_proto_msgTypes[860] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57911,7 +58033,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{328, 0, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{330, 0, 0} } func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair) GetKey() string { @@ -57939,7 +58061,7 @@ type MachineCleanupInfo_CleanupStepResult struct { func (x *MachineCleanupInfo_CleanupStepResult) Reset() { *x = MachineCleanupInfo_CleanupStepResult{} - mi := &file_nico_nico_proto_msgTypes[859] + mi := &file_nico_nico_proto_msgTypes[861] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57951,7 +58073,7 @@ func (x *MachineCleanupInfo_CleanupStepResult) String() string { func (*MachineCleanupInfo_CleanupStepResult) ProtoMessage() {} func (x *MachineCleanupInfo_CleanupStepResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[859] + mi := &file_nico_nico_proto_msgTypes[861] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57964,7 +58086,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{331, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{333, 0} } func (x *MachineCleanupInfo_CleanupStepResult) GetResult() MachineCleanupInfo_CleanupResult { @@ -57996,7 +58118,7 @@ type DpuReprovisioningListResponse_DpuReprovisioningListItem struct { func (x *DpuReprovisioningListResponse_DpuReprovisioningListItem) Reset() { *x = DpuReprovisioningListResponse_DpuReprovisioningListItem{} - mi := &file_nico_nico_proto_msgTypes[860] + mi := &file_nico_nico_proto_msgTypes[862] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58008,7 +58130,7 @@ func (x *DpuReprovisioningListResponse_DpuReprovisioningListItem) String() strin func (*DpuReprovisioningListResponse_DpuReprovisioningListItem) ProtoMessage() {} func (x *DpuReprovisioningListResponse_DpuReprovisioningListItem) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[860] + mi := &file_nico_nico_proto_msgTypes[862] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58021,7 +58143,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{413, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{415, 0} } func (x *DpuReprovisioningListResponse_DpuReprovisioningListItem) GetId() *MachineId { @@ -58087,7 +58209,7 @@ type HostReprovisioningListResponse_HostReprovisioningListItem struct { func (x *HostReprovisioningListResponse_HostReprovisioningListItem) Reset() { *x = HostReprovisioningListResponse_HostReprovisioningListItem{} - mi := &file_nico_nico_proto_msgTypes[861] + mi := &file_nico_nico_proto_msgTypes[863] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58099,7 +58221,7 @@ func (x *HostReprovisioningListResponse_HostReprovisioningListItem) String() str func (*HostReprovisioningListResponse_HostReprovisioningListItem) ProtoMessage() {} func (x *HostReprovisioningListResponse_HostReprovisioningListItem) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[861] + mi := &file_nico_nico_proto_msgTypes[863] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58112,7 +58234,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{416, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{418, 0} } func (x *HostReprovisioningListResponse_HostReprovisioningListItem) GetId() *MachineId { @@ -58183,7 +58305,7 @@ type MachineValidationTestUpdateRequest_Payload struct { func (x *MachineValidationTestUpdateRequest_Payload) Reset() { *x = MachineValidationTestUpdateRequest_Payload{} - mi := &file_nico_nico_proto_msgTypes[862] + mi := &file_nico_nico_proto_msgTypes[864] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58195,7 +58317,7 @@ func (x *MachineValidationTestUpdateRequest_Payload) String() string { func (*MachineValidationTestUpdateRequest_Payload) ProtoMessage() {} func (x *MachineValidationTestUpdateRequest_Payload) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[862] + mi := &file_nico_nico_proto_msgTypes[864] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58208,7 +58330,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{512, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{514, 0} } func (x *MachineValidationTestUpdateRequest_Payload) GetName() string { @@ -58348,7 +58470,7 @@ type DPFStateResponse_DPFState struct { func (x *DPFStateResponse_DPFState) Reset() { *x = DPFStateResponse_DPFState{} - mi := &file_nico_nico_proto_msgTypes[868] + mi := &file_nico_nico_proto_msgTypes[870] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58360,7 +58482,7 @@ func (x *DPFStateResponse_DPFState) String() string { func (*DPFStateResponse_DPFState) ProtoMessage() {} func (x *DPFStateResponse_DPFState) ProtoReflect() protoreflect.Message { - mi := &file_nico_nico_proto_msgTypes[868] + mi := &file_nico_nico_proto_msgTypes[870] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58373,7 +58495,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{766, 0} + return file_nico_nico_proto_rawDescGZIP(), []int{768, 0} } func (x *DPFStateResponse_DPFState) GetMachineId() *MachineId { @@ -59666,13 +59788,22 @@ const file_nico_nico_proto_rawDesc = "" + "\x05Issue\x120\n" + "\bcategory\x18\x01 \x01(\x0e2\x14.forge.IssueCategoryR\bcategory\x12\x18\n" + "\asummary\x18\x02 \x01(\tR\asummary\x12\x18\n" + - "\adetails\x18\x03 \x01(\tR\adetails\"\xb3\x01\n" + + "\adetails\x18\x03 \x01(\tR\adetails\"\x85\x01\n" + + "\x11DeleteInitiatedBy\x12\x10\n" + + "\x03org\x18\x01 \x01(\tR\x03org\x12(\n" + + "\x10org_display_name\x18\x02 \x01(\tR\x0eorgDisplayName\x12\x17\n" + + "\auser_id\x18\x03 \x01(\tR\x06userId\x12\x1b\n" + + "\ttenant_id\x18\x04 \x01(\tR\btenantId\"P\n" + + "\x11DeleteAttribution\x12;\n" + + "\finitiated_by\x18\x01 \x01(\v2\x18.forge.DeleteInitiatedByR\vinitiatedBy\"\x98\x02\n" + "\x16InstanceReleaseRequest\x12\"\n" + "\x02id\x18\x01 \x01(\v2\x12.common.InstanceIdR\x02id\x12'\n" + "\x05issue\x18\x02 \x01(\v2\f.forge.IssueH\x00R\x05issue\x88\x01\x01\x12-\n" + - "\x10is_repair_tenant\x18\x03 \x01(\bH\x01R\x0eisRepairTenant\x88\x01\x01B\b\n" + + "\x10is_repair_tenant\x18\x03 \x01(\bH\x01R\x0eisRepairTenant\x88\x01\x01\x12L\n" + + "\x12delete_attribution\x18\x04 \x01(\v2\x18.forge.DeleteAttributionH\x02R\x11deleteAttribution\x88\x01\x01B\b\n" + "\x06_issueB\x13\n" + - "\x11_is_repair_tenant\"\x17\n" + + "\x11_is_repair_tenantB\x15\n" + + "\x13_delete_attribution\"\x17\n" + "\x15InstanceReleaseResult\"s\n" + "\x14MachinesByIdsRequest\x122\n" + "\vmachine_ids\x18\x01 \x03(\v2\x11.common.MachineIdR\n" + @@ -64049,7 +64180,7 @@ func file_nico_nico_proto_rawDescGZIP() []byte { } var file_nico_nico_proto_enumTypes = make([]protoimpl.EnumInfo, 87) -var file_nico_nico_proto_msgTypes = make([]protoimpl.MessageInfo, 869) +var file_nico_nico_proto_msgTypes = make([]protoimpl.MessageInfo, 871) var file_nico_nico_proto_goTypes = []any{ (SpdmAttestationStatus)(0), // 0: forge.SpdmAttestationStatus (SpdmListAttestationMachinesRequestSelector)(0), // 1: forge.SpdmListAttestationMachinesRequestSelector @@ -64348,1090 +64479,1092 @@ var file_nico_nico_proto_goTypes = []any{ (*InstancePhoneHomeLastContactRequest)(nil), // 294: forge.InstancePhoneHomeLastContactRequest (*InstancePhoneHomeLastContactResponse)(nil), // 295: forge.InstancePhoneHomeLastContactResponse (*Issue)(nil), // 296: forge.Issue - (*InstanceReleaseRequest)(nil), // 297: forge.InstanceReleaseRequest - (*InstanceReleaseResult)(nil), // 298: forge.InstanceReleaseResult - (*MachinesByIdsRequest)(nil), // 299: forge.MachinesByIdsRequest - (*MachineSearchConfig)(nil), // 300: forge.MachineSearchConfig - (*MachineStateHistoriesRequest)(nil), // 301: forge.MachineStateHistoriesRequest - (*MachineStateHistories)(nil), // 302: forge.MachineStateHistories - (*MachineStateHistoryRecords)(nil), // 303: forge.MachineStateHistoryRecords - (*MachineHealthHistoriesRequest)(nil), // 304: forge.MachineHealthHistoriesRequest - (*HealthHistories)(nil), // 305: forge.HealthHistories - (*HealthHistoryRecords)(nil), // 306: forge.HealthHistoryRecords - (*HealthHistoryRecord)(nil), // 307: forge.HealthHistoryRecord - (*TenantByOrganizationIdsRequest)(nil), // 308: forge.TenantByOrganizationIdsRequest - (*TenantSearchFilter)(nil), // 309: forge.TenantSearchFilter - (*TenantList)(nil), // 310: forge.TenantList - (*TenantOrganizationIdList)(nil), // 311: forge.TenantOrganizationIdList - (*InterfaceList)(nil), // 312: forge.InterfaceList - (*MachineList)(nil), // 313: forge.MachineList - (*InterfaceDeleteQuery)(nil), // 314: forge.InterfaceDeleteQuery - (*InterfaceSearchQuery)(nil), // 315: forge.InterfaceSearchQuery - (*AssignStaticAddressRequest)(nil), // 316: forge.AssignStaticAddressRequest - (*AssignStaticAddressResponse)(nil), // 317: forge.AssignStaticAddressResponse - (*RemoveStaticAddressRequest)(nil), // 318: forge.RemoveStaticAddressRequest - (*RemoveStaticAddressResponse)(nil), // 319: forge.RemoveStaticAddressResponse - (*FindInterfaceAddressesRequest)(nil), // 320: forge.FindInterfaceAddressesRequest - (*InterfaceAddress)(nil), // 321: forge.InterfaceAddress - (*FindInterfaceAddressesResponse)(nil), // 322: forge.FindInterfaceAddressesResponse - (*BmcInfo)(nil), // 323: forge.BmcInfo - (*SwitchNvosInfo)(nil), // 324: forge.SwitchNvosInfo - (*Machine)(nil), // 325: forge.Machine - (*DpfMachineState)(nil), // 326: forge.DpfMachineState - (*InstanceNetworkRestrictions)(nil), // 327: forge.InstanceNetworkRestrictions - (*MachineMetadataUpdateRequest)(nil), // 328: forge.MachineMetadataUpdateRequest - (*RackMetadataUpdateRequest)(nil), // 329: forge.RackMetadataUpdateRequest - (*SwitchMetadataUpdateRequest)(nil), // 330: forge.SwitchMetadataUpdateRequest - (*PowerShelfMetadataUpdateRequest)(nil), // 331: forge.PowerShelfMetadataUpdateRequest - (*DpuAgentInventoryReport)(nil), // 332: forge.DpuAgentInventoryReport - (*MachineComponentInventory)(nil), // 333: forge.MachineComponentInventory - (*MachineInventorySoftwareComponent)(nil), // 334: forge.MachineInventorySoftwareComponent - (*HealthSourceOrigin)(nil), // 335: forge.HealthSourceOrigin - (*ControllerStateReason)(nil), // 336: forge.ControllerStateReason - (*ControllerStateSourceReference)(nil), // 337: forge.ControllerStateSourceReference - (*StateSla)(nil), // 338: forge.StateSla - (*InstanceTenantStatus)(nil), // 339: forge.InstanceTenantStatus - (*MachineEvent)(nil), // 340: forge.MachineEvent - (*MachineInterface)(nil), // 341: forge.MachineInterface - (*InfinibandStatusObservation)(nil), // 342: forge.InfinibandStatusObservation - (*MachineIbInterface)(nil), // 343: forge.MachineIbInterface - (*DhcpDiscovery)(nil), // 344: forge.DhcpDiscovery - (*ExpireDhcpLeaseRequest)(nil), // 345: forge.ExpireDhcpLeaseRequest - (*ExpireDhcpLeaseResponse)(nil), // 346: forge.ExpireDhcpLeaseResponse - (*DhcpRecord)(nil), // 347: forge.DhcpRecord - (*NetworkSegmentList)(nil), // 348: forge.NetworkSegmentList - (*SSHKeyValidationRequest)(nil), // 349: forge.SSHKeyValidationRequest - (*SSHKeyValidationResponse)(nil), // 350: forge.SSHKeyValidationResponse - (*GetBmcCredentialsRequest)(nil), // 351: forge.GetBmcCredentialsRequest - (*GetSwitchNvosCredentialsRequest)(nil), // 352: forge.GetSwitchNvosCredentialsRequest - (*GetBmcCredentialsResponse)(nil), // 353: forge.GetBmcCredentialsResponse - (*BmcCredentials)(nil), // 354: forge.BmcCredentials - (*GetSiteExplorationRequest)(nil), // 355: forge.GetSiteExplorationRequest - (*ClearSiteExplorationErrorRequest)(nil), // 356: forge.ClearSiteExplorationErrorRequest - (*ReExploreEndpointRequest)(nil), // 357: forge.ReExploreEndpointRequest - (*RefreshEndpointReportRequest)(nil), // 358: forge.RefreshEndpointReportRequest - (*DeleteExploredEndpointRequest)(nil), // 359: forge.DeleteExploredEndpointRequest - (*PauseExploredEndpointRemediationRequest)(nil), // 360: forge.PauseExploredEndpointRemediationRequest - (*DeleteExploredEndpointResponse)(nil), // 361: forge.DeleteExploredEndpointResponse - (*BmcEndpointRequest)(nil), // 362: forge.BmcEndpointRequest - (*SshTimeoutConfig)(nil), // 363: forge.SshTimeoutConfig - (*SshRequest)(nil), // 364: forge.SshRequest - (*CopyBfbToDpuRshimRequest)(nil), // 365: forge.CopyBfbToDpuRshimRequest - (*UpdateMachineHardwareInfoRequest)(nil), // 366: forge.UpdateMachineHardwareInfoRequest - (*MachineHardwareInfo)(nil), // 367: forge.MachineHardwareInfo - (*ManagedHostNetworkConfigRequest)(nil), // 368: forge.ManagedHostNetworkConfigRequest - (*ManagedHostNetworkConfigResponse)(nil), // 369: forge.ManagedHostNetworkConfigResponse - (*TrafficInterceptConfig)(nil), // 370: forge.TrafficInterceptConfig - (*TrafficInterceptBridging)(nil), // 371: forge.TrafficInterceptBridging - (*ManagedHostDpuExtensionServiceConfig)(nil), // 372: forge.ManagedHostDpuExtensionServiceConfig - (*ManagedHostQuarantineState)(nil), // 373: forge.ManagedHostQuarantineState - (*GetManagedHostQuarantineStateRequest)(nil), // 374: forge.GetManagedHostQuarantineStateRequest - (*GetManagedHostQuarantineStateResponse)(nil), // 375: forge.GetManagedHostQuarantineStateResponse - (*SetManagedHostQuarantineStateRequest)(nil), // 376: forge.SetManagedHostQuarantineStateRequest - (*SetManagedHostQuarantineStateResponse)(nil), // 377: forge.SetManagedHostQuarantineStateResponse - (*ClearManagedHostQuarantineStateRequest)(nil), // 378: forge.ClearManagedHostQuarantineStateRequest - (*ClearManagedHostQuarantineStateResponse)(nil), // 379: forge.ClearManagedHostQuarantineStateResponse - (*ManagedHostNetworkConfig)(nil), // 380: forge.ManagedHostNetworkConfig - (*FlatInterfaceConfig)(nil), // 381: forge.FlatInterfaceConfig - (*FlatInterfaceRoutingProfile)(nil), // 382: forge.FlatInterfaceRoutingProfile - (*FlatInterfaceIpv6Config)(nil), // 383: forge.FlatInterfaceIpv6Config - (*FlatInterfaceNetworkSecurityGroupConfig)(nil), // 384: forge.FlatInterfaceNetworkSecurityGroupConfig - (*ManagedHostNetworkStatusRequest)(nil), // 385: forge.ManagedHostNetworkStatusRequest - (*ManagedHostNetworkStatusResponse)(nil), // 386: forge.ManagedHostNetworkStatusResponse - (*DpuAgentUpgradeCheckRequest)(nil), // 387: forge.DpuAgentUpgradeCheckRequest - (*DpuAgentUpgradeCheckResponse)(nil), // 388: forge.DpuAgentUpgradeCheckResponse - (*DpuAgentUpgradePolicyRequest)(nil), // 389: forge.DpuAgentUpgradePolicyRequest - (*DpuAgentUpgradePolicyResponse)(nil), // 390: forge.DpuAgentUpgradePolicyResponse - (*AdminForceDeleteMachineRequest)(nil), // 391: forge.AdminForceDeleteMachineRequest - (*AdminForceDeleteMachineResponse)(nil), // 392: forge.AdminForceDeleteMachineResponse - (*DisableSecureBootResponse)(nil), // 393: forge.DisableSecureBootResponse - (*LockdownRequest)(nil), // 394: forge.LockdownRequest - (*LockdownResponse)(nil), // 395: forge.LockdownResponse - (*LockdownStatusRequest)(nil), // 396: forge.LockdownStatusRequest - (*MachineSetupStatusRequest)(nil), // 397: forge.MachineSetupStatusRequest - (*MachineSetupRequest)(nil), // 398: forge.MachineSetupRequest - (*MachineSetupResponse)(nil), // 399: forge.MachineSetupResponse - (*SetDpuFirstBootOrderRequest)(nil), // 400: forge.SetDpuFirstBootOrderRequest - (*SetDpuFirstBootOrderResponse)(nil), // 401: forge.SetDpuFirstBootOrderResponse - (*AdminRebootRequest)(nil), // 402: forge.AdminRebootRequest - (*AdminRebootResponse)(nil), // 403: forge.AdminRebootResponse - (*AdminBmcResetRequest)(nil), // 404: forge.AdminBmcResetRequest - (*AdminBmcResetResponse)(nil), // 405: forge.AdminBmcResetResponse - (*EnableInfiniteBootRequest)(nil), // 406: forge.EnableInfiniteBootRequest - (*EnableInfiniteBootResponse)(nil), // 407: forge.EnableInfiniteBootResponse - (*IsInfiniteBootEnabledRequest)(nil), // 408: forge.IsInfiniteBootEnabledRequest - (*IsInfiniteBootEnabledResponse)(nil), // 409: forge.IsInfiniteBootEnabledResponse - (*BMCMetaDataGetRequest)(nil), // 410: forge.BMCMetaDataGetRequest - (*BMCMetaDataGetResponse)(nil), // 411: forge.BMCMetaDataGetResponse - (*MachineCredentialsUpdateRequest)(nil), // 412: forge.MachineCredentialsUpdateRequest - (*MachineCredentialsUpdateResponse)(nil), // 413: forge.MachineCredentialsUpdateResponse - (*ForgeAgentControlRequest)(nil), // 414: forge.ForgeAgentControlRequest - (*ForgeAgentControlResponse)(nil), // 415: forge.ForgeAgentControlResponse - (*MachineDiscoveryInfo)(nil), // 416: forge.MachineDiscoveryInfo - (*MachineDiscoveryCompletedRequest)(nil), // 417: forge.MachineDiscoveryCompletedRequest - (*MachineCleanupInfo)(nil), // 418: forge.MachineCleanupInfo - (*MachineCertificate)(nil), // 419: forge.MachineCertificate - (*MachineCertificateRenewRequest)(nil), // 420: forge.MachineCertificateRenewRequest - (*MachineCertificateResult)(nil), // 421: forge.MachineCertificateResult - (*MachineDiscoveryResult)(nil), // 422: forge.MachineDiscoveryResult - (*MachineDiscoveryCompletedResponse)(nil), // 423: forge.MachineDiscoveryCompletedResponse - (*MachineCleanupResult)(nil), // 424: forge.MachineCleanupResult - (*ForgeScoutErrorReport)(nil), // 425: forge.ForgeScoutErrorReport - (*ForgeScoutErrorReportResult)(nil), // 426: forge.ForgeScoutErrorReportResult - (*PxeInstructionRequest)(nil), // 427: forge.PxeInstructionRequest - (*PxeInstructions)(nil), // 428: forge.PxeInstructions - (*CloudInitDiscoveryInstructions)(nil), // 429: forge.CloudInitDiscoveryInstructions - (*CloudInitMetaData)(nil), // 430: forge.CloudInitMetaData - (*CloudInitInstructionsRequest)(nil), // 431: forge.CloudInitInstructionsRequest - (*CloudInitInstructions)(nil), // 432: forge.CloudInitInstructions - (*DpuNetworkStatus)(nil), // 433: forge.DpuNetworkStatus - (*LastDhcpRequest)(nil), // 434: forge.LastDhcpRequest - (*DpuExtensionServiceStatusObservation)(nil), // 435: forge.DpuExtensionServiceStatusObservation - (*DpuExtensionServiceComponent)(nil), // 436: forge.DpuExtensionServiceComponent - (*OptionalHealthReport)(nil), // 437: forge.OptionalHealthReport - (*HealthReportEntry)(nil), // 438: forge.HealthReportEntry - (*InsertMachineHealthReportRequest)(nil), // 439: forge.InsertMachineHealthReportRequest - (*InsertRackHealthReportRequest)(nil), // 440: forge.InsertRackHealthReportRequest - (*RemoveRackHealthReportRequest)(nil), // 441: forge.RemoveRackHealthReportRequest - (*ListRackHealthReportsRequest)(nil), // 442: forge.ListRackHealthReportsRequest - (*InsertSwitchHealthReportRequest)(nil), // 443: forge.InsertSwitchHealthReportRequest - (*RemoveSwitchHealthReportRequest)(nil), // 444: forge.RemoveSwitchHealthReportRequest - (*ListSwitchHealthReportsRequest)(nil), // 445: forge.ListSwitchHealthReportsRequest - (*InsertPowerShelfHealthReportRequest)(nil), // 446: forge.InsertPowerShelfHealthReportRequest - (*RemovePowerShelfHealthReportRequest)(nil), // 447: forge.RemovePowerShelfHealthReportRequest - (*ListPowerShelfHealthReportsRequest)(nil), // 448: forge.ListPowerShelfHealthReportsRequest - (*ListHealthReportResponse)(nil), // 449: forge.ListHealthReportResponse - (*RemoveMachineHealthReportRequest)(nil), // 450: forge.RemoveMachineHealthReportRequest - (*ListNVLinkDomainHealthReportsRequest)(nil), // 451: forge.ListNVLinkDomainHealthReportsRequest - (*InsertNVLinkDomainHealthReportRequest)(nil), // 452: forge.InsertNVLinkDomainHealthReportRequest - (*RemoveNVLinkDomainHealthReportRequest)(nil), // 453: forge.RemoveNVLinkDomainHealthReportRequest - (*InstanceInterfaceStatusObservation)(nil), // 454: forge.InstanceInterfaceStatusObservation - (*FabricInterfaceData)(nil), // 455: forge.FabricInterfaceData - (*LinkData)(nil), // 456: forge.LinkData - (*Tenant)(nil), // 457: forge.Tenant - (*CreateTenantRequest)(nil), // 458: forge.CreateTenantRequest - (*CreateTenantResponse)(nil), // 459: forge.CreateTenantResponse - (*UpdateTenantRequest)(nil), // 460: forge.UpdateTenantRequest - (*UpdateTenantResponse)(nil), // 461: forge.UpdateTenantResponse - (*FindTenantRequest)(nil), // 462: forge.FindTenantRequest - (*FindTenantResponse)(nil), // 463: forge.FindTenantResponse - (*TenantKeysetIdentifier)(nil), // 464: forge.TenantKeysetIdentifier - (*TenantPublicKey)(nil), // 465: forge.TenantPublicKey - (*TenantKeysetContent)(nil), // 466: forge.TenantKeysetContent - (*TenantKeyset)(nil), // 467: forge.TenantKeyset - (*CreateTenantKeysetRequest)(nil), // 468: forge.CreateTenantKeysetRequest - (*CreateTenantKeysetResponse)(nil), // 469: forge.CreateTenantKeysetResponse - (*TenantKeySetList)(nil), // 470: forge.TenantKeySetList - (*UpdateTenantKeysetRequest)(nil), // 471: forge.UpdateTenantKeysetRequest - (*UpdateTenantKeysetResponse)(nil), // 472: forge.UpdateTenantKeysetResponse - (*DeleteTenantKeysetRequest)(nil), // 473: forge.DeleteTenantKeysetRequest - (*DeleteTenantKeysetResponse)(nil), // 474: forge.DeleteTenantKeysetResponse - (*TenantKeysetSearchFilter)(nil), // 475: forge.TenantKeysetSearchFilter - (*TenantKeysetIdList)(nil), // 476: forge.TenantKeysetIdList - (*TenantKeysetsByIdsRequest)(nil), // 477: forge.TenantKeysetsByIdsRequest - (*ValidateTenantPublicKeyRequest)(nil), // 478: forge.ValidateTenantPublicKeyRequest - (*ValidateTenantPublicKeyResponse)(nil), // 479: forge.ValidateTenantPublicKeyResponse - (*ListResourcePoolsRequest)(nil), // 480: forge.ListResourcePoolsRequest - (*ResourcePools)(nil), // 481: forge.ResourcePools - (*ResourcePool)(nil), // 482: forge.ResourcePool - (*GrowResourcePoolRequest)(nil), // 483: forge.GrowResourcePoolRequest - (*GrowResourcePoolResponse)(nil), // 484: forge.GrowResourcePoolResponse - (*Range)(nil), // 485: forge.Range - (*MigrateVpcVniResponse)(nil), // 486: forge.MigrateVpcVniResponse - (*MaintenanceRequest)(nil), // 487: forge.MaintenanceRequest - (*SetDynamicConfigRequest)(nil), // 488: forge.SetDynamicConfigRequest - (*FindIpAddressRequest)(nil), // 489: forge.FindIpAddressRequest - (*FindIpAddressResponse)(nil), // 490: forge.FindIpAddressResponse - (*IdentifyUuidRequest)(nil), // 491: forge.IdentifyUuidRequest - (*IdentifyUuidResponse)(nil), // 492: forge.IdentifyUuidResponse - (*FindBmcIpsRequest)(nil), // 493: forge.FindBmcIpsRequest - (*IdentifyMacRequest)(nil), // 494: forge.IdentifyMacRequest - (*IdentifyMacResponse)(nil), // 495: forge.IdentifyMacResponse - (*IdentifySerialRequest)(nil), // 496: forge.IdentifySerialRequest - (*IdentifySerialResponse)(nil), // 497: forge.IdentifySerialResponse - (*DpuReprovisioningRequest)(nil), // 498: forge.DpuReprovisioningRequest - (*DpuReprovisioningListRequest)(nil), // 499: forge.DpuReprovisioningListRequest - (*DpuReprovisioningListResponse)(nil), // 500: forge.DpuReprovisioningListResponse - (*HostReprovisioningRequest)(nil), // 501: forge.HostReprovisioningRequest - (*HostReprovisioningListRequest)(nil), // 502: forge.HostReprovisioningListRequest - (*HostReprovisioningListResponse)(nil), // 503: forge.HostReprovisioningListResponse - (*DpuOsOperationalState)(nil), // 504: forge.DpuOsOperationalState - (*DpuRepresentorStatus)(nil), // 505: forge.DpuRepresentorStatus - (*DpuInfoStatusObservation)(nil), // 506: forge.DpuInfoStatusObservation - (*DpuInfo)(nil), // 507: forge.DpuInfo - (*GetDpuInfoListRequest)(nil), // 508: forge.GetDpuInfoListRequest - (*GetDpuInfoListResponse)(nil), // 509: forge.GetDpuInfoListResponse - (*IpAddressMatch)(nil), // 510: forge.IpAddressMatch - (*MachineBootOverride)(nil), // 511: forge.MachineBootOverride - (*ConnectedDevice)(nil), // 512: forge.ConnectedDevice - (*ConnectedDeviceList)(nil), // 513: forge.ConnectedDeviceList - (*BmcIpList)(nil), // 514: forge.BmcIpList - (*BmcIp)(nil), // 515: forge.BmcIp - (*MacAddressBmcIp)(nil), // 516: forge.MacAddressBmcIp - (*MachineIdBmcIpPairs)(nil), // 517: forge.MachineIdBmcIpPairs - (*MachineIdBmcIp)(nil), // 518: forge.MachineIdBmcIp - (*NetworkDevice)(nil), // 519: forge.NetworkDevice - (*NetworkTopologyRequest)(nil), // 520: forge.NetworkTopologyRequest - (*NetworkDeviceIdList)(nil), // 521: forge.NetworkDeviceIdList - (*NetworkTopologyData)(nil), // 522: forge.NetworkTopologyData - (*RouteServers)(nil), // 523: forge.RouteServers - (*RouteServerEntries)(nil), // 524: forge.RouteServerEntries - (*RouteServer)(nil), // 525: forge.RouteServer - (*SetHostUefiPasswordRequest)(nil), // 526: forge.SetHostUefiPasswordRequest - (*SetHostUefiPasswordResponse)(nil), // 527: forge.SetHostUefiPasswordResponse - (*ClearHostUefiPasswordRequest)(nil), // 528: forge.ClearHostUefiPasswordRequest - (*ClearHostUefiPasswordResponse)(nil), // 529: forge.ClearHostUefiPasswordResponse - (*OsImageAttributes)(nil), // 530: forge.OsImageAttributes - (*OsImage)(nil), // 531: forge.OsImage - (*ListOsImageRequest)(nil), // 532: forge.ListOsImageRequest - (*ListOsImageResponse)(nil), // 533: forge.ListOsImageResponse - (*DeleteOsImageRequest)(nil), // 534: forge.DeleteOsImageRequest - (*DeleteOsImageResponse)(nil), // 535: forge.DeleteOsImageResponse - (*GetIpxeTemplateRequest)(nil), // 536: forge.GetIpxeTemplateRequest - (*ListIpxeTemplatesRequest)(nil), // 537: forge.ListIpxeTemplatesRequest - (*IpxeTemplateList)(nil), // 538: forge.IpxeTemplateList - (*ExpectedHostNic)(nil), // 539: forge.ExpectedHostNic - (*HostLifecycleProfile)(nil), // 540: forge.HostLifecycleProfile - (*ExpectedMachine)(nil), // 541: forge.ExpectedMachine - (*ExpectedMachineRequest)(nil), // 542: forge.ExpectedMachineRequest - (*ExpectedMachineList)(nil), // 543: forge.ExpectedMachineList - (*LinkedExpectedMachineList)(nil), // 544: forge.LinkedExpectedMachineList - (*LinkedExpectedMachine)(nil), // 545: forge.LinkedExpectedMachine - (*UnexpectedMachineList)(nil), // 546: forge.UnexpectedMachineList - (*UnexpectedMachine)(nil), // 547: forge.UnexpectedMachine - (*BatchExpectedMachineOperationRequest)(nil), // 548: forge.BatchExpectedMachineOperationRequest - (*ExpectedMachineOperationResult)(nil), // 549: forge.ExpectedMachineOperationResult - (*BatchExpectedMachineOperationResponse)(nil), // 550: forge.BatchExpectedMachineOperationResponse - (*MachineRebootCompletedResponse)(nil), // 551: forge.MachineRebootCompletedResponse - (*MachineRebootCompletedRequest)(nil), // 552: forge.MachineRebootCompletedRequest - (*ScoutFirmwareUpgradeStatusRequest)(nil), // 553: forge.ScoutFirmwareUpgradeStatusRequest - (*MachineValidationCompletedRequest)(nil), // 554: forge.MachineValidationCompletedRequest - (*MachineValidationCompletedResponse)(nil), // 555: forge.MachineValidationCompletedResponse - (*MachineValidationResult)(nil), // 556: forge.MachineValidationResult - (*MachineValidationResultPostRequest)(nil), // 557: forge.MachineValidationResultPostRequest - (*MachineValidationResultList)(nil), // 558: forge.MachineValidationResultList - (*MachineValidationGetRequest)(nil), // 559: forge.MachineValidationGetRequest - (*MachineValidationStatus)(nil), // 560: forge.MachineValidationStatus - (*MachineValidationRun)(nil), // 561: forge.MachineValidationRun - (*MachineSetAutoUpdateRequest)(nil), // 562: forge.MachineSetAutoUpdateRequest - (*MachineSetAutoUpdateResponse)(nil), // 563: forge.MachineSetAutoUpdateResponse - (*GetMachineValidationExternalConfigRequest)(nil), // 564: forge.GetMachineValidationExternalConfigRequest - (*MachineValidationExternalConfig)(nil), // 565: forge.MachineValidationExternalConfig - (*GetMachineValidationExternalConfigResponse)(nil), // 566: forge.GetMachineValidationExternalConfigResponse - (*GetMachineValidationExternalConfigsRequest)(nil), // 567: forge.GetMachineValidationExternalConfigsRequest - (*GetMachineValidationExternalConfigsResponse)(nil), // 568: forge.GetMachineValidationExternalConfigsResponse - (*AddUpdateMachineValidationExternalConfigRequest)(nil), // 569: forge.AddUpdateMachineValidationExternalConfigRequest - (*RemoveMachineValidationExternalConfigRequest)(nil), // 570: forge.RemoveMachineValidationExternalConfigRequest - (*MachineValidationOnDemandRequest)(nil), // 571: forge.MachineValidationOnDemandRequest - (*MachineValidationOnDemandResponse)(nil), // 572: forge.MachineValidationOnDemandResponse - (*FirmwareUpgradeActivity)(nil), // 573: forge.FirmwareUpgradeActivity - (*NvosUpdateActivity)(nil), // 574: forge.NvosUpdateActivity - (*ConfigureNmxClusterActivity)(nil), // 575: forge.ConfigureNmxClusterActivity - (*PowerSequenceActivity)(nil), // 576: forge.PowerSequenceActivity - (*MaintenanceActivityConfig)(nil), // 577: forge.MaintenanceActivityConfig - (*RackMaintenanceScope)(nil), // 578: forge.RackMaintenanceScope - (*RackMaintenanceOnDemandRequest)(nil), // 579: forge.RackMaintenanceOnDemandRequest - (*RackMaintenanceOnDemandResponse)(nil), // 580: forge.RackMaintenanceOnDemandResponse - (*AdminPowerControlRequest)(nil), // 581: forge.AdminPowerControlRequest - (*AdminPowerControlResponse)(nil), // 582: forge.AdminPowerControlResponse - (*GetRedfishJobStateRequest)(nil), // 583: forge.GetRedfishJobStateRequest - (*GetRedfishJobStateResponse)(nil), // 584: forge.GetRedfishJobStateResponse - (*MachineValidationRunList)(nil), // 585: forge.MachineValidationRunList - (*MachineValidationRunListGetRequest)(nil), // 586: forge.MachineValidationRunListGetRequest - (*MachineValidationRunItemSearchFilter)(nil), // 587: forge.MachineValidationRunItemSearchFilter - (*MachineValidationRunItemIdList)(nil), // 588: forge.MachineValidationRunItemIdList - (*MachineValidationRunItemsByIdsRequest)(nil), // 589: forge.MachineValidationRunItemsByIdsRequest - (*MachineValidationRunItemList)(nil), // 590: forge.MachineValidationRunItemList - (*MachineValidationRunItem)(nil), // 591: forge.MachineValidationRunItem - (*MachineValidationAttemptGetRequest)(nil), // 592: forge.MachineValidationAttemptGetRequest - (*MachineValidationAttempt)(nil), // 593: forge.MachineValidationAttempt - (*MachineValidationHeartbeatRequest)(nil), // 594: forge.MachineValidationHeartbeatRequest - (*MachineValidationHeartbeatResponse)(nil), // 595: forge.MachineValidationHeartbeatResponse - (*IsBmcInManagedHostResponse)(nil), // 596: forge.IsBmcInManagedHostResponse - (*BmcCredentialStatusResponse)(nil), // 597: forge.BmcCredentialStatusResponse - (*MachineValidationTestsGetRequest)(nil), // 598: forge.MachineValidationTestsGetRequest - (*MachineValidationTestUpdateRequest)(nil), // 599: forge.MachineValidationTestUpdateRequest - (*MachineValidationTestAddRequest)(nil), // 600: forge.MachineValidationTestAddRequest - (*MachineValidationTestAddUpdateResponse)(nil), // 601: forge.MachineValidationTestAddUpdateResponse - (*MachineValidationTestsGetResponse)(nil), // 602: forge.MachineValidationTestsGetResponse - (*MachineValidationTestVerfiedRequest)(nil), // 603: forge.MachineValidationTestVerfiedRequest - (*MachineValidationTestVerfiedResponse)(nil), // 604: forge.MachineValidationTestVerfiedResponse - (*MachineValidationTest)(nil), // 605: forge.MachineValidationTest - (*MachineValidationTestNextVersionResponse)(nil), // 606: forge.MachineValidationTestNextVersionResponse - (*MachineValidationTestNextVersionRequest)(nil), // 607: forge.MachineValidationTestNextVersionRequest - (*MachineValidationTestEnableDisableTestRequest)(nil), // 608: forge.MachineValidationTestEnableDisableTestRequest - (*MachineValidationTestEnableDisableTestResponse)(nil), // 609: forge.MachineValidationTestEnableDisableTestResponse - (*MachineValidationRunRequest)(nil), // 610: forge.MachineValidationRunRequest - (*MachineValidationRunResponse)(nil), // 611: forge.MachineValidationRunResponse - (*MachineCapabilityAttributesCpu)(nil), // 612: forge.MachineCapabilityAttributesCpu - (*MachineCapabilityAttributesGpu)(nil), // 613: forge.MachineCapabilityAttributesGpu - (*MachineCapabilityAttributesMemory)(nil), // 614: forge.MachineCapabilityAttributesMemory - (*MachineCapabilityAttributesStorage)(nil), // 615: forge.MachineCapabilityAttributesStorage - (*MachineCapabilityAttributesNetwork)(nil), // 616: forge.MachineCapabilityAttributesNetwork - (*MachineCapabilityAttributesInfiniband)(nil), // 617: forge.MachineCapabilityAttributesInfiniband - (*MachineCapabilityAttributesDpu)(nil), // 618: forge.MachineCapabilityAttributesDpu - (*MachineCapabilitiesSet)(nil), // 619: forge.MachineCapabilitiesSet - (*InstanceTypeAttributes)(nil), // 620: forge.InstanceTypeAttributes - (*InstanceType)(nil), // 621: forge.InstanceType - (*InstanceTypeMachineCapabilityFilterAttributes)(nil), // 622: forge.InstanceTypeMachineCapabilityFilterAttributes - (*CreateInstanceTypeRequest)(nil), // 623: forge.CreateInstanceTypeRequest - (*CreateInstanceTypeResponse)(nil), // 624: forge.CreateInstanceTypeResponse - (*FindInstanceTypeIdsRequest)(nil), // 625: forge.FindInstanceTypeIdsRequest - (*FindInstanceTypeIdsResponse)(nil), // 626: forge.FindInstanceTypeIdsResponse - (*FindInstanceTypesByIdsRequest)(nil), // 627: forge.FindInstanceTypesByIdsRequest - (*FindInstanceTypesByIdsResponse)(nil), // 628: forge.FindInstanceTypesByIdsResponse - (*DeleteInstanceTypeRequest)(nil), // 629: forge.DeleteInstanceTypeRequest - (*DeleteInstanceTypeResponse)(nil), // 630: forge.DeleteInstanceTypeResponse - (*UpdateInstanceTypeResponse)(nil), // 631: forge.UpdateInstanceTypeResponse - (*UpdateInstanceTypeRequest)(nil), // 632: forge.UpdateInstanceTypeRequest - (*AssociateMachinesWithInstanceTypeRequest)(nil), // 633: forge.AssociateMachinesWithInstanceTypeRequest - (*AssociateMachinesWithInstanceTypeResponse)(nil), // 634: forge.AssociateMachinesWithInstanceTypeResponse - (*RemoveMachineInstanceTypeAssociationRequest)(nil), // 635: forge.RemoveMachineInstanceTypeAssociationRequest - (*RemoveMachineInstanceTypeAssociationResponse)(nil), // 636: forge.RemoveMachineInstanceTypeAssociationResponse - (*RedfishBrowseRequest)(nil), // 637: forge.RedfishBrowseRequest - (*RedfishBrowseResponse)(nil), // 638: forge.RedfishBrowseResponse - (*RedfishListActionsRequest)(nil), // 639: forge.RedfishListActionsRequest - (*RedfishListActionsResponse)(nil), // 640: forge.RedfishListActionsResponse - (*RedfishAction)(nil), // 641: forge.RedfishAction - (*OptionalRedfishActionResult)(nil), // 642: forge.OptionalRedfishActionResult - (*RedfishActionResult)(nil), // 643: forge.RedfishActionResult - (*RedfishCreateActionRequest)(nil), // 644: forge.RedfishCreateActionRequest - (*RedfishCreateActionResponse)(nil), // 645: forge.RedfishCreateActionResponse - (*RedfishActionID)(nil), // 646: forge.RedfishActionID - (*RedfishApproveActionResponse)(nil), // 647: forge.RedfishApproveActionResponse - (*RedfishApplyActionResponse)(nil), // 648: forge.RedfishApplyActionResponse - (*RedfishCancelActionResponse)(nil), // 649: forge.RedfishCancelActionResponse - (*UfmBrowseRequest)(nil), // 650: forge.UfmBrowseRequest - (*UfmBrowseResponse)(nil), // 651: forge.UfmBrowseResponse - (*NetworkSecurityGroupAttributes)(nil), // 652: forge.NetworkSecurityGroupAttributes - (*NetworkSecurityGroup)(nil), // 653: forge.NetworkSecurityGroup - (*CreateNetworkSecurityGroupRequest)(nil), // 654: forge.CreateNetworkSecurityGroupRequest - (*CreateNetworkSecurityGroupResponse)(nil), // 655: forge.CreateNetworkSecurityGroupResponse - (*FindNetworkSecurityGroupIdsRequest)(nil), // 656: forge.FindNetworkSecurityGroupIdsRequest - (*FindNetworkSecurityGroupIdsResponse)(nil), // 657: forge.FindNetworkSecurityGroupIdsResponse - (*FindNetworkSecurityGroupsByIdsRequest)(nil), // 658: forge.FindNetworkSecurityGroupsByIdsRequest - (*FindNetworkSecurityGroupsByIdsResponse)(nil), // 659: forge.FindNetworkSecurityGroupsByIdsResponse - (*UpdateNetworkSecurityGroupResponse)(nil), // 660: forge.UpdateNetworkSecurityGroupResponse - (*UpdateNetworkSecurityGroupRequest)(nil), // 661: forge.UpdateNetworkSecurityGroupRequest - (*DeleteNetworkSecurityGroupRequest)(nil), // 662: forge.DeleteNetworkSecurityGroupRequest - (*DeleteNetworkSecurityGroupResponse)(nil), // 663: forge.DeleteNetworkSecurityGroupResponse - (*NetworkSecurityGroupStatus)(nil), // 664: forge.NetworkSecurityGroupStatus - (*NetworkSecurityGroupPropagationObjectStatus)(nil), // 665: forge.NetworkSecurityGroupPropagationObjectStatus - (*GetNetworkSecurityGroupPropagationStatusResponse)(nil), // 666: forge.GetNetworkSecurityGroupPropagationStatusResponse - (*NetworkSecurityGroupIdList)(nil), // 667: forge.NetworkSecurityGroupIdList - (*GetNetworkSecurityGroupPropagationStatusRequest)(nil), // 668: forge.GetNetworkSecurityGroupPropagationStatusRequest - (*NetworkSecurityGroupRuleAttributes)(nil), // 669: forge.NetworkSecurityGroupRuleAttributes - (*ResolvedNetworkSecurityGroupRule)(nil), // 670: forge.ResolvedNetworkSecurityGroupRule - (*GetNetworkSecurityGroupAttachmentsRequest)(nil), // 671: forge.GetNetworkSecurityGroupAttachmentsRequest - (*NetworkSecurityGroupAttachments)(nil), // 672: forge.NetworkSecurityGroupAttachments - (*GetNetworkSecurityGroupAttachmentsResponse)(nil), // 673: forge.GetNetworkSecurityGroupAttachmentsResponse - (*GetDesiredFirmwareVersionsRequest)(nil), // 674: forge.GetDesiredFirmwareVersionsRequest - (*GetDesiredFirmwareVersionsResponse)(nil), // 675: forge.GetDesiredFirmwareVersionsResponse - (*DesiredFirmwareVersionEntry)(nil), // 676: forge.DesiredFirmwareVersionEntry - (*SkuComponentChassis)(nil), // 677: forge.SkuComponentChassis - (*SkuComponentCpu)(nil), // 678: forge.SkuComponentCpu - (*SkuComponentGpu)(nil), // 679: forge.SkuComponentGpu - (*SkuComponentEthernetDevices)(nil), // 680: forge.SkuComponentEthernetDevices - (*SkuComponentInfinibandDevices)(nil), // 681: forge.SkuComponentInfinibandDevices - (*SkuComponentStorage)(nil), // 682: forge.SkuComponentStorage - (*SkuComponentStorageController)(nil), // 683: forge.SkuComponentStorageController - (*SkuComponentMemory)(nil), // 684: forge.SkuComponentMemory - (*SkuComponentTpm)(nil), // 685: forge.SkuComponentTpm - (*SkuComponents)(nil), // 686: forge.SkuComponents - (*Sku)(nil), // 687: forge.Sku - (*SkuMachinePair)(nil), // 688: forge.SkuMachinePair - (*RemoveSkuRequest)(nil), // 689: forge.RemoveSkuRequest - (*SkuList)(nil), // 690: forge.SkuList - (*SkuIdList)(nil), // 691: forge.SkuIdList - (*SkuStatus)(nil), // 692: forge.SkuStatus - (*SkusByIdsRequest)(nil), // 693: forge.SkusByIdsRequest - (*SkuSearchFilter)(nil), // 694: forge.SkuSearchFilter - (*DpaInterface)(nil), // 695: forge.DpaInterface - (*DpaInterfaceCreationRequest)(nil), // 696: forge.DpaInterfaceCreationRequest - (*DpaInterfaceIdList)(nil), // 697: forge.DpaInterfaceIdList - (*DpaInterfacesByIdsRequest)(nil), // 698: forge.DpaInterfacesByIdsRequest - (*DpaInterfaceList)(nil), // 699: forge.DpaInterfaceList - (*DpaNetworkObservationSetRequest)(nil), // 700: forge.DpaNetworkObservationSetRequest - (*DpaInterfaceDeletionRequest)(nil), // 701: forge.DpaInterfaceDeletionRequest - (*DpaInterfaceDeletionResult)(nil), // 702: forge.DpaInterfaceDeletionResult - (*SkuUpdateMetadataRequest)(nil), // 703: forge.SkuUpdateMetadataRequest - (*PowerOptionRequest)(nil), // 704: forge.PowerOptionRequest - (*PowerOptionUpdateRequest)(nil), // 705: forge.PowerOptionUpdateRequest - (*PowerOptions)(nil), // 706: forge.PowerOptions - (*PowerOptionResponse)(nil), // 707: forge.PowerOptionResponse - (*ComputeAllocationAttributes)(nil), // 708: forge.ComputeAllocationAttributes - (*ComputeAllocation)(nil), // 709: forge.ComputeAllocation - (*CreateComputeAllocationRequest)(nil), // 710: forge.CreateComputeAllocationRequest - (*CreateComputeAllocationResponse)(nil), // 711: forge.CreateComputeAllocationResponse - (*FindComputeAllocationIdsRequest)(nil), // 712: forge.FindComputeAllocationIdsRequest - (*FindComputeAllocationIdsResponse)(nil), // 713: forge.FindComputeAllocationIdsResponse - (*FindComputeAllocationsByIdsRequest)(nil), // 714: forge.FindComputeAllocationsByIdsRequest - (*FindComputeAllocationsByIdsResponse)(nil), // 715: forge.FindComputeAllocationsByIdsResponse - (*UpdateComputeAllocationResponse)(nil), // 716: forge.UpdateComputeAllocationResponse - (*UpdateComputeAllocationRequest)(nil), // 717: forge.UpdateComputeAllocationRequest - (*DeleteComputeAllocationRequest)(nil), // 718: forge.DeleteComputeAllocationRequest - (*DeleteComputeAllocationResponse)(nil), // 719: forge.DeleteComputeAllocationResponse - (*InstanceTypeAllocationStats)(nil), // 720: forge.InstanceTypeAllocationStats - (*GetRackRequest)(nil), // 721: forge.GetRackRequest - (*GetRackResponse)(nil), // 722: forge.GetRackResponse - (*RackList)(nil), // 723: forge.RackList - (*RackSearchFilter)(nil), // 724: forge.RackSearchFilter - (*RackIdList)(nil), // 725: forge.RackIdList - (*RacksByIdsRequest)(nil), // 726: forge.RacksByIdsRequest - (*Rack)(nil), // 727: forge.Rack - (*RackConfig)(nil), // 728: forge.RackConfig - (*RackStatus)(nil), // 729: forge.RackStatus - (*RackStateHistoriesRequest)(nil), // 730: forge.RackStateHistoriesRequest - (*DeleteRackRequest)(nil), // 731: forge.DeleteRackRequest - (*AdminForceDeleteRackRequest)(nil), // 732: forge.AdminForceDeleteRackRequest - (*AdminForceDeleteRackResponse)(nil), // 733: forge.AdminForceDeleteRackResponse - (*RackCapabilityCompute)(nil), // 734: forge.RackCapabilityCompute - (*RackCapabilitySwitch)(nil), // 735: forge.RackCapabilitySwitch - (*RackCapabilityPowerShelf)(nil), // 736: forge.RackCapabilityPowerShelf - (*RackCapabilitiesSet)(nil), // 737: forge.RackCapabilitiesSet - (*RackProfile)(nil), // 738: forge.RackProfile - (*GetRackProfileRequest)(nil), // 739: forge.GetRackProfileRequest - (*GetRackProfileResponse)(nil), // 740: forge.GetRackProfileResponse - (*RackManagerForgeRequest)(nil), // 741: forge.RackManagerForgeRequest - (*RackManagerForgeResponse)(nil), // 742: forge.RackManagerForgeResponse - (*MachineNVLinkInfo)(nil), // 743: forge.MachineNVLinkInfo - (*UpdateMachineNvLinkInfoRequest)(nil), // 744: forge.UpdateMachineNvLinkInfoRequest - (*MachineSpxStatusObservation)(nil), // 745: forge.MachineSpxStatusObservation - (*MachineSpxAttachmentStatusObservation)(nil), // 746: forge.MachineSpxAttachmentStatusObservation - (*NVLinkGpu)(nil), // 747: forge.NVLinkGpu - (*MachineNVLinkStatusObservation)(nil), // 748: forge.MachineNVLinkStatusObservation - (*MachineNVLinkGpuStatusObservation)(nil), // 749: forge.MachineNVLinkGpuStatusObservation - (*NmxcBrowseRequest)(nil), // 750: forge.NmxcBrowseRequest - (*NmxcBrowseResponse)(nil), // 751: forge.NmxcBrowseResponse - (*NVLinkPartition)(nil), // 752: forge.NVLinkPartition - (*NVLinkPartitionList)(nil), // 753: forge.NVLinkPartitionList - (*NVLinkPartitionSearchConfig)(nil), // 754: forge.NVLinkPartitionSearchConfig - (*NVLinkPartitionQuery)(nil), // 755: forge.NVLinkPartitionQuery - (*NVLinkPartitionSearchFilter)(nil), // 756: forge.NVLinkPartitionSearchFilter - (*NVLinkPartitionsByIdsRequest)(nil), // 757: forge.NVLinkPartitionsByIdsRequest - (*NVLinkPartitionIdList)(nil), // 758: forge.NVLinkPartitionIdList - (*NVLinkFabricSearchFilter)(nil), // 759: forge.NVLinkFabricSearchFilter - (*NVLinkLogicalPartitionConfig)(nil), // 760: forge.NVLinkLogicalPartitionConfig - (*NVLinkLogicalPartitionStatus)(nil), // 761: forge.NVLinkLogicalPartitionStatus - (*NVLinkLogicalPartition)(nil), // 762: forge.NVLinkLogicalPartition - (*NVLinkLogicalPartitionList)(nil), // 763: forge.NVLinkLogicalPartitionList - (*NVLinkLogicalPartitionCreationRequest)(nil), // 764: forge.NVLinkLogicalPartitionCreationRequest - (*NVLinkLogicalPartitionDeletionRequest)(nil), // 765: forge.NVLinkLogicalPartitionDeletionRequest - (*NVLinkLogicalPartitionDeletionResult)(nil), // 766: forge.NVLinkLogicalPartitionDeletionResult - (*NVLinkLogicalPartitionSearchFilter)(nil), // 767: forge.NVLinkLogicalPartitionSearchFilter - (*NVLinkLogicalPartitionsByIdsRequest)(nil), // 768: forge.NVLinkLogicalPartitionsByIdsRequest - (*NVLinkLogicalPartitionIdList)(nil), // 769: forge.NVLinkLogicalPartitionIdList - (*NVLinkLogicalPartitionUpdateRequest)(nil), // 770: forge.NVLinkLogicalPartitionUpdateRequest - (*NVLinkLogicalPartitionUpdateResult)(nil), // 771: forge.NVLinkLogicalPartitionUpdateResult - (*CreateBmcUserRequest)(nil), // 772: forge.CreateBmcUserRequest - (*CreateBmcUserResponse)(nil), // 773: forge.CreateBmcUserResponse - (*DeleteBmcUserRequest)(nil), // 774: forge.DeleteBmcUserRequest - (*DeleteBmcUserResponse)(nil), // 775: forge.DeleteBmcUserResponse - (*SetFirmwareUpdateTimeWindowRequest)(nil), // 776: forge.SetFirmwareUpdateTimeWindowRequest - (*SetFirmwareUpdateTimeWindowResponse)(nil), // 777: forge.SetFirmwareUpdateTimeWindowResponse - (*ListHostFirmwareRequest)(nil), // 778: forge.ListHostFirmwareRequest - (*ListHostFirmwareResponse)(nil), // 779: forge.ListHostFirmwareResponse - (*AvailableHostFirmware)(nil), // 780: forge.AvailableHostFirmware - (*TrimTableRequest)(nil), // 781: forge.TrimTableRequest - (*TrimTableResponse)(nil), // 782: forge.TrimTableResponse - (*NvlinkNmxcEndpoint)(nil), // 783: forge.NvlinkNmxcEndpoint - (*NvlinkNmxcEndpointList)(nil), // 784: forge.NvlinkNmxcEndpointList - (*DeleteNvlinkNmxcEndpointRequest)(nil), // 785: forge.DeleteNvlinkNmxcEndpointRequest - (*CreateRemediationRequest)(nil), // 786: forge.CreateRemediationRequest - (*CreateRemediationResponse)(nil), // 787: forge.CreateRemediationResponse - (*RemediationIdList)(nil), // 788: forge.RemediationIdList - (*RemediationList)(nil), // 789: forge.RemediationList - (*Remediation)(nil), // 790: forge.Remediation - (*ApproveRemediationRequest)(nil), // 791: forge.ApproveRemediationRequest - (*RevokeRemediationRequest)(nil), // 792: forge.RevokeRemediationRequest - (*EnableRemediationRequest)(nil), // 793: forge.EnableRemediationRequest - (*DisableRemediationRequest)(nil), // 794: forge.DisableRemediationRequest - (*FindAppliedRemediationIdsRequest)(nil), // 795: forge.FindAppliedRemediationIdsRequest - (*AppliedRemediationIdList)(nil), // 796: forge.AppliedRemediationIdList - (*FindAppliedRemediationsRequest)(nil), // 797: forge.FindAppliedRemediationsRequest - (*AppliedRemediation)(nil), // 798: forge.AppliedRemediation - (*AppliedRemediationList)(nil), // 799: forge.AppliedRemediationList - (*GetNextRemediationForMachineRequest)(nil), // 800: forge.GetNextRemediationForMachineRequest - (*GetNextRemediationForMachineResponse)(nil), // 801: forge.GetNextRemediationForMachineResponse - (*RemediationAppliedRequest)(nil), // 802: forge.RemediationAppliedRequest - (*RemediationApplicationStatus)(nil), // 803: forge.RemediationApplicationStatus - (*SetPrimaryDpuRequest)(nil), // 804: forge.SetPrimaryDpuRequest - (*SetPrimaryInterfaceRequest)(nil), // 805: forge.SetPrimaryInterfaceRequest - (*UsernamePassword)(nil), // 806: forge.UsernamePassword - (*SessionToken)(nil), // 807: forge.SessionToken - (*DpuExtensionServiceCredential)(nil), // 808: forge.DpuExtensionServiceCredential - (*DpuExtensionServiceVersionInfo)(nil), // 809: forge.DpuExtensionServiceVersionInfo - (*DpuExtensionService)(nil), // 810: forge.DpuExtensionService - (*CreateDpuExtensionServiceRequest)(nil), // 811: forge.CreateDpuExtensionServiceRequest - (*UpdateDpuExtensionServiceRequest)(nil), // 812: forge.UpdateDpuExtensionServiceRequest - (*DeleteDpuExtensionServiceRequest)(nil), // 813: forge.DeleteDpuExtensionServiceRequest - (*DeleteDpuExtensionServiceResponse)(nil), // 814: forge.DeleteDpuExtensionServiceResponse - (*DpuExtensionServiceSearchFilter)(nil), // 815: forge.DpuExtensionServiceSearchFilter - (*DpuExtensionServiceIdList)(nil), // 816: forge.DpuExtensionServiceIdList - (*DpuExtensionServicesByIdsRequest)(nil), // 817: forge.DpuExtensionServicesByIdsRequest - (*DpuExtensionServiceList)(nil), // 818: forge.DpuExtensionServiceList - (*GetDpuExtensionServiceVersionsInfoRequest)(nil), // 819: forge.GetDpuExtensionServiceVersionsInfoRequest - (*DpuExtensionServiceVersionInfoList)(nil), // 820: forge.DpuExtensionServiceVersionInfoList - (*FindInstancesByDpuExtensionServiceRequest)(nil), // 821: forge.FindInstancesByDpuExtensionServiceRequest - (*FindInstancesByDpuExtensionServiceResponse)(nil), // 822: forge.FindInstancesByDpuExtensionServiceResponse - (*InstanceDpuExtensionServiceInfo)(nil), // 823: forge.InstanceDpuExtensionServiceInfo - (*DpuExtensionServiceObservabilityConfigPrometheus)(nil), // 824: forge.DpuExtensionServiceObservabilityConfigPrometheus - (*DpuExtensionServiceObservabilityConfigLogging)(nil), // 825: forge.DpuExtensionServiceObservabilityConfigLogging - (*DpuExtensionServiceObservabilityConfig)(nil), // 826: forge.DpuExtensionServiceObservabilityConfig - (*DpuExtensionServiceObservability)(nil), // 827: forge.DpuExtensionServiceObservability - (*ScoutStreamApiBoundMessage)(nil), // 828: forge.ScoutStreamApiBoundMessage - (*ScoutStreamScoutBoundMessage)(nil), // 829: forge.ScoutStreamScoutBoundMessage - (*ScoutStreamInitRequest)(nil), // 830: forge.ScoutStreamInitRequest - (*ScoutStreamShowConnectionsRequest)(nil), // 831: forge.ScoutStreamShowConnectionsRequest - (*ScoutStreamShowConnectionsResponse)(nil), // 832: forge.ScoutStreamShowConnectionsResponse - (*ScoutStreamDisconnectRequest)(nil), // 833: forge.ScoutStreamDisconnectRequest - (*ScoutStreamDisconnectResponse)(nil), // 834: forge.ScoutStreamDisconnectResponse - (*ScoutStreamAdminPingRequest)(nil), // 835: forge.ScoutStreamAdminPingRequest - (*ScoutStreamAdminPingResponse)(nil), // 836: forge.ScoutStreamAdminPingResponse - (*ScoutStreamAgentPingRequest)(nil), // 837: forge.ScoutStreamAgentPingRequest - (*ScoutStreamAgentPingResponse)(nil), // 838: forge.ScoutStreamAgentPingResponse - (*ScoutStreamConnectionInfo)(nil), // 839: forge.ScoutStreamConnectionInfo - (*ScoutStreamError)(nil), // 840: forge.ScoutStreamError - (*PrefixFilterPolicyEntry)(nil), // 841: forge.PrefixFilterPolicyEntry - (*RoutingProfile)(nil), // 842: forge.RoutingProfile - (*DomainLegacy)(nil), // 843: forge.DomainLegacy - (*DomainListLegacy)(nil), // 844: forge.DomainListLegacy - (*DomainDeletionLegacy)(nil), // 845: forge.DomainDeletionLegacy - (*DomainDeletionResultLegacy)(nil), // 846: forge.DomainDeletionResultLegacy - (*DomainSearchQueryLegacy)(nil), // 847: forge.DomainSearchQueryLegacy - (*PxeDomain)(nil), // 848: forge.PxeDomain - (*MachinePositionQuery)(nil), // 849: forge.MachinePositionQuery - (*MachinePositionInfoList)(nil), // 850: forge.MachinePositionInfoList - (*MachinePositionInfo)(nil), // 851: forge.MachinePositionInfo - (*ModifyDPFStateRequest)(nil), // 852: forge.ModifyDPFStateRequest - (*DPFStateResponse)(nil), // 853: forge.DPFStateResponse - (*GetDPFStateRequest)(nil), // 854: forge.GetDPFStateRequest - (*GetDPFHostSnapshotRequest)(nil), // 855: forge.GetDPFHostSnapshotRequest - (*DPFHostSnapshotResponse)(nil), // 856: forge.DPFHostSnapshotResponse - (*GetDPFServiceVersionsRequest)(nil), // 857: forge.GetDPFServiceVersionsRequest - (*DPFServiceVersion)(nil), // 858: forge.DPFServiceVersion - (*DPFServiceVersionsResponse)(nil), // 859: forge.DPFServiceVersionsResponse - (*ComponentResult)(nil), // 860: forge.ComponentResult - (*SwitchIdList)(nil), // 861: forge.SwitchIdList - (*PowerShelfIdList)(nil), // 862: forge.PowerShelfIdList - (*GetComponentInventoryRequest)(nil), // 863: forge.GetComponentInventoryRequest - (*ComponentInventoryEntry)(nil), // 864: forge.ComponentInventoryEntry - (*GetComponentInventoryResponse)(nil), // 865: forge.GetComponentInventoryResponse - (*ComponentPowerControlRequest)(nil), // 866: forge.ComponentPowerControlRequest - (*ComponentPowerControlResponse)(nil), // 867: forge.ComponentPowerControlResponse - (*FirmwareUpdateStatus)(nil), // 868: forge.FirmwareUpdateStatus - (*UpdateComputeTrayFirmwareTarget)(nil), // 869: forge.UpdateComputeTrayFirmwareTarget - (*UpdateSwitchFirmwareTarget)(nil), // 870: forge.UpdateSwitchFirmwareTarget - (*UpdatePowerShelfFirmwareTarget)(nil), // 871: forge.UpdatePowerShelfFirmwareTarget - (*UpdateFirmwareObjectTarget)(nil), // 872: forge.UpdateFirmwareObjectTarget - (*UpdateComponentFirmwareRequest)(nil), // 873: forge.UpdateComponentFirmwareRequest - (*UpdateComponentFirmwareResponse)(nil), // 874: forge.UpdateComponentFirmwareResponse - (*GetComponentFirmwareStatusRequest)(nil), // 875: forge.GetComponentFirmwareStatusRequest - (*GetComponentFirmwareStatusResponse)(nil), // 876: forge.GetComponentFirmwareStatusResponse - (*ListComponentFirmwareVersionsRequest)(nil), // 877: forge.ListComponentFirmwareVersionsRequest - (*ComputeTrayFirmwareVersions)(nil), // 878: forge.ComputeTrayFirmwareVersions - (*DeviceFirmwareVersions)(nil), // 879: forge.DeviceFirmwareVersions - (*ListComponentFirmwareVersionsResponse)(nil), // 880: forge.ListComponentFirmwareVersionsResponse - (*SpxPartitionCreationRequest)(nil), // 881: forge.SpxPartitionCreationRequest - (*SpxPartition)(nil), // 882: forge.SpxPartition - (*SpxPartitionIdList)(nil), // 883: forge.SpxPartitionIdList - (*SpxPartitionDeletionRequest)(nil), // 884: forge.SpxPartitionDeletionRequest - (*SpxPartitionDeletionResult)(nil), // 885: forge.SpxPartitionDeletionResult - (*SpxPartitionSearchFilter)(nil), // 886: forge.SpxPartitionSearchFilter - (*SpxPartitionList)(nil), // 887: forge.SpxPartitionList - (*SpxPartitionsByIdsRequest)(nil), // 888: forge.SpxPartitionsByIdsRequest - (*AdminForceDeleteSwitchRequest)(nil), // 889: forge.AdminForceDeleteSwitchRequest - (*AdminForceDeleteSwitchResponse)(nil), // 890: forge.AdminForceDeleteSwitchResponse - (*AdminForceDeletePowerShelfRequest)(nil), // 891: forge.AdminForceDeletePowerShelfRequest - (*AdminForceDeletePowerShelfResponse)(nil), // 892: forge.AdminForceDeletePowerShelfResponse - (*OperatingSystem)(nil), // 893: forge.OperatingSystem - (*CreateOperatingSystemRequest)(nil), // 894: forge.CreateOperatingSystemRequest - (*IpxeTemplateParameters)(nil), // 895: forge.IpxeTemplateParameters - (*IpxeTemplateArtifacts)(nil), // 896: forge.IpxeTemplateArtifacts - (*UpdateOperatingSystemRequest)(nil), // 897: forge.UpdateOperatingSystemRequest - (*DeleteOperatingSystemRequest)(nil), // 898: forge.DeleteOperatingSystemRequest - (*DeleteOperatingSystemResponse)(nil), // 899: forge.DeleteOperatingSystemResponse - (*OperatingSystemSearchFilter)(nil), // 900: forge.OperatingSystemSearchFilter - (*OperatingSystemIdList)(nil), // 901: forge.OperatingSystemIdList - (*OperatingSystemsByIdsRequest)(nil), // 902: forge.OperatingSystemsByIdsRequest - (*OperatingSystemList)(nil), // 903: forge.OperatingSystemList - (*GetOperatingSystemCachableIpxeTemplateArtifactsRequest)(nil), // 904: forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest - (*IpxeTemplateArtifactList)(nil), // 905: forge.IpxeTemplateArtifactList - (*IpxeTemplateArtifactUpdateRequest)(nil), // 906: forge.IpxeTemplateArtifactUpdateRequest - (*UpdateOperatingSystemIpxeTemplateArtifactRequest)(nil), // 907: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest - (*HostRepresentorInterceptBridging)(nil), // 908: forge.HostRepresentorInterceptBridging - (*ReWrapSecretsRequest)(nil), // 909: forge.ReWrapSecretsRequest - (*ReWrapSecretsResponse)(nil), // 910: forge.ReWrapSecretsResponse - (*GetMachineBootInterfacesRequest)(nil), // 911: forge.GetMachineBootInterfacesRequest - (*MachineInterfaceBootInterface)(nil), // 912: forge.MachineInterfaceBootInterface - (*PredictedBootInterface)(nil), // 913: forge.PredictedBootInterface - (*ExploredBootInterface)(nil), // 914: forge.ExploredBootInterface - (*RetainedBootInterface)(nil), // 915: forge.RetainedBootInterface - (*GetMachineBootInterfacesResponse)(nil), // 916: forge.GetMachineBootInterfacesResponse - nil, // 917: forge.RuntimeConfig.DpuNicFirmwareUpdateVersionEntry - (*DNSMessage_DNSQuestion)(nil), // 918: forge.DNSMessage.DNSQuestion - (*DNSMessage_DNSResponse)(nil), // 919: forge.DNSMessage.DNSResponse - (*DNSMessage_DNSResponse_DNSRR)(nil), // 920: forge.DNSMessage.DNSResponse.DNSRR - nil, // 921: forge.FabricManagerConfig.ConfigMapEntry - nil, // 922: forge.StateHistories.HistoriesEntry - nil, // 923: forge.MachineStateHistories.HistoriesEntry - nil, // 924: forge.HealthHistories.HistoriesEntry - nil, // 925: forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry - (*MachineCredentialsUpdateRequest_Credentials)(nil), // 926: forge.MachineCredentialsUpdateRequest.Credentials - (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo)(nil), // 927: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo - (*ForgeAgentControlResponse_Noop)(nil), // 928: forge.ForgeAgentControlResponse.Noop - (*ForgeAgentControlResponse_Reset)(nil), // 929: forge.ForgeAgentControlResponse.Reset - (*ForgeAgentControlResponse_Discovery)(nil), // 930: forge.ForgeAgentControlResponse.Discovery - (*ForgeAgentControlResponse_Rebuild)(nil), // 931: forge.ForgeAgentControlResponse.Rebuild - (*ForgeAgentControlResponse_Retry)(nil), // 932: forge.ForgeAgentControlResponse.Retry - (*ForgeAgentControlResponse_Measure)(nil), // 933: forge.ForgeAgentControlResponse.Measure - (*ForgeAgentControlResponse_LogError)(nil), // 934: forge.ForgeAgentControlResponse.LogError - (*ForgeAgentControlResponse_MachineValidation)(nil), // 935: forge.ForgeAgentControlResponse.MachineValidation - (*ForgeAgentControlResponse_MachineValidationFilter)(nil), // 936: forge.ForgeAgentControlResponse.MachineValidationFilter - (*ForgeAgentControlResponse_MlxAction)(nil), // 937: forge.ForgeAgentControlResponse.MlxAction - (*ForgeAgentControlResponse_MlxDeviceAction)(nil), // 938: forge.ForgeAgentControlResponse.MlxDeviceAction - (*ForgeAgentControlResponse_MlxDeviceNoop)(nil), // 939: forge.ForgeAgentControlResponse.MlxDeviceNoop - (*ForgeAgentControlResponse_MlxDeviceLock)(nil), // 940: forge.ForgeAgentControlResponse.MlxDeviceLock - (*ForgeAgentControlResponse_MlxDeviceUnlock)(nil), // 941: forge.ForgeAgentControlResponse.MlxDeviceUnlock - (*ForgeAgentControlResponse_MlxDeviceApplyProfile)(nil), // 942: forge.ForgeAgentControlResponse.MlxDeviceApplyProfile - (*ForgeAgentControlResponse_MlxDeviceApplyFirmware)(nil), // 943: forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware - (*ForgeAgentControlResponse_FirmwareUpgrade)(nil), // 944: forge.ForgeAgentControlResponse.FirmwareUpgrade - (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair)(nil), // 945: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.KeyValuePair - (*MachineCleanupInfo_CleanupStepResult)(nil), // 946: forge.MachineCleanupInfo.CleanupStepResult - (*DpuReprovisioningListResponse_DpuReprovisioningListItem)(nil), // 947: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem - (*HostReprovisioningListResponse_HostReprovisioningListItem)(nil), // 948: forge.HostReprovisioningListResponse.HostReprovisioningListItem - (*MachineValidationTestUpdateRequest_Payload)(nil), // 949: forge.MachineValidationTestUpdateRequest.Payload - nil, // 950: forge.RedfishBrowseResponse.HeadersEntry - nil, // 951: forge.RedfishActionResult.HeadersEntry - nil, // 952: forge.UfmBrowseResponse.HeadersEntry - nil, // 953: forge.DesiredFirmwareVersionEntry.ComponentVersionsEntry - nil, // 954: forge.NmxcBrowseResponse.HeadersEntry - (*DPFStateResponse_DPFState)(nil), // 955: forge.DPFStateResponse.DPFState - (*MachineId)(nil), // 956: common.MachineId - (*timestamppb.Timestamp)(nil), // 957: google.protobuf.Timestamp - (*VpcId)(nil), // 958: common.VpcId - (*NVLinkLogicalPartitionId)(nil), // 959: common.NVLinkLogicalPartitionId - (*VpcPrefixId)(nil), // 960: common.VpcPrefixId - (*VpcPeeringId)(nil), // 961: common.VpcPeeringId - (*IBPartitionId)(nil), // 962: common.IBPartitionId - (*HealthReport)(nil), // 963: health.HealthReport - (*PowerShelfId)(nil), // 964: common.PowerShelfId - (*RackId)(nil), // 965: common.RackId - (*UUID)(nil), // 966: common.UUID - (*SwitchId)(nil), // 967: common.SwitchId - (*RackProfileId)(nil), // 968: common.RackProfileId - (*DomainId)(nil), // 969: common.DomainId - (*NetworkSegmentId)(nil), // 970: common.NetworkSegmentId - (*NetworkPrefixId)(nil), // 971: common.NetworkPrefixId - (*InstanceId)(nil), // 972: common.InstanceId - (*IpxeTemplateId)(nil), // 973: common.IpxeTemplateId - (*OperatingSystemId)(nil), // 974: common.OperatingSystemId - (*SpxPartitionId)(nil), // 975: common.SpxPartitionId - (*NVLinkDomainId)(nil), // 976: common.NVLinkDomainId - (*MachineInterfaceId)(nil), // 977: common.MachineInterfaceId - (*DiscoveryInfo)(nil), // 978: machine_discovery.DiscoveryInfo - (*durationpb.Duration)(nil), // 979: google.protobuf.Duration - (*StringList)(nil), // 980: common.StringList - (*Gpu)(nil), // 981: machine_discovery.Gpu - (*RouteTarget)(nil), // 982: common.RouteTarget - (*MachineValidationId)(nil), // 983: common.MachineValidationId - (*Uint32List)(nil), // 984: common.Uint32List - (*DpaInterfaceId)(nil), // 985: common.DpaInterfaceId - (*ComputeAllocationId)(nil), // 986: common.ComputeAllocationId - (*RackHardwareType)(nil), // 987: common.RackHardwareType - (*NVLinkPartitionId)(nil), // 988: common.NVLinkPartitionId - (*RemediationId)(nil), // 989: common.RemediationId - (*MlxDeviceLockdownResponse)(nil), // 990: mlx_device.MlxDeviceLockdownResponse - (*MlxDeviceProfileSyncResponse)(nil), // 991: mlx_device.MlxDeviceProfileSyncResponse - (*MlxDeviceProfileCompareResponse)(nil), // 992: mlx_device.MlxDeviceProfileCompareResponse - (*MlxDeviceInfoDeviceResponse)(nil), // 993: mlx_device.MlxDeviceInfoDeviceResponse - (*MlxDeviceInfoReportResponse)(nil), // 994: mlx_device.MlxDeviceInfoReportResponse - (*MlxDeviceRegistryListResponse)(nil), // 995: mlx_device.MlxDeviceRegistryListResponse - (*MlxDeviceRegistryShowResponse)(nil), // 996: mlx_device.MlxDeviceRegistryShowResponse - (*MlxDeviceConfigQueryResponse)(nil), // 997: mlx_device.MlxDeviceConfigQueryResponse - (*MlxDeviceConfigSetResponse)(nil), // 998: mlx_device.MlxDeviceConfigSetResponse - (*MlxDeviceConfigSyncResponse)(nil), // 999: mlx_device.MlxDeviceConfigSyncResponse - (*MlxDeviceConfigCompareResponse)(nil), // 1000: mlx_device.MlxDeviceConfigCompareResponse - (*MlxDeviceLockdownLockRequest)(nil), // 1001: mlx_device.MlxDeviceLockdownLockRequest - (*MlxDeviceLockdownUnlockRequest)(nil), // 1002: mlx_device.MlxDeviceLockdownUnlockRequest - (*MlxDeviceLockdownStatusRequest)(nil), // 1003: mlx_device.MlxDeviceLockdownStatusRequest - (*MlxDeviceProfileSyncRequest)(nil), // 1004: mlx_device.MlxDeviceProfileSyncRequest - (*MlxDeviceProfileCompareRequest)(nil), // 1005: mlx_device.MlxDeviceProfileCompareRequest - (*MlxDeviceInfoDeviceRequest)(nil), // 1006: mlx_device.MlxDeviceInfoDeviceRequest - (*MlxDeviceInfoReportRequest)(nil), // 1007: mlx_device.MlxDeviceInfoReportRequest - (*MlxDeviceRegistryListRequest)(nil), // 1008: mlx_device.MlxDeviceRegistryListRequest - (*MlxDeviceRegistryShowRequest)(nil), // 1009: mlx_device.MlxDeviceRegistryShowRequest - (*MlxDeviceConfigQueryRequest)(nil), // 1010: mlx_device.MlxDeviceConfigQueryRequest - (*MlxDeviceConfigSetRequest)(nil), // 1011: mlx_device.MlxDeviceConfigSetRequest - (*MlxDeviceConfigSyncRequest)(nil), // 1012: mlx_device.MlxDeviceConfigSyncRequest - (*MlxDeviceConfigCompareRequest)(nil), // 1013: mlx_device.MlxDeviceConfigCompareRequest - (*Domain)(nil), // 1014: dns.Domain - (*MachineIdList)(nil), // 1015: common.MachineIdList - (*EndpointExplorationReport)(nil), // 1016: site_explorer.EndpointExplorationReport - (SystemPowerControl)(0), // 1017: common.SystemPowerControl - (*SerializableMlxConfigProfile)(nil), // 1018: mlx_device.SerializableMlxConfigProfile - (*FirmwareFlasherProfile)(nil), // 1019: mlx_device.FirmwareFlasherProfile - (*ScoutFirmwareUpgradeTask)(nil), // 1020: scout_firmware_upgrade.ScoutFirmwareUpgradeTask - (*CreateDomainRequest)(nil), // 1021: dns.CreateDomainRequest - (*UpdateDomainRequest)(nil), // 1022: dns.UpdateDomainRequest - (*DomainDeletionRequest)(nil), // 1023: dns.DomainDeletionRequest - (*DomainSearchQuery)(nil), // 1024: dns.DomainSearchQuery - (*DnsResourceRecordLookupRequest)(nil), // 1025: dns.DnsResourceRecordLookupRequest - (*GetAllDomainsRequest)(nil), // 1026: dns.GetAllDomainsRequest - (*DomainMetadataRequest)(nil), // 1027: dns.DomainMetadataRequest - (*emptypb.Empty)(nil), // 1028: google.protobuf.Empty - (*ExploredEndpointSearchFilter)(nil), // 1029: site_explorer.ExploredEndpointSearchFilter - (*ExploredEndpointsByIdsRequest)(nil), // 1030: site_explorer.ExploredEndpointsByIdsRequest - (*ExploredManagedHostSearchFilter)(nil), // 1031: site_explorer.ExploredManagedHostSearchFilter - (*ExploredManagedHostsByIdsRequest)(nil), // 1032: site_explorer.ExploredManagedHostsByIdsRequest - (*ExploredMlxDeviceHostSearchFilter)(nil), // 1033: site_explorer.ExploredMlxDeviceHostSearchFilter - (*ExploredMlxDevicesByIdsRequest)(nil), // 1034: site_explorer.ExploredMlxDevicesByIdsRequest - (*CreateMeasurementBundleRequest)(nil), // 1035: measured_boot.CreateMeasurementBundleRequest - (*DeleteMeasurementBundleRequest)(nil), // 1036: measured_boot.DeleteMeasurementBundleRequest - (*RenameMeasurementBundleRequest)(nil), // 1037: measured_boot.RenameMeasurementBundleRequest - (*UpdateMeasurementBundleRequest)(nil), // 1038: measured_boot.UpdateMeasurementBundleRequest - (*ShowMeasurementBundleRequest)(nil), // 1039: measured_boot.ShowMeasurementBundleRequest - (*ShowMeasurementBundlesRequest)(nil), // 1040: measured_boot.ShowMeasurementBundlesRequest - (*ListMeasurementBundlesRequest)(nil), // 1041: measured_boot.ListMeasurementBundlesRequest - (*ListMeasurementBundleMachinesRequest)(nil), // 1042: measured_boot.ListMeasurementBundleMachinesRequest - (*FindClosestBundleMatchRequest)(nil), // 1043: measured_boot.FindClosestBundleMatchRequest - (*DeleteMeasurementJournalRequest)(nil), // 1044: measured_boot.DeleteMeasurementJournalRequest - (*ShowMeasurementJournalRequest)(nil), // 1045: measured_boot.ShowMeasurementJournalRequest - (*ShowMeasurementJournalsRequest)(nil), // 1046: measured_boot.ShowMeasurementJournalsRequest - (*ListMeasurementJournalRequest)(nil), // 1047: measured_boot.ListMeasurementJournalRequest - (*AttestCandidateMachineRequest)(nil), // 1048: measured_boot.AttestCandidateMachineRequest - (*ShowCandidateMachineRequest)(nil), // 1049: measured_boot.ShowCandidateMachineRequest - (*ShowCandidateMachinesRequest)(nil), // 1050: measured_boot.ShowCandidateMachinesRequest - (*ListCandidateMachinesRequest)(nil), // 1051: measured_boot.ListCandidateMachinesRequest - (*CreateMeasurementSystemProfileRequest)(nil), // 1052: measured_boot.CreateMeasurementSystemProfileRequest - (*DeleteMeasurementSystemProfileRequest)(nil), // 1053: measured_boot.DeleteMeasurementSystemProfileRequest - (*RenameMeasurementSystemProfileRequest)(nil), // 1054: measured_boot.RenameMeasurementSystemProfileRequest - (*ShowMeasurementSystemProfileRequest)(nil), // 1055: measured_boot.ShowMeasurementSystemProfileRequest - (*ShowMeasurementSystemProfilesRequest)(nil), // 1056: measured_boot.ShowMeasurementSystemProfilesRequest - (*ListMeasurementSystemProfilesRequest)(nil), // 1057: measured_boot.ListMeasurementSystemProfilesRequest - (*ListMeasurementSystemProfileBundlesRequest)(nil), // 1058: measured_boot.ListMeasurementSystemProfileBundlesRequest - (*ListMeasurementSystemProfileMachinesRequest)(nil), // 1059: measured_boot.ListMeasurementSystemProfileMachinesRequest - (*CreateMeasurementReportRequest)(nil), // 1060: measured_boot.CreateMeasurementReportRequest - (*DeleteMeasurementReportRequest)(nil), // 1061: measured_boot.DeleteMeasurementReportRequest - (*PromoteMeasurementReportRequest)(nil), // 1062: measured_boot.PromoteMeasurementReportRequest - (*RevokeMeasurementReportRequest)(nil), // 1063: measured_boot.RevokeMeasurementReportRequest - (*ShowMeasurementReportForIdRequest)(nil), // 1064: measured_boot.ShowMeasurementReportForIdRequest - (*ShowMeasurementReportsForMachineRequest)(nil), // 1065: measured_boot.ShowMeasurementReportsForMachineRequest - (*ShowMeasurementReportsRequest)(nil), // 1066: measured_boot.ShowMeasurementReportsRequest - (*ListMeasurementReportRequest)(nil), // 1067: measured_boot.ListMeasurementReportRequest - (*MatchMeasurementReportRequest)(nil), // 1068: measured_boot.MatchMeasurementReportRequest - (*ImportSiteMeasurementsRequest)(nil), // 1069: measured_boot.ImportSiteMeasurementsRequest - (*ExportSiteMeasurementsRequest)(nil), // 1070: measured_boot.ExportSiteMeasurementsRequest - (*AddMeasurementTrustedMachineRequest)(nil), // 1071: measured_boot.AddMeasurementTrustedMachineRequest - (*RemoveMeasurementTrustedMachineRequest)(nil), // 1072: measured_boot.RemoveMeasurementTrustedMachineRequest - (*AddMeasurementTrustedProfileRequest)(nil), // 1073: measured_boot.AddMeasurementTrustedProfileRequest - (*RemoveMeasurementTrustedProfileRequest)(nil), // 1074: measured_boot.RemoveMeasurementTrustedProfileRequest - (*ListMeasurementTrustedMachinesRequest)(nil), // 1075: measured_boot.ListMeasurementTrustedMachinesRequest - (*ListMeasurementTrustedProfilesRequest)(nil), // 1076: measured_boot.ListMeasurementTrustedProfilesRequest - (*ListAttestationSummaryRequest)(nil), // 1077: measured_boot.ListAttestationSummaryRequest - (*PublishMlxDeviceReportRequest)(nil), // 1078: mlx_device.PublishMlxDeviceReportRequest - (*PublishMlxObservationReportRequest)(nil), // 1079: mlx_device.PublishMlxObservationReportRequest - (*MlxAdminProfileSyncRequest)(nil), // 1080: mlx_device.MlxAdminProfileSyncRequest - (*MlxAdminProfileShowRequest)(nil), // 1081: mlx_device.MlxAdminProfileShowRequest - (*MlxAdminProfileCompareRequest)(nil), // 1082: mlx_device.MlxAdminProfileCompareRequest - (*MlxAdminProfileListRequest)(nil), // 1083: mlx_device.MlxAdminProfileListRequest - (*MlxAdminLockdownLockRequest)(nil), // 1084: mlx_device.MlxAdminLockdownLockRequest - (*MlxAdminLockdownUnlockRequest)(nil), // 1085: mlx_device.MlxAdminLockdownUnlockRequest - (*MlxAdminLockdownStatusRequest)(nil), // 1086: mlx_device.MlxAdminLockdownStatusRequest - (*MlxAdminDeviceInfoRequest)(nil), // 1087: mlx_device.MlxAdminDeviceInfoRequest - (*MlxAdminDeviceReportRequest)(nil), // 1088: mlx_device.MlxAdminDeviceReportRequest - (*MlxAdminRegistryListRequest)(nil), // 1089: mlx_device.MlxAdminRegistryListRequest - (*MlxAdminRegistryShowRequest)(nil), // 1090: mlx_device.MlxAdminRegistryShowRequest - (*MlxAdminConfigQueryRequest)(nil), // 1091: mlx_device.MlxAdminConfigQueryRequest - (*MlxAdminConfigSetRequest)(nil), // 1092: mlx_device.MlxAdminConfigSetRequest - (*MlxAdminConfigSyncRequest)(nil), // 1093: mlx_device.MlxAdminConfigSyncRequest - (*MlxAdminConfigCompareRequest)(nil), // 1094: mlx_device.MlxAdminConfigCompareRequest - (*DomainDeletionResult)(nil), // 1095: dns.DomainDeletionResult - (*DomainList)(nil), // 1096: dns.DomainList - (*DnsResourceRecordLookupResponse)(nil), // 1097: dns.DnsResourceRecordLookupResponse - (*GetAllDomainsResponse)(nil), // 1098: dns.GetAllDomainsResponse - (*DomainMetadataResponse)(nil), // 1099: dns.DomainMetadataResponse - (*SiteExplorationReport)(nil), // 1100: site_explorer.SiteExplorationReport - (*SiteExplorerLastRunResponse)(nil), // 1101: site_explorer.SiteExplorerLastRunResponse - (*ExploredEndpoint)(nil), // 1102: site_explorer.ExploredEndpoint - (*ExploredEndpointIdList)(nil), // 1103: site_explorer.ExploredEndpointIdList - (*ExploredEndpointList)(nil), // 1104: site_explorer.ExploredEndpointList - (*ExploredManagedHostIdList)(nil), // 1105: site_explorer.ExploredManagedHostIdList - (*ExploredManagedHostList)(nil), // 1106: site_explorer.ExploredManagedHostList - (*ExploredMlxDeviceHostIdList)(nil), // 1107: site_explorer.ExploredMlxDeviceHostIdList - (*ExploredMlxDeviceList)(nil), // 1108: site_explorer.ExploredMlxDeviceList - (*CreateMeasurementBundleResponse)(nil), // 1109: measured_boot.CreateMeasurementBundleResponse - (*DeleteMeasurementBundleResponse)(nil), // 1110: measured_boot.DeleteMeasurementBundleResponse - (*RenameMeasurementBundleResponse)(nil), // 1111: measured_boot.RenameMeasurementBundleResponse - (*UpdateMeasurementBundleResponse)(nil), // 1112: measured_boot.UpdateMeasurementBundleResponse - (*ShowMeasurementBundleResponse)(nil), // 1113: measured_boot.ShowMeasurementBundleResponse - (*ShowMeasurementBundlesResponse)(nil), // 1114: measured_boot.ShowMeasurementBundlesResponse - (*ListMeasurementBundlesResponse)(nil), // 1115: measured_boot.ListMeasurementBundlesResponse - (*ListMeasurementBundleMachinesResponse)(nil), // 1116: measured_boot.ListMeasurementBundleMachinesResponse - (*DeleteMeasurementJournalResponse)(nil), // 1117: measured_boot.DeleteMeasurementJournalResponse - (*ShowMeasurementJournalResponse)(nil), // 1118: measured_boot.ShowMeasurementJournalResponse - (*ShowMeasurementJournalsResponse)(nil), // 1119: measured_boot.ShowMeasurementJournalsResponse - (*ListMeasurementJournalResponse)(nil), // 1120: measured_boot.ListMeasurementJournalResponse - (*AttestCandidateMachineResponse)(nil), // 1121: measured_boot.AttestCandidateMachineResponse - (*ShowCandidateMachineResponse)(nil), // 1122: measured_boot.ShowCandidateMachineResponse - (*ShowCandidateMachinesResponse)(nil), // 1123: measured_boot.ShowCandidateMachinesResponse - (*ListCandidateMachinesResponse)(nil), // 1124: measured_boot.ListCandidateMachinesResponse - (*CreateMeasurementSystemProfileResponse)(nil), // 1125: measured_boot.CreateMeasurementSystemProfileResponse - (*DeleteMeasurementSystemProfileResponse)(nil), // 1126: measured_boot.DeleteMeasurementSystemProfileResponse - (*RenameMeasurementSystemProfileResponse)(nil), // 1127: measured_boot.RenameMeasurementSystemProfileResponse - (*ShowMeasurementSystemProfileResponse)(nil), // 1128: measured_boot.ShowMeasurementSystemProfileResponse - (*ShowMeasurementSystemProfilesResponse)(nil), // 1129: measured_boot.ShowMeasurementSystemProfilesResponse - (*ListMeasurementSystemProfilesResponse)(nil), // 1130: measured_boot.ListMeasurementSystemProfilesResponse - (*ListMeasurementSystemProfileBundlesResponse)(nil), // 1131: measured_boot.ListMeasurementSystemProfileBundlesResponse - (*ListMeasurementSystemProfileMachinesResponse)(nil), // 1132: measured_boot.ListMeasurementSystemProfileMachinesResponse - (*CreateMeasurementReportResponse)(nil), // 1133: measured_boot.CreateMeasurementReportResponse - (*DeleteMeasurementReportResponse)(nil), // 1134: measured_boot.DeleteMeasurementReportResponse - (*PromoteMeasurementReportResponse)(nil), // 1135: measured_boot.PromoteMeasurementReportResponse - (*RevokeMeasurementReportResponse)(nil), // 1136: measured_boot.RevokeMeasurementReportResponse - (*ShowMeasurementReportForIdResponse)(nil), // 1137: measured_boot.ShowMeasurementReportForIdResponse - (*ShowMeasurementReportsForMachineResponse)(nil), // 1138: measured_boot.ShowMeasurementReportsForMachineResponse - (*ShowMeasurementReportsResponse)(nil), // 1139: measured_boot.ShowMeasurementReportsResponse - (*ListMeasurementReportResponse)(nil), // 1140: measured_boot.ListMeasurementReportResponse - (*MatchMeasurementReportResponse)(nil), // 1141: measured_boot.MatchMeasurementReportResponse - (*ImportSiteMeasurementsResponse)(nil), // 1142: measured_boot.ImportSiteMeasurementsResponse - (*ExportSiteMeasurementsResponse)(nil), // 1143: measured_boot.ExportSiteMeasurementsResponse - (*AddMeasurementTrustedMachineResponse)(nil), // 1144: measured_boot.AddMeasurementTrustedMachineResponse - (*RemoveMeasurementTrustedMachineResponse)(nil), // 1145: measured_boot.RemoveMeasurementTrustedMachineResponse - (*AddMeasurementTrustedProfileResponse)(nil), // 1146: measured_boot.AddMeasurementTrustedProfileResponse - (*RemoveMeasurementTrustedProfileResponse)(nil), // 1147: measured_boot.RemoveMeasurementTrustedProfileResponse - (*ListMeasurementTrustedMachinesResponse)(nil), // 1148: measured_boot.ListMeasurementTrustedMachinesResponse - (*ListMeasurementTrustedProfilesResponse)(nil), // 1149: measured_boot.ListMeasurementTrustedProfilesResponse - (*ListAttestationSummaryResponse)(nil), // 1150: measured_boot.ListAttestationSummaryResponse - (*LockdownStatus)(nil), // 1151: site_explorer.LockdownStatus - (*PublishMlxDeviceReportResponse)(nil), // 1152: mlx_device.PublishMlxDeviceReportResponse - (*PublishMlxObservationReportResponse)(nil), // 1153: mlx_device.PublishMlxObservationReportResponse - (*MlxAdminProfileSyncResponse)(nil), // 1154: mlx_device.MlxAdminProfileSyncResponse - (*MlxAdminProfileShowResponse)(nil), // 1155: mlx_device.MlxAdminProfileShowResponse - (*MlxAdminProfileCompareResponse)(nil), // 1156: mlx_device.MlxAdminProfileCompareResponse - (*MlxAdminProfileListResponse)(nil), // 1157: mlx_device.MlxAdminProfileListResponse - (*MlxAdminLockdownLockResponse)(nil), // 1158: mlx_device.MlxAdminLockdownLockResponse - (*MlxAdminLockdownUnlockResponse)(nil), // 1159: mlx_device.MlxAdminLockdownUnlockResponse - (*MlxAdminLockdownStatusResponse)(nil), // 1160: mlx_device.MlxAdminLockdownStatusResponse - (*MlxAdminDeviceInfoResponse)(nil), // 1161: mlx_device.MlxAdminDeviceInfoResponse - (*MlxAdminDeviceReportResponse)(nil), // 1162: mlx_device.MlxAdminDeviceReportResponse - (*MlxAdminRegistryListResponse)(nil), // 1163: mlx_device.MlxAdminRegistryListResponse - (*MlxAdminRegistryShowResponse)(nil), // 1164: mlx_device.MlxAdminRegistryShowResponse - (*MlxAdminConfigQueryResponse)(nil), // 1165: mlx_device.MlxAdminConfigQueryResponse - (*MlxAdminConfigSetResponse)(nil), // 1166: mlx_device.MlxAdminConfigSetResponse - (*MlxAdminConfigSyncResponse)(nil), // 1167: mlx_device.MlxAdminConfigSyncResponse - (*MlxAdminConfigCompareResponse)(nil), // 1168: mlx_device.MlxAdminConfigCompareResponse + (*DeleteInitiatedBy)(nil), // 297: forge.DeleteInitiatedBy + (*DeleteAttribution)(nil), // 298: forge.DeleteAttribution + (*InstanceReleaseRequest)(nil), // 299: forge.InstanceReleaseRequest + (*InstanceReleaseResult)(nil), // 300: forge.InstanceReleaseResult + (*MachinesByIdsRequest)(nil), // 301: forge.MachinesByIdsRequest + (*MachineSearchConfig)(nil), // 302: forge.MachineSearchConfig + (*MachineStateHistoriesRequest)(nil), // 303: forge.MachineStateHistoriesRequest + (*MachineStateHistories)(nil), // 304: forge.MachineStateHistories + (*MachineStateHistoryRecords)(nil), // 305: forge.MachineStateHistoryRecords + (*MachineHealthHistoriesRequest)(nil), // 306: forge.MachineHealthHistoriesRequest + (*HealthHistories)(nil), // 307: forge.HealthHistories + (*HealthHistoryRecords)(nil), // 308: forge.HealthHistoryRecords + (*HealthHistoryRecord)(nil), // 309: forge.HealthHistoryRecord + (*TenantByOrganizationIdsRequest)(nil), // 310: forge.TenantByOrganizationIdsRequest + (*TenantSearchFilter)(nil), // 311: forge.TenantSearchFilter + (*TenantList)(nil), // 312: forge.TenantList + (*TenantOrganizationIdList)(nil), // 313: forge.TenantOrganizationIdList + (*InterfaceList)(nil), // 314: forge.InterfaceList + (*MachineList)(nil), // 315: forge.MachineList + (*InterfaceDeleteQuery)(nil), // 316: forge.InterfaceDeleteQuery + (*InterfaceSearchQuery)(nil), // 317: forge.InterfaceSearchQuery + (*AssignStaticAddressRequest)(nil), // 318: forge.AssignStaticAddressRequest + (*AssignStaticAddressResponse)(nil), // 319: forge.AssignStaticAddressResponse + (*RemoveStaticAddressRequest)(nil), // 320: forge.RemoveStaticAddressRequest + (*RemoveStaticAddressResponse)(nil), // 321: forge.RemoveStaticAddressResponse + (*FindInterfaceAddressesRequest)(nil), // 322: forge.FindInterfaceAddressesRequest + (*InterfaceAddress)(nil), // 323: forge.InterfaceAddress + (*FindInterfaceAddressesResponse)(nil), // 324: forge.FindInterfaceAddressesResponse + (*BmcInfo)(nil), // 325: forge.BmcInfo + (*SwitchNvosInfo)(nil), // 326: forge.SwitchNvosInfo + (*Machine)(nil), // 327: forge.Machine + (*DpfMachineState)(nil), // 328: forge.DpfMachineState + (*InstanceNetworkRestrictions)(nil), // 329: forge.InstanceNetworkRestrictions + (*MachineMetadataUpdateRequest)(nil), // 330: forge.MachineMetadataUpdateRequest + (*RackMetadataUpdateRequest)(nil), // 331: forge.RackMetadataUpdateRequest + (*SwitchMetadataUpdateRequest)(nil), // 332: forge.SwitchMetadataUpdateRequest + (*PowerShelfMetadataUpdateRequest)(nil), // 333: forge.PowerShelfMetadataUpdateRequest + (*DpuAgentInventoryReport)(nil), // 334: forge.DpuAgentInventoryReport + (*MachineComponentInventory)(nil), // 335: forge.MachineComponentInventory + (*MachineInventorySoftwareComponent)(nil), // 336: forge.MachineInventorySoftwareComponent + (*HealthSourceOrigin)(nil), // 337: forge.HealthSourceOrigin + (*ControllerStateReason)(nil), // 338: forge.ControllerStateReason + (*ControllerStateSourceReference)(nil), // 339: forge.ControllerStateSourceReference + (*StateSla)(nil), // 340: forge.StateSla + (*InstanceTenantStatus)(nil), // 341: forge.InstanceTenantStatus + (*MachineEvent)(nil), // 342: forge.MachineEvent + (*MachineInterface)(nil), // 343: forge.MachineInterface + (*InfinibandStatusObservation)(nil), // 344: forge.InfinibandStatusObservation + (*MachineIbInterface)(nil), // 345: forge.MachineIbInterface + (*DhcpDiscovery)(nil), // 346: forge.DhcpDiscovery + (*ExpireDhcpLeaseRequest)(nil), // 347: forge.ExpireDhcpLeaseRequest + (*ExpireDhcpLeaseResponse)(nil), // 348: forge.ExpireDhcpLeaseResponse + (*DhcpRecord)(nil), // 349: forge.DhcpRecord + (*NetworkSegmentList)(nil), // 350: forge.NetworkSegmentList + (*SSHKeyValidationRequest)(nil), // 351: forge.SSHKeyValidationRequest + (*SSHKeyValidationResponse)(nil), // 352: forge.SSHKeyValidationResponse + (*GetBmcCredentialsRequest)(nil), // 353: forge.GetBmcCredentialsRequest + (*GetSwitchNvosCredentialsRequest)(nil), // 354: forge.GetSwitchNvosCredentialsRequest + (*GetBmcCredentialsResponse)(nil), // 355: forge.GetBmcCredentialsResponse + (*BmcCredentials)(nil), // 356: forge.BmcCredentials + (*GetSiteExplorationRequest)(nil), // 357: forge.GetSiteExplorationRequest + (*ClearSiteExplorationErrorRequest)(nil), // 358: forge.ClearSiteExplorationErrorRequest + (*ReExploreEndpointRequest)(nil), // 359: forge.ReExploreEndpointRequest + (*RefreshEndpointReportRequest)(nil), // 360: forge.RefreshEndpointReportRequest + (*DeleteExploredEndpointRequest)(nil), // 361: forge.DeleteExploredEndpointRequest + (*PauseExploredEndpointRemediationRequest)(nil), // 362: forge.PauseExploredEndpointRemediationRequest + (*DeleteExploredEndpointResponse)(nil), // 363: forge.DeleteExploredEndpointResponse + (*BmcEndpointRequest)(nil), // 364: forge.BmcEndpointRequest + (*SshTimeoutConfig)(nil), // 365: forge.SshTimeoutConfig + (*SshRequest)(nil), // 366: forge.SshRequest + (*CopyBfbToDpuRshimRequest)(nil), // 367: forge.CopyBfbToDpuRshimRequest + (*UpdateMachineHardwareInfoRequest)(nil), // 368: forge.UpdateMachineHardwareInfoRequest + (*MachineHardwareInfo)(nil), // 369: forge.MachineHardwareInfo + (*ManagedHostNetworkConfigRequest)(nil), // 370: forge.ManagedHostNetworkConfigRequest + (*ManagedHostNetworkConfigResponse)(nil), // 371: forge.ManagedHostNetworkConfigResponse + (*TrafficInterceptConfig)(nil), // 372: forge.TrafficInterceptConfig + (*TrafficInterceptBridging)(nil), // 373: forge.TrafficInterceptBridging + (*ManagedHostDpuExtensionServiceConfig)(nil), // 374: forge.ManagedHostDpuExtensionServiceConfig + (*ManagedHostQuarantineState)(nil), // 375: forge.ManagedHostQuarantineState + (*GetManagedHostQuarantineStateRequest)(nil), // 376: forge.GetManagedHostQuarantineStateRequest + (*GetManagedHostQuarantineStateResponse)(nil), // 377: forge.GetManagedHostQuarantineStateResponse + (*SetManagedHostQuarantineStateRequest)(nil), // 378: forge.SetManagedHostQuarantineStateRequest + (*SetManagedHostQuarantineStateResponse)(nil), // 379: forge.SetManagedHostQuarantineStateResponse + (*ClearManagedHostQuarantineStateRequest)(nil), // 380: forge.ClearManagedHostQuarantineStateRequest + (*ClearManagedHostQuarantineStateResponse)(nil), // 381: forge.ClearManagedHostQuarantineStateResponse + (*ManagedHostNetworkConfig)(nil), // 382: forge.ManagedHostNetworkConfig + (*FlatInterfaceConfig)(nil), // 383: forge.FlatInterfaceConfig + (*FlatInterfaceRoutingProfile)(nil), // 384: forge.FlatInterfaceRoutingProfile + (*FlatInterfaceIpv6Config)(nil), // 385: forge.FlatInterfaceIpv6Config + (*FlatInterfaceNetworkSecurityGroupConfig)(nil), // 386: forge.FlatInterfaceNetworkSecurityGroupConfig + (*ManagedHostNetworkStatusRequest)(nil), // 387: forge.ManagedHostNetworkStatusRequest + (*ManagedHostNetworkStatusResponse)(nil), // 388: forge.ManagedHostNetworkStatusResponse + (*DpuAgentUpgradeCheckRequest)(nil), // 389: forge.DpuAgentUpgradeCheckRequest + (*DpuAgentUpgradeCheckResponse)(nil), // 390: forge.DpuAgentUpgradeCheckResponse + (*DpuAgentUpgradePolicyRequest)(nil), // 391: forge.DpuAgentUpgradePolicyRequest + (*DpuAgentUpgradePolicyResponse)(nil), // 392: forge.DpuAgentUpgradePolicyResponse + (*AdminForceDeleteMachineRequest)(nil), // 393: forge.AdminForceDeleteMachineRequest + (*AdminForceDeleteMachineResponse)(nil), // 394: forge.AdminForceDeleteMachineResponse + (*DisableSecureBootResponse)(nil), // 395: forge.DisableSecureBootResponse + (*LockdownRequest)(nil), // 396: forge.LockdownRequest + (*LockdownResponse)(nil), // 397: forge.LockdownResponse + (*LockdownStatusRequest)(nil), // 398: forge.LockdownStatusRequest + (*MachineSetupStatusRequest)(nil), // 399: forge.MachineSetupStatusRequest + (*MachineSetupRequest)(nil), // 400: forge.MachineSetupRequest + (*MachineSetupResponse)(nil), // 401: forge.MachineSetupResponse + (*SetDpuFirstBootOrderRequest)(nil), // 402: forge.SetDpuFirstBootOrderRequest + (*SetDpuFirstBootOrderResponse)(nil), // 403: forge.SetDpuFirstBootOrderResponse + (*AdminRebootRequest)(nil), // 404: forge.AdminRebootRequest + (*AdminRebootResponse)(nil), // 405: forge.AdminRebootResponse + (*AdminBmcResetRequest)(nil), // 406: forge.AdminBmcResetRequest + (*AdminBmcResetResponse)(nil), // 407: forge.AdminBmcResetResponse + (*EnableInfiniteBootRequest)(nil), // 408: forge.EnableInfiniteBootRequest + (*EnableInfiniteBootResponse)(nil), // 409: forge.EnableInfiniteBootResponse + (*IsInfiniteBootEnabledRequest)(nil), // 410: forge.IsInfiniteBootEnabledRequest + (*IsInfiniteBootEnabledResponse)(nil), // 411: forge.IsInfiniteBootEnabledResponse + (*BMCMetaDataGetRequest)(nil), // 412: forge.BMCMetaDataGetRequest + (*BMCMetaDataGetResponse)(nil), // 413: forge.BMCMetaDataGetResponse + (*MachineCredentialsUpdateRequest)(nil), // 414: forge.MachineCredentialsUpdateRequest + (*MachineCredentialsUpdateResponse)(nil), // 415: forge.MachineCredentialsUpdateResponse + (*ForgeAgentControlRequest)(nil), // 416: forge.ForgeAgentControlRequest + (*ForgeAgentControlResponse)(nil), // 417: forge.ForgeAgentControlResponse + (*MachineDiscoveryInfo)(nil), // 418: forge.MachineDiscoveryInfo + (*MachineDiscoveryCompletedRequest)(nil), // 419: forge.MachineDiscoveryCompletedRequest + (*MachineCleanupInfo)(nil), // 420: forge.MachineCleanupInfo + (*MachineCertificate)(nil), // 421: forge.MachineCertificate + (*MachineCertificateRenewRequest)(nil), // 422: forge.MachineCertificateRenewRequest + (*MachineCertificateResult)(nil), // 423: forge.MachineCertificateResult + (*MachineDiscoveryResult)(nil), // 424: forge.MachineDiscoveryResult + (*MachineDiscoveryCompletedResponse)(nil), // 425: forge.MachineDiscoveryCompletedResponse + (*MachineCleanupResult)(nil), // 426: forge.MachineCleanupResult + (*ForgeScoutErrorReport)(nil), // 427: forge.ForgeScoutErrorReport + (*ForgeScoutErrorReportResult)(nil), // 428: forge.ForgeScoutErrorReportResult + (*PxeInstructionRequest)(nil), // 429: forge.PxeInstructionRequest + (*PxeInstructions)(nil), // 430: forge.PxeInstructions + (*CloudInitDiscoveryInstructions)(nil), // 431: forge.CloudInitDiscoveryInstructions + (*CloudInitMetaData)(nil), // 432: forge.CloudInitMetaData + (*CloudInitInstructionsRequest)(nil), // 433: forge.CloudInitInstructionsRequest + (*CloudInitInstructions)(nil), // 434: forge.CloudInitInstructions + (*DpuNetworkStatus)(nil), // 435: forge.DpuNetworkStatus + (*LastDhcpRequest)(nil), // 436: forge.LastDhcpRequest + (*DpuExtensionServiceStatusObservation)(nil), // 437: forge.DpuExtensionServiceStatusObservation + (*DpuExtensionServiceComponent)(nil), // 438: forge.DpuExtensionServiceComponent + (*OptionalHealthReport)(nil), // 439: forge.OptionalHealthReport + (*HealthReportEntry)(nil), // 440: forge.HealthReportEntry + (*InsertMachineHealthReportRequest)(nil), // 441: forge.InsertMachineHealthReportRequest + (*InsertRackHealthReportRequest)(nil), // 442: forge.InsertRackHealthReportRequest + (*RemoveRackHealthReportRequest)(nil), // 443: forge.RemoveRackHealthReportRequest + (*ListRackHealthReportsRequest)(nil), // 444: forge.ListRackHealthReportsRequest + (*InsertSwitchHealthReportRequest)(nil), // 445: forge.InsertSwitchHealthReportRequest + (*RemoveSwitchHealthReportRequest)(nil), // 446: forge.RemoveSwitchHealthReportRequest + (*ListSwitchHealthReportsRequest)(nil), // 447: forge.ListSwitchHealthReportsRequest + (*InsertPowerShelfHealthReportRequest)(nil), // 448: forge.InsertPowerShelfHealthReportRequest + (*RemovePowerShelfHealthReportRequest)(nil), // 449: forge.RemovePowerShelfHealthReportRequest + (*ListPowerShelfHealthReportsRequest)(nil), // 450: forge.ListPowerShelfHealthReportsRequest + (*ListHealthReportResponse)(nil), // 451: forge.ListHealthReportResponse + (*RemoveMachineHealthReportRequest)(nil), // 452: forge.RemoveMachineHealthReportRequest + (*ListNVLinkDomainHealthReportsRequest)(nil), // 453: forge.ListNVLinkDomainHealthReportsRequest + (*InsertNVLinkDomainHealthReportRequest)(nil), // 454: forge.InsertNVLinkDomainHealthReportRequest + (*RemoveNVLinkDomainHealthReportRequest)(nil), // 455: forge.RemoveNVLinkDomainHealthReportRequest + (*InstanceInterfaceStatusObservation)(nil), // 456: forge.InstanceInterfaceStatusObservation + (*FabricInterfaceData)(nil), // 457: forge.FabricInterfaceData + (*LinkData)(nil), // 458: forge.LinkData + (*Tenant)(nil), // 459: forge.Tenant + (*CreateTenantRequest)(nil), // 460: forge.CreateTenantRequest + (*CreateTenantResponse)(nil), // 461: forge.CreateTenantResponse + (*UpdateTenantRequest)(nil), // 462: forge.UpdateTenantRequest + (*UpdateTenantResponse)(nil), // 463: forge.UpdateTenantResponse + (*FindTenantRequest)(nil), // 464: forge.FindTenantRequest + (*FindTenantResponse)(nil), // 465: forge.FindTenantResponse + (*TenantKeysetIdentifier)(nil), // 466: forge.TenantKeysetIdentifier + (*TenantPublicKey)(nil), // 467: forge.TenantPublicKey + (*TenantKeysetContent)(nil), // 468: forge.TenantKeysetContent + (*TenantKeyset)(nil), // 469: forge.TenantKeyset + (*CreateTenantKeysetRequest)(nil), // 470: forge.CreateTenantKeysetRequest + (*CreateTenantKeysetResponse)(nil), // 471: forge.CreateTenantKeysetResponse + (*TenantKeySetList)(nil), // 472: forge.TenantKeySetList + (*UpdateTenantKeysetRequest)(nil), // 473: forge.UpdateTenantKeysetRequest + (*UpdateTenantKeysetResponse)(nil), // 474: forge.UpdateTenantKeysetResponse + (*DeleteTenantKeysetRequest)(nil), // 475: forge.DeleteTenantKeysetRequest + (*DeleteTenantKeysetResponse)(nil), // 476: forge.DeleteTenantKeysetResponse + (*TenantKeysetSearchFilter)(nil), // 477: forge.TenantKeysetSearchFilter + (*TenantKeysetIdList)(nil), // 478: forge.TenantKeysetIdList + (*TenantKeysetsByIdsRequest)(nil), // 479: forge.TenantKeysetsByIdsRequest + (*ValidateTenantPublicKeyRequest)(nil), // 480: forge.ValidateTenantPublicKeyRequest + (*ValidateTenantPublicKeyResponse)(nil), // 481: forge.ValidateTenantPublicKeyResponse + (*ListResourcePoolsRequest)(nil), // 482: forge.ListResourcePoolsRequest + (*ResourcePools)(nil), // 483: forge.ResourcePools + (*ResourcePool)(nil), // 484: forge.ResourcePool + (*GrowResourcePoolRequest)(nil), // 485: forge.GrowResourcePoolRequest + (*GrowResourcePoolResponse)(nil), // 486: forge.GrowResourcePoolResponse + (*Range)(nil), // 487: forge.Range + (*MigrateVpcVniResponse)(nil), // 488: forge.MigrateVpcVniResponse + (*MaintenanceRequest)(nil), // 489: forge.MaintenanceRequest + (*SetDynamicConfigRequest)(nil), // 490: forge.SetDynamicConfigRequest + (*FindIpAddressRequest)(nil), // 491: forge.FindIpAddressRequest + (*FindIpAddressResponse)(nil), // 492: forge.FindIpAddressResponse + (*IdentifyUuidRequest)(nil), // 493: forge.IdentifyUuidRequest + (*IdentifyUuidResponse)(nil), // 494: forge.IdentifyUuidResponse + (*FindBmcIpsRequest)(nil), // 495: forge.FindBmcIpsRequest + (*IdentifyMacRequest)(nil), // 496: forge.IdentifyMacRequest + (*IdentifyMacResponse)(nil), // 497: forge.IdentifyMacResponse + (*IdentifySerialRequest)(nil), // 498: forge.IdentifySerialRequest + (*IdentifySerialResponse)(nil), // 499: forge.IdentifySerialResponse + (*DpuReprovisioningRequest)(nil), // 500: forge.DpuReprovisioningRequest + (*DpuReprovisioningListRequest)(nil), // 501: forge.DpuReprovisioningListRequest + (*DpuReprovisioningListResponse)(nil), // 502: forge.DpuReprovisioningListResponse + (*HostReprovisioningRequest)(nil), // 503: forge.HostReprovisioningRequest + (*HostReprovisioningListRequest)(nil), // 504: forge.HostReprovisioningListRequest + (*HostReprovisioningListResponse)(nil), // 505: forge.HostReprovisioningListResponse + (*DpuOsOperationalState)(nil), // 506: forge.DpuOsOperationalState + (*DpuRepresentorStatus)(nil), // 507: forge.DpuRepresentorStatus + (*DpuInfoStatusObservation)(nil), // 508: forge.DpuInfoStatusObservation + (*DpuInfo)(nil), // 509: forge.DpuInfo + (*GetDpuInfoListRequest)(nil), // 510: forge.GetDpuInfoListRequest + (*GetDpuInfoListResponse)(nil), // 511: forge.GetDpuInfoListResponse + (*IpAddressMatch)(nil), // 512: forge.IpAddressMatch + (*MachineBootOverride)(nil), // 513: forge.MachineBootOverride + (*ConnectedDevice)(nil), // 514: forge.ConnectedDevice + (*ConnectedDeviceList)(nil), // 515: forge.ConnectedDeviceList + (*BmcIpList)(nil), // 516: forge.BmcIpList + (*BmcIp)(nil), // 517: forge.BmcIp + (*MacAddressBmcIp)(nil), // 518: forge.MacAddressBmcIp + (*MachineIdBmcIpPairs)(nil), // 519: forge.MachineIdBmcIpPairs + (*MachineIdBmcIp)(nil), // 520: forge.MachineIdBmcIp + (*NetworkDevice)(nil), // 521: forge.NetworkDevice + (*NetworkTopologyRequest)(nil), // 522: forge.NetworkTopologyRequest + (*NetworkDeviceIdList)(nil), // 523: forge.NetworkDeviceIdList + (*NetworkTopologyData)(nil), // 524: forge.NetworkTopologyData + (*RouteServers)(nil), // 525: forge.RouteServers + (*RouteServerEntries)(nil), // 526: forge.RouteServerEntries + (*RouteServer)(nil), // 527: forge.RouteServer + (*SetHostUefiPasswordRequest)(nil), // 528: forge.SetHostUefiPasswordRequest + (*SetHostUefiPasswordResponse)(nil), // 529: forge.SetHostUefiPasswordResponse + (*ClearHostUefiPasswordRequest)(nil), // 530: forge.ClearHostUefiPasswordRequest + (*ClearHostUefiPasswordResponse)(nil), // 531: forge.ClearHostUefiPasswordResponse + (*OsImageAttributes)(nil), // 532: forge.OsImageAttributes + (*OsImage)(nil), // 533: forge.OsImage + (*ListOsImageRequest)(nil), // 534: forge.ListOsImageRequest + (*ListOsImageResponse)(nil), // 535: forge.ListOsImageResponse + (*DeleteOsImageRequest)(nil), // 536: forge.DeleteOsImageRequest + (*DeleteOsImageResponse)(nil), // 537: forge.DeleteOsImageResponse + (*GetIpxeTemplateRequest)(nil), // 538: forge.GetIpxeTemplateRequest + (*ListIpxeTemplatesRequest)(nil), // 539: forge.ListIpxeTemplatesRequest + (*IpxeTemplateList)(nil), // 540: forge.IpxeTemplateList + (*ExpectedHostNic)(nil), // 541: forge.ExpectedHostNic + (*HostLifecycleProfile)(nil), // 542: forge.HostLifecycleProfile + (*ExpectedMachine)(nil), // 543: forge.ExpectedMachine + (*ExpectedMachineRequest)(nil), // 544: forge.ExpectedMachineRequest + (*ExpectedMachineList)(nil), // 545: forge.ExpectedMachineList + (*LinkedExpectedMachineList)(nil), // 546: forge.LinkedExpectedMachineList + (*LinkedExpectedMachine)(nil), // 547: forge.LinkedExpectedMachine + (*UnexpectedMachineList)(nil), // 548: forge.UnexpectedMachineList + (*UnexpectedMachine)(nil), // 549: forge.UnexpectedMachine + (*BatchExpectedMachineOperationRequest)(nil), // 550: forge.BatchExpectedMachineOperationRequest + (*ExpectedMachineOperationResult)(nil), // 551: forge.ExpectedMachineOperationResult + (*BatchExpectedMachineOperationResponse)(nil), // 552: forge.BatchExpectedMachineOperationResponse + (*MachineRebootCompletedResponse)(nil), // 553: forge.MachineRebootCompletedResponse + (*MachineRebootCompletedRequest)(nil), // 554: forge.MachineRebootCompletedRequest + (*ScoutFirmwareUpgradeStatusRequest)(nil), // 555: forge.ScoutFirmwareUpgradeStatusRequest + (*MachineValidationCompletedRequest)(nil), // 556: forge.MachineValidationCompletedRequest + (*MachineValidationCompletedResponse)(nil), // 557: forge.MachineValidationCompletedResponse + (*MachineValidationResult)(nil), // 558: forge.MachineValidationResult + (*MachineValidationResultPostRequest)(nil), // 559: forge.MachineValidationResultPostRequest + (*MachineValidationResultList)(nil), // 560: forge.MachineValidationResultList + (*MachineValidationGetRequest)(nil), // 561: forge.MachineValidationGetRequest + (*MachineValidationStatus)(nil), // 562: forge.MachineValidationStatus + (*MachineValidationRun)(nil), // 563: forge.MachineValidationRun + (*MachineSetAutoUpdateRequest)(nil), // 564: forge.MachineSetAutoUpdateRequest + (*MachineSetAutoUpdateResponse)(nil), // 565: forge.MachineSetAutoUpdateResponse + (*GetMachineValidationExternalConfigRequest)(nil), // 566: forge.GetMachineValidationExternalConfigRequest + (*MachineValidationExternalConfig)(nil), // 567: forge.MachineValidationExternalConfig + (*GetMachineValidationExternalConfigResponse)(nil), // 568: forge.GetMachineValidationExternalConfigResponse + (*GetMachineValidationExternalConfigsRequest)(nil), // 569: forge.GetMachineValidationExternalConfigsRequest + (*GetMachineValidationExternalConfigsResponse)(nil), // 570: forge.GetMachineValidationExternalConfigsResponse + (*AddUpdateMachineValidationExternalConfigRequest)(nil), // 571: forge.AddUpdateMachineValidationExternalConfigRequest + (*RemoveMachineValidationExternalConfigRequest)(nil), // 572: forge.RemoveMachineValidationExternalConfigRequest + (*MachineValidationOnDemandRequest)(nil), // 573: forge.MachineValidationOnDemandRequest + (*MachineValidationOnDemandResponse)(nil), // 574: forge.MachineValidationOnDemandResponse + (*FirmwareUpgradeActivity)(nil), // 575: forge.FirmwareUpgradeActivity + (*NvosUpdateActivity)(nil), // 576: forge.NvosUpdateActivity + (*ConfigureNmxClusterActivity)(nil), // 577: forge.ConfigureNmxClusterActivity + (*PowerSequenceActivity)(nil), // 578: forge.PowerSequenceActivity + (*MaintenanceActivityConfig)(nil), // 579: forge.MaintenanceActivityConfig + (*RackMaintenanceScope)(nil), // 580: forge.RackMaintenanceScope + (*RackMaintenanceOnDemandRequest)(nil), // 581: forge.RackMaintenanceOnDemandRequest + (*RackMaintenanceOnDemandResponse)(nil), // 582: forge.RackMaintenanceOnDemandResponse + (*AdminPowerControlRequest)(nil), // 583: forge.AdminPowerControlRequest + (*AdminPowerControlResponse)(nil), // 584: forge.AdminPowerControlResponse + (*GetRedfishJobStateRequest)(nil), // 585: forge.GetRedfishJobStateRequest + (*GetRedfishJobStateResponse)(nil), // 586: forge.GetRedfishJobStateResponse + (*MachineValidationRunList)(nil), // 587: forge.MachineValidationRunList + (*MachineValidationRunListGetRequest)(nil), // 588: forge.MachineValidationRunListGetRequest + (*MachineValidationRunItemSearchFilter)(nil), // 589: forge.MachineValidationRunItemSearchFilter + (*MachineValidationRunItemIdList)(nil), // 590: forge.MachineValidationRunItemIdList + (*MachineValidationRunItemsByIdsRequest)(nil), // 591: forge.MachineValidationRunItemsByIdsRequest + (*MachineValidationRunItemList)(nil), // 592: forge.MachineValidationRunItemList + (*MachineValidationRunItem)(nil), // 593: forge.MachineValidationRunItem + (*MachineValidationAttemptGetRequest)(nil), // 594: forge.MachineValidationAttemptGetRequest + (*MachineValidationAttempt)(nil), // 595: forge.MachineValidationAttempt + (*MachineValidationHeartbeatRequest)(nil), // 596: forge.MachineValidationHeartbeatRequest + (*MachineValidationHeartbeatResponse)(nil), // 597: forge.MachineValidationHeartbeatResponse + (*IsBmcInManagedHostResponse)(nil), // 598: forge.IsBmcInManagedHostResponse + (*BmcCredentialStatusResponse)(nil), // 599: forge.BmcCredentialStatusResponse + (*MachineValidationTestsGetRequest)(nil), // 600: forge.MachineValidationTestsGetRequest + (*MachineValidationTestUpdateRequest)(nil), // 601: forge.MachineValidationTestUpdateRequest + (*MachineValidationTestAddRequest)(nil), // 602: forge.MachineValidationTestAddRequest + (*MachineValidationTestAddUpdateResponse)(nil), // 603: forge.MachineValidationTestAddUpdateResponse + (*MachineValidationTestsGetResponse)(nil), // 604: forge.MachineValidationTestsGetResponse + (*MachineValidationTestVerfiedRequest)(nil), // 605: forge.MachineValidationTestVerfiedRequest + (*MachineValidationTestVerfiedResponse)(nil), // 606: forge.MachineValidationTestVerfiedResponse + (*MachineValidationTest)(nil), // 607: forge.MachineValidationTest + (*MachineValidationTestNextVersionResponse)(nil), // 608: forge.MachineValidationTestNextVersionResponse + (*MachineValidationTestNextVersionRequest)(nil), // 609: forge.MachineValidationTestNextVersionRequest + (*MachineValidationTestEnableDisableTestRequest)(nil), // 610: forge.MachineValidationTestEnableDisableTestRequest + (*MachineValidationTestEnableDisableTestResponse)(nil), // 611: forge.MachineValidationTestEnableDisableTestResponse + (*MachineValidationRunRequest)(nil), // 612: forge.MachineValidationRunRequest + (*MachineValidationRunResponse)(nil), // 613: forge.MachineValidationRunResponse + (*MachineCapabilityAttributesCpu)(nil), // 614: forge.MachineCapabilityAttributesCpu + (*MachineCapabilityAttributesGpu)(nil), // 615: forge.MachineCapabilityAttributesGpu + (*MachineCapabilityAttributesMemory)(nil), // 616: forge.MachineCapabilityAttributesMemory + (*MachineCapabilityAttributesStorage)(nil), // 617: forge.MachineCapabilityAttributesStorage + (*MachineCapabilityAttributesNetwork)(nil), // 618: forge.MachineCapabilityAttributesNetwork + (*MachineCapabilityAttributesInfiniband)(nil), // 619: forge.MachineCapabilityAttributesInfiniband + (*MachineCapabilityAttributesDpu)(nil), // 620: forge.MachineCapabilityAttributesDpu + (*MachineCapabilitiesSet)(nil), // 621: forge.MachineCapabilitiesSet + (*InstanceTypeAttributes)(nil), // 622: forge.InstanceTypeAttributes + (*InstanceType)(nil), // 623: forge.InstanceType + (*InstanceTypeMachineCapabilityFilterAttributes)(nil), // 624: forge.InstanceTypeMachineCapabilityFilterAttributes + (*CreateInstanceTypeRequest)(nil), // 625: forge.CreateInstanceTypeRequest + (*CreateInstanceTypeResponse)(nil), // 626: forge.CreateInstanceTypeResponse + (*FindInstanceTypeIdsRequest)(nil), // 627: forge.FindInstanceTypeIdsRequest + (*FindInstanceTypeIdsResponse)(nil), // 628: forge.FindInstanceTypeIdsResponse + (*FindInstanceTypesByIdsRequest)(nil), // 629: forge.FindInstanceTypesByIdsRequest + (*FindInstanceTypesByIdsResponse)(nil), // 630: forge.FindInstanceTypesByIdsResponse + (*DeleteInstanceTypeRequest)(nil), // 631: forge.DeleteInstanceTypeRequest + (*DeleteInstanceTypeResponse)(nil), // 632: forge.DeleteInstanceTypeResponse + (*UpdateInstanceTypeResponse)(nil), // 633: forge.UpdateInstanceTypeResponse + (*UpdateInstanceTypeRequest)(nil), // 634: forge.UpdateInstanceTypeRequest + (*AssociateMachinesWithInstanceTypeRequest)(nil), // 635: forge.AssociateMachinesWithInstanceTypeRequest + (*AssociateMachinesWithInstanceTypeResponse)(nil), // 636: forge.AssociateMachinesWithInstanceTypeResponse + (*RemoveMachineInstanceTypeAssociationRequest)(nil), // 637: forge.RemoveMachineInstanceTypeAssociationRequest + (*RemoveMachineInstanceTypeAssociationResponse)(nil), // 638: forge.RemoveMachineInstanceTypeAssociationResponse + (*RedfishBrowseRequest)(nil), // 639: forge.RedfishBrowseRequest + (*RedfishBrowseResponse)(nil), // 640: forge.RedfishBrowseResponse + (*RedfishListActionsRequest)(nil), // 641: forge.RedfishListActionsRequest + (*RedfishListActionsResponse)(nil), // 642: forge.RedfishListActionsResponse + (*RedfishAction)(nil), // 643: forge.RedfishAction + (*OptionalRedfishActionResult)(nil), // 644: forge.OptionalRedfishActionResult + (*RedfishActionResult)(nil), // 645: forge.RedfishActionResult + (*RedfishCreateActionRequest)(nil), // 646: forge.RedfishCreateActionRequest + (*RedfishCreateActionResponse)(nil), // 647: forge.RedfishCreateActionResponse + (*RedfishActionID)(nil), // 648: forge.RedfishActionID + (*RedfishApproveActionResponse)(nil), // 649: forge.RedfishApproveActionResponse + (*RedfishApplyActionResponse)(nil), // 650: forge.RedfishApplyActionResponse + (*RedfishCancelActionResponse)(nil), // 651: forge.RedfishCancelActionResponse + (*UfmBrowseRequest)(nil), // 652: forge.UfmBrowseRequest + (*UfmBrowseResponse)(nil), // 653: forge.UfmBrowseResponse + (*NetworkSecurityGroupAttributes)(nil), // 654: forge.NetworkSecurityGroupAttributes + (*NetworkSecurityGroup)(nil), // 655: forge.NetworkSecurityGroup + (*CreateNetworkSecurityGroupRequest)(nil), // 656: forge.CreateNetworkSecurityGroupRequest + (*CreateNetworkSecurityGroupResponse)(nil), // 657: forge.CreateNetworkSecurityGroupResponse + (*FindNetworkSecurityGroupIdsRequest)(nil), // 658: forge.FindNetworkSecurityGroupIdsRequest + (*FindNetworkSecurityGroupIdsResponse)(nil), // 659: forge.FindNetworkSecurityGroupIdsResponse + (*FindNetworkSecurityGroupsByIdsRequest)(nil), // 660: forge.FindNetworkSecurityGroupsByIdsRequest + (*FindNetworkSecurityGroupsByIdsResponse)(nil), // 661: forge.FindNetworkSecurityGroupsByIdsResponse + (*UpdateNetworkSecurityGroupResponse)(nil), // 662: forge.UpdateNetworkSecurityGroupResponse + (*UpdateNetworkSecurityGroupRequest)(nil), // 663: forge.UpdateNetworkSecurityGroupRequest + (*DeleteNetworkSecurityGroupRequest)(nil), // 664: forge.DeleteNetworkSecurityGroupRequest + (*DeleteNetworkSecurityGroupResponse)(nil), // 665: forge.DeleteNetworkSecurityGroupResponse + (*NetworkSecurityGroupStatus)(nil), // 666: forge.NetworkSecurityGroupStatus + (*NetworkSecurityGroupPropagationObjectStatus)(nil), // 667: forge.NetworkSecurityGroupPropagationObjectStatus + (*GetNetworkSecurityGroupPropagationStatusResponse)(nil), // 668: forge.GetNetworkSecurityGroupPropagationStatusResponse + (*NetworkSecurityGroupIdList)(nil), // 669: forge.NetworkSecurityGroupIdList + (*GetNetworkSecurityGroupPropagationStatusRequest)(nil), // 670: forge.GetNetworkSecurityGroupPropagationStatusRequest + (*NetworkSecurityGroupRuleAttributes)(nil), // 671: forge.NetworkSecurityGroupRuleAttributes + (*ResolvedNetworkSecurityGroupRule)(nil), // 672: forge.ResolvedNetworkSecurityGroupRule + (*GetNetworkSecurityGroupAttachmentsRequest)(nil), // 673: forge.GetNetworkSecurityGroupAttachmentsRequest + (*NetworkSecurityGroupAttachments)(nil), // 674: forge.NetworkSecurityGroupAttachments + (*GetNetworkSecurityGroupAttachmentsResponse)(nil), // 675: forge.GetNetworkSecurityGroupAttachmentsResponse + (*GetDesiredFirmwareVersionsRequest)(nil), // 676: forge.GetDesiredFirmwareVersionsRequest + (*GetDesiredFirmwareVersionsResponse)(nil), // 677: forge.GetDesiredFirmwareVersionsResponse + (*DesiredFirmwareVersionEntry)(nil), // 678: forge.DesiredFirmwareVersionEntry + (*SkuComponentChassis)(nil), // 679: forge.SkuComponentChassis + (*SkuComponentCpu)(nil), // 680: forge.SkuComponentCpu + (*SkuComponentGpu)(nil), // 681: forge.SkuComponentGpu + (*SkuComponentEthernetDevices)(nil), // 682: forge.SkuComponentEthernetDevices + (*SkuComponentInfinibandDevices)(nil), // 683: forge.SkuComponentInfinibandDevices + (*SkuComponentStorage)(nil), // 684: forge.SkuComponentStorage + (*SkuComponentStorageController)(nil), // 685: forge.SkuComponentStorageController + (*SkuComponentMemory)(nil), // 686: forge.SkuComponentMemory + (*SkuComponentTpm)(nil), // 687: forge.SkuComponentTpm + (*SkuComponents)(nil), // 688: forge.SkuComponents + (*Sku)(nil), // 689: forge.Sku + (*SkuMachinePair)(nil), // 690: forge.SkuMachinePair + (*RemoveSkuRequest)(nil), // 691: forge.RemoveSkuRequest + (*SkuList)(nil), // 692: forge.SkuList + (*SkuIdList)(nil), // 693: forge.SkuIdList + (*SkuStatus)(nil), // 694: forge.SkuStatus + (*SkusByIdsRequest)(nil), // 695: forge.SkusByIdsRequest + (*SkuSearchFilter)(nil), // 696: forge.SkuSearchFilter + (*DpaInterface)(nil), // 697: forge.DpaInterface + (*DpaInterfaceCreationRequest)(nil), // 698: forge.DpaInterfaceCreationRequest + (*DpaInterfaceIdList)(nil), // 699: forge.DpaInterfaceIdList + (*DpaInterfacesByIdsRequest)(nil), // 700: forge.DpaInterfacesByIdsRequest + (*DpaInterfaceList)(nil), // 701: forge.DpaInterfaceList + (*DpaNetworkObservationSetRequest)(nil), // 702: forge.DpaNetworkObservationSetRequest + (*DpaInterfaceDeletionRequest)(nil), // 703: forge.DpaInterfaceDeletionRequest + (*DpaInterfaceDeletionResult)(nil), // 704: forge.DpaInterfaceDeletionResult + (*SkuUpdateMetadataRequest)(nil), // 705: forge.SkuUpdateMetadataRequest + (*PowerOptionRequest)(nil), // 706: forge.PowerOptionRequest + (*PowerOptionUpdateRequest)(nil), // 707: forge.PowerOptionUpdateRequest + (*PowerOptions)(nil), // 708: forge.PowerOptions + (*PowerOptionResponse)(nil), // 709: forge.PowerOptionResponse + (*ComputeAllocationAttributes)(nil), // 710: forge.ComputeAllocationAttributes + (*ComputeAllocation)(nil), // 711: forge.ComputeAllocation + (*CreateComputeAllocationRequest)(nil), // 712: forge.CreateComputeAllocationRequest + (*CreateComputeAllocationResponse)(nil), // 713: forge.CreateComputeAllocationResponse + (*FindComputeAllocationIdsRequest)(nil), // 714: forge.FindComputeAllocationIdsRequest + (*FindComputeAllocationIdsResponse)(nil), // 715: forge.FindComputeAllocationIdsResponse + (*FindComputeAllocationsByIdsRequest)(nil), // 716: forge.FindComputeAllocationsByIdsRequest + (*FindComputeAllocationsByIdsResponse)(nil), // 717: forge.FindComputeAllocationsByIdsResponse + (*UpdateComputeAllocationResponse)(nil), // 718: forge.UpdateComputeAllocationResponse + (*UpdateComputeAllocationRequest)(nil), // 719: forge.UpdateComputeAllocationRequest + (*DeleteComputeAllocationRequest)(nil), // 720: forge.DeleteComputeAllocationRequest + (*DeleteComputeAllocationResponse)(nil), // 721: forge.DeleteComputeAllocationResponse + (*InstanceTypeAllocationStats)(nil), // 722: forge.InstanceTypeAllocationStats + (*GetRackRequest)(nil), // 723: forge.GetRackRequest + (*GetRackResponse)(nil), // 724: forge.GetRackResponse + (*RackList)(nil), // 725: forge.RackList + (*RackSearchFilter)(nil), // 726: forge.RackSearchFilter + (*RackIdList)(nil), // 727: forge.RackIdList + (*RacksByIdsRequest)(nil), // 728: forge.RacksByIdsRequest + (*Rack)(nil), // 729: forge.Rack + (*RackConfig)(nil), // 730: forge.RackConfig + (*RackStatus)(nil), // 731: forge.RackStatus + (*RackStateHistoriesRequest)(nil), // 732: forge.RackStateHistoriesRequest + (*DeleteRackRequest)(nil), // 733: forge.DeleteRackRequest + (*AdminForceDeleteRackRequest)(nil), // 734: forge.AdminForceDeleteRackRequest + (*AdminForceDeleteRackResponse)(nil), // 735: forge.AdminForceDeleteRackResponse + (*RackCapabilityCompute)(nil), // 736: forge.RackCapabilityCompute + (*RackCapabilitySwitch)(nil), // 737: forge.RackCapabilitySwitch + (*RackCapabilityPowerShelf)(nil), // 738: forge.RackCapabilityPowerShelf + (*RackCapabilitiesSet)(nil), // 739: forge.RackCapabilitiesSet + (*RackProfile)(nil), // 740: forge.RackProfile + (*GetRackProfileRequest)(nil), // 741: forge.GetRackProfileRequest + (*GetRackProfileResponse)(nil), // 742: forge.GetRackProfileResponse + (*RackManagerForgeRequest)(nil), // 743: forge.RackManagerForgeRequest + (*RackManagerForgeResponse)(nil), // 744: forge.RackManagerForgeResponse + (*MachineNVLinkInfo)(nil), // 745: forge.MachineNVLinkInfo + (*UpdateMachineNvLinkInfoRequest)(nil), // 746: forge.UpdateMachineNvLinkInfoRequest + (*MachineSpxStatusObservation)(nil), // 747: forge.MachineSpxStatusObservation + (*MachineSpxAttachmentStatusObservation)(nil), // 748: forge.MachineSpxAttachmentStatusObservation + (*NVLinkGpu)(nil), // 749: forge.NVLinkGpu + (*MachineNVLinkStatusObservation)(nil), // 750: forge.MachineNVLinkStatusObservation + (*MachineNVLinkGpuStatusObservation)(nil), // 751: forge.MachineNVLinkGpuStatusObservation + (*NmxcBrowseRequest)(nil), // 752: forge.NmxcBrowseRequest + (*NmxcBrowseResponse)(nil), // 753: forge.NmxcBrowseResponse + (*NVLinkPartition)(nil), // 754: forge.NVLinkPartition + (*NVLinkPartitionList)(nil), // 755: forge.NVLinkPartitionList + (*NVLinkPartitionSearchConfig)(nil), // 756: forge.NVLinkPartitionSearchConfig + (*NVLinkPartitionQuery)(nil), // 757: forge.NVLinkPartitionQuery + (*NVLinkPartitionSearchFilter)(nil), // 758: forge.NVLinkPartitionSearchFilter + (*NVLinkPartitionsByIdsRequest)(nil), // 759: forge.NVLinkPartitionsByIdsRequest + (*NVLinkPartitionIdList)(nil), // 760: forge.NVLinkPartitionIdList + (*NVLinkFabricSearchFilter)(nil), // 761: forge.NVLinkFabricSearchFilter + (*NVLinkLogicalPartitionConfig)(nil), // 762: forge.NVLinkLogicalPartitionConfig + (*NVLinkLogicalPartitionStatus)(nil), // 763: forge.NVLinkLogicalPartitionStatus + (*NVLinkLogicalPartition)(nil), // 764: forge.NVLinkLogicalPartition + (*NVLinkLogicalPartitionList)(nil), // 765: forge.NVLinkLogicalPartitionList + (*NVLinkLogicalPartitionCreationRequest)(nil), // 766: forge.NVLinkLogicalPartitionCreationRequest + (*NVLinkLogicalPartitionDeletionRequest)(nil), // 767: forge.NVLinkLogicalPartitionDeletionRequest + (*NVLinkLogicalPartitionDeletionResult)(nil), // 768: forge.NVLinkLogicalPartitionDeletionResult + (*NVLinkLogicalPartitionSearchFilter)(nil), // 769: forge.NVLinkLogicalPartitionSearchFilter + (*NVLinkLogicalPartitionsByIdsRequest)(nil), // 770: forge.NVLinkLogicalPartitionsByIdsRequest + (*NVLinkLogicalPartitionIdList)(nil), // 771: forge.NVLinkLogicalPartitionIdList + (*NVLinkLogicalPartitionUpdateRequest)(nil), // 772: forge.NVLinkLogicalPartitionUpdateRequest + (*NVLinkLogicalPartitionUpdateResult)(nil), // 773: forge.NVLinkLogicalPartitionUpdateResult + (*CreateBmcUserRequest)(nil), // 774: forge.CreateBmcUserRequest + (*CreateBmcUserResponse)(nil), // 775: forge.CreateBmcUserResponse + (*DeleteBmcUserRequest)(nil), // 776: forge.DeleteBmcUserRequest + (*DeleteBmcUserResponse)(nil), // 777: forge.DeleteBmcUserResponse + (*SetFirmwareUpdateTimeWindowRequest)(nil), // 778: forge.SetFirmwareUpdateTimeWindowRequest + (*SetFirmwareUpdateTimeWindowResponse)(nil), // 779: forge.SetFirmwareUpdateTimeWindowResponse + (*ListHostFirmwareRequest)(nil), // 780: forge.ListHostFirmwareRequest + (*ListHostFirmwareResponse)(nil), // 781: forge.ListHostFirmwareResponse + (*AvailableHostFirmware)(nil), // 782: forge.AvailableHostFirmware + (*TrimTableRequest)(nil), // 783: forge.TrimTableRequest + (*TrimTableResponse)(nil), // 784: forge.TrimTableResponse + (*NvlinkNmxcEndpoint)(nil), // 785: forge.NvlinkNmxcEndpoint + (*NvlinkNmxcEndpointList)(nil), // 786: forge.NvlinkNmxcEndpointList + (*DeleteNvlinkNmxcEndpointRequest)(nil), // 787: forge.DeleteNvlinkNmxcEndpointRequest + (*CreateRemediationRequest)(nil), // 788: forge.CreateRemediationRequest + (*CreateRemediationResponse)(nil), // 789: forge.CreateRemediationResponse + (*RemediationIdList)(nil), // 790: forge.RemediationIdList + (*RemediationList)(nil), // 791: forge.RemediationList + (*Remediation)(nil), // 792: forge.Remediation + (*ApproveRemediationRequest)(nil), // 793: forge.ApproveRemediationRequest + (*RevokeRemediationRequest)(nil), // 794: forge.RevokeRemediationRequest + (*EnableRemediationRequest)(nil), // 795: forge.EnableRemediationRequest + (*DisableRemediationRequest)(nil), // 796: forge.DisableRemediationRequest + (*FindAppliedRemediationIdsRequest)(nil), // 797: forge.FindAppliedRemediationIdsRequest + (*AppliedRemediationIdList)(nil), // 798: forge.AppliedRemediationIdList + (*FindAppliedRemediationsRequest)(nil), // 799: forge.FindAppliedRemediationsRequest + (*AppliedRemediation)(nil), // 800: forge.AppliedRemediation + (*AppliedRemediationList)(nil), // 801: forge.AppliedRemediationList + (*GetNextRemediationForMachineRequest)(nil), // 802: forge.GetNextRemediationForMachineRequest + (*GetNextRemediationForMachineResponse)(nil), // 803: forge.GetNextRemediationForMachineResponse + (*RemediationAppliedRequest)(nil), // 804: forge.RemediationAppliedRequest + (*RemediationApplicationStatus)(nil), // 805: forge.RemediationApplicationStatus + (*SetPrimaryDpuRequest)(nil), // 806: forge.SetPrimaryDpuRequest + (*SetPrimaryInterfaceRequest)(nil), // 807: forge.SetPrimaryInterfaceRequest + (*UsernamePassword)(nil), // 808: forge.UsernamePassword + (*SessionToken)(nil), // 809: forge.SessionToken + (*DpuExtensionServiceCredential)(nil), // 810: forge.DpuExtensionServiceCredential + (*DpuExtensionServiceVersionInfo)(nil), // 811: forge.DpuExtensionServiceVersionInfo + (*DpuExtensionService)(nil), // 812: forge.DpuExtensionService + (*CreateDpuExtensionServiceRequest)(nil), // 813: forge.CreateDpuExtensionServiceRequest + (*UpdateDpuExtensionServiceRequest)(nil), // 814: forge.UpdateDpuExtensionServiceRequest + (*DeleteDpuExtensionServiceRequest)(nil), // 815: forge.DeleteDpuExtensionServiceRequest + (*DeleteDpuExtensionServiceResponse)(nil), // 816: forge.DeleteDpuExtensionServiceResponse + (*DpuExtensionServiceSearchFilter)(nil), // 817: forge.DpuExtensionServiceSearchFilter + (*DpuExtensionServiceIdList)(nil), // 818: forge.DpuExtensionServiceIdList + (*DpuExtensionServicesByIdsRequest)(nil), // 819: forge.DpuExtensionServicesByIdsRequest + (*DpuExtensionServiceList)(nil), // 820: forge.DpuExtensionServiceList + (*GetDpuExtensionServiceVersionsInfoRequest)(nil), // 821: forge.GetDpuExtensionServiceVersionsInfoRequest + (*DpuExtensionServiceVersionInfoList)(nil), // 822: forge.DpuExtensionServiceVersionInfoList + (*FindInstancesByDpuExtensionServiceRequest)(nil), // 823: forge.FindInstancesByDpuExtensionServiceRequest + (*FindInstancesByDpuExtensionServiceResponse)(nil), // 824: forge.FindInstancesByDpuExtensionServiceResponse + (*InstanceDpuExtensionServiceInfo)(nil), // 825: forge.InstanceDpuExtensionServiceInfo + (*DpuExtensionServiceObservabilityConfigPrometheus)(nil), // 826: forge.DpuExtensionServiceObservabilityConfigPrometheus + (*DpuExtensionServiceObservabilityConfigLogging)(nil), // 827: forge.DpuExtensionServiceObservabilityConfigLogging + (*DpuExtensionServiceObservabilityConfig)(nil), // 828: forge.DpuExtensionServiceObservabilityConfig + (*DpuExtensionServiceObservability)(nil), // 829: forge.DpuExtensionServiceObservability + (*ScoutStreamApiBoundMessage)(nil), // 830: forge.ScoutStreamApiBoundMessage + (*ScoutStreamScoutBoundMessage)(nil), // 831: forge.ScoutStreamScoutBoundMessage + (*ScoutStreamInitRequest)(nil), // 832: forge.ScoutStreamInitRequest + (*ScoutStreamShowConnectionsRequest)(nil), // 833: forge.ScoutStreamShowConnectionsRequest + (*ScoutStreamShowConnectionsResponse)(nil), // 834: forge.ScoutStreamShowConnectionsResponse + (*ScoutStreamDisconnectRequest)(nil), // 835: forge.ScoutStreamDisconnectRequest + (*ScoutStreamDisconnectResponse)(nil), // 836: forge.ScoutStreamDisconnectResponse + (*ScoutStreamAdminPingRequest)(nil), // 837: forge.ScoutStreamAdminPingRequest + (*ScoutStreamAdminPingResponse)(nil), // 838: forge.ScoutStreamAdminPingResponse + (*ScoutStreamAgentPingRequest)(nil), // 839: forge.ScoutStreamAgentPingRequest + (*ScoutStreamAgentPingResponse)(nil), // 840: forge.ScoutStreamAgentPingResponse + (*ScoutStreamConnectionInfo)(nil), // 841: forge.ScoutStreamConnectionInfo + (*ScoutStreamError)(nil), // 842: forge.ScoutStreamError + (*PrefixFilterPolicyEntry)(nil), // 843: forge.PrefixFilterPolicyEntry + (*RoutingProfile)(nil), // 844: forge.RoutingProfile + (*DomainLegacy)(nil), // 845: forge.DomainLegacy + (*DomainListLegacy)(nil), // 846: forge.DomainListLegacy + (*DomainDeletionLegacy)(nil), // 847: forge.DomainDeletionLegacy + (*DomainDeletionResultLegacy)(nil), // 848: forge.DomainDeletionResultLegacy + (*DomainSearchQueryLegacy)(nil), // 849: forge.DomainSearchQueryLegacy + (*PxeDomain)(nil), // 850: forge.PxeDomain + (*MachinePositionQuery)(nil), // 851: forge.MachinePositionQuery + (*MachinePositionInfoList)(nil), // 852: forge.MachinePositionInfoList + (*MachinePositionInfo)(nil), // 853: forge.MachinePositionInfo + (*ModifyDPFStateRequest)(nil), // 854: forge.ModifyDPFStateRequest + (*DPFStateResponse)(nil), // 855: forge.DPFStateResponse + (*GetDPFStateRequest)(nil), // 856: forge.GetDPFStateRequest + (*GetDPFHostSnapshotRequest)(nil), // 857: forge.GetDPFHostSnapshotRequest + (*DPFHostSnapshotResponse)(nil), // 858: forge.DPFHostSnapshotResponse + (*GetDPFServiceVersionsRequest)(nil), // 859: forge.GetDPFServiceVersionsRequest + (*DPFServiceVersion)(nil), // 860: forge.DPFServiceVersion + (*DPFServiceVersionsResponse)(nil), // 861: forge.DPFServiceVersionsResponse + (*ComponentResult)(nil), // 862: forge.ComponentResult + (*SwitchIdList)(nil), // 863: forge.SwitchIdList + (*PowerShelfIdList)(nil), // 864: forge.PowerShelfIdList + (*GetComponentInventoryRequest)(nil), // 865: forge.GetComponentInventoryRequest + (*ComponentInventoryEntry)(nil), // 866: forge.ComponentInventoryEntry + (*GetComponentInventoryResponse)(nil), // 867: forge.GetComponentInventoryResponse + (*ComponentPowerControlRequest)(nil), // 868: forge.ComponentPowerControlRequest + (*ComponentPowerControlResponse)(nil), // 869: forge.ComponentPowerControlResponse + (*FirmwareUpdateStatus)(nil), // 870: forge.FirmwareUpdateStatus + (*UpdateComputeTrayFirmwareTarget)(nil), // 871: forge.UpdateComputeTrayFirmwareTarget + (*UpdateSwitchFirmwareTarget)(nil), // 872: forge.UpdateSwitchFirmwareTarget + (*UpdatePowerShelfFirmwareTarget)(nil), // 873: forge.UpdatePowerShelfFirmwareTarget + (*UpdateFirmwareObjectTarget)(nil), // 874: forge.UpdateFirmwareObjectTarget + (*UpdateComponentFirmwareRequest)(nil), // 875: forge.UpdateComponentFirmwareRequest + (*UpdateComponentFirmwareResponse)(nil), // 876: forge.UpdateComponentFirmwareResponse + (*GetComponentFirmwareStatusRequest)(nil), // 877: forge.GetComponentFirmwareStatusRequest + (*GetComponentFirmwareStatusResponse)(nil), // 878: forge.GetComponentFirmwareStatusResponse + (*ListComponentFirmwareVersionsRequest)(nil), // 879: forge.ListComponentFirmwareVersionsRequest + (*ComputeTrayFirmwareVersions)(nil), // 880: forge.ComputeTrayFirmwareVersions + (*DeviceFirmwareVersions)(nil), // 881: forge.DeviceFirmwareVersions + (*ListComponentFirmwareVersionsResponse)(nil), // 882: forge.ListComponentFirmwareVersionsResponse + (*SpxPartitionCreationRequest)(nil), // 883: forge.SpxPartitionCreationRequest + (*SpxPartition)(nil), // 884: forge.SpxPartition + (*SpxPartitionIdList)(nil), // 885: forge.SpxPartitionIdList + (*SpxPartitionDeletionRequest)(nil), // 886: forge.SpxPartitionDeletionRequest + (*SpxPartitionDeletionResult)(nil), // 887: forge.SpxPartitionDeletionResult + (*SpxPartitionSearchFilter)(nil), // 888: forge.SpxPartitionSearchFilter + (*SpxPartitionList)(nil), // 889: forge.SpxPartitionList + (*SpxPartitionsByIdsRequest)(nil), // 890: forge.SpxPartitionsByIdsRequest + (*AdminForceDeleteSwitchRequest)(nil), // 891: forge.AdminForceDeleteSwitchRequest + (*AdminForceDeleteSwitchResponse)(nil), // 892: forge.AdminForceDeleteSwitchResponse + (*AdminForceDeletePowerShelfRequest)(nil), // 893: forge.AdminForceDeletePowerShelfRequest + (*AdminForceDeletePowerShelfResponse)(nil), // 894: forge.AdminForceDeletePowerShelfResponse + (*OperatingSystem)(nil), // 895: forge.OperatingSystem + (*CreateOperatingSystemRequest)(nil), // 896: forge.CreateOperatingSystemRequest + (*IpxeTemplateParameters)(nil), // 897: forge.IpxeTemplateParameters + (*IpxeTemplateArtifacts)(nil), // 898: forge.IpxeTemplateArtifacts + (*UpdateOperatingSystemRequest)(nil), // 899: forge.UpdateOperatingSystemRequest + (*DeleteOperatingSystemRequest)(nil), // 900: forge.DeleteOperatingSystemRequest + (*DeleteOperatingSystemResponse)(nil), // 901: forge.DeleteOperatingSystemResponse + (*OperatingSystemSearchFilter)(nil), // 902: forge.OperatingSystemSearchFilter + (*OperatingSystemIdList)(nil), // 903: forge.OperatingSystemIdList + (*OperatingSystemsByIdsRequest)(nil), // 904: forge.OperatingSystemsByIdsRequest + (*OperatingSystemList)(nil), // 905: forge.OperatingSystemList + (*GetOperatingSystemCachableIpxeTemplateArtifactsRequest)(nil), // 906: forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest + (*IpxeTemplateArtifactList)(nil), // 907: forge.IpxeTemplateArtifactList + (*IpxeTemplateArtifactUpdateRequest)(nil), // 908: forge.IpxeTemplateArtifactUpdateRequest + (*UpdateOperatingSystemIpxeTemplateArtifactRequest)(nil), // 909: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest + (*HostRepresentorInterceptBridging)(nil), // 910: forge.HostRepresentorInterceptBridging + (*ReWrapSecretsRequest)(nil), // 911: forge.ReWrapSecretsRequest + (*ReWrapSecretsResponse)(nil), // 912: forge.ReWrapSecretsResponse + (*GetMachineBootInterfacesRequest)(nil), // 913: forge.GetMachineBootInterfacesRequest + (*MachineInterfaceBootInterface)(nil), // 914: forge.MachineInterfaceBootInterface + (*PredictedBootInterface)(nil), // 915: forge.PredictedBootInterface + (*ExploredBootInterface)(nil), // 916: forge.ExploredBootInterface + (*RetainedBootInterface)(nil), // 917: forge.RetainedBootInterface + (*GetMachineBootInterfacesResponse)(nil), // 918: forge.GetMachineBootInterfacesResponse + nil, // 919: forge.RuntimeConfig.DpuNicFirmwareUpdateVersionEntry + (*DNSMessage_DNSQuestion)(nil), // 920: forge.DNSMessage.DNSQuestion + (*DNSMessage_DNSResponse)(nil), // 921: forge.DNSMessage.DNSResponse + (*DNSMessage_DNSResponse_DNSRR)(nil), // 922: forge.DNSMessage.DNSResponse.DNSRR + nil, // 923: forge.FabricManagerConfig.ConfigMapEntry + nil, // 924: forge.StateHistories.HistoriesEntry + nil, // 925: forge.MachineStateHistories.HistoriesEntry + nil, // 926: forge.HealthHistories.HistoriesEntry + nil, // 927: forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry + (*MachineCredentialsUpdateRequest_Credentials)(nil), // 928: forge.MachineCredentialsUpdateRequest.Credentials + (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo)(nil), // 929: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo + (*ForgeAgentControlResponse_Noop)(nil), // 930: forge.ForgeAgentControlResponse.Noop + (*ForgeAgentControlResponse_Reset)(nil), // 931: forge.ForgeAgentControlResponse.Reset + (*ForgeAgentControlResponse_Discovery)(nil), // 932: forge.ForgeAgentControlResponse.Discovery + (*ForgeAgentControlResponse_Rebuild)(nil), // 933: forge.ForgeAgentControlResponse.Rebuild + (*ForgeAgentControlResponse_Retry)(nil), // 934: forge.ForgeAgentControlResponse.Retry + (*ForgeAgentControlResponse_Measure)(nil), // 935: forge.ForgeAgentControlResponse.Measure + (*ForgeAgentControlResponse_LogError)(nil), // 936: forge.ForgeAgentControlResponse.LogError + (*ForgeAgentControlResponse_MachineValidation)(nil), // 937: forge.ForgeAgentControlResponse.MachineValidation + (*ForgeAgentControlResponse_MachineValidationFilter)(nil), // 938: forge.ForgeAgentControlResponse.MachineValidationFilter + (*ForgeAgentControlResponse_MlxAction)(nil), // 939: forge.ForgeAgentControlResponse.MlxAction + (*ForgeAgentControlResponse_MlxDeviceAction)(nil), // 940: forge.ForgeAgentControlResponse.MlxDeviceAction + (*ForgeAgentControlResponse_MlxDeviceNoop)(nil), // 941: forge.ForgeAgentControlResponse.MlxDeviceNoop + (*ForgeAgentControlResponse_MlxDeviceLock)(nil), // 942: forge.ForgeAgentControlResponse.MlxDeviceLock + (*ForgeAgentControlResponse_MlxDeviceUnlock)(nil), // 943: forge.ForgeAgentControlResponse.MlxDeviceUnlock + (*ForgeAgentControlResponse_MlxDeviceApplyProfile)(nil), // 944: forge.ForgeAgentControlResponse.MlxDeviceApplyProfile + (*ForgeAgentControlResponse_MlxDeviceApplyFirmware)(nil), // 945: forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware + (*ForgeAgentControlResponse_FirmwareUpgrade)(nil), // 946: forge.ForgeAgentControlResponse.FirmwareUpgrade + (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair)(nil), // 947: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.KeyValuePair + (*MachineCleanupInfo_CleanupStepResult)(nil), // 948: forge.MachineCleanupInfo.CleanupStepResult + (*DpuReprovisioningListResponse_DpuReprovisioningListItem)(nil), // 949: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem + (*HostReprovisioningListResponse_HostReprovisioningListItem)(nil), // 950: forge.HostReprovisioningListResponse.HostReprovisioningListItem + (*MachineValidationTestUpdateRequest_Payload)(nil), // 951: forge.MachineValidationTestUpdateRequest.Payload + nil, // 952: forge.RedfishBrowseResponse.HeadersEntry + nil, // 953: forge.RedfishActionResult.HeadersEntry + nil, // 954: forge.UfmBrowseResponse.HeadersEntry + nil, // 955: forge.DesiredFirmwareVersionEntry.ComponentVersionsEntry + nil, // 956: forge.NmxcBrowseResponse.HeadersEntry + (*DPFStateResponse_DPFState)(nil), // 957: forge.DPFStateResponse.DPFState + (*MachineId)(nil), // 958: common.MachineId + (*timestamppb.Timestamp)(nil), // 959: google.protobuf.Timestamp + (*VpcId)(nil), // 960: common.VpcId + (*NVLinkLogicalPartitionId)(nil), // 961: common.NVLinkLogicalPartitionId + (*VpcPrefixId)(nil), // 962: common.VpcPrefixId + (*VpcPeeringId)(nil), // 963: common.VpcPeeringId + (*IBPartitionId)(nil), // 964: common.IBPartitionId + (*HealthReport)(nil), // 965: health.HealthReport + (*PowerShelfId)(nil), // 966: common.PowerShelfId + (*RackId)(nil), // 967: common.RackId + (*UUID)(nil), // 968: common.UUID + (*SwitchId)(nil), // 969: common.SwitchId + (*RackProfileId)(nil), // 970: common.RackProfileId + (*DomainId)(nil), // 971: common.DomainId + (*NetworkSegmentId)(nil), // 972: common.NetworkSegmentId + (*NetworkPrefixId)(nil), // 973: common.NetworkPrefixId + (*InstanceId)(nil), // 974: common.InstanceId + (*IpxeTemplateId)(nil), // 975: common.IpxeTemplateId + (*OperatingSystemId)(nil), // 976: common.OperatingSystemId + (*SpxPartitionId)(nil), // 977: common.SpxPartitionId + (*NVLinkDomainId)(nil), // 978: common.NVLinkDomainId + (*MachineInterfaceId)(nil), // 979: common.MachineInterfaceId + (*DiscoveryInfo)(nil), // 980: machine_discovery.DiscoveryInfo + (*durationpb.Duration)(nil), // 981: google.protobuf.Duration + (*StringList)(nil), // 982: common.StringList + (*Gpu)(nil), // 983: machine_discovery.Gpu + (*RouteTarget)(nil), // 984: common.RouteTarget + (*MachineValidationId)(nil), // 985: common.MachineValidationId + (*Uint32List)(nil), // 986: common.Uint32List + (*DpaInterfaceId)(nil), // 987: common.DpaInterfaceId + (*ComputeAllocationId)(nil), // 988: common.ComputeAllocationId + (*RackHardwareType)(nil), // 989: common.RackHardwareType + (*NVLinkPartitionId)(nil), // 990: common.NVLinkPartitionId + (*RemediationId)(nil), // 991: common.RemediationId + (*MlxDeviceLockdownResponse)(nil), // 992: mlx_device.MlxDeviceLockdownResponse + (*MlxDeviceProfileSyncResponse)(nil), // 993: mlx_device.MlxDeviceProfileSyncResponse + (*MlxDeviceProfileCompareResponse)(nil), // 994: mlx_device.MlxDeviceProfileCompareResponse + (*MlxDeviceInfoDeviceResponse)(nil), // 995: mlx_device.MlxDeviceInfoDeviceResponse + (*MlxDeviceInfoReportResponse)(nil), // 996: mlx_device.MlxDeviceInfoReportResponse + (*MlxDeviceRegistryListResponse)(nil), // 997: mlx_device.MlxDeviceRegistryListResponse + (*MlxDeviceRegistryShowResponse)(nil), // 998: mlx_device.MlxDeviceRegistryShowResponse + (*MlxDeviceConfigQueryResponse)(nil), // 999: mlx_device.MlxDeviceConfigQueryResponse + (*MlxDeviceConfigSetResponse)(nil), // 1000: mlx_device.MlxDeviceConfigSetResponse + (*MlxDeviceConfigSyncResponse)(nil), // 1001: mlx_device.MlxDeviceConfigSyncResponse + (*MlxDeviceConfigCompareResponse)(nil), // 1002: mlx_device.MlxDeviceConfigCompareResponse + (*MlxDeviceLockdownLockRequest)(nil), // 1003: mlx_device.MlxDeviceLockdownLockRequest + (*MlxDeviceLockdownUnlockRequest)(nil), // 1004: mlx_device.MlxDeviceLockdownUnlockRequest + (*MlxDeviceLockdownStatusRequest)(nil), // 1005: mlx_device.MlxDeviceLockdownStatusRequest + (*MlxDeviceProfileSyncRequest)(nil), // 1006: mlx_device.MlxDeviceProfileSyncRequest + (*MlxDeviceProfileCompareRequest)(nil), // 1007: mlx_device.MlxDeviceProfileCompareRequest + (*MlxDeviceInfoDeviceRequest)(nil), // 1008: mlx_device.MlxDeviceInfoDeviceRequest + (*MlxDeviceInfoReportRequest)(nil), // 1009: mlx_device.MlxDeviceInfoReportRequest + (*MlxDeviceRegistryListRequest)(nil), // 1010: mlx_device.MlxDeviceRegistryListRequest + (*MlxDeviceRegistryShowRequest)(nil), // 1011: mlx_device.MlxDeviceRegistryShowRequest + (*MlxDeviceConfigQueryRequest)(nil), // 1012: mlx_device.MlxDeviceConfigQueryRequest + (*MlxDeviceConfigSetRequest)(nil), // 1013: mlx_device.MlxDeviceConfigSetRequest + (*MlxDeviceConfigSyncRequest)(nil), // 1014: mlx_device.MlxDeviceConfigSyncRequest + (*MlxDeviceConfigCompareRequest)(nil), // 1015: mlx_device.MlxDeviceConfigCompareRequest + (*Domain)(nil), // 1016: dns.Domain + (*MachineIdList)(nil), // 1017: common.MachineIdList + (*EndpointExplorationReport)(nil), // 1018: site_explorer.EndpointExplorationReport + (SystemPowerControl)(0), // 1019: common.SystemPowerControl + (*SerializableMlxConfigProfile)(nil), // 1020: mlx_device.SerializableMlxConfigProfile + (*FirmwareFlasherProfile)(nil), // 1021: mlx_device.FirmwareFlasherProfile + (*ScoutFirmwareUpgradeTask)(nil), // 1022: scout_firmware_upgrade.ScoutFirmwareUpgradeTask + (*CreateDomainRequest)(nil), // 1023: dns.CreateDomainRequest + (*UpdateDomainRequest)(nil), // 1024: dns.UpdateDomainRequest + (*DomainDeletionRequest)(nil), // 1025: dns.DomainDeletionRequest + (*DomainSearchQuery)(nil), // 1026: dns.DomainSearchQuery + (*DnsResourceRecordLookupRequest)(nil), // 1027: dns.DnsResourceRecordLookupRequest + (*GetAllDomainsRequest)(nil), // 1028: dns.GetAllDomainsRequest + (*DomainMetadataRequest)(nil), // 1029: dns.DomainMetadataRequest + (*emptypb.Empty)(nil), // 1030: google.protobuf.Empty + (*ExploredEndpointSearchFilter)(nil), // 1031: site_explorer.ExploredEndpointSearchFilter + (*ExploredEndpointsByIdsRequest)(nil), // 1032: site_explorer.ExploredEndpointsByIdsRequest + (*ExploredManagedHostSearchFilter)(nil), // 1033: site_explorer.ExploredManagedHostSearchFilter + (*ExploredManagedHostsByIdsRequest)(nil), // 1034: site_explorer.ExploredManagedHostsByIdsRequest + (*ExploredMlxDeviceHostSearchFilter)(nil), // 1035: site_explorer.ExploredMlxDeviceHostSearchFilter + (*ExploredMlxDevicesByIdsRequest)(nil), // 1036: site_explorer.ExploredMlxDevicesByIdsRequest + (*CreateMeasurementBundleRequest)(nil), // 1037: measured_boot.CreateMeasurementBundleRequest + (*DeleteMeasurementBundleRequest)(nil), // 1038: measured_boot.DeleteMeasurementBundleRequest + (*RenameMeasurementBundleRequest)(nil), // 1039: measured_boot.RenameMeasurementBundleRequest + (*UpdateMeasurementBundleRequest)(nil), // 1040: measured_boot.UpdateMeasurementBundleRequest + (*ShowMeasurementBundleRequest)(nil), // 1041: measured_boot.ShowMeasurementBundleRequest + (*ShowMeasurementBundlesRequest)(nil), // 1042: measured_boot.ShowMeasurementBundlesRequest + (*ListMeasurementBundlesRequest)(nil), // 1043: measured_boot.ListMeasurementBundlesRequest + (*ListMeasurementBundleMachinesRequest)(nil), // 1044: measured_boot.ListMeasurementBundleMachinesRequest + (*FindClosestBundleMatchRequest)(nil), // 1045: measured_boot.FindClosestBundleMatchRequest + (*DeleteMeasurementJournalRequest)(nil), // 1046: measured_boot.DeleteMeasurementJournalRequest + (*ShowMeasurementJournalRequest)(nil), // 1047: measured_boot.ShowMeasurementJournalRequest + (*ShowMeasurementJournalsRequest)(nil), // 1048: measured_boot.ShowMeasurementJournalsRequest + (*ListMeasurementJournalRequest)(nil), // 1049: measured_boot.ListMeasurementJournalRequest + (*AttestCandidateMachineRequest)(nil), // 1050: measured_boot.AttestCandidateMachineRequest + (*ShowCandidateMachineRequest)(nil), // 1051: measured_boot.ShowCandidateMachineRequest + (*ShowCandidateMachinesRequest)(nil), // 1052: measured_boot.ShowCandidateMachinesRequest + (*ListCandidateMachinesRequest)(nil), // 1053: measured_boot.ListCandidateMachinesRequest + (*CreateMeasurementSystemProfileRequest)(nil), // 1054: measured_boot.CreateMeasurementSystemProfileRequest + (*DeleteMeasurementSystemProfileRequest)(nil), // 1055: measured_boot.DeleteMeasurementSystemProfileRequest + (*RenameMeasurementSystemProfileRequest)(nil), // 1056: measured_boot.RenameMeasurementSystemProfileRequest + (*ShowMeasurementSystemProfileRequest)(nil), // 1057: measured_boot.ShowMeasurementSystemProfileRequest + (*ShowMeasurementSystemProfilesRequest)(nil), // 1058: measured_boot.ShowMeasurementSystemProfilesRequest + (*ListMeasurementSystemProfilesRequest)(nil), // 1059: measured_boot.ListMeasurementSystemProfilesRequest + (*ListMeasurementSystemProfileBundlesRequest)(nil), // 1060: measured_boot.ListMeasurementSystemProfileBundlesRequest + (*ListMeasurementSystemProfileMachinesRequest)(nil), // 1061: measured_boot.ListMeasurementSystemProfileMachinesRequest + (*CreateMeasurementReportRequest)(nil), // 1062: measured_boot.CreateMeasurementReportRequest + (*DeleteMeasurementReportRequest)(nil), // 1063: measured_boot.DeleteMeasurementReportRequest + (*PromoteMeasurementReportRequest)(nil), // 1064: measured_boot.PromoteMeasurementReportRequest + (*RevokeMeasurementReportRequest)(nil), // 1065: measured_boot.RevokeMeasurementReportRequest + (*ShowMeasurementReportForIdRequest)(nil), // 1066: measured_boot.ShowMeasurementReportForIdRequest + (*ShowMeasurementReportsForMachineRequest)(nil), // 1067: measured_boot.ShowMeasurementReportsForMachineRequest + (*ShowMeasurementReportsRequest)(nil), // 1068: measured_boot.ShowMeasurementReportsRequest + (*ListMeasurementReportRequest)(nil), // 1069: measured_boot.ListMeasurementReportRequest + (*MatchMeasurementReportRequest)(nil), // 1070: measured_boot.MatchMeasurementReportRequest + (*ImportSiteMeasurementsRequest)(nil), // 1071: measured_boot.ImportSiteMeasurementsRequest + (*ExportSiteMeasurementsRequest)(nil), // 1072: measured_boot.ExportSiteMeasurementsRequest + (*AddMeasurementTrustedMachineRequest)(nil), // 1073: measured_boot.AddMeasurementTrustedMachineRequest + (*RemoveMeasurementTrustedMachineRequest)(nil), // 1074: measured_boot.RemoveMeasurementTrustedMachineRequest + (*AddMeasurementTrustedProfileRequest)(nil), // 1075: measured_boot.AddMeasurementTrustedProfileRequest + (*RemoveMeasurementTrustedProfileRequest)(nil), // 1076: measured_boot.RemoveMeasurementTrustedProfileRequest + (*ListMeasurementTrustedMachinesRequest)(nil), // 1077: measured_boot.ListMeasurementTrustedMachinesRequest + (*ListMeasurementTrustedProfilesRequest)(nil), // 1078: measured_boot.ListMeasurementTrustedProfilesRequest + (*ListAttestationSummaryRequest)(nil), // 1079: measured_boot.ListAttestationSummaryRequest + (*PublishMlxDeviceReportRequest)(nil), // 1080: mlx_device.PublishMlxDeviceReportRequest + (*PublishMlxObservationReportRequest)(nil), // 1081: mlx_device.PublishMlxObservationReportRequest + (*MlxAdminProfileSyncRequest)(nil), // 1082: mlx_device.MlxAdminProfileSyncRequest + (*MlxAdminProfileShowRequest)(nil), // 1083: mlx_device.MlxAdminProfileShowRequest + (*MlxAdminProfileCompareRequest)(nil), // 1084: mlx_device.MlxAdminProfileCompareRequest + (*MlxAdminProfileListRequest)(nil), // 1085: mlx_device.MlxAdminProfileListRequest + (*MlxAdminLockdownLockRequest)(nil), // 1086: mlx_device.MlxAdminLockdownLockRequest + (*MlxAdminLockdownUnlockRequest)(nil), // 1087: mlx_device.MlxAdminLockdownUnlockRequest + (*MlxAdminLockdownStatusRequest)(nil), // 1088: mlx_device.MlxAdminLockdownStatusRequest + (*MlxAdminDeviceInfoRequest)(nil), // 1089: mlx_device.MlxAdminDeviceInfoRequest + (*MlxAdminDeviceReportRequest)(nil), // 1090: mlx_device.MlxAdminDeviceReportRequest + (*MlxAdminRegistryListRequest)(nil), // 1091: mlx_device.MlxAdminRegistryListRequest + (*MlxAdminRegistryShowRequest)(nil), // 1092: mlx_device.MlxAdminRegistryShowRequest + (*MlxAdminConfigQueryRequest)(nil), // 1093: mlx_device.MlxAdminConfigQueryRequest + (*MlxAdminConfigSetRequest)(nil), // 1094: mlx_device.MlxAdminConfigSetRequest + (*MlxAdminConfigSyncRequest)(nil), // 1095: mlx_device.MlxAdminConfigSyncRequest + (*MlxAdminConfigCompareRequest)(nil), // 1096: mlx_device.MlxAdminConfigCompareRequest + (*DomainDeletionResult)(nil), // 1097: dns.DomainDeletionResult + (*DomainList)(nil), // 1098: dns.DomainList + (*DnsResourceRecordLookupResponse)(nil), // 1099: dns.DnsResourceRecordLookupResponse + (*GetAllDomainsResponse)(nil), // 1100: dns.GetAllDomainsResponse + (*DomainMetadataResponse)(nil), // 1101: dns.DomainMetadataResponse + (*SiteExplorationReport)(nil), // 1102: site_explorer.SiteExplorationReport + (*SiteExplorerLastRunResponse)(nil), // 1103: site_explorer.SiteExplorerLastRunResponse + (*ExploredEndpoint)(nil), // 1104: site_explorer.ExploredEndpoint + (*ExploredEndpointIdList)(nil), // 1105: site_explorer.ExploredEndpointIdList + (*ExploredEndpointList)(nil), // 1106: site_explorer.ExploredEndpointList + (*ExploredManagedHostIdList)(nil), // 1107: site_explorer.ExploredManagedHostIdList + (*ExploredManagedHostList)(nil), // 1108: site_explorer.ExploredManagedHostList + (*ExploredMlxDeviceHostIdList)(nil), // 1109: site_explorer.ExploredMlxDeviceHostIdList + (*ExploredMlxDeviceList)(nil), // 1110: site_explorer.ExploredMlxDeviceList + (*CreateMeasurementBundleResponse)(nil), // 1111: measured_boot.CreateMeasurementBundleResponse + (*DeleteMeasurementBundleResponse)(nil), // 1112: measured_boot.DeleteMeasurementBundleResponse + (*RenameMeasurementBundleResponse)(nil), // 1113: measured_boot.RenameMeasurementBundleResponse + (*UpdateMeasurementBundleResponse)(nil), // 1114: measured_boot.UpdateMeasurementBundleResponse + (*ShowMeasurementBundleResponse)(nil), // 1115: measured_boot.ShowMeasurementBundleResponse + (*ShowMeasurementBundlesResponse)(nil), // 1116: measured_boot.ShowMeasurementBundlesResponse + (*ListMeasurementBundlesResponse)(nil), // 1117: measured_boot.ListMeasurementBundlesResponse + (*ListMeasurementBundleMachinesResponse)(nil), // 1118: measured_boot.ListMeasurementBundleMachinesResponse + (*DeleteMeasurementJournalResponse)(nil), // 1119: measured_boot.DeleteMeasurementJournalResponse + (*ShowMeasurementJournalResponse)(nil), // 1120: measured_boot.ShowMeasurementJournalResponse + (*ShowMeasurementJournalsResponse)(nil), // 1121: measured_boot.ShowMeasurementJournalsResponse + (*ListMeasurementJournalResponse)(nil), // 1122: measured_boot.ListMeasurementJournalResponse + (*AttestCandidateMachineResponse)(nil), // 1123: measured_boot.AttestCandidateMachineResponse + (*ShowCandidateMachineResponse)(nil), // 1124: measured_boot.ShowCandidateMachineResponse + (*ShowCandidateMachinesResponse)(nil), // 1125: measured_boot.ShowCandidateMachinesResponse + (*ListCandidateMachinesResponse)(nil), // 1126: measured_boot.ListCandidateMachinesResponse + (*CreateMeasurementSystemProfileResponse)(nil), // 1127: measured_boot.CreateMeasurementSystemProfileResponse + (*DeleteMeasurementSystemProfileResponse)(nil), // 1128: measured_boot.DeleteMeasurementSystemProfileResponse + (*RenameMeasurementSystemProfileResponse)(nil), // 1129: measured_boot.RenameMeasurementSystemProfileResponse + (*ShowMeasurementSystemProfileResponse)(nil), // 1130: measured_boot.ShowMeasurementSystemProfileResponse + (*ShowMeasurementSystemProfilesResponse)(nil), // 1131: measured_boot.ShowMeasurementSystemProfilesResponse + (*ListMeasurementSystemProfilesResponse)(nil), // 1132: measured_boot.ListMeasurementSystemProfilesResponse + (*ListMeasurementSystemProfileBundlesResponse)(nil), // 1133: measured_boot.ListMeasurementSystemProfileBundlesResponse + (*ListMeasurementSystemProfileMachinesResponse)(nil), // 1134: measured_boot.ListMeasurementSystemProfileMachinesResponse + (*CreateMeasurementReportResponse)(nil), // 1135: measured_boot.CreateMeasurementReportResponse + (*DeleteMeasurementReportResponse)(nil), // 1136: measured_boot.DeleteMeasurementReportResponse + (*PromoteMeasurementReportResponse)(nil), // 1137: measured_boot.PromoteMeasurementReportResponse + (*RevokeMeasurementReportResponse)(nil), // 1138: measured_boot.RevokeMeasurementReportResponse + (*ShowMeasurementReportForIdResponse)(nil), // 1139: measured_boot.ShowMeasurementReportForIdResponse + (*ShowMeasurementReportsForMachineResponse)(nil), // 1140: measured_boot.ShowMeasurementReportsForMachineResponse + (*ShowMeasurementReportsResponse)(nil), // 1141: measured_boot.ShowMeasurementReportsResponse + (*ListMeasurementReportResponse)(nil), // 1142: measured_boot.ListMeasurementReportResponse + (*MatchMeasurementReportResponse)(nil), // 1143: measured_boot.MatchMeasurementReportResponse + (*ImportSiteMeasurementsResponse)(nil), // 1144: measured_boot.ImportSiteMeasurementsResponse + (*ExportSiteMeasurementsResponse)(nil), // 1145: measured_boot.ExportSiteMeasurementsResponse + (*AddMeasurementTrustedMachineResponse)(nil), // 1146: measured_boot.AddMeasurementTrustedMachineResponse + (*RemoveMeasurementTrustedMachineResponse)(nil), // 1147: measured_boot.RemoveMeasurementTrustedMachineResponse + (*AddMeasurementTrustedProfileResponse)(nil), // 1148: measured_boot.AddMeasurementTrustedProfileResponse + (*RemoveMeasurementTrustedProfileResponse)(nil), // 1149: measured_boot.RemoveMeasurementTrustedProfileResponse + (*ListMeasurementTrustedMachinesResponse)(nil), // 1150: measured_boot.ListMeasurementTrustedMachinesResponse + (*ListMeasurementTrustedProfilesResponse)(nil), // 1151: measured_boot.ListMeasurementTrustedProfilesResponse + (*ListAttestationSummaryResponse)(nil), // 1152: measured_boot.ListAttestationSummaryResponse + (*LockdownStatus)(nil), // 1153: site_explorer.LockdownStatus + (*PublishMlxDeviceReportResponse)(nil), // 1154: mlx_device.PublishMlxDeviceReportResponse + (*PublishMlxObservationReportResponse)(nil), // 1155: mlx_device.PublishMlxObservationReportResponse + (*MlxAdminProfileSyncResponse)(nil), // 1156: mlx_device.MlxAdminProfileSyncResponse + (*MlxAdminProfileShowResponse)(nil), // 1157: mlx_device.MlxAdminProfileShowResponse + (*MlxAdminProfileCompareResponse)(nil), // 1158: mlx_device.MlxAdminProfileCompareResponse + (*MlxAdminProfileListResponse)(nil), // 1159: mlx_device.MlxAdminProfileListResponse + (*MlxAdminLockdownLockResponse)(nil), // 1160: mlx_device.MlxAdminLockdownLockResponse + (*MlxAdminLockdownUnlockResponse)(nil), // 1161: mlx_device.MlxAdminLockdownUnlockResponse + (*MlxAdminLockdownStatusResponse)(nil), // 1162: mlx_device.MlxAdminLockdownStatusResponse + (*MlxAdminDeviceInfoResponse)(nil), // 1163: mlx_device.MlxAdminDeviceInfoResponse + (*MlxAdminDeviceReportResponse)(nil), // 1164: mlx_device.MlxAdminDeviceReportResponse + (*MlxAdminRegistryListResponse)(nil), // 1165: mlx_device.MlxAdminRegistryListResponse + (*MlxAdminRegistryShowResponse)(nil), // 1166: mlx_device.MlxAdminRegistryShowResponse + (*MlxAdminConfigQueryResponse)(nil), // 1167: mlx_device.MlxAdminConfigQueryResponse + (*MlxAdminConfigSetResponse)(nil), // 1168: mlx_device.MlxAdminConfigSetResponse + (*MlxAdminConfigSyncResponse)(nil), // 1169: mlx_device.MlxAdminConfigSyncResponse + (*MlxAdminConfigCompareResponse)(nil), // 1170: mlx_device.MlxAdminConfigCompareResponse } var file_nico_nico_proto_depIdxs = []int32{ - 336, // 0: forge.LifecycleStatus.state_reason:type_name -> forge.ControllerStateReason - 338, // 1: forge.LifecycleStatus.sla:type_name -> forge.StateSla - 956, // 2: forge.SpdmMachineAttestationStatus.machine_id:type_name -> common.MachineId + 338, // 0: forge.LifecycleStatus.state_reason:type_name -> forge.ControllerStateReason + 340, // 1: forge.LifecycleStatus.sla:type_name -> forge.StateSla + 958, // 2: forge.SpdmMachineAttestationStatus.machine_id:type_name -> common.MachineId 0, // 3: forge.SpdmMachineAttestationStatus.attestation_status:type_name -> forge.SpdmAttestationStatus - 956, // 4: forge.SpdmMachineAttestationTriggerResponse.machine_id:type_name -> common.MachineId - 956, // 5: forge.SpdmAttestationDetails.machine_id:type_name -> common.MachineId - 957, // 6: forge.SpdmAttestationDetails.started_at:type_name -> google.protobuf.Timestamp - 957, // 7: forge.SpdmAttestationDetails.cancelled_at:type_name -> google.protobuf.Timestamp - 957, // 8: forge.SpdmAttestationDetails.completed_at:type_name -> google.protobuf.Timestamp + 958, // 4: forge.SpdmMachineAttestationTriggerResponse.machine_id:type_name -> common.MachineId + 958, // 5: forge.SpdmAttestationDetails.machine_id:type_name -> common.MachineId + 959, // 6: forge.SpdmAttestationDetails.started_at:type_name -> google.protobuf.Timestamp + 959, // 7: forge.SpdmAttestationDetails.cancelled_at:type_name -> google.protobuf.Timestamp + 959, // 8: forge.SpdmAttestationDetails.completed_at:type_name -> google.protobuf.Timestamp 90, // 9: forge.SpdmGetAttestationMachineResponse.attestations_details:type_name -> forge.SpdmAttestationDetails - 956, // 10: forge.SpdmMachineAttestationTriggerRequest.machine_id:type_name -> common.MachineId - 956, // 11: forge.SpdmListAttestationMachinesRequest.machine_id:type_name -> common.MachineId + 958, // 10: forge.SpdmMachineAttestationTriggerRequest.machine_id:type_name -> common.MachineId + 958, // 11: forge.SpdmListAttestationMachinesRequest.machine_id:type_name -> common.MachineId 1, // 12: forge.SpdmListAttestationMachinesRequest.selector:type_name -> forge.SpdmListAttestationMachinesRequestSelector 88, // 13: forge.SpdmListAttestationMachinesResponse.statuses:type_name -> forge.SpdmMachineAttestationStatus - 957, // 14: forge.TenantIdentitySigningKey.expire_at:type_name -> google.protobuf.Timestamp + 959, // 14: forge.TenantIdentitySigningKey.expire_at:type_name -> google.protobuf.Timestamp 99, // 15: forge.SetTenantIdentityConfigRequest.config:type_name -> forge.TenantIdentityConfig 99, // 16: forge.TenantIdentityConfigResponse.config:type_name -> forge.TenantIdentityConfig - 957, // 17: forge.TenantIdentityConfigResponse.created_at:type_name -> google.protobuf.Timestamp - 957, // 18: forge.TenantIdentityConfigResponse.updated_at:type_name -> google.protobuf.Timestamp + 959, // 17: forge.TenantIdentityConfigResponse.created_at:type_name -> google.protobuf.Timestamp + 959, // 18: forge.TenantIdentityConfigResponse.updated_at:type_name -> google.protobuf.Timestamp 98, // 19: forge.TenantIdentityConfigResponse.signing_keys:type_name -> forge.TenantIdentitySigningKey 103, // 20: forge.TokenDelegationResponse.client_secret_basic:type_name -> forge.ClientSecretBasicResponse - 957, // 21: forge.TokenDelegationResponse.created_at:type_name -> google.protobuf.Timestamp - 957, // 22: forge.TokenDelegationResponse.updated_at:type_name -> google.protobuf.Timestamp + 959, // 21: forge.TokenDelegationResponse.created_at:type_name -> google.protobuf.Timestamp + 959, // 22: forge.TokenDelegationResponse.updated_at:type_name -> google.protobuf.Timestamp 102, // 23: forge.TokenDelegation.client_secret_basic:type_name -> forge.ClientSecretBasic 106, // 24: forge.TokenDelegationRequest.config:type_name -> forge.TokenDelegation 109, // 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 117, // 28: forge.TpmCaAddedCaStatus.id:type_name -> forge.TpmCaCertId - 956, // 29: forge.TpmEkCertStatus.machine_id:type_name -> common.MachineId + 958, // 29: forge.TpmEkCertStatus.machine_id:type_name -> common.MachineId 118, // 30: forge.TpmEkCertStatusCollection.tpm_ek_cert_statuses:type_name -> forge.TpmEkCertStatus 121, // 31: forge.TpmCaCertDetailCollection.tpm_ca_cert_details:type_name -> forge.TpmCaCertDetail - 956, // 32: forge.AttestQuoteRequest.machine_id:type_name -> common.MachineId - 419, // 33: forge.AttestQuoteResponse.machine_certificate:type_name -> forge.MachineCertificate + 958, // 32: forge.AttestQuoteRequest.machine_id:type_name -> common.MachineId + 421, // 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 132, // 36: forge.BuildInfo.runtime_config:type_name -> forge.RuntimeConfig - 917, // 37: forge.RuntimeConfig.dpu_nic_firmware_update_version:type_name -> forge.RuntimeConfig.DpuNicFirmwareUpdateVersionEntry - 918, // 38: forge.DNSMessage.question:type_name -> forge.DNSMessage.DNSQuestion - 919, // 39: forge.DNSMessage.response:type_name -> forge.DNSMessage.DNSResponse - 958, // 40: forge.VpcSearchQuery.id:type_name -> common.VpcId + 919, // 37: forge.RuntimeConfig.dpu_nic_firmware_update_version:type_name -> forge.RuntimeConfig.DpuNicFirmwareUpdateVersionEntry + 920, // 38: forge.DNSMessage.question:type_name -> forge.DNSMessage.DNSQuestion + 921, // 39: forge.DNSMessage.response:type_name -> forge.DNSMessage.DNSResponse + 960, // 40: forge.VpcSearchQuery.id:type_name -> common.VpcId 250, // 41: forge.VpcSearchFilter.label:type_name -> forge.Label - 958, // 42: forge.VpcIdList.vpc_ids:type_name -> common.VpcId - 958, // 43: forge.VpcsByIdsRequest.vpc_ids:type_name -> common.VpcId + 960, // 42: forge.VpcIdList.vpc_ids:type_name -> common.VpcId + 960, // 43: forge.VpcsByIdsRequest.vpc_ids:type_name -> common.VpcId 5, // 44: forge.VpcConfig.network_virtualization_type:type_name -> forge.VpcVirtualizationType - 959, // 45: forge.VpcConfig.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 958, // 46: forge.Vpc.id:type_name -> common.VpcId - 957, // 47: forge.Vpc.created:type_name -> google.protobuf.Timestamp - 957, // 48: forge.Vpc.updated:type_name -> google.protobuf.Timestamp - 957, // 49: forge.Vpc.deleted:type_name -> google.protobuf.Timestamp + 961, // 45: forge.VpcConfig.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 960, // 46: forge.Vpc.id:type_name -> common.VpcId + 959, // 47: forge.Vpc.created:type_name -> google.protobuf.Timestamp + 959, // 48: forge.Vpc.updated:type_name -> google.protobuf.Timestamp + 959, // 49: forge.Vpc.deleted:type_name -> google.protobuf.Timestamp 5, // 50: forge.Vpc.network_virtualization_type:type_name -> forge.VpcVirtualizationType 251, // 51: forge.Vpc.metadata:type_name -> forge.Metadata - 959, // 52: forge.Vpc.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 961, // 52: forge.Vpc.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId 147, // 53: forge.Vpc.status:type_name -> forge.VpcStatus 146, // 54: forge.Vpc.config:type_name -> forge.VpcConfig 5, // 55: forge.VpcCreationRequest.network_virtualization_type:type_name -> forge.VpcVirtualizationType - 958, // 56: forge.VpcCreationRequest.id:type_name -> common.VpcId + 960, // 56: forge.VpcCreationRequest.id:type_name -> common.VpcId 251, // 57: forge.VpcCreationRequest.metadata:type_name -> forge.Metadata - 959, // 58: forge.VpcCreationRequest.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 958, // 59: forge.VpcUpdateRequest.id:type_name -> common.VpcId + 961, // 58: forge.VpcCreationRequest.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 960, // 59: forge.VpcUpdateRequest.id:type_name -> common.VpcId 251, // 60: forge.VpcUpdateRequest.metadata:type_name -> forge.Metadata - 959, // 61: forge.VpcUpdateRequest.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 961, // 61: forge.VpcUpdateRequest.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId 148, // 62: forge.VpcUpdateResult.vpc:type_name -> forge.Vpc - 958, // 63: forge.VpcUpdateVirtualizationRequest.id:type_name -> common.VpcId + 960, // 63: forge.VpcUpdateVirtualizationRequest.id:type_name -> common.VpcId 5, // 64: forge.VpcUpdateVirtualizationRequest.network_virtualization_type:type_name -> forge.VpcVirtualizationType - 958, // 65: forge.VpcDeletionRequest.id:type_name -> common.VpcId + 960, // 65: forge.VpcDeletionRequest.id:type_name -> common.VpcId 148, // 66: forge.VpcList.vpcs:type_name -> forge.Vpc - 960, // 67: forge.VpcPrefix.id:type_name -> common.VpcPrefixId - 958, // 68: forge.VpcPrefix.vpc_id:type_name -> common.VpcId + 962, // 67: forge.VpcPrefix.id:type_name -> common.VpcPrefixId + 960, // 68: forge.VpcPrefix.vpc_id:type_name -> common.VpcId 158, // 69: forge.VpcPrefix.config:type_name -> forge.VpcPrefixConfig 159, // 70: forge.VpcPrefix.status:type_name -> forge.VpcPrefixStatus 251, // 71: forge.VpcPrefix.metadata:type_name -> forge.Metadata 87, // 72: forge.VpcPrefixStatus.lifecycle:type_name -> forge.LifecycleStatus 7, // 73: forge.VpcPrefixStatus.tenant_state:type_name -> forge.TenantState - 960, // 74: forge.VpcPrefixCreationRequest.id:type_name -> common.VpcPrefixId - 958, // 75: forge.VpcPrefixCreationRequest.vpc_id:type_name -> common.VpcId + 962, // 74: forge.VpcPrefixCreationRequest.id:type_name -> common.VpcPrefixId + 960, // 75: forge.VpcPrefixCreationRequest.vpc_id:type_name -> common.VpcId 158, // 76: forge.VpcPrefixCreationRequest.config:type_name -> forge.VpcPrefixConfig 251, // 77: forge.VpcPrefixCreationRequest.metadata:type_name -> forge.Metadata - 958, // 78: forge.VpcPrefixSearchQuery.vpc_id:type_name -> common.VpcId - 960, // 79: forge.VpcPrefixSearchQuery.tenant_prefix_id:type_name -> common.VpcPrefixId + 960, // 78: forge.VpcPrefixSearchQuery.vpc_id:type_name -> common.VpcId + 962, // 79: forge.VpcPrefixSearchQuery.tenant_prefix_id:type_name -> common.VpcPrefixId 6, // 80: forge.VpcPrefixSearchQuery.prefix_match_type:type_name -> forge.PrefixMatchType 9, // 81: forge.VpcPrefixSearchQuery.deleted:type_name -> forge.DeletedFilter - 960, // 82: forge.VpcPrefixGetRequest.vpc_prefix_ids:type_name -> common.VpcPrefixId + 962, // 82: forge.VpcPrefixGetRequest.vpc_prefix_ids:type_name -> common.VpcPrefixId 9, // 83: forge.VpcPrefixGetRequest.deleted:type_name -> forge.DeletedFilter - 960, // 84: forge.VpcPrefixIdList.vpc_prefix_ids:type_name -> common.VpcPrefixId + 962, // 84: forge.VpcPrefixIdList.vpc_prefix_ids:type_name -> common.VpcPrefixId 157, // 85: forge.VpcPrefixList.vpc_prefixes:type_name -> forge.VpcPrefix - 960, // 86: forge.VpcPrefixUpdateRequest.id:type_name -> common.VpcPrefixId + 962, // 86: forge.VpcPrefixUpdateRequest.id:type_name -> common.VpcPrefixId 158, // 87: forge.VpcPrefixUpdateRequest.config:type_name -> forge.VpcPrefixConfig 251, // 88: forge.VpcPrefixUpdateRequest.metadata:type_name -> forge.Metadata - 960, // 89: forge.VpcPrefixDeletionRequest.id:type_name -> common.VpcPrefixId - 960, // 90: forge.VpcPrefixStateHistoriesRequest.vpc_prefix_ids:type_name -> common.VpcPrefixId - 961, // 91: forge.VpcPeering.id:type_name -> common.VpcPeeringId - 958, // 92: forge.VpcPeering.vpc_id:type_name -> common.VpcId - 958, // 93: forge.VpcPeering.peer_vpc_id:type_name -> common.VpcId - 961, // 94: forge.VpcPeeringIdList.vpc_peering_ids:type_name -> common.VpcPeeringId + 962, // 89: forge.VpcPrefixDeletionRequest.id:type_name -> common.VpcPrefixId + 962, // 90: forge.VpcPrefixStateHistoriesRequest.vpc_prefix_ids:type_name -> common.VpcPrefixId + 963, // 91: forge.VpcPeering.id:type_name -> common.VpcPeeringId + 960, // 92: forge.VpcPeering.vpc_id:type_name -> common.VpcId + 960, // 93: forge.VpcPeering.peer_vpc_id:type_name -> common.VpcId + 963, // 94: forge.VpcPeeringIdList.vpc_peering_ids:type_name -> common.VpcPeeringId 169, // 95: forge.VpcPeeringList.vpc_peerings:type_name -> forge.VpcPeering - 958, // 96: forge.VpcPeeringCreationRequest.vpc_id:type_name -> common.VpcId - 958, // 97: forge.VpcPeeringCreationRequest.peer_vpc_id:type_name -> common.VpcId - 961, // 98: forge.VpcPeeringCreationRequest.id:type_name -> common.VpcPeeringId - 958, // 99: forge.VpcPeeringSearchFilter.vpc_id:type_name -> common.VpcId - 961, // 100: forge.VpcPeeringsByIdsRequest.vpc_peering_ids:type_name -> common.VpcPeeringId - 961, // 101: forge.VpcPeeringDeletionRequest.id:type_name -> common.VpcPeeringId + 960, // 96: forge.VpcPeeringCreationRequest.vpc_id:type_name -> common.VpcId + 960, // 97: forge.VpcPeeringCreationRequest.peer_vpc_id:type_name -> common.VpcId + 963, // 98: forge.VpcPeeringCreationRequest.id:type_name -> common.VpcPeeringId + 960, // 99: forge.VpcPeeringSearchFilter.vpc_id:type_name -> common.VpcId + 963, // 100: forge.VpcPeeringsByIdsRequest.vpc_peering_ids:type_name -> common.VpcPeeringId + 963, // 101: forge.VpcPeeringDeletionRequest.id:type_name -> common.VpcPeeringId 7, // 102: forge.IBPartitionStatus.state:type_name -> forge.TenantState - 336, // 103: forge.IBPartitionStatus.state_reason:type_name -> forge.ControllerStateReason - 338, // 104: forge.IBPartitionStatus.state_sla:type_name -> forge.StateSla - 962, // 105: forge.IBPartition.id:type_name -> common.IBPartitionId + 338, // 103: forge.IBPartitionStatus.state_reason:type_name -> forge.ControllerStateReason + 340, // 104: forge.IBPartitionStatus.state_sla:type_name -> forge.StateSla + 964, // 105: forge.IBPartition.id:type_name -> common.IBPartitionId 177, // 106: forge.IBPartition.config:type_name -> forge.IBPartitionConfig 178, // 107: forge.IBPartition.status:type_name -> forge.IBPartitionStatus 251, // 108: forge.IBPartition.metadata:type_name -> forge.Metadata 179, // 109: forge.IBPartitionList.ib_partitions:type_name -> forge.IBPartition 177, // 110: forge.IBPartitionCreationRequest.config:type_name -> forge.IBPartitionConfig - 962, // 111: forge.IBPartitionCreationRequest.id:type_name -> common.IBPartitionId + 964, // 111: forge.IBPartitionCreationRequest.id:type_name -> common.IBPartitionId 251, // 112: forge.IBPartitionCreationRequest.metadata:type_name -> forge.Metadata - 962, // 113: forge.IBPartitionUpdateRequest.id:type_name -> common.IBPartitionId + 964, // 113: forge.IBPartitionUpdateRequest.id:type_name -> common.IBPartitionId 177, // 114: forge.IBPartitionUpdateRequest.config:type_name -> forge.IBPartitionConfig 251, // 115: forge.IBPartitionUpdateRequest.metadata:type_name -> forge.Metadata - 962, // 116: forge.IBPartitionDeletionRequest.id:type_name -> common.IBPartitionId - 962, // 117: forge.IBPartitionsByIdsRequest.ib_partition_ids:type_name -> common.IBPartitionId - 962, // 118: forge.IBPartitionIdList.ib_partition_ids:type_name -> common.IBPartitionId - 336, // 119: forge.PowerShelfStatus.state_reason:type_name -> forge.ControllerStateReason - 338, // 120: forge.PowerShelfStatus.state_sla:type_name -> forge.StateSla - 963, // 121: forge.PowerShelfStatus.health:type_name -> health.HealthReport - 335, // 122: forge.PowerShelfStatus.health_sources:type_name -> forge.HealthSourceOrigin + 964, // 116: forge.IBPartitionDeletionRequest.id:type_name -> common.IBPartitionId + 964, // 117: forge.IBPartitionsByIdsRequest.ib_partition_ids:type_name -> common.IBPartitionId + 964, // 118: forge.IBPartitionIdList.ib_partition_ids:type_name -> common.IBPartitionId + 338, // 119: forge.PowerShelfStatus.state_reason:type_name -> forge.ControllerStateReason + 340, // 120: forge.PowerShelfStatus.state_sla:type_name -> forge.StateSla + 965, // 121: forge.PowerShelfStatus.health:type_name -> health.HealthReport + 337, // 122: forge.PowerShelfStatus.health_sources:type_name -> forge.HealthSourceOrigin 87, // 123: forge.PowerShelfStatus.lifecycle:type_name -> forge.LifecycleStatus - 964, // 124: forge.PowerShelf.id:type_name -> common.PowerShelfId + 966, // 124: forge.PowerShelf.id:type_name -> common.PowerShelfId 188, // 125: forge.PowerShelf.config:type_name -> forge.PowerShelfConfig 189, // 126: forge.PowerShelf.status:type_name -> forge.PowerShelfStatus - 957, // 127: forge.PowerShelf.deleted:type_name -> google.protobuf.Timestamp + 959, // 127: forge.PowerShelf.deleted:type_name -> google.protobuf.Timestamp 251, // 128: forge.PowerShelf.metadata:type_name -> forge.Metadata - 323, // 129: forge.PowerShelf.bmc_info:type_name -> forge.BmcInfo - 965, // 130: forge.PowerShelf.rack_id:type_name -> common.RackId + 325, // 129: forge.PowerShelf.bmc_info:type_name -> forge.BmcInfo + 967, // 130: forge.PowerShelf.rack_id:type_name -> common.RackId 190, // 131: forge.PowerShelfList.power_shelves:type_name -> forge.PowerShelf 188, // 132: forge.PowerShelfCreationRequest.config:type_name -> forge.PowerShelfConfig - 964, // 133: forge.PowerShelfCreationRequest.id:type_name -> common.PowerShelfId - 964, // 134: forge.PowerShelfDeletionRequest.id:type_name -> common.PowerShelfId - 964, // 135: forge.PowerShelfMaintenanceRequest.power_shelf_ids:type_name -> common.PowerShelfId + 966, // 133: forge.PowerShelfCreationRequest.id:type_name -> common.PowerShelfId + 966, // 134: forge.PowerShelfDeletionRequest.id:type_name -> common.PowerShelfId + 966, // 135: forge.PowerShelfMaintenanceRequest.power_shelf_ids:type_name -> common.PowerShelfId 8, // 136: forge.PowerShelfMaintenanceRequest.operation:type_name -> forge.PowerShelfMaintenanceOperation - 964, // 137: forge.PowerShelfStateHistoriesRequest.power_shelf_ids:type_name -> common.PowerShelfId - 964, // 138: forge.PowerShelfQuery.power_shelf_id:type_name -> common.PowerShelfId - 965, // 139: forge.PowerShelfSearchFilter.rack_id:type_name -> common.RackId + 966, // 137: forge.PowerShelfStateHistoriesRequest.power_shelf_ids:type_name -> common.PowerShelfId + 966, // 138: forge.PowerShelfQuery.power_shelf_id:type_name -> common.PowerShelfId + 967, // 139: forge.PowerShelfSearchFilter.rack_id:type_name -> common.RackId 9, // 140: forge.PowerShelfSearchFilter.deleted:type_name -> forge.DeletedFilter - 964, // 141: forge.PowerShelvesByIdsRequest.power_shelf_ids:type_name -> common.PowerShelfId + 966, // 141: forge.PowerShelvesByIdsRequest.power_shelf_ids:type_name -> common.PowerShelfId 251, // 142: forge.ExpectedPowerShelf.metadata:type_name -> forge.Metadata - 965, // 143: forge.ExpectedPowerShelf.rack_id:type_name -> common.RackId - 966, // 144: forge.ExpectedPowerShelf.expected_power_shelf_id:type_name -> common.UUID - 966, // 145: forge.ExpectedPowerShelfRequest.expected_power_shelf_id:type_name -> common.UUID + 967, // 143: forge.ExpectedPowerShelf.rack_id:type_name -> common.RackId + 968, // 144: forge.ExpectedPowerShelf.expected_power_shelf_id:type_name -> common.UUID + 968, // 145: forge.ExpectedPowerShelfRequest.expected_power_shelf_id:type_name -> common.UUID 200, // 146: forge.ExpectedPowerShelfList.expected_power_shelves:type_name -> forge.ExpectedPowerShelf 204, // 147: forge.LinkedExpectedPowerShelfList.expected_power_shelves:type_name -> forge.LinkedExpectedPowerShelf - 964, // 148: forge.LinkedExpectedPowerShelf.power_shelf_id:type_name -> common.PowerShelfId - 966, // 149: forge.LinkedExpectedPowerShelf.expected_power_shelf_id:type_name -> common.UUID - 965, // 150: forge.LinkedExpectedPowerShelf.rack_id:type_name -> common.RackId + 966, // 148: forge.LinkedExpectedPowerShelf.power_shelf_id:type_name -> common.PowerShelfId + 968, // 149: forge.LinkedExpectedPowerShelf.expected_power_shelf_id:type_name -> common.UUID + 967, // 150: forge.LinkedExpectedPowerShelf.rack_id:type_name -> common.RackId 206, // 151: forge.SwitchConfig.fabric_manager_config:type_name -> forge.FabricManagerConfig - 921, // 152: forge.FabricManagerConfig.config_map:type_name -> forge.FabricManagerConfig.ConfigMapEntry + 923, // 152: forge.FabricManagerConfig.config_map:type_name -> forge.FabricManagerConfig.ConfigMapEntry 10, // 153: forge.FabricManagerStatus.fabric_manager_state:type_name -> forge.FabricManagerState - 336, // 154: forge.SwitchStatus.state_reason:type_name -> forge.ControllerStateReason - 338, // 155: forge.SwitchStatus.state_sla:type_name -> forge.StateSla - 963, // 156: forge.SwitchStatus.health:type_name -> health.HealthReport - 335, // 157: forge.SwitchStatus.health_sources:type_name -> forge.HealthSourceOrigin + 338, // 154: forge.SwitchStatus.state_reason:type_name -> forge.ControllerStateReason + 340, // 155: forge.SwitchStatus.state_sla:type_name -> forge.StateSla + 965, // 156: forge.SwitchStatus.health:type_name -> health.HealthReport + 337, // 157: forge.SwitchStatus.health_sources:type_name -> forge.HealthSourceOrigin 87, // 158: forge.SwitchStatus.lifecycle:type_name -> forge.LifecycleStatus 207, // 159: forge.SwitchStatus.fabric_manager_status_details:type_name -> forge.FabricManagerStatus - 967, // 160: forge.Switch.id:type_name -> common.SwitchId + 969, // 160: forge.Switch.id:type_name -> common.SwitchId 205, // 161: forge.Switch.config:type_name -> forge.SwitchConfig 208, // 162: forge.Switch.status:type_name -> forge.SwitchStatus - 957, // 163: forge.Switch.deleted:type_name -> google.protobuf.Timestamp - 323, // 164: forge.Switch.bmc_info:type_name -> forge.BmcInfo + 959, // 163: forge.Switch.deleted:type_name -> google.protobuf.Timestamp + 325, // 164: forge.Switch.bmc_info:type_name -> forge.BmcInfo 251, // 165: forge.Switch.metadata:type_name -> forge.Metadata - 965, // 166: forge.Switch.rack_id:type_name -> common.RackId + 967, // 166: forge.Switch.rack_id:type_name -> common.RackId 209, // 167: forge.Switch.placement_in_rack:type_name -> forge.PlacementInRack - 324, // 168: forge.Switch.nvos_info:type_name -> forge.SwitchNvosInfo + 326, // 168: forge.Switch.nvos_info:type_name -> forge.SwitchNvosInfo 210, // 169: forge.SwitchList.switches:type_name -> forge.Switch 205, // 170: forge.SwitchCreationRequest.config:type_name -> forge.SwitchConfig - 966, // 171: forge.SwitchCreationRequest.id:type_name -> common.UUID + 968, // 171: forge.SwitchCreationRequest.id:type_name -> common.UUID 209, // 172: forge.SwitchCreationRequest.placement_in_rack:type_name -> forge.PlacementInRack - 967, // 173: forge.SwitchDeletionRequest.id:type_name -> common.SwitchId - 957, // 174: forge.StateHistoryRecord.time:type_name -> google.protobuf.Timestamp + 969, // 173: forge.SwitchDeletionRequest.id:type_name -> common.SwitchId + 959, // 174: forge.StateHistoryRecord.time:type_name -> google.protobuf.Timestamp 215, // 175: forge.StateHistoryRecords.records:type_name -> forge.StateHistoryRecord - 967, // 176: forge.SwitchStateHistoriesRequest.switch_ids:type_name -> common.SwitchId - 922, // 177: forge.StateHistories.histories:type_name -> forge.StateHistories.HistoriesEntry - 967, // 178: forge.SwitchQuery.switch_id:type_name -> common.SwitchId - 965, // 179: forge.SwitchSearchFilter.rack_id:type_name -> common.RackId + 969, // 176: forge.SwitchStateHistoriesRequest.switch_ids:type_name -> common.SwitchId + 924, // 177: forge.StateHistories.histories:type_name -> forge.StateHistories.HistoriesEntry + 969, // 178: forge.SwitchQuery.switch_id:type_name -> common.SwitchId + 967, // 179: forge.SwitchSearchFilter.rack_id:type_name -> common.RackId 9, // 180: forge.SwitchSearchFilter.deleted:type_name -> forge.DeletedFilter - 967, // 181: forge.SwitchesByIdsRequest.switch_ids:type_name -> common.SwitchId + 969, // 181: forge.SwitchesByIdsRequest.switch_ids:type_name -> common.SwitchId 251, // 182: forge.ExpectedSwitch.metadata:type_name -> forge.Metadata - 965, // 183: forge.ExpectedSwitch.rack_id:type_name -> common.RackId - 966, // 184: forge.ExpectedSwitch.expected_switch_id:type_name -> common.UUID - 966, // 185: forge.ExpectedSwitchRequest.expected_switch_id:type_name -> common.UUID + 967, // 183: forge.ExpectedSwitch.rack_id:type_name -> common.RackId + 968, // 184: forge.ExpectedSwitch.expected_switch_id:type_name -> common.UUID + 968, // 185: forge.ExpectedSwitchRequest.expected_switch_id:type_name -> common.UUID 222, // 186: forge.ExpectedSwitchList.expected_switches:type_name -> forge.ExpectedSwitch 226, // 187: forge.LinkedExpectedSwitchList.expected_switches:type_name -> forge.LinkedExpectedSwitch - 967, // 188: forge.LinkedExpectedSwitch.switch_id:type_name -> common.SwitchId - 966, // 189: forge.LinkedExpectedSwitch.expected_switch_id:type_name -> common.UUID - 965, // 190: forge.LinkedExpectedSwitch.rack_id:type_name -> common.RackId - 965, // 191: forge.ExpectedRack.rack_id:type_name -> common.RackId - 968, // 192: forge.ExpectedRack.rack_profile_id:type_name -> common.RackProfileId + 969, // 188: forge.LinkedExpectedSwitch.switch_id:type_name -> common.SwitchId + 968, // 189: forge.LinkedExpectedSwitch.expected_switch_id:type_name -> common.UUID + 967, // 190: forge.LinkedExpectedSwitch.rack_id:type_name -> common.RackId + 967, // 191: forge.ExpectedRack.rack_id:type_name -> common.RackId + 970, // 192: forge.ExpectedRack.rack_profile_id:type_name -> common.RackProfileId 251, // 193: forge.ExpectedRack.metadata:type_name -> forge.Metadata 227, // 194: forge.ExpectedRackList.expected_racks:type_name -> forge.ExpectedRack - 957, // 195: forge.NetworkSegmentStateHistory.time:type_name -> google.protobuf.Timestamp - 958, // 196: forge.NetworkSegmentConfig.vpc_id:type_name -> common.VpcId - 969, // 197: forge.NetworkSegmentConfig.subdomain_id:type_name -> common.DomainId + 959, // 195: forge.NetworkSegmentStateHistory.time:type_name -> google.protobuf.Timestamp + 960, // 196: forge.NetworkSegmentConfig.vpc_id:type_name -> common.VpcId + 971, // 197: forge.NetworkSegmentConfig.subdomain_id:type_name -> common.DomainId 11, // 198: forge.NetworkSegmentConfig.segment_type:type_name -> forge.NetworkSegmentType 245, // 199: forge.NetworkSegmentConfig.prefixes:type_name -> forge.NetworkPrefix 12, // 200: forge.NetworkSegmentStatus.flags:type_name -> forge.NetworkSegmentFlag 87, // 201: forge.NetworkSegmentStatus.lifecycle:type_name -> forge.LifecycleStatus 7, // 202: forge.NetworkSegmentStatus.tenant_state:type_name -> forge.TenantState - 970, // 203: forge.NetworkSegment.id:type_name -> common.NetworkSegmentId - 958, // 204: forge.NetworkSegment.vpc_id:type_name -> common.VpcId - 969, // 205: forge.NetworkSegment.subdomain_id:type_name -> common.DomainId + 972, // 203: forge.NetworkSegment.id:type_name -> common.NetworkSegmentId + 960, // 204: forge.NetworkSegment.vpc_id:type_name -> common.VpcId + 971, // 205: forge.NetworkSegment.subdomain_id:type_name -> common.DomainId 245, // 206: forge.NetworkSegment.prefixes:type_name -> forge.NetworkPrefix - 957, // 207: forge.NetworkSegment.created:type_name -> google.protobuf.Timestamp - 957, // 208: forge.NetworkSegment.updated:type_name -> google.protobuf.Timestamp - 957, // 209: forge.NetworkSegment.deleted:type_name -> google.protobuf.Timestamp + 959, // 207: forge.NetworkSegment.created:type_name -> google.protobuf.Timestamp + 959, // 208: forge.NetworkSegment.updated:type_name -> google.protobuf.Timestamp + 959, // 209: forge.NetworkSegment.deleted:type_name -> google.protobuf.Timestamp 11, // 210: forge.NetworkSegment.segment_type:type_name -> forge.NetworkSegmentType 12, // 211: forge.NetworkSegment.flags:type_name -> forge.NetworkSegmentFlag 233, // 212: forge.NetworkSegment.config:type_name -> forge.NetworkSegmentConfig @@ -65439,40 +65572,40 @@ var file_nico_nico_proto_depIdxs = []int32{ 251, // 214: forge.NetworkSegment.metadata:type_name -> forge.Metadata 7, // 215: forge.NetworkSegment.state:type_name -> forge.TenantState 232, // 216: forge.NetworkSegment.history:type_name -> forge.NetworkSegmentStateHistory - 336, // 217: forge.NetworkSegment.state_reason:type_name -> forge.ControllerStateReason - 338, // 218: forge.NetworkSegment.state_sla:type_name -> forge.StateSla - 958, // 219: forge.NetworkSegmentCreationRequest.vpc_id:type_name -> common.VpcId - 969, // 220: forge.NetworkSegmentCreationRequest.subdomain_id:type_name -> common.DomainId + 338, // 217: forge.NetworkSegment.state_reason:type_name -> forge.ControllerStateReason + 340, // 218: forge.NetworkSegment.state_sla:type_name -> forge.StateSla + 960, // 219: forge.NetworkSegmentCreationRequest.vpc_id:type_name -> common.VpcId + 971, // 220: forge.NetworkSegmentCreationRequest.subdomain_id:type_name -> common.DomainId 245, // 221: forge.NetworkSegmentCreationRequest.prefixes:type_name -> forge.NetworkPrefix 11, // 222: forge.NetworkSegmentCreationRequest.segment_type:type_name -> forge.NetworkSegmentType - 970, // 223: forge.NetworkSegmentCreationRequest.id:type_name -> common.NetworkSegmentId - 970, // 224: forge.NetworkSegmentDeletionRequest.id:type_name -> common.NetworkSegmentId - 970, // 225: forge.AttachNetworkSegmentToVpcRequest.network_segment_id:type_name -> common.NetworkSegmentId - 958, // 226: forge.AttachNetworkSegmentToVpcRequest.vpc_id:type_name -> common.VpcId - 970, // 227: forge.NetworkSegmentStateHistoriesRequest.network_segment_ids:type_name -> common.NetworkSegmentId - 970, // 228: forge.NetworkSegmentIdList.network_segments_ids:type_name -> common.NetworkSegmentId - 970, // 229: forge.NetworkSegmentsByIdsRequest.network_segments_ids:type_name -> common.NetworkSegmentId - 971, // 230: forge.NetworkPrefix.id:type_name -> common.NetworkPrefixId - 956, // 231: forge.InstancePowerRequest.machine_id:type_name -> common.MachineId + 972, // 223: forge.NetworkSegmentCreationRequest.id:type_name -> common.NetworkSegmentId + 972, // 224: forge.NetworkSegmentDeletionRequest.id:type_name -> common.NetworkSegmentId + 972, // 225: forge.AttachNetworkSegmentToVpcRequest.network_segment_id:type_name -> common.NetworkSegmentId + 960, // 226: forge.AttachNetworkSegmentToVpcRequest.vpc_id:type_name -> common.VpcId + 972, // 227: forge.NetworkSegmentStateHistoriesRequest.network_segment_ids:type_name -> common.NetworkSegmentId + 972, // 228: forge.NetworkSegmentIdList.network_segments_ids:type_name -> common.NetworkSegmentId + 972, // 229: forge.NetworkSegmentsByIdsRequest.network_segments_ids:type_name -> common.NetworkSegmentId + 973, // 230: forge.NetworkPrefix.id:type_name -> common.NetworkPrefixId + 958, // 231: forge.InstancePowerRequest.machine_id:type_name -> common.MachineId 76, // 232: forge.InstancePowerRequest.operation:type_name -> forge.InstancePowerRequest.Operation - 972, // 233: forge.InstancePowerRequest.instance_id:type_name -> common.InstanceId + 974, // 233: forge.InstancePowerRequest.instance_id:type_name -> common.InstanceId 284, // 234: forge.InstanceList.instances:type_name -> forge.Instance 250, // 235: forge.Metadata.labels:type_name -> forge.Label 250, // 236: forge.InstanceSearchFilter.label:type_name -> forge.Label - 972, // 237: forge.InstanceIdList.instance_ids:type_name -> common.InstanceId - 972, // 238: forge.InstancesByIdsRequest.instance_ids:type_name -> common.InstanceId - 956, // 239: forge.InstanceAllocationRequest.machine_id:type_name -> common.MachineId + 974, // 237: forge.InstanceIdList.instance_ids:type_name -> common.InstanceId + 974, // 238: forge.InstancesByIdsRequest.instance_ids:type_name -> common.InstanceId + 958, // 239: forge.InstanceAllocationRequest.machine_id:type_name -> common.MachineId 264, // 240: forge.InstanceAllocationRequest.config:type_name -> forge.InstanceConfig - 972, // 241: forge.InstanceAllocationRequest.instance_id:type_name -> common.InstanceId + 974, // 241: forge.InstanceAllocationRequest.instance_id:type_name -> common.InstanceId 251, // 242: forge.InstanceAllocationRequest.metadata:type_name -> forge.Metadata 255, // 243: forge.BatchInstanceAllocationRequest.instance_requests:type_name -> forge.InstanceAllocationRequest 284, // 244: forge.BatchInstanceAllocationResponse.instances:type_name -> forge.Instance 13, // 245: forge.IpxeTemplateArtifact.cache_strategy:type_name -> forge.IpxeTemplateArtifactCacheStrategy 14, // 246: forge.IpxeTemplate.scope:type_name -> forge.IpxeTemplateScope - 973, // 247: forge.IpxeTemplate.id:type_name -> common.IpxeTemplateId + 975, // 247: forge.IpxeTemplate.id:type_name -> common.IpxeTemplateId 263, // 248: forge.InstanceOperatingSystemConfig.ipxe:type_name -> forge.InlineIpxe - 966, // 249: forge.InstanceOperatingSystemConfig.os_image_id:type_name -> common.UUID - 974, // 250: forge.InstanceOperatingSystemConfig.operating_system_id:type_name -> common.OperatingSystemId + 968, // 249: forge.InstanceOperatingSystemConfig.os_image_id:type_name -> common.UUID + 976, // 250: forge.InstanceOperatingSystemConfig.operating_system_id:type_name -> common.OperatingSystemId 261, // 251: forge.InstanceConfig.tenant:type_name -> forge.TenantConfig 262, // 252: forge.InstanceConfig.os:type_name -> forge.InstanceOperatingSystemConfig 265, // 253: forge.InstanceConfig.network:type_name -> forge.InstanceNetworkConfig @@ -65482,19 +65615,19 @@ var file_nico_nico_proto_depIdxs = []int32{ 271, // 257: forge.InstanceConfig.spxconfig:type_name -> forge.InstanceSpxConfig 286, // 258: forge.InstanceNetworkConfig.interfaces:type_name -> forge.InstanceInterfaceConfig 266, // 259: forge.InstanceNetworkConfig.auto_config:type_name -> forge.InstanceNetworkAutoConfig - 958, // 260: forge.InstanceNetworkAutoConfig.vpc_id:type_name -> common.VpcId + 960, // 260: forge.InstanceNetworkAutoConfig.vpc_id:type_name -> common.VpcId 289, // 261: forge.InstanceInfinibandConfig.ib_interfaces:type_name -> forge.InstanceIBInterfaceConfig 268, // 262: forge.InstanceDpuExtensionServicesConfig.service_configs:type_name -> forge.InstanceDpuExtensionServiceConfig 293, // 263: forge.InstanceNVLinkConfig.gpu_configs:type_name -> forge.InstanceNVLinkGpuConfig 272, // 264: forge.InstanceSpxConfig.spx_attachments:type_name -> forge.InstanceSpxAttachment - 975, // 265: forge.InstanceSpxAttachment.spx_partition_id:type_name -> common.SpxPartitionId + 977, // 265: forge.InstanceSpxAttachment.spx_partition_id:type_name -> common.SpxPartitionId 15, // 266: forge.InstanceSpxAttachment.attachment_type:type_name -> forge.SpxAttachmentType - 972, // 267: forge.InstanceOperatingSystemUpdateRequest.instance_id:type_name -> common.InstanceId + 974, // 267: forge.InstanceOperatingSystemUpdateRequest.instance_id:type_name -> common.InstanceId 262, // 268: forge.InstanceOperatingSystemUpdateRequest.os:type_name -> forge.InstanceOperatingSystemConfig - 972, // 269: forge.InstanceConfigUpdateRequest.instance_id:type_name -> common.InstanceId + 974, // 269: forge.InstanceConfigUpdateRequest.instance_id:type_name -> common.InstanceId 264, // 270: forge.InstanceConfigUpdateRequest.config:type_name -> forge.InstanceConfig 251, // 271: forge.InstanceConfigUpdateRequest.metadata:type_name -> forge.Metadata - 339, // 272: forge.InstanceStatus.tenant:type_name -> forge.InstanceTenantStatus + 341, // 272: forge.InstanceStatus.tenant:type_name -> forge.InstanceTenantStatus 278, // 273: forge.InstanceStatus.network:type_name -> forge.InstanceNetworkStatus 279, // 274: forge.InstanceStatus.infiniband:type_name -> forge.InstanceInfinibandStatus 282, // 275: forge.InstanceStatus.dpu_extension_services:type_name -> forge.InstanceDpuExtensionServicesStatus @@ -65505,1763 +65638,1765 @@ var file_nico_nico_proto_depIdxs = []int32{ 277, // 280: forge.InstanceSpxStatus.attachment_statuses:type_name -> forge.InstanceSpxAttachmentStatus 22, // 281: forge.InstanceSpxStatus.configs_synced:type_name -> forge.SyncState 15, // 282: forge.InstanceSpxAttachmentStatus.attachment_type:type_name -> forge.SpxAttachmentType - 975, // 283: forge.InstanceSpxAttachmentStatus.spx_partition_id:type_name -> common.SpxPartitionId + 977, // 283: forge.InstanceSpxAttachmentStatus.spx_partition_id:type_name -> common.SpxPartitionId 290, // 284: forge.InstanceNetworkStatus.interfaces:type_name -> forge.InstanceInterfaceStatus 22, // 285: forge.InstanceNetworkStatus.configs_synced:type_name -> forge.SyncState 291, // 286: forge.InstanceInfinibandStatus.ib_interfaces:type_name -> forge.InstanceIBInterfaceStatus 22, // 287: forge.InstanceInfinibandStatus.configs_synced:type_name -> forge.SyncState - 956, // 288: forge.DpuExtensionServiceStatus.dpu_machine_id:type_name -> common.MachineId + 958, // 288: forge.DpuExtensionServiceStatus.dpu_machine_id:type_name -> common.MachineId 68, // 289: forge.DpuExtensionServiceStatus.status:type_name -> forge.DpuExtensionServiceDeploymentStatus - 436, // 290: forge.DpuExtensionServiceStatus.components:type_name -> forge.DpuExtensionServiceComponent + 438, // 290: forge.DpuExtensionServiceStatus.components:type_name -> forge.DpuExtensionServiceComponent 68, // 291: forge.InstanceDpuExtensionServiceStatus.deployment_status:type_name -> forge.DpuExtensionServiceDeploymentStatus 280, // 292: forge.InstanceDpuExtensionServiceStatus.dpu_statuses:type_name -> forge.DpuExtensionServiceStatus 281, // 293: forge.InstanceDpuExtensionServicesStatus.dpu_extension_services:type_name -> forge.InstanceDpuExtensionServiceStatus 22, // 294: forge.InstanceDpuExtensionServicesStatus.configs_synced:type_name -> forge.SyncState 292, // 295: forge.InstanceNVLinkStatus.gpu_statuses:type_name -> forge.InstanceNVLinkGpuStatus 22, // 296: forge.InstanceNVLinkStatus.configs_synced:type_name -> forge.SyncState - 972, // 297: forge.Instance.id:type_name -> common.InstanceId - 956, // 298: forge.Instance.machine_id:type_name -> common.MachineId + 974, // 297: forge.Instance.id:type_name -> common.InstanceId + 958, // 298: forge.Instance.machine_id:type_name -> common.MachineId 251, // 299: forge.Instance.metadata:type_name -> forge.Metadata 264, // 300: forge.Instance.config:type_name -> forge.InstanceConfig 275, // 301: forge.Instance.status:type_name -> forge.InstanceStatus 77, // 302: forge.InstanceUpdateStatus.module:type_name -> forge.InstanceUpdateStatus.Module - 957, // 303: forge.InstanceUpdateStatus.trigger_received_at:type_name -> google.protobuf.Timestamp - 957, // 304: forge.InstanceUpdateStatus.update_triggered_at:type_name -> google.protobuf.Timestamp + 959, // 303: forge.InstanceUpdateStatus.trigger_received_at:type_name -> google.protobuf.Timestamp + 959, // 304: forge.InstanceUpdateStatus.update_triggered_at:type_name -> google.protobuf.Timestamp 37, // 305: forge.InstanceInterfaceConfig.function_type:type_name -> forge.InterfaceFunctionType - 970, // 306: forge.InstanceInterfaceConfig.network_segment_id:type_name -> common.NetworkSegmentId - 970, // 307: forge.InstanceInterfaceConfig.segment_id:type_name -> common.NetworkSegmentId - 960, // 308: forge.InstanceInterfaceConfig.vpc_prefix_id:type_name -> common.VpcPrefixId + 972, // 306: forge.InstanceInterfaceConfig.network_segment_id:type_name -> common.NetworkSegmentId + 972, // 307: forge.InstanceInterfaceConfig.segment_id:type_name -> common.NetworkSegmentId + 962, // 308: forge.InstanceInterfaceConfig.vpc_prefix_id:type_name -> common.VpcPrefixId 287, // 309: forge.InstanceInterfaceConfig.ipv6_interface_config:type_name -> forge.InstanceInterfaceIpv6Config 288, // 310: forge.InstanceInterfaceConfig.routing_profile:type_name -> forge.InstanceInterfaceRoutingProfile - 960, // 311: forge.InstanceInterfaceIpv6Config.vpc_prefix_id:type_name -> common.VpcPrefixId - 841, // 312: forge.InstanceInterfaceRoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry + 962, // 311: forge.InstanceInterfaceIpv6Config.vpc_prefix_id:type_name -> common.VpcPrefixId + 843, // 312: forge.InstanceInterfaceRoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry 37, // 313: forge.InstanceIBInterfaceConfig.function_type:type_name -> forge.InterfaceFunctionType - 962, // 314: forge.InstanceIBInterfaceConfig.ib_partition_id:type_name -> common.IBPartitionId - 958, // 315: forge.InstanceInterfaceStatus.vpc_id:type_name -> common.VpcId - 976, // 316: forge.InstanceNVLinkGpuStatus.domain_id:type_name -> common.NVLinkDomainId - 959, // 317: forge.InstanceNVLinkGpuStatus.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 959, // 318: forge.InstanceNVLinkGpuConfig.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 972, // 319: forge.InstancePhoneHomeLastContactRequest.instance_id:type_name -> common.InstanceId - 957, // 320: forge.InstancePhoneHomeLastContactResponse.timestamp:type_name -> google.protobuf.Timestamp + 964, // 314: forge.InstanceIBInterfaceConfig.ib_partition_id:type_name -> common.IBPartitionId + 960, // 315: forge.InstanceInterfaceStatus.vpc_id:type_name -> common.VpcId + 978, // 316: forge.InstanceNVLinkGpuStatus.domain_id:type_name -> common.NVLinkDomainId + 961, // 317: forge.InstanceNVLinkGpuStatus.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 961, // 318: forge.InstanceNVLinkGpuConfig.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 974, // 319: forge.InstancePhoneHomeLastContactRequest.instance_id:type_name -> common.InstanceId + 959, // 320: forge.InstancePhoneHomeLastContactResponse.timestamp:type_name -> google.protobuf.Timestamp 16, // 321: forge.Issue.category:type_name -> forge.IssueCategory - 972, // 322: forge.InstanceReleaseRequest.id:type_name -> common.InstanceId - 296, // 323: forge.InstanceReleaseRequest.issue:type_name -> forge.Issue - 956, // 324: forge.MachinesByIdsRequest.machine_ids:type_name -> common.MachineId - 965, // 325: forge.MachineSearchConfig.rack_id:type_name -> common.RackId - 956, // 326: forge.MachineStateHistoriesRequest.machine_ids:type_name -> common.MachineId - 923, // 327: forge.MachineStateHistories.histories:type_name -> forge.MachineStateHistories.HistoriesEntry - 340, // 328: forge.MachineStateHistoryRecords.records:type_name -> forge.MachineEvent - 956, // 329: forge.MachineHealthHistoriesRequest.machine_ids:type_name -> common.MachineId - 957, // 330: forge.MachineHealthHistoriesRequest.start_time:type_name -> google.protobuf.Timestamp - 957, // 331: forge.MachineHealthHistoriesRequest.end_time:type_name -> google.protobuf.Timestamp - 924, // 332: forge.HealthHistories.histories:type_name -> forge.HealthHistories.HistoriesEntry - 307, // 333: forge.HealthHistoryRecords.records:type_name -> forge.HealthHistoryRecord - 963, // 334: forge.HealthHistoryRecord.health:type_name -> health.HealthReport - 957, // 335: forge.HealthHistoryRecord.time:type_name -> google.protobuf.Timestamp - 457, // 336: forge.TenantList.tenants:type_name -> forge.Tenant - 341, // 337: forge.InterfaceList.interfaces:type_name -> forge.MachineInterface - 325, // 338: forge.MachineList.machines:type_name -> forge.Machine - 977, // 339: forge.InterfaceDeleteQuery.id:type_name -> common.MachineInterfaceId - 977, // 340: forge.InterfaceSearchQuery.id:type_name -> common.MachineInterfaceId - 977, // 341: forge.AssignStaticAddressRequest.interface_id:type_name -> common.MachineInterfaceId - 977, // 342: forge.AssignStaticAddressResponse.interface_id:type_name -> common.MachineInterfaceId - 17, // 343: forge.AssignStaticAddressResponse.status:type_name -> forge.AssignStaticAddressStatus - 977, // 344: forge.RemoveStaticAddressRequest.interface_id:type_name -> common.MachineInterfaceId - 977, // 345: forge.RemoveStaticAddressResponse.interface_id:type_name -> common.MachineInterfaceId - 18, // 346: forge.RemoveStaticAddressResponse.status:type_name -> forge.RemoveStaticAddressStatus - 977, // 347: forge.FindInterfaceAddressesRequest.interface_id:type_name -> common.MachineInterfaceId - 977, // 348: forge.FindInterfaceAddressesResponse.interface_id:type_name -> common.MachineInterfaceId - 321, // 349: forge.FindInterfaceAddressesResponse.addresses:type_name -> forge.InterfaceAddress - 977, // 350: forge.BmcInfo.machine_interface_id:type_name -> common.MachineInterfaceId - 956, // 351: forge.Machine.id:type_name -> common.MachineId - 336, // 352: forge.Machine.state_reason:type_name -> forge.ControllerStateReason - 338, // 353: forge.Machine.state_sla:type_name -> forge.StateSla - 340, // 354: forge.Machine.events:type_name -> forge.MachineEvent - 341, // 355: forge.Machine.interfaces:type_name -> forge.MachineInterface - 978, // 356: forge.Machine.discovery_info:type_name -> machine_discovery.DiscoveryInfo - 19, // 357: forge.Machine.machine_type:type_name -> forge.MachineType - 323, // 358: forge.Machine.bmc_info:type_name -> forge.BmcInfo - 957, // 359: forge.Machine.last_reboot_time:type_name -> google.protobuf.Timestamp - 957, // 360: forge.Machine.last_observation_time:type_name -> google.protobuf.Timestamp - 957, // 361: forge.Machine.maintenance_start_time:type_name -> google.protobuf.Timestamp - 956, // 362: forge.Machine.associated_host_machine_id:type_name -> common.MachineId - 333, // 363: forge.Machine.inventory:type_name -> forge.MachineComponentInventory - 957, // 364: forge.Machine.last_reboot_requested_time:type_name -> google.protobuf.Timestamp - 956, // 365: forge.Machine.associated_dpu_machine_ids:type_name -> common.MachineId - 963, // 366: forge.Machine.health:type_name -> health.HealthReport - 335, // 367: forge.Machine.health_sources:type_name -> forge.HealthSourceOrigin - 342, // 368: forge.Machine.ib_status:type_name -> forge.InfinibandStatusObservation - 251, // 369: forge.Machine.metadata:type_name -> forge.Metadata - 327, // 370: forge.Machine.instance_network_restrictions:type_name -> forge.InstanceNetworkRestrictions - 619, // 371: forge.Machine.capabilities:type_name -> forge.MachineCapabilitiesSet - 692, // 372: forge.Machine.hw_sku_status:type_name -> forge.SkuStatus - 373, // 373: forge.Machine.quarantine_state:type_name -> forge.ManagedHostQuarantineState - 743, // 374: forge.Machine.nvlink_info:type_name -> forge.MachineNVLinkInfo - 748, // 375: forge.Machine.nvlink_status_observation:type_name -> forge.MachineNVLinkStatusObservation - 965, // 376: forge.Machine.rack_id:type_name -> common.RackId - 209, // 377: forge.Machine.placement_in_rack:type_name -> forge.PlacementInRack - 745, // 378: forge.Machine.spx_status_observation:type_name -> forge.MachineSpxStatusObservation - 326, // 379: forge.Machine.dpf:type_name -> forge.DpfMachineState - 20, // 380: forge.InstanceNetworkRestrictions.network_segment_membership_type:type_name -> forge.InstanceNetworkSegmentMembershipType - 970, // 381: forge.InstanceNetworkRestrictions.network_segment_ids:type_name -> common.NetworkSegmentId - 956, // 382: forge.MachineMetadataUpdateRequest.machine_id:type_name -> common.MachineId - 251, // 383: forge.MachineMetadataUpdateRequest.metadata:type_name -> forge.Metadata - 965, // 384: forge.RackMetadataUpdateRequest.rack_id:type_name -> common.RackId - 251, // 385: forge.RackMetadataUpdateRequest.metadata:type_name -> forge.Metadata - 967, // 386: forge.SwitchMetadataUpdateRequest.switch_id:type_name -> common.SwitchId - 251, // 387: forge.SwitchMetadataUpdateRequest.metadata:type_name -> forge.Metadata - 964, // 388: forge.PowerShelfMetadataUpdateRequest.power_shelf_id:type_name -> common.PowerShelfId - 251, // 389: forge.PowerShelfMetadataUpdateRequest.metadata:type_name -> forge.Metadata - 956, // 390: forge.DpuAgentInventoryReport.machine_id:type_name -> common.MachineId - 333, // 391: forge.DpuAgentInventoryReport.inventory:type_name -> forge.MachineComponentInventory - 334, // 392: forge.MachineComponentInventory.components:type_name -> forge.MachineInventorySoftwareComponent - 38, // 393: forge.HealthSourceOrigin.mode:type_name -> forge.HealthReportApplyMode - 21, // 394: forge.ControllerStateReason.outcome:type_name -> forge.ControllerStateOutcome - 337, // 395: forge.ControllerStateReason.source_ref:type_name -> forge.ControllerStateSourceReference - 979, // 396: forge.StateSla.sla:type_name -> google.protobuf.Duration - 7, // 397: forge.InstanceTenantStatus.state:type_name -> forge.TenantState - 957, // 398: forge.MachineEvent.time:type_name -> google.protobuf.Timestamp - 977, // 399: forge.MachineInterface.id:type_name -> common.MachineInterfaceId - 956, // 400: forge.MachineInterface.attached_dpu_machine_id:type_name -> common.MachineId - 956, // 401: forge.MachineInterface.machine_id:type_name -> common.MachineId - 970, // 402: forge.MachineInterface.segment_id:type_name -> common.NetworkSegmentId - 969, // 403: forge.MachineInterface.domain_id:type_name -> common.DomainId - 957, // 404: forge.MachineInterface.created:type_name -> google.protobuf.Timestamp - 957, // 405: forge.MachineInterface.last_dhcp:type_name -> google.protobuf.Timestamp - 964, // 406: forge.MachineInterface.power_shelf_id:type_name -> common.PowerShelfId - 967, // 407: forge.MachineInterface.switch_id:type_name -> common.SwitchId - 24, // 408: forge.MachineInterface.association_type:type_name -> forge.InterfaceAssociationType - 25, // 409: forge.MachineInterface.interface_type:type_name -> forge.InterfaceType - 343, // 410: forge.InfinibandStatusObservation.ib_interfaces:type_name -> forge.MachineIbInterface - 957, // 411: forge.InfinibandStatusObservation.observed_at:type_name -> google.protobuf.Timestamp - 980, // 412: forge.MachineIbInterface.associated_pkeys:type_name -> common.StringList - 980, // 413: forge.MachineIbInterface.associated_partition_ids:type_name -> common.StringList - 26, // 414: forge.DhcpDiscovery.address_family:type_name -> forge.AddressFamily - 27, // 415: forge.DhcpDiscovery.message_kind:type_name -> forge.MessageKind - 28, // 416: forge.ExpireDhcpLeaseResponse.status:type_name -> forge.ExpireDhcpLeaseStatus - 956, // 417: forge.DhcpRecord.machine_id:type_name -> common.MachineId - 977, // 418: forge.DhcpRecord.machine_interface_id:type_name -> common.MachineInterfaceId - 970, // 419: forge.DhcpRecord.segment_id:type_name -> common.NetworkSegmentId - 969, // 420: forge.DhcpRecord.subdomain_id:type_name -> common.DomainId - 957, // 421: forge.DhcpRecord.last_invalidation_time:type_name -> google.protobuf.Timestamp - 235, // 422: forge.NetworkSegmentList.network_segments:type_name -> forge.NetworkSegment - 29, // 423: forge.SSHKeyValidationResponse.role:type_name -> forge.UserRoles - 967, // 424: forge.GetSwitchNvosCredentialsRequest.switch_id:type_name -> common.SwitchId - 354, // 425: forge.GetBmcCredentialsResponse.credentials:type_name -> forge.BmcCredentials - 806, // 426: forge.BmcCredentials.username_password:type_name -> forge.UsernamePassword - 807, // 427: forge.BmcCredentials.session_token:type_name -> forge.SessionToken - 362, // 428: forge.SshRequest.endpoint_request:type_name -> forge.BmcEndpointRequest - 364, // 429: forge.CopyBfbToDpuRshimRequest.ssh_request:type_name -> forge.SshRequest - 956, // 430: forge.UpdateMachineHardwareInfoRequest.machine_id:type_name -> common.MachineId - 367, // 431: forge.UpdateMachineHardwareInfoRequest.info:type_name -> forge.MachineHardwareInfo - 30, // 432: forge.UpdateMachineHardwareInfoRequest.update_type:type_name -> forge.MachineHardwareInfoUpdateType - 981, // 433: forge.MachineHardwareInfo.gpus:type_name -> machine_discovery.Gpu - 956, // 434: forge.ManagedHostNetworkConfigRequest.dpu_machine_id:type_name -> common.MachineId - 380, // 435: forge.ManagedHostNetworkConfigResponse.managed_host_config:type_name -> forge.ManagedHostNetworkConfig - 381, // 436: forge.ManagedHostNetworkConfigResponse.admin_interface:type_name -> forge.FlatInterfaceConfig - 381, // 437: forge.ManagedHostNetworkConfigResponse.tenant_interfaces:type_name -> forge.FlatInterfaceConfig - 972, // 438: forge.ManagedHostNetworkConfigResponse.instance_id:type_name -> common.InstanceId - 5, // 439: forge.ManagedHostNetworkConfigResponse.network_virtualization_type:type_name -> forge.VpcVirtualizationType - 32, // 440: forge.ManagedHostNetworkConfigResponse.vpc_isolation_behavior:type_name -> forge.VpcIsolationBehaviorType - 284, // 441: forge.ManagedHostNetworkConfigResponse.instance:type_name -> forge.Instance - 982, // 442: forge.ManagedHostNetworkConfigResponse.common_internal_route_target:type_name -> common.RouteTarget - 982, // 443: forge.ManagedHostNetworkConfigResponse.additional_route_target_imports:type_name -> common.RouteTarget - 670, // 444: forge.ManagedHostNetworkConfigResponse.network_security_policy_overrides:type_name -> forge.ResolvedNetworkSecurityGroupRule - 372, // 445: forge.ManagedHostNetworkConfigResponse.dpu_extension_services:type_name -> forge.ManagedHostDpuExtensionServiceConfig - 370, // 446: forge.ManagedHostNetworkConfigResponse.traffic_intercept_config:type_name -> forge.TrafficInterceptConfig - 842, // 447: forge.ManagedHostNetworkConfigResponse.routing_profile:type_name -> forge.RoutingProfile - 371, // 448: forge.TrafficInterceptConfig.bridging:type_name -> forge.TrafficInterceptBridging - 925, // 449: forge.TrafficInterceptBridging.host_representor_intercept_bridging:type_name -> forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry - 67, // 450: forge.ManagedHostDpuExtensionServiceConfig.service_type:type_name -> forge.DpuExtensionServiceType - 808, // 451: forge.ManagedHostDpuExtensionServiceConfig.credential:type_name -> forge.DpuExtensionServiceCredential - 827, // 452: forge.ManagedHostDpuExtensionServiceConfig.observability:type_name -> forge.DpuExtensionServiceObservability - 31, // 453: forge.ManagedHostQuarantineState.mode:type_name -> forge.ManagedHostQuarantineMode - 956, // 454: forge.GetManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId - 373, // 455: forge.GetManagedHostQuarantineStateResponse.quarantine_state:type_name -> forge.ManagedHostQuarantineState - 956, // 456: forge.SetManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId - 373, // 457: forge.SetManagedHostQuarantineStateRequest.quarantine_state:type_name -> forge.ManagedHostQuarantineState - 373, // 458: forge.SetManagedHostQuarantineStateResponse.prior_quarantine_state:type_name -> forge.ManagedHostQuarantineState - 956, // 459: forge.ClearManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId - 373, // 460: forge.ClearManagedHostQuarantineStateResponse.prior_quarantine_state:type_name -> forge.ManagedHostQuarantineState - 373, // 461: forge.ManagedHostNetworkConfig.quarantine_state:type_name -> forge.ManagedHostQuarantineState - 37, // 462: forge.FlatInterfaceConfig.function_type:type_name -> forge.InterfaceFunctionType - 383, // 463: forge.FlatInterfaceConfig.ipv6_interface_config:type_name -> forge.FlatInterfaceIpv6Config - 842, // 464: forge.FlatInterfaceConfig.vpc_routing_profile:type_name -> forge.RoutingProfile - 382, // 465: forge.FlatInterfaceConfig.interface_routing_profile:type_name -> forge.FlatInterfaceRoutingProfile - 384, // 466: forge.FlatInterfaceConfig.network_security_group:type_name -> forge.FlatInterfaceNetworkSecurityGroupConfig - 966, // 467: forge.FlatInterfaceConfig.internal_uuid:type_name -> common.UUID - 841, // 468: forge.FlatInterfaceRoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry - 54, // 469: forge.FlatInterfaceNetworkSecurityGroupConfig.source:type_name -> forge.NetworkSecurityGroupSource - 670, // 470: forge.FlatInterfaceNetworkSecurityGroupConfig.rules:type_name -> forge.ResolvedNetworkSecurityGroupRule - 433, // 471: forge.ManagedHostNetworkStatusResponse.all:type_name -> forge.DpuNetworkStatus - 957, // 472: forge.DpuAgentUpgradeCheckRequest.binary_mtime:type_name -> google.protobuf.Timestamp - 33, // 473: forge.DpuAgentUpgradePolicyRequest.new_policy:type_name -> forge.AgentUpgradePolicy - 33, // 474: forge.DpuAgentUpgradePolicyResponse.active_policy:type_name -> forge.AgentUpgradePolicy - 362, // 475: forge.LockdownRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 956, // 476: forge.LockdownRequest.machine_id:type_name -> common.MachineId - 34, // 477: forge.LockdownRequest.action:type_name -> forge.LockdownAction - 362, // 478: forge.LockdownStatusRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 956, // 479: forge.LockdownStatusRequest.machine_id:type_name -> common.MachineId - 362, // 480: forge.MachineSetupStatusRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 362, // 481: forge.MachineSetupRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 362, // 482: forge.SetDpuFirstBootOrderRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 362, // 483: forge.AdminRebootRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 362, // 484: forge.AdminBmcResetRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 362, // 485: forge.EnableInfiniteBootRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 362, // 486: forge.IsInfiniteBootEnabledRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 956, // 487: forge.BMCMetaDataGetRequest.machine_id:type_name -> common.MachineId - 29, // 488: forge.BMCMetaDataGetRequest.role:type_name -> forge.UserRoles - 35, // 489: forge.BMCMetaDataGetRequest.request_type:type_name -> forge.BMCRequestType - 362, // 490: forge.BMCMetaDataGetRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 956, // 491: forge.MachineCredentialsUpdateRequest.machine_id:type_name -> common.MachineId - 926, // 492: forge.MachineCredentialsUpdateRequest.credentials:type_name -> forge.MachineCredentialsUpdateRequest.Credentials - 956, // 493: forge.ForgeAgentControlRequest.machine_id:type_name -> common.MachineId - 79, // 494: forge.ForgeAgentControlResponse.legacy_action:type_name -> forge.ForgeAgentControlResponse.LegacyAction - 927, // 495: forge.ForgeAgentControlResponse.data:type_name -> forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo - 928, // 496: forge.ForgeAgentControlResponse.noop:type_name -> forge.ForgeAgentControlResponse.Noop - 929, // 497: forge.ForgeAgentControlResponse.reset:type_name -> forge.ForgeAgentControlResponse.Reset - 930, // 498: forge.ForgeAgentControlResponse.discovery:type_name -> forge.ForgeAgentControlResponse.Discovery - 931, // 499: forge.ForgeAgentControlResponse.rebuild:type_name -> forge.ForgeAgentControlResponse.Rebuild - 932, // 500: forge.ForgeAgentControlResponse.retry:type_name -> forge.ForgeAgentControlResponse.Retry - 933, // 501: forge.ForgeAgentControlResponse.measure:type_name -> forge.ForgeAgentControlResponse.Measure - 934, // 502: forge.ForgeAgentControlResponse.log_error:type_name -> forge.ForgeAgentControlResponse.LogError - 935, // 503: forge.ForgeAgentControlResponse.machine_validation:type_name -> forge.ForgeAgentControlResponse.MachineValidation - 937, // 504: forge.ForgeAgentControlResponse.mlx_action:type_name -> forge.ForgeAgentControlResponse.MlxAction - 944, // 505: forge.ForgeAgentControlResponse.firmware_upgrade:type_name -> forge.ForgeAgentControlResponse.FirmwareUpgrade - 977, // 506: forge.MachineDiscoveryInfo.machine_interface_id:type_name -> common.MachineInterfaceId - 978, // 507: forge.MachineDiscoveryInfo.info:type_name -> machine_discovery.DiscoveryInfo - 36, // 508: forge.MachineDiscoveryInfo.discovery_reporter:type_name -> forge.MachineDiscoveryReporter - 956, // 509: forge.MachineDiscoveryCompletedRequest.machine_id:type_name -> common.MachineId - 956, // 510: forge.MachineCleanupInfo.machine_id:type_name -> common.MachineId - 946, // 511: forge.MachineCleanupInfo.nvme:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 946, // 512: forge.MachineCleanupInfo.ram:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 946, // 513: forge.MachineCleanupInfo.mem_overwrite:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 946, // 514: forge.MachineCleanupInfo.ib:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 946, // 515: forge.MachineCleanupInfo.hdd:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 80, // 516: forge.MachineCleanupInfo.result:type_name -> forge.MachineCleanupInfo.CleanupResult - 419, // 517: forge.MachineCertificateResult.machine_certificate:type_name -> forge.MachineCertificate - 956, // 518: forge.MachineDiscoveryResult.machine_id:type_name -> common.MachineId - 419, // 519: forge.MachineDiscoveryResult.machine_certificate:type_name -> forge.MachineCertificate - 123, // 520: forge.MachineDiscoveryResult.attest_key_challenge:type_name -> forge.AttestKeyBindChallenge - 977, // 521: forge.MachineDiscoveryResult.machine_interface_id:type_name -> common.MachineInterfaceId - 956, // 522: forge.ForgeScoutErrorReport.machine_id:type_name -> common.MachineId - 977, // 523: forge.ForgeScoutErrorReport.machine_interface_id:type_name -> common.MachineInterfaceId - 23, // 524: forge.PxeInstructionRequest.arch:type_name -> forge.MachineArchitecture - 977, // 525: forge.PxeInstructionRequest.interface_id:type_name -> common.MachineInterfaceId - 341, // 526: forge.CloudInitDiscoveryInstructions.machine_interface:type_name -> forge.MachineInterface - 848, // 527: forge.CloudInitDiscoveryInstructions.domain:type_name -> forge.PxeDomain - 429, // 528: forge.CloudInitInstructions.discovery_instructions:type_name -> forge.CloudInitDiscoveryInstructions - 430, // 529: forge.CloudInitInstructions.metadata:type_name -> forge.CloudInitMetaData - 956, // 530: forge.DpuNetworkStatus.dpu_machine_id:type_name -> common.MachineId - 957, // 531: forge.DpuNetworkStatus.observed_at:type_name -> google.protobuf.Timestamp - 454, // 532: forge.DpuNetworkStatus.interfaces:type_name -> forge.InstanceInterfaceStatusObservation - 972, // 533: forge.DpuNetworkStatus.instance_id:type_name -> common.InstanceId - 963, // 534: forge.DpuNetworkStatus.dpu_health:type_name -> health.HealthReport - 455, // 535: forge.DpuNetworkStatus.fabric_interfaces:type_name -> forge.FabricInterfaceData - 434, // 536: forge.DpuNetworkStatus.last_dhcp_requests:type_name -> forge.LastDhcpRequest - 435, // 537: forge.DpuNetworkStatus.dpu_extension_services:type_name -> forge.DpuExtensionServiceStatusObservation - 977, // 538: forge.LastDhcpRequest.host_interface_id:type_name -> common.MachineInterfaceId - 67, // 539: forge.DpuExtensionServiceStatusObservation.service_type:type_name -> forge.DpuExtensionServiceType - 68, // 540: forge.DpuExtensionServiceStatusObservation.state:type_name -> forge.DpuExtensionServiceDeploymentStatus - 436, // 541: forge.DpuExtensionServiceStatusObservation.components:type_name -> forge.DpuExtensionServiceComponent - 963, // 542: forge.OptionalHealthReport.report:type_name -> health.HealthReport - 963, // 543: forge.HealthReportEntry.report:type_name -> health.HealthReport - 38, // 544: forge.HealthReportEntry.mode:type_name -> forge.HealthReportApplyMode - 956, // 545: forge.InsertMachineHealthReportRequest.machine_id:type_name -> common.MachineId - 438, // 546: forge.InsertMachineHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 965, // 547: forge.InsertRackHealthReportRequest.rack_id:type_name -> common.RackId - 438, // 548: forge.InsertRackHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 965, // 549: forge.RemoveRackHealthReportRequest.rack_id:type_name -> common.RackId - 965, // 550: forge.ListRackHealthReportsRequest.rack_id:type_name -> common.RackId - 967, // 551: forge.InsertSwitchHealthReportRequest.switch_id:type_name -> common.SwitchId - 438, // 552: forge.InsertSwitchHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 967, // 553: forge.RemoveSwitchHealthReportRequest.switch_id:type_name -> common.SwitchId - 967, // 554: forge.ListSwitchHealthReportsRequest.switch_id:type_name -> common.SwitchId - 964, // 555: forge.InsertPowerShelfHealthReportRequest.power_shelf_id:type_name -> common.PowerShelfId - 438, // 556: forge.InsertPowerShelfHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 964, // 557: forge.RemovePowerShelfHealthReportRequest.power_shelf_id:type_name -> common.PowerShelfId - 964, // 558: forge.ListPowerShelfHealthReportsRequest.power_shelf_id:type_name -> common.PowerShelfId - 438, // 559: forge.ListHealthReportResponse.health_report_entries:type_name -> forge.HealthReportEntry - 956, // 560: forge.RemoveMachineHealthReportRequest.machine_id:type_name -> common.MachineId - 976, // 561: forge.ListNVLinkDomainHealthReportsRequest.domain_id:type_name -> common.NVLinkDomainId - 976, // 562: forge.InsertNVLinkDomainHealthReportRequest.domain_id:type_name -> common.NVLinkDomainId - 438, // 563: forge.InsertNVLinkDomainHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 976, // 564: forge.RemoveNVLinkDomainHealthReportRequest.domain_id:type_name -> common.NVLinkDomainId - 37, // 565: forge.InstanceInterfaceStatusObservation.function_type:type_name -> forge.InterfaceFunctionType - 664, // 566: forge.InstanceInterfaceStatusObservation.network_security_group:type_name -> forge.NetworkSecurityGroupStatus - 966, // 567: forge.InstanceInterfaceStatusObservation.internal_uuid:type_name -> common.UUID - 456, // 568: forge.FabricInterfaceData.link_data:type_name -> forge.LinkData - 251, // 569: forge.Tenant.metadata:type_name -> forge.Metadata - 251, // 570: forge.CreateTenantRequest.metadata:type_name -> forge.Metadata - 457, // 571: forge.CreateTenantResponse.tenant:type_name -> forge.Tenant - 251, // 572: forge.UpdateTenantRequest.metadata:type_name -> forge.Metadata - 457, // 573: forge.UpdateTenantResponse.tenant:type_name -> forge.Tenant - 457, // 574: forge.FindTenantResponse.tenant:type_name -> forge.Tenant - 465, // 575: forge.TenantKeysetContent.public_keys:type_name -> forge.TenantPublicKey - 464, // 576: forge.TenantKeyset.keyset_identifier:type_name -> forge.TenantKeysetIdentifier - 466, // 577: forge.TenantKeyset.keyset_content:type_name -> forge.TenantKeysetContent - 464, // 578: forge.CreateTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier - 466, // 579: forge.CreateTenantKeysetRequest.keyset_content:type_name -> forge.TenantKeysetContent - 467, // 580: forge.CreateTenantKeysetResponse.keyset:type_name -> forge.TenantKeyset - 467, // 581: forge.TenantKeySetList.keyset:type_name -> forge.TenantKeyset - 464, // 582: forge.UpdateTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier - 466, // 583: forge.UpdateTenantKeysetRequest.keyset_content:type_name -> forge.TenantKeysetContent - 464, // 584: forge.DeleteTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier - 464, // 585: forge.TenantKeysetIdList.keyset_ids:type_name -> forge.TenantKeysetIdentifier - 464, // 586: forge.TenantKeysetsByIdsRequest.keyset_ids:type_name -> forge.TenantKeysetIdentifier - 482, // 587: forge.ResourcePools.pools:type_name -> forge.ResourcePool - 40, // 588: forge.MaintenanceRequest.operation:type_name -> forge.MaintenanceOperation - 956, // 589: forge.MaintenanceRequest.host_id:type_name -> common.MachineId - 41, // 590: forge.SetDynamicConfigRequest.setting:type_name -> forge.ConfigSetting - 510, // 591: forge.FindIpAddressResponse.matches:type_name -> forge.IpAddressMatch - 966, // 592: forge.IdentifyUuidRequest.uuid:type_name -> common.UUID - 966, // 593: forge.IdentifyUuidResponse.uuid:type_name -> common.UUID - 42, // 594: forge.IdentifyUuidResponse.object_type:type_name -> forge.UuidType - 43, // 595: forge.IdentifyMacResponse.object_type:type_name -> forge.MacOwner - 956, // 596: forge.IdentifySerialResponse.machine_id:type_name -> common.MachineId - 956, // 597: forge.DpuReprovisioningRequest.dpu_id:type_name -> common.MachineId - 81, // 598: forge.DpuReprovisioningRequest.mode:type_name -> forge.DpuReprovisioningRequest.Mode - 44, // 599: forge.DpuReprovisioningRequest.initiator:type_name -> forge.UpdateInitiator - 956, // 600: forge.DpuReprovisioningRequest.machine_id:type_name -> common.MachineId - 947, // 601: forge.DpuReprovisioningListResponse.dpus:type_name -> forge.DpuReprovisioningListResponse.DpuReprovisioningListItem - 956, // 602: forge.HostReprovisioningRequest.machine_id:type_name -> common.MachineId - 82, // 603: forge.HostReprovisioningRequest.mode:type_name -> forge.HostReprovisioningRequest.Mode - 44, // 604: forge.HostReprovisioningRequest.initiator:type_name -> forge.UpdateInitiator - 948, // 605: forge.HostReprovisioningListResponse.hosts:type_name -> forge.HostReprovisioningListResponse.HostReprovisioningListItem - 504, // 606: forge.DpuInfoStatusObservation.os_operational_state:type_name -> forge.DpuOsOperationalState - 505, // 607: forge.DpuInfoStatusObservation.representors:type_name -> forge.DpuRepresentorStatus - 957, // 608: forge.DpuInfoStatusObservation.last_heartbeat:type_name -> google.protobuf.Timestamp - 506, // 609: forge.DpuInfo.observed_status:type_name -> forge.DpuInfoStatusObservation - 507, // 610: forge.GetDpuInfoListResponse.dpu_list:type_name -> forge.DpuInfo - 45, // 611: forge.IpAddressMatch.ip_type:type_name -> forge.IpType - 977, // 612: forge.MachineBootOverride.machine_interface_id:type_name -> common.MachineInterfaceId - 956, // 613: forge.ConnectedDevice.id:type_name -> common.MachineId - 512, // 614: forge.ConnectedDeviceList.connected_devices:type_name -> forge.ConnectedDevice - 518, // 615: forge.MachineIdBmcIpPairs.pairs:type_name -> forge.MachineIdBmcIp - 956, // 616: forge.MachineIdBmcIp.machine_id:type_name -> common.MachineId - 512, // 617: forge.NetworkDevice.devices:type_name -> forge.ConnectedDevice - 519, // 618: forge.NetworkTopologyData.network_devices:type_name -> forge.NetworkDevice - 46, // 619: forge.RouteServers.source_type:type_name -> forge.RouteServerSourceType - 525, // 620: forge.RouteServerEntries.route_servers:type_name -> forge.RouteServer - 46, // 621: forge.RouteServer.source_type:type_name -> forge.RouteServerSourceType - 956, // 622: forge.SetHostUefiPasswordRequest.host_id:type_name -> common.MachineId - 956, // 623: forge.ClearHostUefiPasswordRequest.host_id:type_name -> common.MachineId - 966, // 624: forge.OsImageAttributes.id:type_name -> common.UUID - 530, // 625: forge.OsImage.attributes:type_name -> forge.OsImageAttributes - 47, // 626: forge.OsImage.status:type_name -> forge.OsImageStatus - 531, // 627: forge.ListOsImageResponse.images:type_name -> forge.OsImage - 966, // 628: forge.DeleteOsImageRequest.id:type_name -> common.UUID - 973, // 629: forge.GetIpxeTemplateRequest.id:type_name -> common.IpxeTemplateId - 260, // 630: forge.IpxeTemplateList.templates:type_name -> forge.IpxeTemplate - 11, // 631: forge.ExpectedHostNic.network_segment_type:type_name -> forge.NetworkSegmentType - 251, // 632: forge.ExpectedMachine.metadata:type_name -> forge.Metadata - 966, // 633: forge.ExpectedMachine.id:type_name -> common.UUID - 539, // 634: forge.ExpectedMachine.host_nics:type_name -> forge.ExpectedHostNic - 965, // 635: forge.ExpectedMachine.rack_id:type_name -> common.RackId - 48, // 636: forge.ExpectedMachine.dpu_mode:type_name -> forge.DpuMode - 540, // 637: forge.ExpectedMachine.host_lifecycle_profile:type_name -> forge.HostLifecycleProfile - 966, // 638: forge.ExpectedMachineRequest.id:type_name -> common.UUID - 541, // 639: forge.ExpectedMachineList.expected_machines:type_name -> forge.ExpectedMachine - 545, // 640: forge.LinkedExpectedMachineList.expected_machines:type_name -> forge.LinkedExpectedMachine - 956, // 641: forge.LinkedExpectedMachine.machine_id:type_name -> common.MachineId - 966, // 642: forge.LinkedExpectedMachine.expected_machine_id:type_name -> common.UUID - 547, // 643: forge.UnexpectedMachineList.unexpected_machines:type_name -> forge.UnexpectedMachine - 956, // 644: forge.UnexpectedMachine.machine_id:type_name -> common.MachineId - 543, // 645: forge.BatchExpectedMachineOperationRequest.expected_machines:type_name -> forge.ExpectedMachineList - 966, // 646: forge.ExpectedMachineOperationResult.id:type_name -> common.UUID - 541, // 647: forge.ExpectedMachineOperationResult.expected_machine:type_name -> forge.ExpectedMachine - 549, // 648: forge.BatchExpectedMachineOperationResponse.results:type_name -> forge.ExpectedMachineOperationResult - 956, // 649: forge.MachineRebootCompletedRequest.machine_id:type_name -> common.MachineId - 956, // 650: forge.ScoutFirmwareUpgradeStatusRequest.machine_id:type_name -> common.MachineId - 956, // 651: forge.MachineValidationCompletedRequest.machine_id:type_name -> common.MachineId - 983, // 652: forge.MachineValidationCompletedRequest.validation_id:type_name -> common.MachineValidationId - 957, // 653: forge.MachineValidationResult.start_time:type_name -> google.protobuf.Timestamp - 957, // 654: forge.MachineValidationResult.end_time:type_name -> google.protobuf.Timestamp - 983, // 655: forge.MachineValidationResult.validation_id:type_name -> common.MachineValidationId - 556, // 656: forge.MachineValidationResultPostRequest.result:type_name -> forge.MachineValidationResult - 556, // 657: forge.MachineValidationResultList.results:type_name -> forge.MachineValidationResult - 956, // 658: forge.MachineValidationGetRequest.machine_id:type_name -> common.MachineId - 983, // 659: forge.MachineValidationGetRequest.validation_id:type_name -> common.MachineValidationId - 49, // 660: forge.MachineValidationStatus.started:type_name -> forge.MachineValidationStarted - 50, // 661: forge.MachineValidationStatus.in_progress:type_name -> forge.MachineValidationInProgress - 51, // 662: forge.MachineValidationStatus.completed:type_name -> forge.MachineValidationCompleted - 983, // 663: forge.MachineValidationRun.validation_id:type_name -> common.MachineValidationId - 956, // 664: forge.MachineValidationRun.machine_id:type_name -> common.MachineId - 957, // 665: forge.MachineValidationRun.start_time:type_name -> google.protobuf.Timestamp - 957, // 666: forge.MachineValidationRun.end_time:type_name -> google.protobuf.Timestamp - 560, // 667: forge.MachineValidationRun.status:type_name -> forge.MachineValidationStatus - 979, // 668: forge.MachineValidationRun.duration_to_complete:type_name -> google.protobuf.Duration - 957, // 669: forge.MachineValidationRun.last_heartbeat_at:type_name -> google.protobuf.Timestamp - 956, // 670: forge.MachineSetAutoUpdateRequest.machine_id:type_name -> common.MachineId - 83, // 671: forge.MachineSetAutoUpdateRequest.action:type_name -> forge.MachineSetAutoUpdateRequest.SetAutoupdateAction - 957, // 672: forge.MachineValidationExternalConfig.timestamp:type_name -> google.protobuf.Timestamp - 565, // 673: forge.GetMachineValidationExternalConfigResponse.config:type_name -> forge.MachineValidationExternalConfig - 565, // 674: forge.GetMachineValidationExternalConfigsResponse.configs:type_name -> forge.MachineValidationExternalConfig - 956, // 675: forge.MachineValidationOnDemandRequest.machine_id:type_name -> common.MachineId - 84, // 676: forge.MachineValidationOnDemandRequest.action:type_name -> forge.MachineValidationOnDemandRequest.Action - 983, // 677: forge.MachineValidationOnDemandResponse.validation_id:type_name -> common.MachineValidationId - 573, // 678: forge.MaintenanceActivityConfig.firmware_upgrade:type_name -> forge.FirmwareUpgradeActivity - 575, // 679: forge.MaintenanceActivityConfig.configure_nmx_cluster:type_name -> forge.ConfigureNmxClusterActivity - 576, // 680: forge.MaintenanceActivityConfig.power_sequence:type_name -> forge.PowerSequenceActivity - 574, // 681: forge.MaintenanceActivityConfig.nvos_update:type_name -> forge.NvosUpdateActivity - 577, // 682: forge.RackMaintenanceScope.activities:type_name -> forge.MaintenanceActivityConfig - 965, // 683: forge.RackMaintenanceOnDemandRequest.rack_id:type_name -> common.RackId - 578, // 684: forge.RackMaintenanceOnDemandRequest.scope:type_name -> forge.RackMaintenanceScope - 362, // 685: forge.AdminPowerControlRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 85, // 686: forge.AdminPowerControlRequest.action:type_name -> forge.AdminPowerControlRequest.SystemPowerControl - 956, // 687: forge.GetRedfishJobStateRequest.machine_id:type_name -> common.MachineId - 86, // 688: forge.GetRedfishJobStateResponse.job_state:type_name -> forge.GetRedfishJobStateResponse.RedfishJobState - 561, // 689: forge.MachineValidationRunList.runs:type_name -> forge.MachineValidationRun - 956, // 690: forge.MachineValidationRunListGetRequest.machine_id:type_name -> common.MachineId - 983, // 691: forge.MachineValidationRunItemSearchFilter.validation_id:type_name -> common.MachineValidationId - 966, // 692: forge.MachineValidationRunItemIdList.run_item_ids:type_name -> common.UUID - 966, // 693: forge.MachineValidationRunItemsByIdsRequest.run_item_ids:type_name -> common.UUID - 591, // 694: forge.MachineValidationRunItemList.run_items:type_name -> forge.MachineValidationRunItem - 966, // 695: forge.MachineValidationRunItem.run_item_id:type_name -> common.UUID - 983, // 696: forge.MachineValidationRunItem.validation_id:type_name -> common.MachineValidationId - 979, // 697: forge.MachineValidationRunItem.timeout:type_name -> google.protobuf.Duration - 957, // 698: forge.MachineValidationRunItem.started_at:type_name -> google.protobuf.Timestamp - 957, // 699: forge.MachineValidationRunItem.ended_at:type_name -> google.protobuf.Timestamp - 957, // 700: forge.MachineValidationRunItem.last_heartbeat_at:type_name -> google.protobuf.Timestamp - 966, // 701: forge.MachineValidationRunItem.current_attempt_id:type_name -> common.UUID - 966, // 702: forge.MachineValidationAttemptGetRequest.attempt_id:type_name -> common.UUID - 966, // 703: forge.MachineValidationAttempt.attempt_id:type_name -> common.UUID - 966, // 704: forge.MachineValidationAttempt.run_item_id:type_name -> common.UUID - 957, // 705: forge.MachineValidationAttempt.started_at:type_name -> google.protobuf.Timestamp - 957, // 706: forge.MachineValidationAttempt.ended_at:type_name -> google.protobuf.Timestamp - 957, // 707: forge.MachineValidationAttempt.last_heartbeat_at:type_name -> google.protobuf.Timestamp - 983, // 708: forge.MachineValidationHeartbeatRequest.validation_id:type_name -> common.MachineValidationId - 966, // 709: forge.MachineValidationHeartbeatRequest.run_item_id:type_name -> common.UUID - 966, // 710: forge.MachineValidationHeartbeatRequest.attempt_id:type_name -> common.UUID - 949, // 711: forge.MachineValidationTestUpdateRequest.payload:type_name -> forge.MachineValidationTestUpdateRequest.Payload - 605, // 712: forge.MachineValidationTestsGetResponse.tests:type_name -> forge.MachineValidationTest - 983, // 713: forge.MachineValidationRunRequest.validation_id:type_name -> common.MachineValidationId - 979, // 714: forge.MachineValidationRunRequest.duration_to_complete:type_name -> google.protobuf.Duration - 605, // 715: forge.MachineValidationRunRequest.selected_tests:type_name -> forge.MachineValidationTest - 52, // 716: forge.MachineCapabilityAttributesGpu.device_type:type_name -> forge.MachineCapabilityDeviceType - 52, // 717: forge.MachineCapabilityAttributesNetwork.device_type:type_name -> forge.MachineCapabilityDeviceType - 612, // 718: forge.MachineCapabilitiesSet.cpu:type_name -> forge.MachineCapabilityAttributesCpu - 613, // 719: forge.MachineCapabilitiesSet.gpu:type_name -> forge.MachineCapabilityAttributesGpu - 614, // 720: forge.MachineCapabilitiesSet.memory:type_name -> forge.MachineCapabilityAttributesMemory - 615, // 721: forge.MachineCapabilitiesSet.storage:type_name -> forge.MachineCapabilityAttributesStorage - 616, // 722: forge.MachineCapabilitiesSet.network:type_name -> forge.MachineCapabilityAttributesNetwork - 617, // 723: forge.MachineCapabilitiesSet.infiniband:type_name -> forge.MachineCapabilityAttributesInfiniband - 618, // 724: forge.MachineCapabilitiesSet.dpu:type_name -> forge.MachineCapabilityAttributesDpu - 622, // 725: forge.InstanceTypeAttributes.desired_capabilities:type_name -> forge.InstanceTypeMachineCapabilityFilterAttributes - 620, // 726: forge.InstanceType.attributes:type_name -> forge.InstanceTypeAttributes - 251, // 727: forge.InstanceType.metadata:type_name -> forge.Metadata - 720, // 728: forge.InstanceType.allocation_stats:type_name -> forge.InstanceTypeAllocationStats - 53, // 729: forge.InstanceTypeMachineCapabilityFilterAttributes.capability_type:type_name -> forge.MachineCapabilityType - 984, // 730: forge.InstanceTypeMachineCapabilityFilterAttributes.inactive_devices:type_name -> common.Uint32List - 52, // 731: forge.InstanceTypeMachineCapabilityFilterAttributes.device_type:type_name -> forge.MachineCapabilityDeviceType - 251, // 732: forge.CreateInstanceTypeRequest.metadata:type_name -> forge.Metadata - 620, // 733: forge.CreateInstanceTypeRequest.instance_type_attributes:type_name -> forge.InstanceTypeAttributes - 621, // 734: forge.CreateInstanceTypeResponse.instance_type:type_name -> forge.InstanceType - 621, // 735: forge.FindInstanceTypesByIdsResponse.instance_types:type_name -> forge.InstanceType - 621, // 736: forge.UpdateInstanceTypeResponse.instance_type:type_name -> forge.InstanceType - 251, // 737: forge.UpdateInstanceTypeRequest.metadata:type_name -> forge.Metadata - 620, // 738: forge.UpdateInstanceTypeRequest.instance_type_attributes:type_name -> forge.InstanceTypeAttributes - 950, // 739: forge.RedfishBrowseResponse.headers:type_name -> forge.RedfishBrowseResponse.HeadersEntry - 641, // 740: forge.RedfishListActionsResponse.actions:type_name -> forge.RedfishAction - 957, // 741: forge.RedfishAction.approver_dates:type_name -> google.protobuf.Timestamp - 957, // 742: forge.RedfishAction.applied_at:type_name -> google.protobuf.Timestamp - 642, // 743: forge.RedfishAction.results:type_name -> forge.OptionalRedfishActionResult - 643, // 744: forge.OptionalRedfishActionResult.result:type_name -> forge.RedfishActionResult - 951, // 745: forge.RedfishActionResult.headers:type_name -> forge.RedfishActionResult.HeadersEntry - 957, // 746: forge.RedfishActionResult.completed_at:type_name -> google.protobuf.Timestamp - 952, // 747: forge.UfmBrowseResponse.headers:type_name -> forge.UfmBrowseResponse.HeadersEntry - 669, // 748: forge.NetworkSecurityGroupAttributes.rules:type_name -> forge.NetworkSecurityGroupRuleAttributes - 251, // 749: forge.NetworkSecurityGroup.metadata:type_name -> forge.Metadata - 652, // 750: forge.NetworkSecurityGroup.attributes:type_name -> forge.NetworkSecurityGroupAttributes - 251, // 751: forge.CreateNetworkSecurityGroupRequest.metadata:type_name -> forge.Metadata - 652, // 752: forge.CreateNetworkSecurityGroupRequest.network_security_group_attributes:type_name -> forge.NetworkSecurityGroupAttributes - 653, // 753: forge.CreateNetworkSecurityGroupResponse.network_security_group:type_name -> forge.NetworkSecurityGroup - 653, // 754: forge.FindNetworkSecurityGroupsByIdsResponse.network_security_groups:type_name -> forge.NetworkSecurityGroup - 653, // 755: forge.UpdateNetworkSecurityGroupResponse.network_security_group:type_name -> forge.NetworkSecurityGroup - 251, // 756: forge.UpdateNetworkSecurityGroupRequest.metadata:type_name -> forge.Metadata - 652, // 757: forge.UpdateNetworkSecurityGroupRequest.network_security_group_attributes:type_name -> forge.NetworkSecurityGroupAttributes - 54, // 758: forge.NetworkSecurityGroupStatus.source:type_name -> forge.NetworkSecurityGroupSource - 55, // 759: forge.NetworkSecurityGroupPropagationObjectStatus.status:type_name -> forge.NetworkSecurityGroupPropagationStatus - 665, // 760: forge.GetNetworkSecurityGroupPropagationStatusResponse.vpcs:type_name -> forge.NetworkSecurityGroupPropagationObjectStatus - 665, // 761: forge.GetNetworkSecurityGroupPropagationStatusResponse.instances:type_name -> forge.NetworkSecurityGroupPropagationObjectStatus - 667, // 762: forge.GetNetworkSecurityGroupPropagationStatusRequest.network_security_group_ids:type_name -> forge.NetworkSecurityGroupIdList - 56, // 763: forge.NetworkSecurityGroupRuleAttributes.direction:type_name -> forge.NetworkSecurityGroupRuleDirection - 57, // 764: forge.NetworkSecurityGroupRuleAttributes.protocol:type_name -> forge.NetworkSecurityGroupRuleProtocol - 58, // 765: forge.NetworkSecurityGroupRuleAttributes.action:type_name -> forge.NetworkSecurityGroupRuleAction - 669, // 766: forge.ResolvedNetworkSecurityGroupRule.rule:type_name -> forge.NetworkSecurityGroupRuleAttributes - 672, // 767: forge.GetNetworkSecurityGroupAttachmentsResponse.attachments:type_name -> forge.NetworkSecurityGroupAttachments - 676, // 768: forge.GetDesiredFirmwareVersionsResponse.entries:type_name -> forge.DesiredFirmwareVersionEntry - 953, // 769: forge.DesiredFirmwareVersionEntry.component_versions:type_name -> forge.DesiredFirmwareVersionEntry.ComponentVersionsEntry - 677, // 770: forge.SkuComponents.chassis:type_name -> forge.SkuComponentChassis - 678, // 771: forge.SkuComponents.cpus:type_name -> forge.SkuComponentCpu - 679, // 772: forge.SkuComponents.gpus:type_name -> forge.SkuComponentGpu - 680, // 773: forge.SkuComponents.ethernet_devices:type_name -> forge.SkuComponentEthernetDevices - 681, // 774: forge.SkuComponents.infiniband_devices:type_name -> forge.SkuComponentInfinibandDevices - 682, // 775: forge.SkuComponents.storage:type_name -> forge.SkuComponentStorage - 684, // 776: forge.SkuComponents.memory:type_name -> forge.SkuComponentMemory - 685, // 777: forge.SkuComponents.tpm:type_name -> forge.SkuComponentTpm - 957, // 778: forge.Sku.created:type_name -> google.protobuf.Timestamp - 686, // 779: forge.Sku.components:type_name -> forge.SkuComponents - 956, // 780: forge.Sku.associated_machine_ids:type_name -> common.MachineId - 956, // 781: forge.SkuMachinePair.machine_id:type_name -> common.MachineId - 956, // 782: forge.RemoveSkuRequest.machine_id:type_name -> common.MachineId - 687, // 783: forge.SkuList.skus:type_name -> forge.Sku - 957, // 784: forge.SkuStatus.verify_request_time:type_name -> google.protobuf.Timestamp - 957, // 785: forge.SkuStatus.last_match_attempt:type_name -> google.protobuf.Timestamp - 957, // 786: forge.SkuStatus.last_generate_attempt:type_name -> google.protobuf.Timestamp - 985, // 787: forge.DpaInterface.id:type_name -> common.DpaInterfaceId - 956, // 788: forge.DpaInterface.machine_id:type_name -> common.MachineId - 957, // 789: forge.DpaInterface.created:type_name -> google.protobuf.Timestamp - 957, // 790: forge.DpaInterface.updated:type_name -> google.protobuf.Timestamp - 957, // 791: forge.DpaInterface.deleted:type_name -> google.protobuf.Timestamp - 215, // 792: forge.DpaInterface.history:type_name -> forge.StateHistoryRecord - 957, // 793: forge.DpaInterface.last_hb_time:type_name -> google.protobuf.Timestamp - 59, // 794: forge.DpaInterface.interface_type:type_name -> forge.DpaInterfaceType - 956, // 795: forge.DpaInterfaceCreationRequest.machine_id:type_name -> common.MachineId - 59, // 796: forge.DpaInterfaceCreationRequest.interface_type:type_name -> forge.DpaInterfaceType - 985, // 797: forge.DpaInterfaceIdList.ids:type_name -> common.DpaInterfaceId - 985, // 798: forge.DpaInterfacesByIdsRequest.ids:type_name -> common.DpaInterfaceId - 695, // 799: forge.DpaInterfaceList.interfaces:type_name -> forge.DpaInterface - 985, // 800: forge.DpaNetworkObservationSetRequest.id:type_name -> common.DpaInterfaceId - 985, // 801: forge.DpaInterfaceDeletionRequest.id:type_name -> common.DpaInterfaceId - 956, // 802: forge.PowerOptionRequest.machine_id:type_name -> common.MachineId - 956, // 803: forge.PowerOptionUpdateRequest.machine_id:type_name -> common.MachineId - 60, // 804: forge.PowerOptionUpdateRequest.power_state:type_name -> forge.PowerState - 60, // 805: forge.PowerOptions.desired_state:type_name -> forge.PowerState - 957, // 806: forge.PowerOptions.desired_state_updated_at:type_name -> google.protobuf.Timestamp - 60, // 807: forge.PowerOptions.actual_state:type_name -> forge.PowerState - 957, // 808: forge.PowerOptions.actual_state_updated_at:type_name -> google.protobuf.Timestamp - 956, // 809: forge.PowerOptions.host_id:type_name -> common.MachineId - 957, // 810: forge.PowerOptions.next_power_state_fetch_at:type_name -> google.protobuf.Timestamp - 957, // 811: forge.PowerOptions.tried_triggering_on_at:type_name -> google.protobuf.Timestamp - 957, // 812: forge.PowerOptions.wait_until_time_before_performing_next_power_action:type_name -> google.protobuf.Timestamp - 706, // 813: forge.PowerOptionResponse.response:type_name -> forge.PowerOptions - 986, // 814: forge.ComputeAllocation.id:type_name -> common.ComputeAllocationId - 708, // 815: forge.ComputeAllocation.attributes:type_name -> forge.ComputeAllocationAttributes - 251, // 816: forge.ComputeAllocation.metadata:type_name -> forge.Metadata - 986, // 817: forge.CreateComputeAllocationRequest.id:type_name -> common.ComputeAllocationId - 251, // 818: forge.CreateComputeAllocationRequest.metadata:type_name -> forge.Metadata - 708, // 819: forge.CreateComputeAllocationRequest.attributes:type_name -> forge.ComputeAllocationAttributes - 709, // 820: forge.CreateComputeAllocationResponse.allocation:type_name -> forge.ComputeAllocation - 986, // 821: forge.FindComputeAllocationIdsResponse.ids:type_name -> common.ComputeAllocationId - 986, // 822: forge.FindComputeAllocationsByIdsRequest.ids:type_name -> common.ComputeAllocationId - 709, // 823: forge.FindComputeAllocationsByIdsResponse.allocations:type_name -> forge.ComputeAllocation - 709, // 824: forge.UpdateComputeAllocationResponse.allocation:type_name -> forge.ComputeAllocation - 986, // 825: forge.UpdateComputeAllocationRequest.id:type_name -> common.ComputeAllocationId - 251, // 826: forge.UpdateComputeAllocationRequest.metadata:type_name -> forge.Metadata - 708, // 827: forge.UpdateComputeAllocationRequest.attributes:type_name -> forge.ComputeAllocationAttributes - 986, // 828: forge.DeleteComputeAllocationRequest.id:type_name -> common.ComputeAllocationId - 727, // 829: forge.GetRackResponse.rack:type_name -> forge.Rack - 727, // 830: forge.RackList.racks:type_name -> forge.Rack - 250, // 831: forge.RackSearchFilter.label:type_name -> forge.Label - 965, // 832: forge.RackIdList.rack_ids:type_name -> common.RackId - 965, // 833: forge.RacksByIdsRequest.rack_ids:type_name -> common.RackId - 965, // 834: forge.Rack.id:type_name -> common.RackId - 957, // 835: forge.Rack.created:type_name -> google.protobuf.Timestamp - 957, // 836: forge.Rack.updated:type_name -> google.protobuf.Timestamp - 957, // 837: forge.Rack.deleted:type_name -> google.protobuf.Timestamp - 251, // 838: forge.Rack.metadata:type_name -> forge.Metadata - 728, // 839: forge.Rack.config:type_name -> forge.RackConfig - 729, // 840: forge.Rack.status:type_name -> forge.RackStatus - 963, // 841: forge.RackStatus.health:type_name -> health.HealthReport - 335, // 842: forge.RackStatus.health_sources:type_name -> forge.HealthSourceOrigin - 87, // 843: forge.RackStatus.lifecycle:type_name -> forge.LifecycleStatus - 965, // 844: forge.RackStateHistoriesRequest.rack_ids:type_name -> common.RackId - 965, // 845: forge.AdminForceDeleteRackRequest.rack_id:type_name -> common.RackId - 734, // 846: forge.RackCapabilitiesSet.compute:type_name -> forge.RackCapabilityCompute - 735, // 847: forge.RackCapabilitiesSet.switch:type_name -> forge.RackCapabilitySwitch - 736, // 848: forge.RackCapabilitiesSet.power_shelf:type_name -> forge.RackCapabilityPowerShelf - 987, // 849: forge.RackProfile.rack_hardware_type:type_name -> common.RackHardwareType - 61, // 850: forge.RackProfile.rack_hardware_topology:type_name -> forge.RackHardwareTopology - 63, // 851: forge.RackProfile.rack_hardware_class:type_name -> forge.RackHardwareClass - 737, // 852: forge.RackProfile.capabilities:type_name -> forge.RackCapabilitiesSet - 62, // 853: forge.RackProfile.product_family:type_name -> forge.RackProductFamily - 965, // 854: forge.GetRackProfileRequest.rack_id:type_name -> common.RackId - 965, // 855: forge.GetRackProfileResponse.rack_id:type_name -> common.RackId - 968, // 856: forge.GetRackProfileResponse.rack_profile_id:type_name -> common.RackProfileId - 738, // 857: forge.GetRackProfileResponse.profile:type_name -> forge.RackProfile - 64, // 858: forge.RackManagerForgeRequest.cmd:type_name -> forge.RackManagerForgeCmd - 976, // 859: forge.MachineNVLinkInfo.domain_uuid:type_name -> common.NVLinkDomainId - 747, // 860: forge.MachineNVLinkInfo.gpus:type_name -> forge.NVLinkGpu - 956, // 861: forge.UpdateMachineNvLinkInfoRequest.machine_id:type_name -> common.MachineId - 743, // 862: forge.UpdateMachineNvLinkInfoRequest.nvlink_info:type_name -> forge.MachineNVLinkInfo - 746, // 863: forge.MachineSpxStatusObservation.attachment_status:type_name -> forge.MachineSpxAttachmentStatusObservation - 957, // 864: forge.MachineSpxStatusObservation.observed_at:type_name -> google.protobuf.Timestamp - 975, // 865: forge.MachineSpxAttachmentStatusObservation.partition_id:type_name -> common.SpxPartitionId - 15, // 866: forge.MachineSpxAttachmentStatusObservation.attachment_type:type_name -> forge.SpxAttachmentType - 957, // 867: forge.MachineSpxAttachmentStatusObservation.observed_at:type_name -> google.protobuf.Timestamp - 749, // 868: forge.MachineNVLinkStatusObservation.gpu_status:type_name -> forge.MachineNVLinkGpuStatusObservation - 988, // 869: forge.MachineNVLinkGpuStatusObservation.partition_id:type_name -> common.NVLinkPartitionId - 959, // 870: forge.MachineNVLinkGpuStatusObservation.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 976, // 871: forge.MachineNVLinkGpuStatusObservation.domain_id:type_name -> common.NVLinkDomainId - 65, // 872: forge.NmxcBrowseRequest.operation:type_name -> forge.NmxcBrowseOperation - 954, // 873: forge.NmxcBrowseResponse.headers:type_name -> forge.NmxcBrowseResponse.HeadersEntry - 988, // 874: forge.NVLinkPartition.id:type_name -> common.NVLinkPartitionId - 976, // 875: forge.NVLinkPartition.domain_uuid:type_name -> common.NVLinkDomainId - 959, // 876: forge.NVLinkPartition.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 752, // 877: forge.NVLinkPartitionList.partitions:type_name -> forge.NVLinkPartition - 966, // 878: forge.NVLinkPartitionQuery.id:type_name -> common.UUID - 754, // 879: forge.NVLinkPartitionQuery.search_config:type_name -> forge.NVLinkPartitionSearchConfig - 988, // 880: forge.NVLinkPartitionsByIdsRequest.partition_ids:type_name -> common.NVLinkPartitionId - 988, // 881: forge.NVLinkPartitionIdList.partition_ids:type_name -> common.NVLinkPartitionId - 251, // 882: forge.NVLinkLogicalPartitionConfig.metadata:type_name -> forge.Metadata - 7, // 883: forge.NVLinkLogicalPartitionStatus.state:type_name -> forge.TenantState - 959, // 884: forge.NVLinkLogicalPartition.id:type_name -> common.NVLinkLogicalPartitionId - 760, // 885: forge.NVLinkLogicalPartition.config:type_name -> forge.NVLinkLogicalPartitionConfig - 761, // 886: forge.NVLinkLogicalPartition.status:type_name -> forge.NVLinkLogicalPartitionStatus - 957, // 887: forge.NVLinkLogicalPartition.created:type_name -> google.protobuf.Timestamp - 762, // 888: forge.NVLinkLogicalPartitionList.partitions:type_name -> forge.NVLinkLogicalPartition - 760, // 889: forge.NVLinkLogicalPartitionCreationRequest.config:type_name -> forge.NVLinkLogicalPartitionConfig - 959, // 890: forge.NVLinkLogicalPartitionCreationRequest.id:type_name -> common.NVLinkLogicalPartitionId - 959, // 891: forge.NVLinkLogicalPartitionDeletionRequest.id:type_name -> common.NVLinkLogicalPartitionId - 959, // 892: forge.NVLinkLogicalPartitionsByIdsRequest.partition_ids:type_name -> common.NVLinkLogicalPartitionId - 959, // 893: forge.NVLinkLogicalPartitionIdList.partition_ids:type_name -> common.NVLinkLogicalPartitionId - 959, // 894: forge.NVLinkLogicalPartitionUpdateRequest.id:type_name -> common.NVLinkLogicalPartitionId - 760, // 895: forge.NVLinkLogicalPartitionUpdateRequest.config:type_name -> forge.NVLinkLogicalPartitionConfig - 362, // 896: forge.CreateBmcUserRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 362, // 897: forge.DeleteBmcUserRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 956, // 898: forge.SetFirmwareUpdateTimeWindowRequest.machine_ids:type_name -> common.MachineId - 957, // 899: forge.SetFirmwareUpdateTimeWindowRequest.start_timestamp:type_name -> google.protobuf.Timestamp - 957, // 900: forge.SetFirmwareUpdateTimeWindowRequest.end_timestamp:type_name -> google.protobuf.Timestamp - 780, // 901: forge.ListHostFirmwareResponse.available:type_name -> forge.AvailableHostFirmware - 66, // 902: forge.TrimTableRequest.target:type_name -> forge.TrimTableTarget - 783, // 903: forge.NvlinkNmxcEndpointList.entries:type_name -> forge.NvlinkNmxcEndpoint - 251, // 904: forge.CreateRemediationRequest.metadata:type_name -> forge.Metadata - 989, // 905: forge.CreateRemediationResponse.remediation_id:type_name -> common.RemediationId - 989, // 906: forge.RemediationIdList.remediation_ids:type_name -> common.RemediationId - 790, // 907: forge.RemediationList.remediations:type_name -> forge.Remediation - 989, // 908: forge.Remediation.id:type_name -> common.RemediationId - 251, // 909: forge.Remediation.metadata:type_name -> forge.Metadata - 957, // 910: forge.Remediation.creation_time:type_name -> google.protobuf.Timestamp - 989, // 911: forge.ApproveRemediationRequest.remediation_id:type_name -> common.RemediationId - 989, // 912: forge.RevokeRemediationRequest.remediation_id:type_name -> common.RemediationId - 989, // 913: forge.EnableRemediationRequest.remediation_id:type_name -> common.RemediationId - 989, // 914: forge.DisableRemediationRequest.remediation_id:type_name -> common.RemediationId - 989, // 915: forge.FindAppliedRemediationIdsRequest.remediation_id:type_name -> common.RemediationId - 956, // 916: forge.FindAppliedRemediationIdsRequest.dpu_machine_id:type_name -> common.MachineId - 989, // 917: forge.AppliedRemediationIdList.remediation_ids:type_name -> common.RemediationId - 956, // 918: forge.AppliedRemediationIdList.dpu_machine_ids:type_name -> common.MachineId - 989, // 919: forge.FindAppliedRemediationsRequest.remediation_id:type_name -> common.RemediationId - 956, // 920: forge.FindAppliedRemediationsRequest.dpu_machine_id:type_name -> common.MachineId - 989, // 921: forge.AppliedRemediation.remediation_id:type_name -> common.RemediationId - 956, // 922: forge.AppliedRemediation.dpu_machine_id:type_name -> common.MachineId - 957, // 923: forge.AppliedRemediation.applied_time:type_name -> google.protobuf.Timestamp - 251, // 924: forge.AppliedRemediation.metadata:type_name -> forge.Metadata - 798, // 925: forge.AppliedRemediationList.applied_remediations:type_name -> forge.AppliedRemediation - 956, // 926: forge.GetNextRemediationForMachineRequest.dpu_machine_id:type_name -> common.MachineId - 989, // 927: forge.GetNextRemediationForMachineResponse.remediation_id:type_name -> common.RemediationId - 989, // 928: forge.RemediationAppliedRequest.remediation_id:type_name -> common.RemediationId - 956, // 929: forge.RemediationAppliedRequest.dpu_machine_id:type_name -> common.MachineId - 803, // 930: forge.RemediationAppliedRequest.status:type_name -> forge.RemediationApplicationStatus - 251, // 931: forge.RemediationApplicationStatus.metadata:type_name -> forge.Metadata - 956, // 932: forge.SetPrimaryDpuRequest.host_machine_id:type_name -> common.MachineId - 956, // 933: forge.SetPrimaryDpuRequest.dpu_machine_id:type_name -> common.MachineId - 956, // 934: forge.SetPrimaryInterfaceRequest.host_machine_id:type_name -> common.MachineId - 977, // 935: forge.SetPrimaryInterfaceRequest.interface_id:type_name -> common.MachineInterfaceId - 806, // 936: forge.DpuExtensionServiceCredential.username_password:type_name -> forge.UsernamePassword - 827, // 937: forge.DpuExtensionServiceVersionInfo.observability:type_name -> forge.DpuExtensionServiceObservability - 67, // 938: forge.DpuExtensionService.service_type:type_name -> forge.DpuExtensionServiceType - 809, // 939: forge.DpuExtensionService.latest_version_info:type_name -> forge.DpuExtensionServiceVersionInfo - 67, // 940: forge.CreateDpuExtensionServiceRequest.service_type:type_name -> forge.DpuExtensionServiceType - 808, // 941: forge.CreateDpuExtensionServiceRequest.credential:type_name -> forge.DpuExtensionServiceCredential - 827, // 942: forge.CreateDpuExtensionServiceRequest.observability:type_name -> forge.DpuExtensionServiceObservability - 808, // 943: forge.UpdateDpuExtensionServiceRequest.credential:type_name -> forge.DpuExtensionServiceCredential - 827, // 944: forge.UpdateDpuExtensionServiceRequest.observability:type_name -> forge.DpuExtensionServiceObservability - 67, // 945: forge.DpuExtensionServiceSearchFilter.service_type:type_name -> forge.DpuExtensionServiceType - 810, // 946: forge.DpuExtensionServiceList.services:type_name -> forge.DpuExtensionService - 809, // 947: forge.DpuExtensionServiceVersionInfoList.version_infos:type_name -> forge.DpuExtensionServiceVersionInfo - 823, // 948: forge.FindInstancesByDpuExtensionServiceResponse.instances:type_name -> forge.InstanceDpuExtensionServiceInfo - 824, // 949: forge.DpuExtensionServiceObservabilityConfig.prometheus:type_name -> forge.DpuExtensionServiceObservabilityConfigPrometheus - 825, // 950: forge.DpuExtensionServiceObservabilityConfig.logging:type_name -> forge.DpuExtensionServiceObservabilityConfigLogging - 826, // 951: forge.DpuExtensionServiceObservability.configs:type_name -> forge.DpuExtensionServiceObservabilityConfig - 966, // 952: forge.ScoutStreamApiBoundMessage.flow_uuid:type_name -> common.UUID - 830, // 953: forge.ScoutStreamApiBoundMessage.init:type_name -> forge.ScoutStreamInitRequest - 990, // 954: forge.ScoutStreamApiBoundMessage.mlx_device_lockdown_response:type_name -> mlx_device.MlxDeviceLockdownResponse - 991, // 955: forge.ScoutStreamApiBoundMessage.mlx_device_profile_sync_response:type_name -> mlx_device.MlxDeviceProfileSyncResponse - 992, // 956: forge.ScoutStreamApiBoundMessage.mlx_device_profile_compare_response:type_name -> mlx_device.MlxDeviceProfileCompareResponse - 993, // 957: forge.ScoutStreamApiBoundMessage.mlx_device_info_device_response:type_name -> mlx_device.MlxDeviceInfoDeviceResponse - 994, // 958: forge.ScoutStreamApiBoundMessage.mlx_device_info_report_response:type_name -> mlx_device.MlxDeviceInfoReportResponse - 995, // 959: forge.ScoutStreamApiBoundMessage.mlx_device_registry_list_response:type_name -> mlx_device.MlxDeviceRegistryListResponse - 996, // 960: forge.ScoutStreamApiBoundMessage.mlx_device_registry_show_response:type_name -> mlx_device.MlxDeviceRegistryShowResponse - 997, // 961: forge.ScoutStreamApiBoundMessage.mlx_device_config_query_response:type_name -> mlx_device.MlxDeviceConfigQueryResponse - 998, // 962: forge.ScoutStreamApiBoundMessage.mlx_device_config_set_response:type_name -> mlx_device.MlxDeviceConfigSetResponse - 999, // 963: forge.ScoutStreamApiBoundMessage.mlx_device_config_sync_response:type_name -> mlx_device.MlxDeviceConfigSyncResponse - 1000, // 964: forge.ScoutStreamApiBoundMessage.mlx_device_config_compare_response:type_name -> mlx_device.MlxDeviceConfigCompareResponse - 838, // 965: forge.ScoutStreamApiBoundMessage.scout_stream_agent_ping_response:type_name -> forge.ScoutStreamAgentPingResponse - 966, // 966: forge.ScoutStreamScoutBoundMessage.flow_uuid:type_name -> common.UUID - 1001, // 967: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_lock_request:type_name -> mlx_device.MlxDeviceLockdownLockRequest - 1002, // 968: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_unlock_request:type_name -> mlx_device.MlxDeviceLockdownUnlockRequest - 1003, // 969: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_status_request:type_name -> mlx_device.MlxDeviceLockdownStatusRequest - 1004, // 970: forge.ScoutStreamScoutBoundMessage.mlx_device_profile_sync_request:type_name -> mlx_device.MlxDeviceProfileSyncRequest - 1005, // 971: forge.ScoutStreamScoutBoundMessage.mlx_device_profile_compare_request:type_name -> mlx_device.MlxDeviceProfileCompareRequest - 1006, // 972: forge.ScoutStreamScoutBoundMessage.mlx_device_info_device_request:type_name -> mlx_device.MlxDeviceInfoDeviceRequest - 1007, // 973: forge.ScoutStreamScoutBoundMessage.mlx_device_info_report_request:type_name -> mlx_device.MlxDeviceInfoReportRequest - 1008, // 974: forge.ScoutStreamScoutBoundMessage.mlx_device_registry_list_request:type_name -> mlx_device.MlxDeviceRegistryListRequest - 1009, // 975: forge.ScoutStreamScoutBoundMessage.mlx_device_registry_show_request:type_name -> mlx_device.MlxDeviceRegistryShowRequest - 1010, // 976: forge.ScoutStreamScoutBoundMessage.mlx_device_config_query_request:type_name -> mlx_device.MlxDeviceConfigQueryRequest - 1011, // 977: forge.ScoutStreamScoutBoundMessage.mlx_device_config_set_request:type_name -> mlx_device.MlxDeviceConfigSetRequest - 1012, // 978: forge.ScoutStreamScoutBoundMessage.mlx_device_config_sync_request:type_name -> mlx_device.MlxDeviceConfigSyncRequest - 1013, // 979: forge.ScoutStreamScoutBoundMessage.mlx_device_config_compare_request:type_name -> mlx_device.MlxDeviceConfigCompareRequest - 837, // 980: forge.ScoutStreamScoutBoundMessage.scout_stream_agent_ping_request:type_name -> forge.ScoutStreamAgentPingRequest - 956, // 981: forge.ScoutStreamInitRequest.machine_id:type_name -> common.MachineId - 839, // 982: forge.ScoutStreamShowConnectionsResponse.scout_stream_connections:type_name -> forge.ScoutStreamConnectionInfo - 956, // 983: forge.ScoutStreamDisconnectRequest.machine_id:type_name -> common.MachineId - 956, // 984: forge.ScoutStreamDisconnectResponse.machine_id:type_name -> common.MachineId - 956, // 985: forge.ScoutStreamAdminPingRequest.machine_id:type_name -> common.MachineId - 840, // 986: forge.ScoutStreamAgentPingResponse.error:type_name -> forge.ScoutStreamError - 956, // 987: forge.ScoutStreamConnectionInfo.machine_id:type_name -> common.MachineId - 69, // 988: forge.ScoutStreamError.status:type_name -> forge.ScoutStreamErrorStatus - 982, // 989: forge.RoutingProfile.route_target_imports:type_name -> common.RouteTarget - 982, // 990: forge.RoutingProfile.route_targets_on_exports:type_name -> common.RouteTarget - 841, // 991: forge.RoutingProfile.accepted_leaks_from_underlay:type_name -> forge.PrefixFilterPolicyEntry - 841, // 992: forge.RoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry - 969, // 993: forge.DomainLegacy.id:type_name -> common.DomainId - 957, // 994: forge.DomainLegacy.created:type_name -> google.protobuf.Timestamp - 957, // 995: forge.DomainLegacy.updated:type_name -> google.protobuf.Timestamp - 957, // 996: forge.DomainLegacy.deleted:type_name -> google.protobuf.Timestamp - 843, // 997: forge.DomainListLegacy.domains:type_name -> forge.DomainLegacy - 969, // 998: forge.DomainDeletionLegacy.id:type_name -> common.DomainId - 969, // 999: forge.DomainSearchQueryLegacy.id:type_name -> common.DomainId - 1014, // 1000: forge.PxeDomain.new_domain:type_name -> dns.Domain - 843, // 1001: forge.PxeDomain.legacy_domain:type_name -> forge.DomainLegacy - 956, // 1002: forge.MachinePositionQuery.machine_ids:type_name -> common.MachineId - 851, // 1003: forge.MachinePositionInfoList.machine_position_info:type_name -> forge.MachinePositionInfo - 956, // 1004: forge.MachinePositionInfo.machine_id:type_name -> common.MachineId - 967, // 1005: forge.MachinePositionInfo.switch_id:type_name -> common.SwitchId - 964, // 1006: forge.MachinePositionInfo.power_shelf_id:type_name -> common.PowerShelfId - 956, // 1007: forge.ModifyDPFStateRequest.machine_id:type_name -> common.MachineId - 955, // 1008: forge.DPFStateResponse.dpf_states:type_name -> forge.DPFStateResponse.DPFState - 956, // 1009: forge.GetDPFStateRequest.machine_ids:type_name -> common.MachineId - 956, // 1010: forge.GetDPFHostSnapshotRequest.host_machine_id:type_name -> common.MachineId - 858, // 1011: forge.DPFServiceVersionsResponse.services:type_name -> forge.DPFServiceVersion - 70, // 1012: forge.ComponentResult.status:type_name -> forge.ComponentManagerStatusCode - 967, // 1013: forge.SwitchIdList.ids:type_name -> common.SwitchId - 964, // 1014: forge.PowerShelfIdList.ids:type_name -> common.PowerShelfId - 1015, // 1015: forge.GetComponentInventoryRequest.machine_ids:type_name -> common.MachineIdList - 861, // 1016: forge.GetComponentInventoryRequest.switch_ids:type_name -> forge.SwitchIdList - 862, // 1017: forge.GetComponentInventoryRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList - 860, // 1018: forge.ComponentInventoryEntry.result:type_name -> forge.ComponentResult - 1016, // 1019: forge.ComponentInventoryEntry.report:type_name -> site_explorer.EndpointExplorationReport - 864, // 1020: forge.GetComponentInventoryResponse.entries:type_name -> forge.ComponentInventoryEntry - 1015, // 1021: forge.ComponentPowerControlRequest.machine_ids:type_name -> common.MachineIdList - 861, // 1022: forge.ComponentPowerControlRequest.switch_ids:type_name -> forge.SwitchIdList - 862, // 1023: forge.ComponentPowerControlRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList - 1017, // 1024: forge.ComponentPowerControlRequest.action:type_name -> common.SystemPowerControl - 860, // 1025: forge.ComponentPowerControlResponse.results:type_name -> forge.ComponentResult - 860, // 1026: forge.FirmwareUpdateStatus.result:type_name -> forge.ComponentResult - 71, // 1027: forge.FirmwareUpdateStatus.state:type_name -> forge.FirmwareUpdateState - 957, // 1028: forge.FirmwareUpdateStatus.updated_at:type_name -> google.protobuf.Timestamp - 1015, // 1029: forge.UpdateComputeTrayFirmwareTarget.machine_ids:type_name -> common.MachineIdList - 74, // 1030: forge.UpdateComputeTrayFirmwareTarget.components:type_name -> forge.ComputeTrayComponent - 861, // 1031: forge.UpdateSwitchFirmwareTarget.switch_ids:type_name -> forge.SwitchIdList - 72, // 1032: forge.UpdateSwitchFirmwareTarget.components:type_name -> forge.NvSwitchComponent - 862, // 1033: forge.UpdatePowerShelfFirmwareTarget.power_shelf_ids:type_name -> forge.PowerShelfIdList - 73, // 1034: forge.UpdatePowerShelfFirmwareTarget.components:type_name -> forge.PowerShelfComponent - 725, // 1035: forge.UpdateFirmwareObjectTarget.rack_ids:type_name -> forge.RackIdList - 869, // 1036: forge.UpdateComponentFirmwareRequest.compute_trays:type_name -> forge.UpdateComputeTrayFirmwareTarget - 870, // 1037: forge.UpdateComponentFirmwareRequest.switches:type_name -> forge.UpdateSwitchFirmwareTarget - 871, // 1038: forge.UpdateComponentFirmwareRequest.power_shelves:type_name -> forge.UpdatePowerShelfFirmwareTarget - 872, // 1039: forge.UpdateComponentFirmwareRequest.racks:type_name -> forge.UpdateFirmwareObjectTarget - 860, // 1040: forge.UpdateComponentFirmwareResponse.results:type_name -> forge.ComponentResult - 1015, // 1041: forge.GetComponentFirmwareStatusRequest.machine_ids:type_name -> common.MachineIdList - 861, // 1042: forge.GetComponentFirmwareStatusRequest.switch_ids:type_name -> forge.SwitchIdList - 862, // 1043: forge.GetComponentFirmwareStatusRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList - 725, // 1044: forge.GetComponentFirmwareStatusRequest.rack_ids:type_name -> forge.RackIdList - 868, // 1045: forge.GetComponentFirmwareStatusResponse.statuses:type_name -> forge.FirmwareUpdateStatus - 1015, // 1046: forge.ListComponentFirmwareVersionsRequest.machine_ids:type_name -> common.MachineIdList - 861, // 1047: forge.ListComponentFirmwareVersionsRequest.switch_ids:type_name -> forge.SwitchIdList - 862, // 1048: forge.ListComponentFirmwareVersionsRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList - 725, // 1049: forge.ListComponentFirmwareVersionsRequest.rack_ids:type_name -> forge.RackIdList - 74, // 1050: forge.ComputeTrayFirmwareVersions.component:type_name -> forge.ComputeTrayComponent - 860, // 1051: forge.DeviceFirmwareVersions.result:type_name -> forge.ComponentResult - 878, // 1052: forge.DeviceFirmwareVersions.compute_fw_versions:type_name -> forge.ComputeTrayFirmwareVersions - 879, // 1053: forge.ListComponentFirmwareVersionsResponse.devices:type_name -> forge.DeviceFirmwareVersions - 251, // 1054: forge.SpxPartitionCreationRequest.metadata:type_name -> forge.Metadata - 975, // 1055: forge.SpxPartitionCreationRequest.id:type_name -> common.SpxPartitionId - 251, // 1056: forge.SpxPartition.metadata:type_name -> forge.Metadata - 975, // 1057: forge.SpxPartition.id:type_name -> common.SpxPartitionId - 975, // 1058: forge.SpxPartitionIdList.spx_partition_ids:type_name -> common.SpxPartitionId - 975, // 1059: forge.SpxPartitionDeletionRequest.id:type_name -> common.SpxPartitionId - 250, // 1060: forge.SpxPartitionSearchFilter.label:type_name -> forge.Label - 882, // 1061: forge.SpxPartitionList.spx_partitions:type_name -> forge.SpxPartition - 975, // 1062: forge.SpxPartitionsByIdsRequest.spx_partition_ids:type_name -> common.SpxPartitionId - 967, // 1063: forge.AdminForceDeleteSwitchRequest.switch_id:type_name -> common.SwitchId - 964, // 1064: forge.AdminForceDeletePowerShelfRequest.power_shelf_id:type_name -> common.PowerShelfId - 974, // 1065: forge.OperatingSystem.id:type_name -> common.OperatingSystemId - 75, // 1066: forge.OperatingSystem.type:type_name -> forge.OperatingSystemType - 7, // 1067: forge.OperatingSystem.status:type_name -> forge.TenantState - 973, // 1068: forge.OperatingSystem.ipxe_template_id:type_name -> common.IpxeTemplateId - 258, // 1069: forge.OperatingSystem.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameter - 259, // 1070: forge.OperatingSystem.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifact - 974, // 1071: forge.CreateOperatingSystemRequest.id:type_name -> common.OperatingSystemId - 973, // 1072: forge.CreateOperatingSystemRequest.ipxe_template_id:type_name -> common.IpxeTemplateId - 258, // 1073: forge.CreateOperatingSystemRequest.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameter - 259, // 1074: forge.CreateOperatingSystemRequest.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifact - 258, // 1075: forge.IpxeTemplateParameters.items:type_name -> forge.IpxeTemplateParameter - 259, // 1076: forge.IpxeTemplateArtifacts.items:type_name -> forge.IpxeTemplateArtifact - 974, // 1077: forge.UpdateOperatingSystemRequest.id:type_name -> common.OperatingSystemId - 973, // 1078: forge.UpdateOperatingSystemRequest.ipxe_template_id:type_name -> common.IpxeTemplateId - 895, // 1079: forge.UpdateOperatingSystemRequest.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameters - 896, // 1080: forge.UpdateOperatingSystemRequest.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifacts - 974, // 1081: forge.DeleteOperatingSystemRequest.id:type_name -> common.OperatingSystemId - 974, // 1082: forge.OperatingSystemIdList.ids:type_name -> common.OperatingSystemId - 974, // 1083: forge.OperatingSystemsByIdsRequest.ids:type_name -> common.OperatingSystemId - 893, // 1084: forge.OperatingSystemList.operating_systems:type_name -> forge.OperatingSystem - 974, // 1085: forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest.id:type_name -> common.OperatingSystemId - 259, // 1086: forge.IpxeTemplateArtifactList.artifacts:type_name -> forge.IpxeTemplateArtifact - 974, // 1087: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest.id:type_name -> common.OperatingSystemId - 906, // 1088: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest.updates:type_name -> forge.IpxeTemplateArtifactUpdateRequest - 956, // 1089: forge.GetMachineBootInterfacesRequest.machine_id:type_name -> common.MachineId - 957, // 1090: forge.RetainedBootInterface.recorded_at:type_name -> google.protobuf.Timestamp - 956, // 1091: forge.GetMachineBootInterfacesResponse.machine_id:type_name -> common.MachineId - 912, // 1092: forge.GetMachineBootInterfacesResponse.machine_interfaces:type_name -> forge.MachineInterfaceBootInterface - 913, // 1093: forge.GetMachineBootInterfacesResponse.predicted_interfaces:type_name -> forge.PredictedBootInterface - 914, // 1094: forge.GetMachineBootInterfacesResponse.explored_endpoints:type_name -> forge.ExploredBootInterface - 915, // 1095: forge.GetMachineBootInterfacesResponse.retained_interfaces:type_name -> forge.RetainedBootInterface - 920, // 1096: forge.DNSMessage.DNSResponse.rrs:type_name -> forge.DNSMessage.DNSResponse.DNSRR - 216, // 1097: forge.StateHistories.HistoriesEntry.value:type_name -> forge.StateHistoryRecords - 303, // 1098: forge.MachineStateHistories.HistoriesEntry.value:type_name -> forge.MachineStateHistoryRecords - 306, // 1099: forge.HealthHistories.HistoriesEntry.value:type_name -> forge.HealthHistoryRecords - 908, // 1100: forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry.value:type_name -> forge.HostRepresentorInterceptBridging - 78, // 1101: forge.MachineCredentialsUpdateRequest.Credentials.credential_purpose:type_name -> forge.MachineCredentialsUpdateRequest.CredentialPurpose - 945, // 1102: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.pair:type_name -> forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.KeyValuePair - 983, // 1103: forge.ForgeAgentControlResponse.MachineValidation.validation_id:type_name -> common.MachineValidationId - 936, // 1104: forge.ForgeAgentControlResponse.MachineValidation.filter:type_name -> forge.ForgeAgentControlResponse.MachineValidationFilter - 980, // 1105: forge.ForgeAgentControlResponse.MachineValidationFilter.contexts:type_name -> common.StringList - 938, // 1106: forge.ForgeAgentControlResponse.MlxAction.device_actions:type_name -> forge.ForgeAgentControlResponse.MlxDeviceAction - 939, // 1107: forge.ForgeAgentControlResponse.MlxDeviceAction.noop:type_name -> forge.ForgeAgentControlResponse.MlxDeviceNoop - 940, // 1108: forge.ForgeAgentControlResponse.MlxDeviceAction.lock:type_name -> forge.ForgeAgentControlResponse.MlxDeviceLock - 941, // 1109: forge.ForgeAgentControlResponse.MlxDeviceAction.unlock:type_name -> forge.ForgeAgentControlResponse.MlxDeviceUnlock - 942, // 1110: forge.ForgeAgentControlResponse.MlxDeviceAction.apply_profile:type_name -> forge.ForgeAgentControlResponse.MlxDeviceApplyProfile - 943, // 1111: forge.ForgeAgentControlResponse.MlxDeviceAction.apply_firmware:type_name -> forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware - 1018, // 1112: forge.ForgeAgentControlResponse.MlxDeviceApplyProfile.serialized_profile:type_name -> mlx_device.SerializableMlxConfigProfile - 1019, // 1113: forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware.profile:type_name -> mlx_device.FirmwareFlasherProfile - 1020, // 1114: forge.ForgeAgentControlResponse.FirmwareUpgrade.task:type_name -> scout_firmware_upgrade.ScoutFirmwareUpgradeTask - 80, // 1115: forge.MachineCleanupInfo.CleanupStepResult.result:type_name -> forge.MachineCleanupInfo.CleanupResult - 956, // 1116: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.id:type_name -> common.MachineId - 957, // 1117: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.requested_at:type_name -> google.protobuf.Timestamp - 957, // 1118: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.initiated_at:type_name -> google.protobuf.Timestamp - 956, // 1119: forge.HostReprovisioningListResponse.HostReprovisioningListItem.id:type_name -> common.MachineId - 957, // 1120: forge.HostReprovisioningListResponse.HostReprovisioningListItem.requested_at:type_name -> google.protobuf.Timestamp - 957, // 1121: forge.HostReprovisioningListResponse.HostReprovisioningListItem.initiated_at:type_name -> google.protobuf.Timestamp - 956, // 1122: forge.DPFStateResponse.DPFState.machine_id:type_name -> common.MachineId - 130, // 1123: forge.Forge.Version:input_type -> forge.VersionRequest - 1021, // 1124: forge.Forge.CreateDomain:input_type -> dns.CreateDomainRequest - 1022, // 1125: forge.Forge.UpdateDomain:input_type -> dns.UpdateDomainRequest - 1023, // 1126: forge.Forge.DeleteDomain:input_type -> dns.DomainDeletionRequest - 1024, // 1127: forge.Forge.FindDomain:input_type -> dns.DomainSearchQuery - 843, // 1128: forge.Forge.CreateDomainLegacy:input_type -> forge.DomainLegacy - 843, // 1129: forge.Forge.UpdateDomainLegacy:input_type -> forge.DomainLegacy - 845, // 1130: forge.Forge.DeleteDomainLegacy:input_type -> forge.DomainDeletionLegacy - 847, // 1131: forge.Forge.FindDomainLegacy:input_type -> forge.DomainSearchQueryLegacy - 149, // 1132: forge.Forge.CreateVpc:input_type -> forge.VpcCreationRequest - 150, // 1133: forge.Forge.UpdateVpc:input_type -> forge.VpcUpdateRequest - 152, // 1134: forge.Forge.UpdateVpcVirtualization:input_type -> forge.VpcUpdateVirtualizationRequest - 154, // 1135: forge.Forge.DeleteVpc:input_type -> forge.VpcDeletionRequest - 142, // 1136: forge.Forge.FindVpcIds:input_type -> forge.VpcSearchFilter - 144, // 1137: forge.Forge.FindVpcsByIds:input_type -> forge.VpcsByIdsRequest - 881, // 1138: forge.Forge.CreateSpxPartition:input_type -> forge.SpxPartitionCreationRequest - 884, // 1139: forge.Forge.DeleteSpxPartition:input_type -> forge.SpxPartitionDeletionRequest - 886, // 1140: forge.Forge.FindSpxPartitionIds:input_type -> forge.SpxPartitionSearchFilter - 888, // 1141: forge.Forge.FindSpxPartitionsByIds:input_type -> forge.SpxPartitionsByIdsRequest - 160, // 1142: forge.Forge.CreateVpcPrefix:input_type -> forge.VpcPrefixCreationRequest - 161, // 1143: forge.Forge.SearchVpcPrefixes:input_type -> forge.VpcPrefixSearchQuery - 162, // 1144: forge.Forge.GetVpcPrefixes:input_type -> forge.VpcPrefixGetRequest - 165, // 1145: forge.Forge.UpdateVpcPrefix:input_type -> forge.VpcPrefixUpdateRequest - 166, // 1146: forge.Forge.DeleteVpcPrefix:input_type -> forge.VpcPrefixDeletionRequest - 172, // 1147: forge.Forge.CreateVpcPeering:input_type -> forge.VpcPeeringCreationRequest - 173, // 1148: forge.Forge.FindVpcPeeringIds:input_type -> forge.VpcPeeringSearchFilter - 174, // 1149: forge.Forge.FindVpcPeeringsByIds:input_type -> forge.VpcPeeringsByIdsRequest - 175, // 1150: forge.Forge.DeleteVpcPeering:input_type -> forge.VpcPeeringDeletionRequest - 242, // 1151: forge.Forge.FindNetworkSegmentIds:input_type -> forge.NetworkSegmentSearchFilter - 244, // 1152: forge.Forge.FindNetworkSegmentsByIds:input_type -> forge.NetworkSegmentsByIdsRequest - 236, // 1153: forge.Forge.CreateNetworkSegment:input_type -> forge.NetworkSegmentCreationRequest - 238, // 1154: forge.Forge.AttachNetworkSegmentToVpc:input_type -> forge.AttachNetworkSegmentToVpcRequest - 237, // 1155: forge.Forge.DeleteNetworkSegment:input_type -> forge.NetworkSegmentDeletionRequest - 141, // 1156: forge.Forge.NetworkSegmentsForVpc:input_type -> forge.VpcSearchQuery - 185, // 1157: forge.Forge.FindIBPartitionIds:input_type -> forge.IBPartitionSearchFilter - 186, // 1158: forge.Forge.FindIBPartitionsByIds:input_type -> forge.IBPartitionsByIdsRequest - 181, // 1159: forge.Forge.CreateIBPartition:input_type -> forge.IBPartitionCreationRequest - 182, // 1160: forge.Forge.UpdateIBPartition:input_type -> forge.IBPartitionUpdateRequest - 183, // 1161: forge.Forge.DeleteIBPartition:input_type -> forge.IBPartitionDeletionRequest - 145, // 1162: forge.Forge.IBPartitionsForTenant:input_type -> forge.TenantSearchQuery - 197, // 1163: forge.Forge.FindPowerShelves:input_type -> forge.PowerShelfQuery - 198, // 1164: forge.Forge.FindPowerShelfIds:input_type -> forge.PowerShelfSearchFilter - 199, // 1165: forge.Forge.FindPowerShelvesByIds:input_type -> forge.PowerShelvesByIdsRequest - 193, // 1166: forge.Forge.DeletePowerShelf:input_type -> forge.PowerShelfDeletionRequest - 891, // 1167: forge.Forge.AdminForceDeletePowerShelf:input_type -> forge.AdminForceDeletePowerShelfRequest - 195, // 1168: forge.Forge.SetPowerShelfMaintenance:input_type -> forge.PowerShelfMaintenanceRequest - 219, // 1169: forge.Forge.FindSwitches:input_type -> forge.SwitchQuery - 220, // 1170: forge.Forge.FindSwitchIds:input_type -> forge.SwitchSearchFilter - 221, // 1171: forge.Forge.FindSwitchesByIds:input_type -> forge.SwitchesByIdsRequest - 213, // 1172: forge.Forge.DeleteSwitch:input_type -> forge.SwitchDeletionRequest - 889, // 1173: forge.Forge.AdminForceDeleteSwitch:input_type -> forge.AdminForceDeleteSwitchRequest - 230, // 1174: forge.Forge.FindIBFabricIds:input_type -> forge.IBFabricSearchFilter - 255, // 1175: forge.Forge.AllocateInstance:input_type -> forge.InstanceAllocationRequest - 256, // 1176: forge.Forge.AllocateInstances:input_type -> forge.BatchInstanceAllocationRequest - 297, // 1177: forge.Forge.ReleaseInstance:input_type -> forge.InstanceReleaseRequest - 273, // 1178: forge.Forge.UpdateInstanceOperatingSystem:input_type -> forge.InstanceOperatingSystemUpdateRequest - 274, // 1179: forge.Forge.UpdateInstanceConfig:input_type -> forge.InstanceConfigUpdateRequest - 252, // 1180: forge.Forge.FindInstanceIds:input_type -> forge.InstanceSearchFilter - 254, // 1181: forge.Forge.FindInstancesByIds:input_type -> forge.InstancesByIdsRequest - 956, // 1182: forge.Forge.FindInstanceByMachineID:input_type -> common.MachineId - 368, // 1183: forge.Forge.GetManagedHostNetworkConfig:input_type -> forge.ManagedHostNetworkConfigRequest - 433, // 1184: forge.Forge.RecordDpuNetworkStatus:input_type -> forge.DpuNetworkStatus - 956, // 1185: forge.Forge.ListMachineHealthReports:input_type -> common.MachineId - 439, // 1186: forge.Forge.InsertMachineHealthReport:input_type -> forge.InsertMachineHealthReportRequest - 450, // 1187: forge.Forge.RemoveMachineHealthReport:input_type -> forge.RemoveMachineHealthReportRequest - 442, // 1188: forge.Forge.ListRackHealthReports:input_type -> forge.ListRackHealthReportsRequest - 440, // 1189: forge.Forge.InsertRackHealthReport:input_type -> forge.InsertRackHealthReportRequest - 441, // 1190: forge.Forge.RemoveRackHealthReport:input_type -> forge.RemoveRackHealthReportRequest - 445, // 1191: forge.Forge.ListSwitchHealthReports:input_type -> forge.ListSwitchHealthReportsRequest - 443, // 1192: forge.Forge.InsertSwitchHealthReport:input_type -> forge.InsertSwitchHealthReportRequest - 444, // 1193: forge.Forge.RemoveSwitchHealthReport:input_type -> forge.RemoveSwitchHealthReportRequest - 448, // 1194: forge.Forge.ListPowerShelfHealthReports:input_type -> forge.ListPowerShelfHealthReportsRequest - 446, // 1195: forge.Forge.InsertPowerShelfHealthReport:input_type -> forge.InsertPowerShelfHealthReportRequest - 447, // 1196: forge.Forge.RemovePowerShelfHealthReport:input_type -> forge.RemovePowerShelfHealthReportRequest - 451, // 1197: forge.Forge.ListNVLinkDomainHealthReports:input_type -> forge.ListNVLinkDomainHealthReportsRequest - 452, // 1198: forge.Forge.InsertNVLinkDomainHealthReport:input_type -> forge.InsertNVLinkDomainHealthReportRequest - 453, // 1199: forge.Forge.RemoveNVLinkDomainHealthReport:input_type -> forge.RemoveNVLinkDomainHealthReportRequest - 956, // 1200: forge.Forge.ListHealthReportOverrides:input_type -> common.MachineId - 439, // 1201: forge.Forge.InsertHealthReportOverride:input_type -> forge.InsertMachineHealthReportRequest - 450, // 1202: forge.Forge.RemoveHealthReportOverride:input_type -> forge.RemoveMachineHealthReportRequest - 387, // 1203: forge.Forge.DpuAgentUpgradeCheck:input_type -> forge.DpuAgentUpgradeCheckRequest - 389, // 1204: forge.Forge.DpuAgentUpgradePolicyAction:input_type -> forge.DpuAgentUpgradePolicyRequest - 1025, // 1205: forge.Forge.LookupRecord:input_type -> dns.DnsResourceRecordLookupRequest - 1026, // 1206: forge.Forge.GetAllDomains:input_type -> dns.GetAllDomainsRequest - 1027, // 1207: forge.Forge.GetAllDomainMetadata:input_type -> dns.DomainMetadataRequest - 247, // 1208: forge.Forge.InvokeInstancePower:input_type -> forge.InstancePowerRequest - 414, // 1209: forge.Forge.ForgeAgentControl:input_type -> forge.ForgeAgentControlRequest - 416, // 1210: forge.Forge.DiscoverMachine:input_type -> forge.MachineDiscoveryInfo - 420, // 1211: forge.Forge.RenewMachineCertificate:input_type -> forge.MachineCertificateRenewRequest - 417, // 1212: forge.Forge.DiscoveryCompleted:input_type -> forge.MachineDiscoveryCompletedRequest - 418, // 1213: forge.Forge.CleanupMachineCompleted:input_type -> forge.MachineCleanupInfo - 425, // 1214: forge.Forge.ReportForgeScoutError:input_type -> forge.ForgeScoutErrorReport - 344, // 1215: forge.Forge.DiscoverDhcp:input_type -> forge.DhcpDiscovery - 345, // 1216: forge.Forge.ExpireDhcpLease:input_type -> forge.ExpireDhcpLeaseRequest - 316, // 1217: forge.Forge.AssignStaticAddress:input_type -> forge.AssignStaticAddressRequest - 318, // 1218: forge.Forge.RemoveStaticAddress:input_type -> forge.RemoveStaticAddressRequest - 320, // 1219: forge.Forge.FindInterfaceAddresses:input_type -> forge.FindInterfaceAddressesRequest - 315, // 1220: forge.Forge.FindInterfaces:input_type -> forge.InterfaceSearchQuery - 314, // 1221: forge.Forge.DeleteInterface:input_type -> forge.InterfaceDeleteQuery - 489, // 1222: forge.Forge.FindIpAddress:input_type -> forge.FindIpAddressRequest - 300, // 1223: forge.Forge.FindMachineIds:input_type -> forge.MachineSearchConfig - 299, // 1224: forge.Forge.FindMachinesByIds:input_type -> forge.MachinesByIdsRequest - 301, // 1225: forge.Forge.FindMachineStateHistories:input_type -> forge.MachineStateHistoriesRequest - 304, // 1226: forge.Forge.FindMachineHealthHistories:input_type -> forge.MachineHealthHistoriesRequest - 196, // 1227: forge.Forge.FindPowerShelfStateHistories:input_type -> forge.PowerShelfStateHistoriesRequest - 730, // 1228: forge.Forge.FindRackStateHistories:input_type -> forge.RackStateHistoriesRequest - 217, // 1229: forge.Forge.FindSwitchStateHistories:input_type -> forge.SwitchStateHistoriesRequest - 240, // 1230: forge.Forge.FindNetworkSegmentStateHistories:input_type -> forge.NetworkSegmentStateHistoriesRequest - 168, // 1231: forge.Forge.FindVpcPrefixStateHistories:input_type -> forge.VpcPrefixStateHistoriesRequest - 309, // 1232: forge.Forge.FindTenantOrganizationIds:input_type -> forge.TenantSearchFilter - 308, // 1233: forge.Forge.FindTenantsByOrganizationIds:input_type -> forge.TenantByOrganizationIdsRequest - 1015, // 1234: forge.Forge.FindConnectedDevicesByDpuMachineIds:input_type -> common.MachineIdList - 514, // 1235: forge.Forge.FindMachineIdsByBmcIps:input_type -> forge.BmcIpList - 515, // 1236: forge.Forge.FindMacAddressByBmcIp:input_type -> forge.BmcIp - 493, // 1237: forge.Forge.FindBmcIps:input_type -> forge.FindBmcIpsRequest - 491, // 1238: forge.Forge.IdentifyUuid:input_type -> forge.IdentifyUuidRequest - 494, // 1239: forge.Forge.IdentifyMac:input_type -> forge.IdentifyMacRequest - 496, // 1240: forge.Forge.IdentifySerial:input_type -> forge.IdentifySerialRequest - 410, // 1241: forge.Forge.GetBMCMetaData:input_type -> forge.BMCMetaDataGetRequest - 412, // 1242: forge.Forge.UpdateMachineCredentials:input_type -> forge.MachineCredentialsUpdateRequest - 427, // 1243: forge.Forge.GetPxeInstructions:input_type -> forge.PxeInstructionRequest - 431, // 1244: forge.Forge.GetCloudInitInstructions:input_type -> forge.CloudInitInstructionsRequest - 133, // 1245: forge.Forge.Echo:input_type -> forge.EchoRequest - 458, // 1246: forge.Forge.CreateTenant:input_type -> forge.CreateTenantRequest - 462, // 1247: forge.Forge.FindTenant:input_type -> forge.FindTenantRequest - 460, // 1248: forge.Forge.UpdateTenant:input_type -> forge.UpdateTenantRequest - 468, // 1249: forge.Forge.CreateTenantKeyset:input_type -> forge.CreateTenantKeysetRequest - 475, // 1250: forge.Forge.FindTenantKeysetIds:input_type -> forge.TenantKeysetSearchFilter - 477, // 1251: forge.Forge.FindTenantKeysetsByIds:input_type -> forge.TenantKeysetsByIdsRequest - 471, // 1252: forge.Forge.UpdateTenantKeyset:input_type -> forge.UpdateTenantKeysetRequest - 473, // 1253: forge.Forge.DeleteTenantKeyset:input_type -> forge.DeleteTenantKeysetRequest - 478, // 1254: forge.Forge.ValidateTenantPublicKey:input_type -> forge.ValidateTenantPublicKeyRequest - 351, // 1255: forge.Forge.GetBmcCredentials:input_type -> forge.GetBmcCredentialsRequest - 352, // 1256: forge.Forge.GetSwitchNvosCredentials:input_type -> forge.GetSwitchNvosCredentialsRequest - 385, // 1257: forge.Forge.GetAllManagedHostNetworkStatus:input_type -> forge.ManagedHostNetworkStatusRequest - 355, // 1258: forge.Forge.GetSiteExplorationReport:input_type -> forge.GetSiteExplorationRequest - 1028, // 1259: forge.Forge.GetSiteExplorerLastRun:input_type -> google.protobuf.Empty - 356, // 1260: forge.Forge.ClearSiteExplorationError:input_type -> forge.ClearSiteExplorationErrorRequest - 362, // 1261: forge.Forge.IsBmcInManagedHost:input_type -> forge.BmcEndpointRequest - 362, // 1262: forge.Forge.BmcCredentialStatus:input_type -> forge.BmcEndpointRequest - 362, // 1263: forge.Forge.Explore:input_type -> forge.BmcEndpointRequest - 357, // 1264: forge.Forge.ReExploreEndpoint:input_type -> forge.ReExploreEndpointRequest - 358, // 1265: forge.Forge.RefreshEndpointReport:input_type -> forge.RefreshEndpointReportRequest - 359, // 1266: forge.Forge.DeleteExploredEndpoint:input_type -> forge.DeleteExploredEndpointRequest - 360, // 1267: forge.Forge.PauseExploredEndpointRemediation:input_type -> forge.PauseExploredEndpointRemediationRequest - 1029, // 1268: forge.Forge.FindExploredEndpointIds:input_type -> site_explorer.ExploredEndpointSearchFilter - 1030, // 1269: forge.Forge.FindExploredEndpointsByIds:input_type -> site_explorer.ExploredEndpointsByIdsRequest - 1031, // 1270: forge.Forge.FindExploredManagedHostIds:input_type -> site_explorer.ExploredManagedHostSearchFilter - 1032, // 1271: forge.Forge.FindExploredManagedHostsByIds:input_type -> site_explorer.ExploredManagedHostsByIdsRequest - 1033, // 1272: forge.Forge.FindExploredMlxDeviceHostIds:input_type -> site_explorer.ExploredMlxDeviceHostSearchFilter - 1034, // 1273: forge.Forge.FindExploredMlxDevicesByIds:input_type -> site_explorer.ExploredMlxDevicesByIdsRequest - 366, // 1274: forge.Forge.UpdateMachineHardwareInfo:input_type -> forge.UpdateMachineHardwareInfoRequest - 391, // 1275: forge.Forge.AdminForceDeleteMachine:input_type -> forge.AdminForceDeleteMachineRequest - 480, // 1276: forge.Forge.AdminListResourcePools:input_type -> forge.ListResourcePoolsRequest - 483, // 1277: forge.Forge.AdminGrowResourcePool:input_type -> forge.GrowResourcePoolRequest - 328, // 1278: forge.Forge.UpdateMachineMetadata:input_type -> forge.MachineMetadataUpdateRequest - 329, // 1279: forge.Forge.UpdateRackMetadata:input_type -> forge.RackMetadataUpdateRequest - 330, // 1280: forge.Forge.UpdateSwitchMetadata:input_type -> forge.SwitchMetadataUpdateRequest - 331, // 1281: forge.Forge.UpdatePowerShelfMetadata:input_type -> forge.PowerShelfMetadataUpdateRequest - 744, // 1282: forge.Forge.UpdateMachineNvLinkInfo:input_type -> forge.UpdateMachineNvLinkInfoRequest - 487, // 1283: forge.Forge.SetMaintenance:input_type -> forge.MaintenanceRequest - 488, // 1284: forge.Forge.SetDynamicConfig:input_type -> forge.SetDynamicConfigRequest - 498, // 1285: forge.Forge.TriggerDpuReprovisioning:input_type -> forge.DpuReprovisioningRequest - 499, // 1286: forge.Forge.ListDpuWaitingForReprovisioning:input_type -> forge.DpuReprovisioningListRequest - 501, // 1287: forge.Forge.TriggerHostReprovisioning:input_type -> forge.HostReprovisioningRequest - 502, // 1288: forge.Forge.ListHostsWaitingForReprovisioning:input_type -> forge.HostReprovisioningListRequest - 956, // 1289: forge.Forge.MarkManualFirmwareUpgradeComplete:input_type -> common.MachineId - 553, // 1290: forge.Forge.ReportScoutFirmwareUpgradeStatus:input_type -> forge.ScoutFirmwareUpgradeStatusRequest - 508, // 1291: forge.Forge.GetDpuInfoList:input_type -> forge.GetDpuInfoListRequest - 977, // 1292: forge.Forge.GetMachineBootOverride:input_type -> common.MachineInterfaceId - 511, // 1293: forge.Forge.SetMachineBootOverride:input_type -> forge.MachineBootOverride - 977, // 1294: forge.Forge.ClearMachineBootOverride:input_type -> common.MachineInterfaceId - 911, // 1295: forge.Forge.GetMachineBootInterfaces:input_type -> forge.GetMachineBootInterfacesRequest - 520, // 1296: forge.Forge.GetNetworkTopology:input_type -> forge.NetworkTopologyRequest - 521, // 1297: forge.Forge.FindNetworkDevicesByDeviceIds:input_type -> forge.NetworkDeviceIdList - 126, // 1298: forge.Forge.CreateCredential:input_type -> forge.CredentialCreationRequest - 127, // 1299: forge.Forge.DeleteCredential:input_type -> forge.CredentialDeletionRequest - 1028, // 1300: forge.Forge.GetRouteServers:input_type -> google.protobuf.Empty - 523, // 1301: forge.Forge.AddRouteServers:input_type -> forge.RouteServers - 523, // 1302: forge.Forge.RemoveRouteServers:input_type -> forge.RouteServers - 523, // 1303: forge.Forge.ReplaceRouteServers:input_type -> forge.RouteServers - 332, // 1304: forge.Forge.UpdateAgentReportedInventory:input_type -> forge.DpuAgentInventoryReport - 294, // 1305: forge.Forge.UpdateInstancePhoneHomeLastContact:input_type -> forge.InstancePhoneHomeLastContactRequest - 526, // 1306: forge.Forge.SetHostUefiPassword:input_type -> forge.SetHostUefiPasswordRequest - 528, // 1307: forge.Forge.ClearHostUefiPassword:input_type -> forge.ClearHostUefiPasswordRequest - 541, // 1308: forge.Forge.AddExpectedMachine:input_type -> forge.ExpectedMachine - 542, // 1309: forge.Forge.DeleteExpectedMachine:input_type -> forge.ExpectedMachineRequest - 541, // 1310: forge.Forge.UpdateExpectedMachine:input_type -> forge.ExpectedMachine - 542, // 1311: forge.Forge.GetExpectedMachine:input_type -> forge.ExpectedMachineRequest - 1028, // 1312: forge.Forge.GetAllExpectedMachines:input_type -> google.protobuf.Empty - 543, // 1313: forge.Forge.ReplaceAllExpectedMachines:input_type -> forge.ExpectedMachineList - 1028, // 1314: forge.Forge.DeleteAllExpectedMachines:input_type -> google.protobuf.Empty - 1028, // 1315: forge.Forge.GetAllExpectedMachinesLinked:input_type -> google.protobuf.Empty - 1028, // 1316: forge.Forge.GetAllUnexpectedMachines:input_type -> google.protobuf.Empty - 548, // 1317: forge.Forge.CreateExpectedMachines:input_type -> forge.BatchExpectedMachineOperationRequest - 548, // 1318: forge.Forge.UpdateExpectedMachines:input_type -> forge.BatchExpectedMachineOperationRequest - 200, // 1319: forge.Forge.AddExpectedPowerShelf:input_type -> forge.ExpectedPowerShelf - 201, // 1320: forge.Forge.DeleteExpectedPowerShelf:input_type -> forge.ExpectedPowerShelfRequest - 200, // 1321: forge.Forge.UpdateExpectedPowerShelf:input_type -> forge.ExpectedPowerShelf - 201, // 1322: forge.Forge.GetExpectedPowerShelf:input_type -> forge.ExpectedPowerShelfRequest - 1028, // 1323: forge.Forge.GetAllExpectedPowerShelves:input_type -> google.protobuf.Empty - 202, // 1324: forge.Forge.ReplaceAllExpectedPowerShelves:input_type -> forge.ExpectedPowerShelfList - 1028, // 1325: forge.Forge.DeleteAllExpectedPowerShelves:input_type -> google.protobuf.Empty - 1028, // 1326: forge.Forge.GetAllExpectedPowerShelvesLinked:input_type -> google.protobuf.Empty - 222, // 1327: forge.Forge.AddExpectedSwitch:input_type -> forge.ExpectedSwitch - 223, // 1328: forge.Forge.DeleteExpectedSwitch:input_type -> forge.ExpectedSwitchRequest - 222, // 1329: forge.Forge.UpdateExpectedSwitch:input_type -> forge.ExpectedSwitch - 223, // 1330: forge.Forge.GetExpectedSwitch:input_type -> forge.ExpectedSwitchRequest - 1028, // 1331: forge.Forge.GetAllExpectedSwitches:input_type -> google.protobuf.Empty - 224, // 1332: forge.Forge.ReplaceAllExpectedSwitches:input_type -> forge.ExpectedSwitchList - 1028, // 1333: forge.Forge.DeleteAllExpectedSwitches:input_type -> google.protobuf.Empty - 1028, // 1334: forge.Forge.GetAllExpectedSwitchesLinked:input_type -> google.protobuf.Empty - 227, // 1335: forge.Forge.AddExpectedRack:input_type -> forge.ExpectedRack - 228, // 1336: forge.Forge.DeleteExpectedRack:input_type -> forge.ExpectedRackRequest - 227, // 1337: forge.Forge.UpdateExpectedRack:input_type -> forge.ExpectedRack - 228, // 1338: forge.Forge.GetExpectedRack:input_type -> forge.ExpectedRackRequest - 1028, // 1339: forge.Forge.GetAllExpectedRacks:input_type -> google.protobuf.Empty - 229, // 1340: forge.Forge.ReplaceAllExpectedRacks:input_type -> forge.ExpectedRackList - 1028, // 1341: forge.Forge.DeleteAllExpectedRacks:input_type -> google.protobuf.Empty - 124, // 1342: forge.Forge.AttestQuote:input_type -> forge.AttestQuoteRequest - 623, // 1343: forge.Forge.CreateInstanceType:input_type -> forge.CreateInstanceTypeRequest - 625, // 1344: forge.Forge.FindInstanceTypeIds:input_type -> forge.FindInstanceTypeIdsRequest - 627, // 1345: forge.Forge.FindInstanceTypesByIds:input_type -> forge.FindInstanceTypesByIdsRequest - 632, // 1346: forge.Forge.UpdateInstanceType:input_type -> forge.UpdateInstanceTypeRequest - 629, // 1347: forge.Forge.DeleteInstanceType:input_type -> forge.DeleteInstanceTypeRequest - 633, // 1348: forge.Forge.AssociateMachinesWithInstanceType:input_type -> forge.AssociateMachinesWithInstanceTypeRequest - 635, // 1349: forge.Forge.RemoveMachineInstanceTypeAssociation:input_type -> forge.RemoveMachineInstanceTypeAssociationRequest - 1035, // 1350: forge.Forge.CreateMeasurementBundle:input_type -> measured_boot.CreateMeasurementBundleRequest - 1036, // 1351: forge.Forge.DeleteMeasurementBundle:input_type -> measured_boot.DeleteMeasurementBundleRequest - 1037, // 1352: forge.Forge.RenameMeasurementBundle:input_type -> measured_boot.RenameMeasurementBundleRequest - 1038, // 1353: forge.Forge.UpdateMeasurementBundle:input_type -> measured_boot.UpdateMeasurementBundleRequest - 1039, // 1354: forge.Forge.ShowMeasurementBundle:input_type -> measured_boot.ShowMeasurementBundleRequest - 1040, // 1355: forge.Forge.ShowMeasurementBundles:input_type -> measured_boot.ShowMeasurementBundlesRequest - 1041, // 1356: forge.Forge.ListMeasurementBundles:input_type -> measured_boot.ListMeasurementBundlesRequest - 1042, // 1357: forge.Forge.ListMeasurementBundleMachines:input_type -> measured_boot.ListMeasurementBundleMachinesRequest - 1043, // 1358: forge.Forge.FindClosestBundleMatch:input_type -> measured_boot.FindClosestBundleMatchRequest - 1044, // 1359: forge.Forge.DeleteMeasurementJournal:input_type -> measured_boot.DeleteMeasurementJournalRequest - 1045, // 1360: forge.Forge.ShowMeasurementJournal:input_type -> measured_boot.ShowMeasurementJournalRequest - 1046, // 1361: forge.Forge.ShowMeasurementJournals:input_type -> measured_boot.ShowMeasurementJournalsRequest - 1047, // 1362: forge.Forge.ListMeasurementJournal:input_type -> measured_boot.ListMeasurementJournalRequest - 1048, // 1363: forge.Forge.AttestCandidateMachine:input_type -> measured_boot.AttestCandidateMachineRequest - 1049, // 1364: forge.Forge.ShowCandidateMachine:input_type -> measured_boot.ShowCandidateMachineRequest - 1050, // 1365: forge.Forge.ShowCandidateMachines:input_type -> measured_boot.ShowCandidateMachinesRequest - 1051, // 1366: forge.Forge.ListCandidateMachines:input_type -> measured_boot.ListCandidateMachinesRequest - 1052, // 1367: forge.Forge.CreateMeasurementSystemProfile:input_type -> measured_boot.CreateMeasurementSystemProfileRequest - 1053, // 1368: forge.Forge.DeleteMeasurementSystemProfile:input_type -> measured_boot.DeleteMeasurementSystemProfileRequest - 1054, // 1369: forge.Forge.RenameMeasurementSystemProfile:input_type -> measured_boot.RenameMeasurementSystemProfileRequest - 1055, // 1370: forge.Forge.ShowMeasurementSystemProfile:input_type -> measured_boot.ShowMeasurementSystemProfileRequest - 1056, // 1371: forge.Forge.ShowMeasurementSystemProfiles:input_type -> measured_boot.ShowMeasurementSystemProfilesRequest - 1057, // 1372: forge.Forge.ListMeasurementSystemProfiles:input_type -> measured_boot.ListMeasurementSystemProfilesRequest - 1058, // 1373: forge.Forge.ListMeasurementSystemProfileBundles:input_type -> measured_boot.ListMeasurementSystemProfileBundlesRequest - 1059, // 1374: forge.Forge.ListMeasurementSystemProfileMachines:input_type -> measured_boot.ListMeasurementSystemProfileMachinesRequest - 1060, // 1375: forge.Forge.CreateMeasurementReport:input_type -> measured_boot.CreateMeasurementReportRequest - 1061, // 1376: forge.Forge.DeleteMeasurementReport:input_type -> measured_boot.DeleteMeasurementReportRequest - 1062, // 1377: forge.Forge.PromoteMeasurementReport:input_type -> measured_boot.PromoteMeasurementReportRequest - 1063, // 1378: forge.Forge.RevokeMeasurementReport:input_type -> measured_boot.RevokeMeasurementReportRequest - 1064, // 1379: forge.Forge.ShowMeasurementReportForId:input_type -> measured_boot.ShowMeasurementReportForIdRequest - 1065, // 1380: forge.Forge.ShowMeasurementReportsForMachine:input_type -> measured_boot.ShowMeasurementReportsForMachineRequest - 1066, // 1381: forge.Forge.ShowMeasurementReports:input_type -> measured_boot.ShowMeasurementReportsRequest - 1067, // 1382: forge.Forge.ListMeasurementReport:input_type -> measured_boot.ListMeasurementReportRequest - 1068, // 1383: forge.Forge.MatchMeasurementReport:input_type -> measured_boot.MatchMeasurementReportRequest - 1069, // 1384: forge.Forge.ImportSiteMeasurements:input_type -> measured_boot.ImportSiteMeasurementsRequest - 1070, // 1385: forge.Forge.ExportSiteMeasurements:input_type -> measured_boot.ExportSiteMeasurementsRequest - 1071, // 1386: forge.Forge.AddMeasurementTrustedMachine:input_type -> measured_boot.AddMeasurementTrustedMachineRequest - 1072, // 1387: forge.Forge.RemoveMeasurementTrustedMachine:input_type -> measured_boot.RemoveMeasurementTrustedMachineRequest - 1073, // 1388: forge.Forge.AddMeasurementTrustedProfile:input_type -> measured_boot.AddMeasurementTrustedProfileRequest - 1074, // 1389: forge.Forge.RemoveMeasurementTrustedProfile:input_type -> measured_boot.RemoveMeasurementTrustedProfileRequest - 1075, // 1390: forge.Forge.ListMeasurementTrustedMachines:input_type -> measured_boot.ListMeasurementTrustedMachinesRequest - 1076, // 1391: forge.Forge.ListMeasurementTrustedProfiles:input_type -> measured_boot.ListMeasurementTrustedProfilesRequest - 1077, // 1392: forge.Forge.ListAttestationSummary:input_type -> measured_boot.ListAttestationSummaryRequest - 654, // 1393: forge.Forge.CreateNetworkSecurityGroup:input_type -> forge.CreateNetworkSecurityGroupRequest - 656, // 1394: forge.Forge.FindNetworkSecurityGroupIds:input_type -> forge.FindNetworkSecurityGroupIdsRequest - 658, // 1395: forge.Forge.FindNetworkSecurityGroupsByIds:input_type -> forge.FindNetworkSecurityGroupsByIdsRequest - 661, // 1396: forge.Forge.UpdateNetworkSecurityGroup:input_type -> forge.UpdateNetworkSecurityGroupRequest - 662, // 1397: forge.Forge.DeleteNetworkSecurityGroup:input_type -> forge.DeleteNetworkSecurityGroupRequest - 668, // 1398: forge.Forge.GetNetworkSecurityGroupPropagationStatus:input_type -> forge.GetNetworkSecurityGroupPropagationStatusRequest - 671, // 1399: forge.Forge.GetNetworkSecurityGroupAttachments:input_type -> forge.GetNetworkSecurityGroupAttachmentsRequest - 530, // 1400: forge.Forge.CreateOsImage:input_type -> forge.OsImageAttributes - 534, // 1401: forge.Forge.DeleteOsImage:input_type -> forge.DeleteOsImageRequest - 532, // 1402: forge.Forge.ListOsImage:input_type -> forge.ListOsImageRequest - 966, // 1403: forge.Forge.GetOsImage:input_type -> common.UUID - 530, // 1404: forge.Forge.UpdateOsImage:input_type -> forge.OsImageAttributes - 536, // 1405: forge.Forge.GetIpxeTemplate:input_type -> forge.GetIpxeTemplateRequest - 537, // 1406: forge.Forge.ListIpxeTemplates:input_type -> forge.ListIpxeTemplatesRequest - 552, // 1407: forge.Forge.RebootCompleted:input_type -> forge.MachineRebootCompletedRequest - 557, // 1408: forge.Forge.PersistValidationResult:input_type -> forge.MachineValidationResultPostRequest - 559, // 1409: forge.Forge.GetMachineValidationResults:input_type -> forge.MachineValidationGetRequest - 554, // 1410: forge.Forge.MachineValidationCompleted:input_type -> forge.MachineValidationCompletedRequest - 562, // 1411: forge.Forge.MachineSetAutoUpdate:input_type -> forge.MachineSetAutoUpdateRequest - 564, // 1412: forge.Forge.GetMachineValidationExternalConfig:input_type -> forge.GetMachineValidationExternalConfigRequest - 567, // 1413: forge.Forge.GetMachineValidationExternalConfigs:input_type -> forge.GetMachineValidationExternalConfigsRequest - 569, // 1414: forge.Forge.AddUpdateMachineValidationExternalConfig:input_type -> forge.AddUpdateMachineValidationExternalConfigRequest - 586, // 1415: forge.Forge.GetMachineValidationRuns:input_type -> forge.MachineValidationRunListGetRequest - 587, // 1416: forge.Forge.FindMachineValidationRunItemIds:input_type -> forge.MachineValidationRunItemSearchFilter - 589, // 1417: forge.Forge.FindMachineValidationRunItemsByIds:input_type -> forge.MachineValidationRunItemsByIdsRequest - 592, // 1418: forge.Forge.GetMachineValidationAttempt:input_type -> forge.MachineValidationAttemptGetRequest - 594, // 1419: forge.Forge.HeartbeatMachineValidationRun:input_type -> forge.MachineValidationHeartbeatRequest - 570, // 1420: forge.Forge.RemoveMachineValidationExternalConfig:input_type -> forge.RemoveMachineValidationExternalConfigRequest - 598, // 1421: forge.Forge.GetMachineValidationTests:input_type -> forge.MachineValidationTestsGetRequest - 600, // 1422: forge.Forge.AddMachineValidationTest:input_type -> forge.MachineValidationTestAddRequest - 599, // 1423: forge.Forge.UpdateMachineValidationTest:input_type -> forge.MachineValidationTestUpdateRequest - 603, // 1424: forge.Forge.MachineValidationTestVerfied:input_type -> forge.MachineValidationTestVerfiedRequest - 607, // 1425: forge.Forge.MachineValidationTestNextVersion:input_type -> forge.MachineValidationTestNextVersionRequest - 608, // 1426: forge.Forge.MachineValidationTestEnableDisableTest:input_type -> forge.MachineValidationTestEnableDisableTestRequest - 610, // 1427: forge.Forge.UpdateMachineValidationRun:input_type -> forge.MachineValidationRunRequest - 404, // 1428: forge.Forge.AdminBmcReset:input_type -> forge.AdminBmcResetRequest - 581, // 1429: forge.Forge.AdminPowerControl:input_type -> forge.AdminPowerControlRequest - 362, // 1430: forge.Forge.DisableSecureBoot:input_type -> forge.BmcEndpointRequest - 394, // 1431: forge.Forge.Lockdown:input_type -> forge.LockdownRequest - 396, // 1432: forge.Forge.LockdownStatus:input_type -> forge.LockdownStatusRequest - 398, // 1433: forge.Forge.MachineSetup:input_type -> forge.MachineSetupRequest - 400, // 1434: forge.Forge.SetDpuFirstBootOrder:input_type -> forge.SetDpuFirstBootOrderRequest - 772, // 1435: forge.Forge.CreateBmcUser:input_type -> forge.CreateBmcUserRequest - 774, // 1436: forge.Forge.DeleteBmcUser:input_type -> forge.DeleteBmcUserRequest - 406, // 1437: forge.Forge.EnableInfiniteBoot:input_type -> forge.EnableInfiniteBootRequest - 408, // 1438: forge.Forge.IsInfiniteBootEnabled:input_type -> forge.IsInfiniteBootEnabledRequest - 571, // 1439: forge.Forge.OnDemandMachineValidation:input_type -> forge.MachineValidationOnDemandRequest - 579, // 1440: forge.Forge.OnDemandRackMaintenance:input_type -> forge.RackMaintenanceOnDemandRequest - 120, // 1441: forge.Forge.TpmAddCaCert:input_type -> forge.TpmCaCert - 1028, // 1442: forge.Forge.TpmShowCaCerts:input_type -> google.protobuf.Empty - 1028, // 1443: forge.Forge.TpmShowUnmatchedEkCerts:input_type -> google.protobuf.Empty - 117, // 1444: forge.Forge.TpmDeleteCaCert:input_type -> forge.TpmCaCertId - 637, // 1445: forge.Forge.RedfishBrowse:input_type -> forge.RedfishBrowseRequest - 639, // 1446: forge.Forge.RedfishListActions:input_type -> forge.RedfishListActionsRequest - 644, // 1447: forge.Forge.RedfishCreateAction:input_type -> forge.RedfishCreateActionRequest - 646, // 1448: forge.Forge.RedfishApproveAction:input_type -> forge.RedfishActionID - 646, // 1449: forge.Forge.RedfishApplyAction:input_type -> forge.RedfishActionID - 646, // 1450: forge.Forge.RedfishCancelAction:input_type -> forge.RedfishActionID - 650, // 1451: forge.Forge.UfmBrowse:input_type -> forge.UfmBrowseRequest - 674, // 1452: forge.Forge.GetDesiredFirmwareVersions:input_type -> forge.GetDesiredFirmwareVersionsRequest - 690, // 1453: forge.Forge.CreateSku:input_type -> forge.SkuList - 956, // 1454: forge.Forge.GenerateSkuFromMachine:input_type -> common.MachineId - 956, // 1455: forge.Forge.VerifySkuForMachine:input_type -> common.MachineId - 688, // 1456: forge.Forge.AssignSkuToMachine:input_type -> forge.SkuMachinePair - 689, // 1457: forge.Forge.RemoveSkuAssociation:input_type -> forge.RemoveSkuRequest - 691, // 1458: forge.Forge.DeleteSku:input_type -> forge.SkuIdList - 1028, // 1459: forge.Forge.GetAllSkuIds:input_type -> google.protobuf.Empty - 693, // 1460: forge.Forge.FindSkusByIds:input_type -> forge.SkusByIdsRequest - 703, // 1461: forge.Forge.UpdateSkuMetadata:input_type -> forge.SkuUpdateMetadataRequest - 687, // 1462: forge.Forge.ReplaceSku:input_type -> forge.Sku - 374, // 1463: forge.Forge.GetManagedHostQuarantineState:input_type -> forge.GetManagedHostQuarantineStateRequest - 376, // 1464: forge.Forge.SetManagedHostQuarantineState:input_type -> forge.SetManagedHostQuarantineStateRequest - 378, // 1465: forge.Forge.ClearManagedHostQuarantineState:input_type -> forge.ClearManagedHostQuarantineStateRequest - 956, // 1466: forge.Forge.ResetHostReprovisioning:input_type -> common.MachineId - 365, // 1467: forge.Forge.CopyBfbToDpuRshim:input_type -> forge.CopyBfbToDpuRshimRequest - 1028, // 1468: forge.Forge.GetAllDpaInterfaceIds:input_type -> google.protobuf.Empty - 698, // 1469: forge.Forge.FindDpaInterfacesByIds:input_type -> forge.DpaInterfacesByIdsRequest - 696, // 1470: forge.Forge.CreateDpaInterface:input_type -> forge.DpaInterfaceCreationRequest - 696, // 1471: forge.Forge.EnsureDpaInterface:input_type -> forge.DpaInterfaceCreationRequest - 701, // 1472: forge.Forge.DeleteDpaInterface:input_type -> forge.DpaInterfaceDeletionRequest - 704, // 1473: forge.Forge.GetPowerOptions:input_type -> forge.PowerOptionRequest - 705, // 1474: forge.Forge.UpdatePowerOption:input_type -> forge.PowerOptionUpdateRequest - 362, // 1475: forge.Forge.AllowIngestionAndPowerOn:input_type -> forge.BmcEndpointRequest - 362, // 1476: forge.Forge.DetermineMachineIngestionState:input_type -> forge.BmcEndpointRequest - 724, // 1477: forge.Forge.FindRackIds:input_type -> forge.RackSearchFilter - 726, // 1478: forge.Forge.FindRacksByIds:input_type -> forge.RacksByIdsRequest - 721, // 1479: forge.Forge.GetRack:input_type -> forge.GetRackRequest - 731, // 1480: forge.Forge.DeleteRack:input_type -> forge.DeleteRackRequest - 732, // 1481: forge.Forge.AdminForceDeleteRack:input_type -> forge.AdminForceDeleteRackRequest - 739, // 1482: forge.Forge.GetRackProfile:input_type -> forge.GetRackProfileRequest - 710, // 1483: forge.Forge.CreateComputeAllocation:input_type -> forge.CreateComputeAllocationRequest - 712, // 1484: forge.Forge.FindComputeAllocationIds:input_type -> forge.FindComputeAllocationIdsRequest - 714, // 1485: forge.Forge.FindComputeAllocationsByIds:input_type -> forge.FindComputeAllocationsByIdsRequest - 717, // 1486: forge.Forge.UpdateComputeAllocation:input_type -> forge.UpdateComputeAllocationRequest - 718, // 1487: forge.Forge.DeleteComputeAllocation:input_type -> forge.DeleteComputeAllocationRequest - 776, // 1488: forge.Forge.SetFirmwareUpdateTimeWindow:input_type -> forge.SetFirmwareUpdateTimeWindowRequest - 778, // 1489: forge.Forge.ListHostFirmware:input_type -> forge.ListHostFirmwareRequest - 1078, // 1490: forge.Forge.PublishMlxDeviceReport:input_type -> mlx_device.PublishMlxDeviceReportRequest - 1079, // 1491: forge.Forge.PublishMlxObservationReport:input_type -> mlx_device.PublishMlxObservationReportRequest - 781, // 1492: forge.Forge.TrimTable:input_type -> forge.TrimTableRequest - 1028, // 1493: forge.Forge.ListNvlinkNmxcEndpoints:input_type -> google.protobuf.Empty - 783, // 1494: forge.Forge.CreateNvlinkNmxcEndpoint:input_type -> forge.NvlinkNmxcEndpoint - 783, // 1495: forge.Forge.UpdateNvlinkNmxcEndpoint:input_type -> forge.NvlinkNmxcEndpoint - 785, // 1496: forge.Forge.DeleteNvlinkNmxcEndpoint:input_type -> forge.DeleteNvlinkNmxcEndpointRequest - 786, // 1497: forge.Forge.CreateRemediation:input_type -> forge.CreateRemediationRequest - 791, // 1498: forge.Forge.ApproveRemediation:input_type -> forge.ApproveRemediationRequest - 792, // 1499: forge.Forge.RevokeRemediation:input_type -> forge.RevokeRemediationRequest - 793, // 1500: forge.Forge.EnableRemediation:input_type -> forge.EnableRemediationRequest - 794, // 1501: forge.Forge.DisableRemediation:input_type -> forge.DisableRemediationRequest - 1028, // 1502: forge.Forge.FindRemediationIds:input_type -> google.protobuf.Empty - 788, // 1503: forge.Forge.FindRemediationsByIds:input_type -> forge.RemediationIdList - 795, // 1504: forge.Forge.FindAppliedRemediationIds:input_type -> forge.FindAppliedRemediationIdsRequest - 797, // 1505: forge.Forge.FindAppliedRemediations:input_type -> forge.FindAppliedRemediationsRequest - 800, // 1506: forge.Forge.GetNextRemediationForMachine:input_type -> forge.GetNextRemediationForMachineRequest - 802, // 1507: forge.Forge.RemediationApplied:input_type -> forge.RemediationAppliedRequest - 804, // 1508: forge.Forge.SetPrimaryDpu:input_type -> forge.SetPrimaryDpuRequest - 805, // 1509: forge.Forge.SetPrimaryInterface:input_type -> forge.SetPrimaryInterfaceRequest - 811, // 1510: forge.Forge.CreateDpuExtensionService:input_type -> forge.CreateDpuExtensionServiceRequest - 812, // 1511: forge.Forge.UpdateDpuExtensionService:input_type -> forge.UpdateDpuExtensionServiceRequest - 813, // 1512: forge.Forge.DeleteDpuExtensionService:input_type -> forge.DeleteDpuExtensionServiceRequest - 815, // 1513: forge.Forge.FindDpuExtensionServiceIds:input_type -> forge.DpuExtensionServiceSearchFilter - 817, // 1514: forge.Forge.FindDpuExtensionServicesByIds:input_type -> forge.DpuExtensionServicesByIdsRequest - 819, // 1515: forge.Forge.GetDpuExtensionServiceVersionsInfo:input_type -> forge.GetDpuExtensionServiceVersionsInfoRequest - 821, // 1516: forge.Forge.FindInstancesByDpuExtensionService:input_type -> forge.FindInstancesByDpuExtensionServiceRequest - 92, // 1517: forge.Forge.TriggerMachineAttestation:input_type -> forge.SpdmMachineAttestationTriggerRequest - 956, // 1518: forge.Forge.CancelMachineAttestation:input_type -> common.MachineId - 93, // 1519: forge.Forge.ListAttestationMachines:input_type -> forge.SpdmListAttestationMachinesRequest - 956, // 1520: forge.Forge.GetAttestationMachine:input_type -> common.MachineId - 95, // 1521: forge.Forge.SignMachineIdentity:input_type -> forge.MachineIdentityRequest - 97, // 1522: forge.Forge.GetTenantIdentityConfiguration:input_type -> forge.GetTenantIdentityConfigRequest - 100, // 1523: forge.Forge.SetTenantIdentityConfiguration:input_type -> forge.SetTenantIdentityConfigRequest - 97, // 1524: forge.Forge.DeleteTenantIdentityConfiguration:input_type -> forge.GetTenantIdentityConfigRequest - 105, // 1525: forge.Forge.GetTokenDelegation:input_type -> forge.GetTokenDelegationRequest - 107, // 1526: forge.Forge.SetTokenDelegation:input_type -> forge.TokenDelegationRequest - 105, // 1527: forge.Forge.DeleteTokenDelegation:input_type -> forge.GetTokenDelegationRequest - 108, // 1528: forge.Forge.ReencryptTenantIdentitySecrets:input_type -> forge.ReencryptTenantIdentitySecretsRequest - 113, // 1529: forge.Forge.GetJWKS:input_type -> forge.JwksRequest - 114, // 1530: forge.Forge.GetOpenIDConfiguration:input_type -> forge.OpenIdConfigRequest - 828, // 1531: forge.Forge.ScoutStream:input_type -> forge.ScoutStreamApiBoundMessage - 831, // 1532: forge.Forge.ScoutStreamShowConnections:input_type -> forge.ScoutStreamShowConnectionsRequest - 833, // 1533: forge.Forge.ScoutStreamDisconnect:input_type -> forge.ScoutStreamDisconnectRequest - 835, // 1534: forge.Forge.ScoutStreamPing:input_type -> forge.ScoutStreamAdminPingRequest - 1080, // 1535: forge.Forge.MlxAdminProfileSync:input_type -> mlx_device.MlxAdminProfileSyncRequest - 1081, // 1536: forge.Forge.MlxAdminProfileShow:input_type -> mlx_device.MlxAdminProfileShowRequest - 1082, // 1537: forge.Forge.MlxAdminProfileCompare:input_type -> mlx_device.MlxAdminProfileCompareRequest - 1083, // 1538: forge.Forge.MlxAdminProfileList:input_type -> mlx_device.MlxAdminProfileListRequest - 1084, // 1539: forge.Forge.MlxAdminLockdownLock:input_type -> mlx_device.MlxAdminLockdownLockRequest - 1085, // 1540: forge.Forge.MlxAdminLockdownUnlock:input_type -> mlx_device.MlxAdminLockdownUnlockRequest - 1086, // 1541: forge.Forge.MlxAdminLockdownStatus:input_type -> mlx_device.MlxAdminLockdownStatusRequest - 1087, // 1542: forge.Forge.MlxAdminShowDevice:input_type -> mlx_device.MlxAdminDeviceInfoRequest - 1088, // 1543: forge.Forge.MlxAdminShowMachine:input_type -> mlx_device.MlxAdminDeviceReportRequest - 1089, // 1544: forge.Forge.MlxAdminRegistryList:input_type -> mlx_device.MlxAdminRegistryListRequest - 1090, // 1545: forge.Forge.MlxAdminRegistryShow:input_type -> mlx_device.MlxAdminRegistryShowRequest - 1091, // 1546: forge.Forge.MlxAdminConfigQuery:input_type -> mlx_device.MlxAdminConfigQueryRequest - 1092, // 1547: forge.Forge.MlxAdminConfigSet:input_type -> mlx_device.MlxAdminConfigSetRequest - 1093, // 1548: forge.Forge.MlxAdminConfigSync:input_type -> mlx_device.MlxAdminConfigSyncRequest - 1094, // 1549: forge.Forge.MlxAdminConfigCompare:input_type -> mlx_device.MlxAdminConfigCompareRequest - 756, // 1550: forge.Forge.FindNVLinkPartitionIds:input_type -> forge.NVLinkPartitionSearchFilter - 757, // 1551: forge.Forge.FindNVLinkPartitionsByIds:input_type -> forge.NVLinkPartitionsByIdsRequest - 145, // 1552: forge.Forge.NVLinkPartitionsForTenant:input_type -> forge.TenantSearchQuery - 767, // 1553: forge.Forge.FindNVLinkLogicalPartitionIds:input_type -> forge.NVLinkLogicalPartitionSearchFilter - 768, // 1554: forge.Forge.FindNVLinkLogicalPartitionsByIds:input_type -> forge.NVLinkLogicalPartitionsByIdsRequest - 764, // 1555: forge.Forge.CreateNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionCreationRequest - 770, // 1556: forge.Forge.UpdateNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionUpdateRequest - 765, // 1557: forge.Forge.DeleteNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionDeletionRequest - 145, // 1558: forge.Forge.NVLinkLogicalPartitionsForTenant:input_type -> forge.TenantSearchQuery - 849, // 1559: forge.Forge.GetMachinePositionInfo:input_type -> forge.MachinePositionQuery - 750, // 1560: forge.Forge.NmxcBrowse:input_type -> forge.NmxcBrowseRequest - 852, // 1561: forge.Forge.ModifyDPFState:input_type -> forge.ModifyDPFStateRequest - 854, // 1562: forge.Forge.GetDPFState:input_type -> forge.GetDPFStateRequest - 855, // 1563: forge.Forge.GetDPFHostSnapshot:input_type -> forge.GetDPFHostSnapshotRequest - 857, // 1564: forge.Forge.GetDPFServiceVersions:input_type -> forge.GetDPFServiceVersionsRequest - 866, // 1565: forge.Forge.ComponentPowerControl:input_type -> forge.ComponentPowerControlRequest - 863, // 1566: forge.Forge.GetComponentInventory:input_type -> forge.GetComponentInventoryRequest - 873, // 1567: forge.Forge.UpdateComponentFirmware:input_type -> forge.UpdateComponentFirmwareRequest - 875, // 1568: forge.Forge.GetComponentFirmwareStatus:input_type -> forge.GetComponentFirmwareStatusRequest - 877, // 1569: forge.Forge.ListComponentFirmwareVersions:input_type -> forge.ListComponentFirmwareVersionsRequest - 894, // 1570: forge.Forge.CreateOperatingSystem:input_type -> forge.CreateOperatingSystemRequest - 974, // 1571: forge.Forge.GetOperatingSystem:input_type -> common.OperatingSystemId - 897, // 1572: forge.Forge.UpdateOperatingSystem:input_type -> forge.UpdateOperatingSystemRequest - 898, // 1573: forge.Forge.DeleteOperatingSystem:input_type -> forge.DeleteOperatingSystemRequest - 900, // 1574: forge.Forge.FindOperatingSystemIds:input_type -> forge.OperatingSystemSearchFilter - 902, // 1575: forge.Forge.FindOperatingSystemsByIds:input_type -> forge.OperatingSystemsByIdsRequest - 904, // 1576: forge.Forge.GetOperatingSystemCachableIpxeTemplateArtifacts:input_type -> forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest - 907, // 1577: forge.Forge.UpdateOperatingSystemCachableIpxeTemplateArtifacts:input_type -> forge.UpdateOperatingSystemIpxeTemplateArtifactRequest - 909, // 1578: forge.Forge.ReWrapSecrets:input_type -> forge.ReWrapSecretsRequest - 131, // 1579: forge.Forge.Version:output_type -> forge.BuildInfo - 1014, // 1580: forge.Forge.CreateDomain:output_type -> dns.Domain - 1014, // 1581: forge.Forge.UpdateDomain:output_type -> dns.Domain - 1095, // 1582: forge.Forge.DeleteDomain:output_type -> dns.DomainDeletionResult - 1096, // 1583: forge.Forge.FindDomain:output_type -> dns.DomainList - 843, // 1584: forge.Forge.CreateDomainLegacy:output_type -> forge.DomainLegacy - 843, // 1585: forge.Forge.UpdateDomainLegacy:output_type -> forge.DomainLegacy - 846, // 1586: forge.Forge.DeleteDomainLegacy:output_type -> forge.DomainDeletionResultLegacy - 844, // 1587: forge.Forge.FindDomainLegacy:output_type -> forge.DomainListLegacy - 148, // 1588: forge.Forge.CreateVpc:output_type -> forge.Vpc - 151, // 1589: forge.Forge.UpdateVpc:output_type -> forge.VpcUpdateResult - 153, // 1590: forge.Forge.UpdateVpcVirtualization:output_type -> forge.VpcUpdateVirtualizationResult - 155, // 1591: forge.Forge.DeleteVpc:output_type -> forge.VpcDeletionResult - 143, // 1592: forge.Forge.FindVpcIds:output_type -> forge.VpcIdList - 156, // 1593: forge.Forge.FindVpcsByIds:output_type -> forge.VpcList - 882, // 1594: forge.Forge.CreateSpxPartition:output_type -> forge.SpxPartition - 885, // 1595: forge.Forge.DeleteSpxPartition:output_type -> forge.SpxPartitionDeletionResult - 883, // 1596: forge.Forge.FindSpxPartitionIds:output_type -> forge.SpxPartitionIdList - 887, // 1597: forge.Forge.FindSpxPartitionsByIds:output_type -> forge.SpxPartitionList - 157, // 1598: forge.Forge.CreateVpcPrefix:output_type -> forge.VpcPrefix - 163, // 1599: forge.Forge.SearchVpcPrefixes:output_type -> forge.VpcPrefixIdList - 164, // 1600: forge.Forge.GetVpcPrefixes:output_type -> forge.VpcPrefixList - 157, // 1601: forge.Forge.UpdateVpcPrefix:output_type -> forge.VpcPrefix - 167, // 1602: forge.Forge.DeleteVpcPrefix:output_type -> forge.VpcPrefixDeletionResult - 169, // 1603: forge.Forge.CreateVpcPeering:output_type -> forge.VpcPeering - 170, // 1604: forge.Forge.FindVpcPeeringIds:output_type -> forge.VpcPeeringIdList - 171, // 1605: forge.Forge.FindVpcPeeringsByIds:output_type -> forge.VpcPeeringList - 176, // 1606: forge.Forge.DeleteVpcPeering:output_type -> forge.VpcPeeringDeletionResult - 243, // 1607: forge.Forge.FindNetworkSegmentIds:output_type -> forge.NetworkSegmentIdList - 348, // 1608: forge.Forge.FindNetworkSegmentsByIds:output_type -> forge.NetworkSegmentList - 235, // 1609: forge.Forge.CreateNetworkSegment:output_type -> forge.NetworkSegment - 235, // 1610: forge.Forge.AttachNetworkSegmentToVpc:output_type -> forge.NetworkSegment - 239, // 1611: forge.Forge.DeleteNetworkSegment:output_type -> forge.NetworkSegmentDeletionResult - 348, // 1612: forge.Forge.NetworkSegmentsForVpc:output_type -> forge.NetworkSegmentList - 187, // 1613: forge.Forge.FindIBPartitionIds:output_type -> forge.IBPartitionIdList - 180, // 1614: forge.Forge.FindIBPartitionsByIds:output_type -> forge.IBPartitionList - 179, // 1615: forge.Forge.CreateIBPartition:output_type -> forge.IBPartition - 179, // 1616: forge.Forge.UpdateIBPartition:output_type -> forge.IBPartition - 184, // 1617: forge.Forge.DeleteIBPartition:output_type -> forge.IBPartitionDeletionResult - 180, // 1618: forge.Forge.IBPartitionsForTenant:output_type -> forge.IBPartitionList - 191, // 1619: forge.Forge.FindPowerShelves:output_type -> forge.PowerShelfList - 862, // 1620: forge.Forge.FindPowerShelfIds:output_type -> forge.PowerShelfIdList - 191, // 1621: forge.Forge.FindPowerShelvesByIds:output_type -> forge.PowerShelfList - 194, // 1622: forge.Forge.DeletePowerShelf:output_type -> forge.PowerShelfDeletionResult - 892, // 1623: forge.Forge.AdminForceDeletePowerShelf:output_type -> forge.AdminForceDeletePowerShelfResponse - 1028, // 1624: forge.Forge.SetPowerShelfMaintenance:output_type -> google.protobuf.Empty - 211, // 1625: forge.Forge.FindSwitches:output_type -> forge.SwitchList - 861, // 1626: forge.Forge.FindSwitchIds:output_type -> forge.SwitchIdList - 211, // 1627: forge.Forge.FindSwitchesByIds:output_type -> forge.SwitchList - 214, // 1628: forge.Forge.DeleteSwitch:output_type -> forge.SwitchDeletionResult - 890, // 1629: forge.Forge.AdminForceDeleteSwitch:output_type -> forge.AdminForceDeleteSwitchResponse - 231, // 1630: forge.Forge.FindIBFabricIds:output_type -> forge.IBFabricIdList - 284, // 1631: forge.Forge.AllocateInstance:output_type -> forge.Instance - 257, // 1632: forge.Forge.AllocateInstances:output_type -> forge.BatchInstanceAllocationResponse - 298, // 1633: forge.Forge.ReleaseInstance:output_type -> forge.InstanceReleaseResult - 284, // 1634: forge.Forge.UpdateInstanceOperatingSystem:output_type -> forge.Instance - 284, // 1635: forge.Forge.UpdateInstanceConfig:output_type -> forge.Instance - 253, // 1636: forge.Forge.FindInstanceIds:output_type -> forge.InstanceIdList - 249, // 1637: forge.Forge.FindInstancesByIds:output_type -> forge.InstanceList - 249, // 1638: forge.Forge.FindInstanceByMachineID:output_type -> forge.InstanceList - 369, // 1639: forge.Forge.GetManagedHostNetworkConfig:output_type -> forge.ManagedHostNetworkConfigResponse - 1028, // 1640: forge.Forge.RecordDpuNetworkStatus:output_type -> google.protobuf.Empty - 449, // 1641: forge.Forge.ListMachineHealthReports:output_type -> forge.ListHealthReportResponse - 1028, // 1642: forge.Forge.InsertMachineHealthReport:output_type -> google.protobuf.Empty - 1028, // 1643: forge.Forge.RemoveMachineHealthReport:output_type -> google.protobuf.Empty - 449, // 1644: forge.Forge.ListRackHealthReports:output_type -> forge.ListHealthReportResponse - 1028, // 1645: forge.Forge.InsertRackHealthReport:output_type -> google.protobuf.Empty - 1028, // 1646: forge.Forge.RemoveRackHealthReport:output_type -> google.protobuf.Empty - 449, // 1647: forge.Forge.ListSwitchHealthReports:output_type -> forge.ListHealthReportResponse - 1028, // 1648: forge.Forge.InsertSwitchHealthReport:output_type -> google.protobuf.Empty - 1028, // 1649: forge.Forge.RemoveSwitchHealthReport:output_type -> google.protobuf.Empty - 449, // 1650: forge.Forge.ListPowerShelfHealthReports:output_type -> forge.ListHealthReportResponse - 1028, // 1651: forge.Forge.InsertPowerShelfHealthReport:output_type -> google.protobuf.Empty - 1028, // 1652: forge.Forge.RemovePowerShelfHealthReport:output_type -> google.protobuf.Empty - 449, // 1653: forge.Forge.ListNVLinkDomainHealthReports:output_type -> forge.ListHealthReportResponse - 1028, // 1654: forge.Forge.InsertNVLinkDomainHealthReport:output_type -> google.protobuf.Empty - 1028, // 1655: forge.Forge.RemoveNVLinkDomainHealthReport:output_type -> google.protobuf.Empty - 449, // 1656: forge.Forge.ListHealthReportOverrides:output_type -> forge.ListHealthReportResponse - 1028, // 1657: forge.Forge.InsertHealthReportOverride:output_type -> google.protobuf.Empty - 1028, // 1658: forge.Forge.RemoveHealthReportOverride:output_type -> google.protobuf.Empty - 388, // 1659: forge.Forge.DpuAgentUpgradeCheck:output_type -> forge.DpuAgentUpgradeCheckResponse - 390, // 1660: forge.Forge.DpuAgentUpgradePolicyAction:output_type -> forge.DpuAgentUpgradePolicyResponse - 1097, // 1661: forge.Forge.LookupRecord:output_type -> dns.DnsResourceRecordLookupResponse - 1098, // 1662: forge.Forge.GetAllDomains:output_type -> dns.GetAllDomainsResponse - 1099, // 1663: forge.Forge.GetAllDomainMetadata:output_type -> dns.DomainMetadataResponse - 248, // 1664: forge.Forge.InvokeInstancePower:output_type -> forge.InstancePowerResult - 415, // 1665: forge.Forge.ForgeAgentControl:output_type -> forge.ForgeAgentControlResponse - 422, // 1666: forge.Forge.DiscoverMachine:output_type -> forge.MachineDiscoveryResult - 421, // 1667: forge.Forge.RenewMachineCertificate:output_type -> forge.MachineCertificateResult - 423, // 1668: forge.Forge.DiscoveryCompleted:output_type -> forge.MachineDiscoveryCompletedResponse - 424, // 1669: forge.Forge.CleanupMachineCompleted:output_type -> forge.MachineCleanupResult - 426, // 1670: forge.Forge.ReportForgeScoutError:output_type -> forge.ForgeScoutErrorReportResult - 347, // 1671: forge.Forge.DiscoverDhcp:output_type -> forge.DhcpRecord - 346, // 1672: forge.Forge.ExpireDhcpLease:output_type -> forge.ExpireDhcpLeaseResponse - 317, // 1673: forge.Forge.AssignStaticAddress:output_type -> forge.AssignStaticAddressResponse - 319, // 1674: forge.Forge.RemoveStaticAddress:output_type -> forge.RemoveStaticAddressResponse - 322, // 1675: forge.Forge.FindInterfaceAddresses:output_type -> forge.FindInterfaceAddressesResponse - 312, // 1676: forge.Forge.FindInterfaces:output_type -> forge.InterfaceList - 1028, // 1677: forge.Forge.DeleteInterface:output_type -> google.protobuf.Empty - 490, // 1678: forge.Forge.FindIpAddress:output_type -> forge.FindIpAddressResponse - 1015, // 1679: forge.Forge.FindMachineIds:output_type -> common.MachineIdList - 313, // 1680: forge.Forge.FindMachinesByIds:output_type -> forge.MachineList - 302, // 1681: forge.Forge.FindMachineStateHistories:output_type -> forge.MachineStateHistories - 305, // 1682: forge.Forge.FindMachineHealthHistories:output_type -> forge.HealthHistories - 218, // 1683: forge.Forge.FindPowerShelfStateHistories:output_type -> forge.StateHistories - 218, // 1684: forge.Forge.FindRackStateHistories:output_type -> forge.StateHistories - 218, // 1685: forge.Forge.FindSwitchStateHistories:output_type -> forge.StateHistories - 218, // 1686: forge.Forge.FindNetworkSegmentStateHistories:output_type -> forge.StateHistories - 218, // 1687: forge.Forge.FindVpcPrefixStateHistories:output_type -> forge.StateHistories - 311, // 1688: forge.Forge.FindTenantOrganizationIds:output_type -> forge.TenantOrganizationIdList - 310, // 1689: forge.Forge.FindTenantsByOrganizationIds:output_type -> forge.TenantList - 513, // 1690: forge.Forge.FindConnectedDevicesByDpuMachineIds:output_type -> forge.ConnectedDeviceList - 517, // 1691: forge.Forge.FindMachineIdsByBmcIps:output_type -> forge.MachineIdBmcIpPairs - 516, // 1692: forge.Forge.FindMacAddressByBmcIp:output_type -> forge.MacAddressBmcIp - 514, // 1693: forge.Forge.FindBmcIps:output_type -> forge.BmcIpList - 492, // 1694: forge.Forge.IdentifyUuid:output_type -> forge.IdentifyUuidResponse - 495, // 1695: forge.Forge.IdentifyMac:output_type -> forge.IdentifyMacResponse - 497, // 1696: forge.Forge.IdentifySerial:output_type -> forge.IdentifySerialResponse - 411, // 1697: forge.Forge.GetBMCMetaData:output_type -> forge.BMCMetaDataGetResponse - 413, // 1698: forge.Forge.UpdateMachineCredentials:output_type -> forge.MachineCredentialsUpdateResponse - 428, // 1699: forge.Forge.GetPxeInstructions:output_type -> forge.PxeInstructions - 432, // 1700: forge.Forge.GetCloudInitInstructions:output_type -> forge.CloudInitInstructions - 134, // 1701: forge.Forge.Echo:output_type -> forge.EchoResponse - 459, // 1702: forge.Forge.CreateTenant:output_type -> forge.CreateTenantResponse - 463, // 1703: forge.Forge.FindTenant:output_type -> forge.FindTenantResponse - 461, // 1704: forge.Forge.UpdateTenant:output_type -> forge.UpdateTenantResponse - 469, // 1705: forge.Forge.CreateTenantKeyset:output_type -> forge.CreateTenantKeysetResponse - 476, // 1706: forge.Forge.FindTenantKeysetIds:output_type -> forge.TenantKeysetIdList - 470, // 1707: forge.Forge.FindTenantKeysetsByIds:output_type -> forge.TenantKeySetList - 472, // 1708: forge.Forge.UpdateTenantKeyset:output_type -> forge.UpdateTenantKeysetResponse - 474, // 1709: forge.Forge.DeleteTenantKeyset:output_type -> forge.DeleteTenantKeysetResponse - 479, // 1710: forge.Forge.ValidateTenantPublicKey:output_type -> forge.ValidateTenantPublicKeyResponse - 353, // 1711: forge.Forge.GetBmcCredentials:output_type -> forge.GetBmcCredentialsResponse - 353, // 1712: forge.Forge.GetSwitchNvosCredentials:output_type -> forge.GetBmcCredentialsResponse - 386, // 1713: forge.Forge.GetAllManagedHostNetworkStatus:output_type -> forge.ManagedHostNetworkStatusResponse - 1100, // 1714: forge.Forge.GetSiteExplorationReport:output_type -> site_explorer.SiteExplorationReport - 1101, // 1715: forge.Forge.GetSiteExplorerLastRun:output_type -> site_explorer.SiteExplorerLastRunResponse - 1028, // 1716: forge.Forge.ClearSiteExplorationError:output_type -> google.protobuf.Empty - 596, // 1717: forge.Forge.IsBmcInManagedHost:output_type -> forge.IsBmcInManagedHostResponse - 597, // 1718: forge.Forge.BmcCredentialStatus:output_type -> forge.BmcCredentialStatusResponse - 1016, // 1719: forge.Forge.Explore:output_type -> site_explorer.EndpointExplorationReport - 1028, // 1720: forge.Forge.ReExploreEndpoint:output_type -> google.protobuf.Empty - 1102, // 1721: forge.Forge.RefreshEndpointReport:output_type -> site_explorer.ExploredEndpoint - 361, // 1722: forge.Forge.DeleteExploredEndpoint:output_type -> forge.DeleteExploredEndpointResponse - 1028, // 1723: forge.Forge.PauseExploredEndpointRemediation:output_type -> google.protobuf.Empty - 1103, // 1724: forge.Forge.FindExploredEndpointIds:output_type -> site_explorer.ExploredEndpointIdList - 1104, // 1725: forge.Forge.FindExploredEndpointsByIds:output_type -> site_explorer.ExploredEndpointList - 1105, // 1726: forge.Forge.FindExploredManagedHostIds:output_type -> site_explorer.ExploredManagedHostIdList - 1106, // 1727: forge.Forge.FindExploredManagedHostsByIds:output_type -> site_explorer.ExploredManagedHostList - 1107, // 1728: forge.Forge.FindExploredMlxDeviceHostIds:output_type -> site_explorer.ExploredMlxDeviceHostIdList - 1108, // 1729: forge.Forge.FindExploredMlxDevicesByIds:output_type -> site_explorer.ExploredMlxDeviceList - 1028, // 1730: forge.Forge.UpdateMachineHardwareInfo:output_type -> google.protobuf.Empty - 392, // 1731: forge.Forge.AdminForceDeleteMachine:output_type -> forge.AdminForceDeleteMachineResponse - 481, // 1732: forge.Forge.AdminListResourcePools:output_type -> forge.ResourcePools - 484, // 1733: forge.Forge.AdminGrowResourcePool:output_type -> forge.GrowResourcePoolResponse - 1028, // 1734: forge.Forge.UpdateMachineMetadata:output_type -> google.protobuf.Empty - 1028, // 1735: forge.Forge.UpdateRackMetadata:output_type -> google.protobuf.Empty - 1028, // 1736: forge.Forge.UpdateSwitchMetadata:output_type -> google.protobuf.Empty - 1028, // 1737: forge.Forge.UpdatePowerShelfMetadata:output_type -> google.protobuf.Empty - 1028, // 1738: forge.Forge.UpdateMachineNvLinkInfo:output_type -> google.protobuf.Empty - 1028, // 1739: forge.Forge.SetMaintenance:output_type -> google.protobuf.Empty - 1028, // 1740: forge.Forge.SetDynamicConfig:output_type -> google.protobuf.Empty - 1028, // 1741: forge.Forge.TriggerDpuReprovisioning:output_type -> google.protobuf.Empty - 500, // 1742: forge.Forge.ListDpuWaitingForReprovisioning:output_type -> forge.DpuReprovisioningListResponse - 1028, // 1743: forge.Forge.TriggerHostReprovisioning:output_type -> google.protobuf.Empty - 503, // 1744: forge.Forge.ListHostsWaitingForReprovisioning:output_type -> forge.HostReprovisioningListResponse - 1028, // 1745: forge.Forge.MarkManualFirmwareUpgradeComplete:output_type -> google.protobuf.Empty - 1028, // 1746: forge.Forge.ReportScoutFirmwareUpgradeStatus:output_type -> google.protobuf.Empty - 509, // 1747: forge.Forge.GetDpuInfoList:output_type -> forge.GetDpuInfoListResponse - 511, // 1748: forge.Forge.GetMachineBootOverride:output_type -> forge.MachineBootOverride - 1028, // 1749: forge.Forge.SetMachineBootOverride:output_type -> google.protobuf.Empty - 1028, // 1750: forge.Forge.ClearMachineBootOverride:output_type -> google.protobuf.Empty - 916, // 1751: forge.Forge.GetMachineBootInterfaces:output_type -> forge.GetMachineBootInterfacesResponse - 522, // 1752: forge.Forge.GetNetworkTopology:output_type -> forge.NetworkTopologyData - 522, // 1753: forge.Forge.FindNetworkDevicesByDeviceIds:output_type -> forge.NetworkTopologyData - 128, // 1754: forge.Forge.CreateCredential:output_type -> forge.CredentialCreationResult - 129, // 1755: forge.Forge.DeleteCredential:output_type -> forge.CredentialDeletionResult - 524, // 1756: forge.Forge.GetRouteServers:output_type -> forge.RouteServerEntries - 1028, // 1757: forge.Forge.AddRouteServers:output_type -> google.protobuf.Empty - 1028, // 1758: forge.Forge.RemoveRouteServers:output_type -> google.protobuf.Empty - 1028, // 1759: forge.Forge.ReplaceRouteServers:output_type -> google.protobuf.Empty - 1028, // 1760: forge.Forge.UpdateAgentReportedInventory:output_type -> google.protobuf.Empty - 295, // 1761: forge.Forge.UpdateInstancePhoneHomeLastContact:output_type -> forge.InstancePhoneHomeLastContactResponse - 527, // 1762: forge.Forge.SetHostUefiPassword:output_type -> forge.SetHostUefiPasswordResponse - 529, // 1763: forge.Forge.ClearHostUefiPassword:output_type -> forge.ClearHostUefiPasswordResponse - 1028, // 1764: forge.Forge.AddExpectedMachine:output_type -> google.protobuf.Empty - 1028, // 1765: forge.Forge.DeleteExpectedMachine:output_type -> google.protobuf.Empty - 1028, // 1766: forge.Forge.UpdateExpectedMachine:output_type -> google.protobuf.Empty - 541, // 1767: forge.Forge.GetExpectedMachine:output_type -> forge.ExpectedMachine - 543, // 1768: forge.Forge.GetAllExpectedMachines:output_type -> forge.ExpectedMachineList - 1028, // 1769: forge.Forge.ReplaceAllExpectedMachines:output_type -> google.protobuf.Empty - 1028, // 1770: forge.Forge.DeleteAllExpectedMachines:output_type -> google.protobuf.Empty - 544, // 1771: forge.Forge.GetAllExpectedMachinesLinked:output_type -> forge.LinkedExpectedMachineList - 546, // 1772: forge.Forge.GetAllUnexpectedMachines:output_type -> forge.UnexpectedMachineList - 550, // 1773: forge.Forge.CreateExpectedMachines:output_type -> forge.BatchExpectedMachineOperationResponse - 550, // 1774: forge.Forge.UpdateExpectedMachines:output_type -> forge.BatchExpectedMachineOperationResponse - 1028, // 1775: forge.Forge.AddExpectedPowerShelf:output_type -> google.protobuf.Empty - 1028, // 1776: forge.Forge.DeleteExpectedPowerShelf:output_type -> google.protobuf.Empty - 1028, // 1777: forge.Forge.UpdateExpectedPowerShelf:output_type -> google.protobuf.Empty - 200, // 1778: forge.Forge.GetExpectedPowerShelf:output_type -> forge.ExpectedPowerShelf - 202, // 1779: forge.Forge.GetAllExpectedPowerShelves:output_type -> forge.ExpectedPowerShelfList - 1028, // 1780: forge.Forge.ReplaceAllExpectedPowerShelves:output_type -> google.protobuf.Empty - 1028, // 1781: forge.Forge.DeleteAllExpectedPowerShelves:output_type -> google.protobuf.Empty - 203, // 1782: forge.Forge.GetAllExpectedPowerShelvesLinked:output_type -> forge.LinkedExpectedPowerShelfList - 1028, // 1783: forge.Forge.AddExpectedSwitch:output_type -> google.protobuf.Empty - 1028, // 1784: forge.Forge.DeleteExpectedSwitch:output_type -> google.protobuf.Empty - 1028, // 1785: forge.Forge.UpdateExpectedSwitch:output_type -> google.protobuf.Empty - 222, // 1786: forge.Forge.GetExpectedSwitch:output_type -> forge.ExpectedSwitch - 224, // 1787: forge.Forge.GetAllExpectedSwitches:output_type -> forge.ExpectedSwitchList - 1028, // 1788: forge.Forge.ReplaceAllExpectedSwitches:output_type -> google.protobuf.Empty - 1028, // 1789: forge.Forge.DeleteAllExpectedSwitches:output_type -> google.protobuf.Empty - 225, // 1790: forge.Forge.GetAllExpectedSwitchesLinked:output_type -> forge.LinkedExpectedSwitchList - 1028, // 1791: forge.Forge.AddExpectedRack:output_type -> google.protobuf.Empty - 1028, // 1792: forge.Forge.DeleteExpectedRack:output_type -> google.protobuf.Empty - 1028, // 1793: forge.Forge.UpdateExpectedRack:output_type -> google.protobuf.Empty - 227, // 1794: forge.Forge.GetExpectedRack:output_type -> forge.ExpectedRack - 229, // 1795: forge.Forge.GetAllExpectedRacks:output_type -> forge.ExpectedRackList - 1028, // 1796: forge.Forge.ReplaceAllExpectedRacks:output_type -> google.protobuf.Empty - 1028, // 1797: forge.Forge.DeleteAllExpectedRacks:output_type -> google.protobuf.Empty - 125, // 1798: forge.Forge.AttestQuote:output_type -> forge.AttestQuoteResponse - 624, // 1799: forge.Forge.CreateInstanceType:output_type -> forge.CreateInstanceTypeResponse - 626, // 1800: forge.Forge.FindInstanceTypeIds:output_type -> forge.FindInstanceTypeIdsResponse - 628, // 1801: forge.Forge.FindInstanceTypesByIds:output_type -> forge.FindInstanceTypesByIdsResponse - 631, // 1802: forge.Forge.UpdateInstanceType:output_type -> forge.UpdateInstanceTypeResponse - 630, // 1803: forge.Forge.DeleteInstanceType:output_type -> forge.DeleteInstanceTypeResponse - 634, // 1804: forge.Forge.AssociateMachinesWithInstanceType:output_type -> forge.AssociateMachinesWithInstanceTypeResponse - 636, // 1805: forge.Forge.RemoveMachineInstanceTypeAssociation:output_type -> forge.RemoveMachineInstanceTypeAssociationResponse - 1109, // 1806: forge.Forge.CreateMeasurementBundle:output_type -> measured_boot.CreateMeasurementBundleResponse - 1110, // 1807: forge.Forge.DeleteMeasurementBundle:output_type -> measured_boot.DeleteMeasurementBundleResponse - 1111, // 1808: forge.Forge.RenameMeasurementBundle:output_type -> measured_boot.RenameMeasurementBundleResponse - 1112, // 1809: forge.Forge.UpdateMeasurementBundle:output_type -> measured_boot.UpdateMeasurementBundleResponse - 1113, // 1810: forge.Forge.ShowMeasurementBundle:output_type -> measured_boot.ShowMeasurementBundleResponse - 1114, // 1811: forge.Forge.ShowMeasurementBundles:output_type -> measured_boot.ShowMeasurementBundlesResponse - 1115, // 1812: forge.Forge.ListMeasurementBundles:output_type -> measured_boot.ListMeasurementBundlesResponse - 1116, // 1813: forge.Forge.ListMeasurementBundleMachines:output_type -> measured_boot.ListMeasurementBundleMachinesResponse - 1113, // 1814: forge.Forge.FindClosestBundleMatch:output_type -> measured_boot.ShowMeasurementBundleResponse - 1117, // 1815: forge.Forge.DeleteMeasurementJournal:output_type -> measured_boot.DeleteMeasurementJournalResponse - 1118, // 1816: forge.Forge.ShowMeasurementJournal:output_type -> measured_boot.ShowMeasurementJournalResponse - 1119, // 1817: forge.Forge.ShowMeasurementJournals:output_type -> measured_boot.ShowMeasurementJournalsResponse - 1120, // 1818: forge.Forge.ListMeasurementJournal:output_type -> measured_boot.ListMeasurementJournalResponse - 1121, // 1819: forge.Forge.AttestCandidateMachine:output_type -> measured_boot.AttestCandidateMachineResponse - 1122, // 1820: forge.Forge.ShowCandidateMachine:output_type -> measured_boot.ShowCandidateMachineResponse - 1123, // 1821: forge.Forge.ShowCandidateMachines:output_type -> measured_boot.ShowCandidateMachinesResponse - 1124, // 1822: forge.Forge.ListCandidateMachines:output_type -> measured_boot.ListCandidateMachinesResponse - 1125, // 1823: forge.Forge.CreateMeasurementSystemProfile:output_type -> measured_boot.CreateMeasurementSystemProfileResponse - 1126, // 1824: forge.Forge.DeleteMeasurementSystemProfile:output_type -> measured_boot.DeleteMeasurementSystemProfileResponse - 1127, // 1825: forge.Forge.RenameMeasurementSystemProfile:output_type -> measured_boot.RenameMeasurementSystemProfileResponse - 1128, // 1826: forge.Forge.ShowMeasurementSystemProfile:output_type -> measured_boot.ShowMeasurementSystemProfileResponse - 1129, // 1827: forge.Forge.ShowMeasurementSystemProfiles:output_type -> measured_boot.ShowMeasurementSystemProfilesResponse - 1130, // 1828: forge.Forge.ListMeasurementSystemProfiles:output_type -> measured_boot.ListMeasurementSystemProfilesResponse - 1131, // 1829: forge.Forge.ListMeasurementSystemProfileBundles:output_type -> measured_boot.ListMeasurementSystemProfileBundlesResponse - 1132, // 1830: forge.Forge.ListMeasurementSystemProfileMachines:output_type -> measured_boot.ListMeasurementSystemProfileMachinesResponse - 1133, // 1831: forge.Forge.CreateMeasurementReport:output_type -> measured_boot.CreateMeasurementReportResponse - 1134, // 1832: forge.Forge.DeleteMeasurementReport:output_type -> measured_boot.DeleteMeasurementReportResponse - 1135, // 1833: forge.Forge.PromoteMeasurementReport:output_type -> measured_boot.PromoteMeasurementReportResponse - 1136, // 1834: forge.Forge.RevokeMeasurementReport:output_type -> measured_boot.RevokeMeasurementReportResponse - 1137, // 1835: forge.Forge.ShowMeasurementReportForId:output_type -> measured_boot.ShowMeasurementReportForIdResponse - 1138, // 1836: forge.Forge.ShowMeasurementReportsForMachine:output_type -> measured_boot.ShowMeasurementReportsForMachineResponse - 1139, // 1837: forge.Forge.ShowMeasurementReports:output_type -> measured_boot.ShowMeasurementReportsResponse - 1140, // 1838: forge.Forge.ListMeasurementReport:output_type -> measured_boot.ListMeasurementReportResponse - 1141, // 1839: forge.Forge.MatchMeasurementReport:output_type -> measured_boot.MatchMeasurementReportResponse - 1142, // 1840: forge.Forge.ImportSiteMeasurements:output_type -> measured_boot.ImportSiteMeasurementsResponse - 1143, // 1841: forge.Forge.ExportSiteMeasurements:output_type -> measured_boot.ExportSiteMeasurementsResponse - 1144, // 1842: forge.Forge.AddMeasurementTrustedMachine:output_type -> measured_boot.AddMeasurementTrustedMachineResponse - 1145, // 1843: forge.Forge.RemoveMeasurementTrustedMachine:output_type -> measured_boot.RemoveMeasurementTrustedMachineResponse - 1146, // 1844: forge.Forge.AddMeasurementTrustedProfile:output_type -> measured_boot.AddMeasurementTrustedProfileResponse - 1147, // 1845: forge.Forge.RemoveMeasurementTrustedProfile:output_type -> measured_boot.RemoveMeasurementTrustedProfileResponse - 1148, // 1846: forge.Forge.ListMeasurementTrustedMachines:output_type -> measured_boot.ListMeasurementTrustedMachinesResponse - 1149, // 1847: forge.Forge.ListMeasurementTrustedProfiles:output_type -> measured_boot.ListMeasurementTrustedProfilesResponse - 1150, // 1848: forge.Forge.ListAttestationSummary:output_type -> measured_boot.ListAttestationSummaryResponse - 655, // 1849: forge.Forge.CreateNetworkSecurityGroup:output_type -> forge.CreateNetworkSecurityGroupResponse - 657, // 1850: forge.Forge.FindNetworkSecurityGroupIds:output_type -> forge.FindNetworkSecurityGroupIdsResponse - 659, // 1851: forge.Forge.FindNetworkSecurityGroupsByIds:output_type -> forge.FindNetworkSecurityGroupsByIdsResponse - 660, // 1852: forge.Forge.UpdateNetworkSecurityGroup:output_type -> forge.UpdateNetworkSecurityGroupResponse - 663, // 1853: forge.Forge.DeleteNetworkSecurityGroup:output_type -> forge.DeleteNetworkSecurityGroupResponse - 666, // 1854: forge.Forge.GetNetworkSecurityGroupPropagationStatus:output_type -> forge.GetNetworkSecurityGroupPropagationStatusResponse - 673, // 1855: forge.Forge.GetNetworkSecurityGroupAttachments:output_type -> forge.GetNetworkSecurityGroupAttachmentsResponse - 531, // 1856: forge.Forge.CreateOsImage:output_type -> forge.OsImage - 535, // 1857: forge.Forge.DeleteOsImage:output_type -> forge.DeleteOsImageResponse - 533, // 1858: forge.Forge.ListOsImage:output_type -> forge.ListOsImageResponse - 531, // 1859: forge.Forge.GetOsImage:output_type -> forge.OsImage - 531, // 1860: forge.Forge.UpdateOsImage:output_type -> forge.OsImage - 260, // 1861: forge.Forge.GetIpxeTemplate:output_type -> forge.IpxeTemplate - 538, // 1862: forge.Forge.ListIpxeTemplates:output_type -> forge.IpxeTemplateList - 551, // 1863: forge.Forge.RebootCompleted:output_type -> forge.MachineRebootCompletedResponse - 1028, // 1864: forge.Forge.PersistValidationResult:output_type -> google.protobuf.Empty - 558, // 1865: forge.Forge.GetMachineValidationResults:output_type -> forge.MachineValidationResultList - 555, // 1866: forge.Forge.MachineValidationCompleted:output_type -> forge.MachineValidationCompletedResponse - 563, // 1867: forge.Forge.MachineSetAutoUpdate:output_type -> forge.MachineSetAutoUpdateResponse - 566, // 1868: forge.Forge.GetMachineValidationExternalConfig:output_type -> forge.GetMachineValidationExternalConfigResponse - 568, // 1869: forge.Forge.GetMachineValidationExternalConfigs:output_type -> forge.GetMachineValidationExternalConfigsResponse - 1028, // 1870: forge.Forge.AddUpdateMachineValidationExternalConfig:output_type -> google.protobuf.Empty - 585, // 1871: forge.Forge.GetMachineValidationRuns:output_type -> forge.MachineValidationRunList - 588, // 1872: forge.Forge.FindMachineValidationRunItemIds:output_type -> forge.MachineValidationRunItemIdList - 590, // 1873: forge.Forge.FindMachineValidationRunItemsByIds:output_type -> forge.MachineValidationRunItemList - 593, // 1874: forge.Forge.GetMachineValidationAttempt:output_type -> forge.MachineValidationAttempt - 595, // 1875: forge.Forge.HeartbeatMachineValidationRun:output_type -> forge.MachineValidationHeartbeatResponse - 1028, // 1876: forge.Forge.RemoveMachineValidationExternalConfig:output_type -> google.protobuf.Empty - 602, // 1877: forge.Forge.GetMachineValidationTests:output_type -> forge.MachineValidationTestsGetResponse - 601, // 1878: forge.Forge.AddMachineValidationTest:output_type -> forge.MachineValidationTestAddUpdateResponse - 601, // 1879: forge.Forge.UpdateMachineValidationTest:output_type -> forge.MachineValidationTestAddUpdateResponse - 604, // 1880: forge.Forge.MachineValidationTestVerfied:output_type -> forge.MachineValidationTestVerfiedResponse - 606, // 1881: forge.Forge.MachineValidationTestNextVersion:output_type -> forge.MachineValidationTestNextVersionResponse - 609, // 1882: forge.Forge.MachineValidationTestEnableDisableTest:output_type -> forge.MachineValidationTestEnableDisableTestResponse - 611, // 1883: forge.Forge.UpdateMachineValidationRun:output_type -> forge.MachineValidationRunResponse - 405, // 1884: forge.Forge.AdminBmcReset:output_type -> forge.AdminBmcResetResponse - 582, // 1885: forge.Forge.AdminPowerControl:output_type -> forge.AdminPowerControlResponse - 393, // 1886: forge.Forge.DisableSecureBoot:output_type -> forge.DisableSecureBootResponse - 395, // 1887: forge.Forge.Lockdown:output_type -> forge.LockdownResponse - 1151, // 1888: forge.Forge.LockdownStatus:output_type -> site_explorer.LockdownStatus - 399, // 1889: forge.Forge.MachineSetup:output_type -> forge.MachineSetupResponse - 401, // 1890: forge.Forge.SetDpuFirstBootOrder:output_type -> forge.SetDpuFirstBootOrderResponse - 773, // 1891: forge.Forge.CreateBmcUser:output_type -> forge.CreateBmcUserResponse - 775, // 1892: forge.Forge.DeleteBmcUser:output_type -> forge.DeleteBmcUserResponse - 407, // 1893: forge.Forge.EnableInfiniteBoot:output_type -> forge.EnableInfiniteBootResponse - 409, // 1894: forge.Forge.IsInfiniteBootEnabled:output_type -> forge.IsInfiniteBootEnabledResponse - 572, // 1895: forge.Forge.OnDemandMachineValidation:output_type -> forge.MachineValidationOnDemandResponse - 580, // 1896: forge.Forge.OnDemandRackMaintenance:output_type -> forge.RackMaintenanceOnDemandResponse - 116, // 1897: forge.Forge.TpmAddCaCert:output_type -> forge.TpmCaAddedCaStatus - 122, // 1898: forge.Forge.TpmShowCaCerts:output_type -> forge.TpmCaCertDetailCollection - 119, // 1899: forge.Forge.TpmShowUnmatchedEkCerts:output_type -> forge.TpmEkCertStatusCollection - 1028, // 1900: forge.Forge.TpmDeleteCaCert:output_type -> google.protobuf.Empty - 638, // 1901: forge.Forge.RedfishBrowse:output_type -> forge.RedfishBrowseResponse - 640, // 1902: forge.Forge.RedfishListActions:output_type -> forge.RedfishListActionsResponse - 645, // 1903: forge.Forge.RedfishCreateAction:output_type -> forge.RedfishCreateActionResponse - 647, // 1904: forge.Forge.RedfishApproveAction:output_type -> forge.RedfishApproveActionResponse - 648, // 1905: forge.Forge.RedfishApplyAction:output_type -> forge.RedfishApplyActionResponse - 649, // 1906: forge.Forge.RedfishCancelAction:output_type -> forge.RedfishCancelActionResponse - 651, // 1907: forge.Forge.UfmBrowse:output_type -> forge.UfmBrowseResponse - 675, // 1908: forge.Forge.GetDesiredFirmwareVersions:output_type -> forge.GetDesiredFirmwareVersionsResponse - 691, // 1909: forge.Forge.CreateSku:output_type -> forge.SkuIdList - 687, // 1910: forge.Forge.GenerateSkuFromMachine:output_type -> forge.Sku - 1028, // 1911: forge.Forge.VerifySkuForMachine:output_type -> google.protobuf.Empty - 1028, // 1912: forge.Forge.AssignSkuToMachine:output_type -> google.protobuf.Empty - 1028, // 1913: forge.Forge.RemoveSkuAssociation:output_type -> google.protobuf.Empty - 1028, // 1914: forge.Forge.DeleteSku:output_type -> google.protobuf.Empty - 691, // 1915: forge.Forge.GetAllSkuIds:output_type -> forge.SkuIdList - 690, // 1916: forge.Forge.FindSkusByIds:output_type -> forge.SkuList - 1028, // 1917: forge.Forge.UpdateSkuMetadata:output_type -> google.protobuf.Empty - 687, // 1918: forge.Forge.ReplaceSku:output_type -> forge.Sku - 375, // 1919: forge.Forge.GetManagedHostQuarantineState:output_type -> forge.GetManagedHostQuarantineStateResponse - 377, // 1920: forge.Forge.SetManagedHostQuarantineState:output_type -> forge.SetManagedHostQuarantineStateResponse - 379, // 1921: forge.Forge.ClearManagedHostQuarantineState:output_type -> forge.ClearManagedHostQuarantineStateResponse - 1028, // 1922: forge.Forge.ResetHostReprovisioning:output_type -> google.protobuf.Empty - 1028, // 1923: forge.Forge.CopyBfbToDpuRshim:output_type -> google.protobuf.Empty - 697, // 1924: forge.Forge.GetAllDpaInterfaceIds:output_type -> forge.DpaInterfaceIdList - 699, // 1925: forge.Forge.FindDpaInterfacesByIds:output_type -> forge.DpaInterfaceList - 695, // 1926: forge.Forge.CreateDpaInterface:output_type -> forge.DpaInterface - 695, // 1927: forge.Forge.EnsureDpaInterface:output_type -> forge.DpaInterface - 702, // 1928: forge.Forge.DeleteDpaInterface:output_type -> forge.DpaInterfaceDeletionResult - 707, // 1929: forge.Forge.GetPowerOptions:output_type -> forge.PowerOptionResponse - 707, // 1930: forge.Forge.UpdatePowerOption:output_type -> forge.PowerOptionResponse - 1028, // 1931: forge.Forge.AllowIngestionAndPowerOn:output_type -> google.protobuf.Empty - 115, // 1932: forge.Forge.DetermineMachineIngestionState:output_type -> forge.MachineIngestionStateResponse - 725, // 1933: forge.Forge.FindRackIds:output_type -> forge.RackIdList - 723, // 1934: forge.Forge.FindRacksByIds:output_type -> forge.RackList - 722, // 1935: forge.Forge.GetRack:output_type -> forge.GetRackResponse - 1028, // 1936: forge.Forge.DeleteRack:output_type -> google.protobuf.Empty - 733, // 1937: forge.Forge.AdminForceDeleteRack:output_type -> forge.AdminForceDeleteRackResponse - 740, // 1938: forge.Forge.GetRackProfile:output_type -> forge.GetRackProfileResponse - 711, // 1939: forge.Forge.CreateComputeAllocation:output_type -> forge.CreateComputeAllocationResponse - 713, // 1940: forge.Forge.FindComputeAllocationIds:output_type -> forge.FindComputeAllocationIdsResponse - 715, // 1941: forge.Forge.FindComputeAllocationsByIds:output_type -> forge.FindComputeAllocationsByIdsResponse - 716, // 1942: forge.Forge.UpdateComputeAllocation:output_type -> forge.UpdateComputeAllocationResponse - 719, // 1943: forge.Forge.DeleteComputeAllocation:output_type -> forge.DeleteComputeAllocationResponse - 777, // 1944: forge.Forge.SetFirmwareUpdateTimeWindow:output_type -> forge.SetFirmwareUpdateTimeWindowResponse - 779, // 1945: forge.Forge.ListHostFirmware:output_type -> forge.ListHostFirmwareResponse - 1152, // 1946: forge.Forge.PublishMlxDeviceReport:output_type -> mlx_device.PublishMlxDeviceReportResponse - 1153, // 1947: forge.Forge.PublishMlxObservationReport:output_type -> mlx_device.PublishMlxObservationReportResponse - 782, // 1948: forge.Forge.TrimTable:output_type -> forge.TrimTableResponse - 784, // 1949: forge.Forge.ListNvlinkNmxcEndpoints:output_type -> forge.NvlinkNmxcEndpointList - 783, // 1950: forge.Forge.CreateNvlinkNmxcEndpoint:output_type -> forge.NvlinkNmxcEndpoint - 783, // 1951: forge.Forge.UpdateNvlinkNmxcEndpoint:output_type -> forge.NvlinkNmxcEndpoint - 1028, // 1952: forge.Forge.DeleteNvlinkNmxcEndpoint:output_type -> google.protobuf.Empty - 787, // 1953: forge.Forge.CreateRemediation:output_type -> forge.CreateRemediationResponse - 1028, // 1954: forge.Forge.ApproveRemediation:output_type -> google.protobuf.Empty - 1028, // 1955: forge.Forge.RevokeRemediation:output_type -> google.protobuf.Empty - 1028, // 1956: forge.Forge.EnableRemediation:output_type -> google.protobuf.Empty - 1028, // 1957: forge.Forge.DisableRemediation:output_type -> google.protobuf.Empty - 788, // 1958: forge.Forge.FindRemediationIds:output_type -> forge.RemediationIdList - 789, // 1959: forge.Forge.FindRemediationsByIds:output_type -> forge.RemediationList - 796, // 1960: forge.Forge.FindAppliedRemediationIds:output_type -> forge.AppliedRemediationIdList - 799, // 1961: forge.Forge.FindAppliedRemediations:output_type -> forge.AppliedRemediationList - 801, // 1962: forge.Forge.GetNextRemediationForMachine:output_type -> forge.GetNextRemediationForMachineResponse - 1028, // 1963: forge.Forge.RemediationApplied:output_type -> google.protobuf.Empty - 1028, // 1964: forge.Forge.SetPrimaryDpu:output_type -> google.protobuf.Empty - 1028, // 1965: forge.Forge.SetPrimaryInterface:output_type -> google.protobuf.Empty - 810, // 1966: forge.Forge.CreateDpuExtensionService:output_type -> forge.DpuExtensionService - 810, // 1967: forge.Forge.UpdateDpuExtensionService:output_type -> forge.DpuExtensionService - 814, // 1968: forge.Forge.DeleteDpuExtensionService:output_type -> forge.DeleteDpuExtensionServiceResponse - 816, // 1969: forge.Forge.FindDpuExtensionServiceIds:output_type -> forge.DpuExtensionServiceIdList - 818, // 1970: forge.Forge.FindDpuExtensionServicesByIds:output_type -> forge.DpuExtensionServiceList - 820, // 1971: forge.Forge.GetDpuExtensionServiceVersionsInfo:output_type -> forge.DpuExtensionServiceVersionInfoList - 822, // 1972: forge.Forge.FindInstancesByDpuExtensionService:output_type -> forge.FindInstancesByDpuExtensionServiceResponse - 89, // 1973: forge.Forge.TriggerMachineAttestation:output_type -> forge.SpdmMachineAttestationTriggerResponse - 1028, // 1974: forge.Forge.CancelMachineAttestation:output_type -> google.protobuf.Empty - 94, // 1975: forge.Forge.ListAttestationMachines:output_type -> forge.SpdmListAttestationMachinesResponse - 91, // 1976: forge.Forge.GetAttestationMachine:output_type -> forge.SpdmGetAttestationMachineResponse - 96, // 1977: forge.Forge.SignMachineIdentity:output_type -> forge.MachineIdentityResponse - 101, // 1978: forge.Forge.GetTenantIdentityConfiguration:output_type -> forge.TenantIdentityConfigResponse - 101, // 1979: forge.Forge.SetTenantIdentityConfiguration:output_type -> forge.TenantIdentityConfigResponse - 1028, // 1980: forge.Forge.DeleteTenantIdentityConfiguration:output_type -> google.protobuf.Empty - 104, // 1981: forge.Forge.GetTokenDelegation:output_type -> forge.TokenDelegationResponse - 104, // 1982: forge.Forge.SetTokenDelegation:output_type -> forge.TokenDelegationResponse - 1028, // 1983: forge.Forge.DeleteTokenDelegation:output_type -> google.protobuf.Empty - 110, // 1984: forge.Forge.ReencryptTenantIdentitySecrets:output_type -> forge.ReencryptTenantIdentitySecretsResponse - 111, // 1985: forge.Forge.GetJWKS:output_type -> forge.Jwks - 112, // 1986: forge.Forge.GetOpenIDConfiguration:output_type -> forge.OpenIdConfiguration - 829, // 1987: forge.Forge.ScoutStream:output_type -> forge.ScoutStreamScoutBoundMessage - 832, // 1988: forge.Forge.ScoutStreamShowConnections:output_type -> forge.ScoutStreamShowConnectionsResponse - 834, // 1989: forge.Forge.ScoutStreamDisconnect:output_type -> forge.ScoutStreamDisconnectResponse - 836, // 1990: forge.Forge.ScoutStreamPing:output_type -> forge.ScoutStreamAdminPingResponse - 1154, // 1991: forge.Forge.MlxAdminProfileSync:output_type -> mlx_device.MlxAdminProfileSyncResponse - 1155, // 1992: forge.Forge.MlxAdminProfileShow:output_type -> mlx_device.MlxAdminProfileShowResponse - 1156, // 1993: forge.Forge.MlxAdminProfileCompare:output_type -> mlx_device.MlxAdminProfileCompareResponse - 1157, // 1994: forge.Forge.MlxAdminProfileList:output_type -> mlx_device.MlxAdminProfileListResponse - 1158, // 1995: forge.Forge.MlxAdminLockdownLock:output_type -> mlx_device.MlxAdminLockdownLockResponse - 1159, // 1996: forge.Forge.MlxAdminLockdownUnlock:output_type -> mlx_device.MlxAdminLockdownUnlockResponse - 1160, // 1997: forge.Forge.MlxAdminLockdownStatus:output_type -> mlx_device.MlxAdminLockdownStatusResponse - 1161, // 1998: forge.Forge.MlxAdminShowDevice:output_type -> mlx_device.MlxAdminDeviceInfoResponse - 1162, // 1999: forge.Forge.MlxAdminShowMachine:output_type -> mlx_device.MlxAdminDeviceReportResponse - 1163, // 2000: forge.Forge.MlxAdminRegistryList:output_type -> mlx_device.MlxAdminRegistryListResponse - 1164, // 2001: forge.Forge.MlxAdminRegistryShow:output_type -> mlx_device.MlxAdminRegistryShowResponse - 1165, // 2002: forge.Forge.MlxAdminConfigQuery:output_type -> mlx_device.MlxAdminConfigQueryResponse - 1166, // 2003: forge.Forge.MlxAdminConfigSet:output_type -> mlx_device.MlxAdminConfigSetResponse - 1167, // 2004: forge.Forge.MlxAdminConfigSync:output_type -> mlx_device.MlxAdminConfigSyncResponse - 1168, // 2005: forge.Forge.MlxAdminConfigCompare:output_type -> mlx_device.MlxAdminConfigCompareResponse - 758, // 2006: forge.Forge.FindNVLinkPartitionIds:output_type -> forge.NVLinkPartitionIdList - 753, // 2007: forge.Forge.FindNVLinkPartitionsByIds:output_type -> forge.NVLinkPartitionList - 753, // 2008: forge.Forge.NVLinkPartitionsForTenant:output_type -> forge.NVLinkPartitionList - 769, // 2009: forge.Forge.FindNVLinkLogicalPartitionIds:output_type -> forge.NVLinkLogicalPartitionIdList - 763, // 2010: forge.Forge.FindNVLinkLogicalPartitionsByIds:output_type -> forge.NVLinkLogicalPartitionList - 762, // 2011: forge.Forge.CreateNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartition - 771, // 2012: forge.Forge.UpdateNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartitionUpdateResult - 766, // 2013: forge.Forge.DeleteNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartitionDeletionResult - 763, // 2014: forge.Forge.NVLinkLogicalPartitionsForTenant:output_type -> forge.NVLinkLogicalPartitionList - 850, // 2015: forge.Forge.GetMachinePositionInfo:output_type -> forge.MachinePositionInfoList - 751, // 2016: forge.Forge.NmxcBrowse:output_type -> forge.NmxcBrowseResponse - 1028, // 2017: forge.Forge.ModifyDPFState:output_type -> google.protobuf.Empty - 853, // 2018: forge.Forge.GetDPFState:output_type -> forge.DPFStateResponse - 856, // 2019: forge.Forge.GetDPFHostSnapshot:output_type -> forge.DPFHostSnapshotResponse - 859, // 2020: forge.Forge.GetDPFServiceVersions:output_type -> forge.DPFServiceVersionsResponse - 867, // 2021: forge.Forge.ComponentPowerControl:output_type -> forge.ComponentPowerControlResponse - 865, // 2022: forge.Forge.GetComponentInventory:output_type -> forge.GetComponentInventoryResponse - 874, // 2023: forge.Forge.UpdateComponentFirmware:output_type -> forge.UpdateComponentFirmwareResponse - 876, // 2024: forge.Forge.GetComponentFirmwareStatus:output_type -> forge.GetComponentFirmwareStatusResponse - 880, // 2025: forge.Forge.ListComponentFirmwareVersions:output_type -> forge.ListComponentFirmwareVersionsResponse - 893, // 2026: forge.Forge.CreateOperatingSystem:output_type -> forge.OperatingSystem - 893, // 2027: forge.Forge.GetOperatingSystem:output_type -> forge.OperatingSystem - 893, // 2028: forge.Forge.UpdateOperatingSystem:output_type -> forge.OperatingSystem - 899, // 2029: forge.Forge.DeleteOperatingSystem:output_type -> forge.DeleteOperatingSystemResponse - 901, // 2030: forge.Forge.FindOperatingSystemIds:output_type -> forge.OperatingSystemIdList - 903, // 2031: forge.Forge.FindOperatingSystemsByIds:output_type -> forge.OperatingSystemList - 905, // 2032: forge.Forge.GetOperatingSystemCachableIpxeTemplateArtifacts:output_type -> forge.IpxeTemplateArtifactList - 905, // 2033: forge.Forge.UpdateOperatingSystemCachableIpxeTemplateArtifacts:output_type -> forge.IpxeTemplateArtifactList - 910, // 2034: forge.Forge.ReWrapSecrets:output_type -> forge.ReWrapSecretsResponse - 1579, // [1579:2035] is the sub-list for method output_type - 1123, // [1123:1579] is the sub-list for method input_type - 1123, // [1123:1123] is the sub-list for extension type_name - 1123, // [1123:1123] is the sub-list for extension extendee - 0, // [0:1123] is the sub-list for field type_name + 297, // 322: forge.DeleteAttribution.initiated_by:type_name -> forge.DeleteInitiatedBy + 974, // 323: forge.InstanceReleaseRequest.id:type_name -> common.InstanceId + 296, // 324: forge.InstanceReleaseRequest.issue:type_name -> forge.Issue + 298, // 325: forge.InstanceReleaseRequest.delete_attribution:type_name -> forge.DeleteAttribution + 958, // 326: forge.MachinesByIdsRequest.machine_ids:type_name -> common.MachineId + 967, // 327: forge.MachineSearchConfig.rack_id:type_name -> common.RackId + 958, // 328: forge.MachineStateHistoriesRequest.machine_ids:type_name -> common.MachineId + 925, // 329: forge.MachineStateHistories.histories:type_name -> forge.MachineStateHistories.HistoriesEntry + 342, // 330: forge.MachineStateHistoryRecords.records:type_name -> forge.MachineEvent + 958, // 331: forge.MachineHealthHistoriesRequest.machine_ids:type_name -> common.MachineId + 959, // 332: forge.MachineHealthHistoriesRequest.start_time:type_name -> google.protobuf.Timestamp + 959, // 333: forge.MachineHealthHistoriesRequest.end_time:type_name -> google.protobuf.Timestamp + 926, // 334: forge.HealthHistories.histories:type_name -> forge.HealthHistories.HistoriesEntry + 309, // 335: forge.HealthHistoryRecords.records:type_name -> forge.HealthHistoryRecord + 965, // 336: forge.HealthHistoryRecord.health:type_name -> health.HealthReport + 959, // 337: forge.HealthHistoryRecord.time:type_name -> google.protobuf.Timestamp + 459, // 338: forge.TenantList.tenants:type_name -> forge.Tenant + 343, // 339: forge.InterfaceList.interfaces:type_name -> forge.MachineInterface + 327, // 340: forge.MachineList.machines:type_name -> forge.Machine + 979, // 341: forge.InterfaceDeleteQuery.id:type_name -> common.MachineInterfaceId + 979, // 342: forge.InterfaceSearchQuery.id:type_name -> common.MachineInterfaceId + 979, // 343: forge.AssignStaticAddressRequest.interface_id:type_name -> common.MachineInterfaceId + 979, // 344: forge.AssignStaticAddressResponse.interface_id:type_name -> common.MachineInterfaceId + 17, // 345: forge.AssignStaticAddressResponse.status:type_name -> forge.AssignStaticAddressStatus + 979, // 346: forge.RemoveStaticAddressRequest.interface_id:type_name -> common.MachineInterfaceId + 979, // 347: forge.RemoveStaticAddressResponse.interface_id:type_name -> common.MachineInterfaceId + 18, // 348: forge.RemoveStaticAddressResponse.status:type_name -> forge.RemoveStaticAddressStatus + 979, // 349: forge.FindInterfaceAddressesRequest.interface_id:type_name -> common.MachineInterfaceId + 979, // 350: forge.FindInterfaceAddressesResponse.interface_id:type_name -> common.MachineInterfaceId + 323, // 351: forge.FindInterfaceAddressesResponse.addresses:type_name -> forge.InterfaceAddress + 979, // 352: forge.BmcInfo.machine_interface_id:type_name -> common.MachineInterfaceId + 958, // 353: forge.Machine.id:type_name -> common.MachineId + 338, // 354: forge.Machine.state_reason:type_name -> forge.ControllerStateReason + 340, // 355: forge.Machine.state_sla:type_name -> forge.StateSla + 342, // 356: forge.Machine.events:type_name -> forge.MachineEvent + 343, // 357: forge.Machine.interfaces:type_name -> forge.MachineInterface + 980, // 358: forge.Machine.discovery_info:type_name -> machine_discovery.DiscoveryInfo + 19, // 359: forge.Machine.machine_type:type_name -> forge.MachineType + 325, // 360: forge.Machine.bmc_info:type_name -> forge.BmcInfo + 959, // 361: forge.Machine.last_reboot_time:type_name -> google.protobuf.Timestamp + 959, // 362: forge.Machine.last_observation_time:type_name -> google.protobuf.Timestamp + 959, // 363: forge.Machine.maintenance_start_time:type_name -> google.protobuf.Timestamp + 958, // 364: forge.Machine.associated_host_machine_id:type_name -> common.MachineId + 335, // 365: forge.Machine.inventory:type_name -> forge.MachineComponentInventory + 959, // 366: forge.Machine.last_reboot_requested_time:type_name -> google.protobuf.Timestamp + 958, // 367: forge.Machine.associated_dpu_machine_ids:type_name -> common.MachineId + 965, // 368: forge.Machine.health:type_name -> health.HealthReport + 337, // 369: forge.Machine.health_sources:type_name -> forge.HealthSourceOrigin + 344, // 370: forge.Machine.ib_status:type_name -> forge.InfinibandStatusObservation + 251, // 371: forge.Machine.metadata:type_name -> forge.Metadata + 329, // 372: forge.Machine.instance_network_restrictions:type_name -> forge.InstanceNetworkRestrictions + 621, // 373: forge.Machine.capabilities:type_name -> forge.MachineCapabilitiesSet + 694, // 374: forge.Machine.hw_sku_status:type_name -> forge.SkuStatus + 375, // 375: forge.Machine.quarantine_state:type_name -> forge.ManagedHostQuarantineState + 745, // 376: forge.Machine.nvlink_info:type_name -> forge.MachineNVLinkInfo + 750, // 377: forge.Machine.nvlink_status_observation:type_name -> forge.MachineNVLinkStatusObservation + 967, // 378: forge.Machine.rack_id:type_name -> common.RackId + 209, // 379: forge.Machine.placement_in_rack:type_name -> forge.PlacementInRack + 747, // 380: forge.Machine.spx_status_observation:type_name -> forge.MachineSpxStatusObservation + 328, // 381: forge.Machine.dpf:type_name -> forge.DpfMachineState + 20, // 382: forge.InstanceNetworkRestrictions.network_segment_membership_type:type_name -> forge.InstanceNetworkSegmentMembershipType + 972, // 383: forge.InstanceNetworkRestrictions.network_segment_ids:type_name -> common.NetworkSegmentId + 958, // 384: forge.MachineMetadataUpdateRequest.machine_id:type_name -> common.MachineId + 251, // 385: forge.MachineMetadataUpdateRequest.metadata:type_name -> forge.Metadata + 967, // 386: forge.RackMetadataUpdateRequest.rack_id:type_name -> common.RackId + 251, // 387: forge.RackMetadataUpdateRequest.metadata:type_name -> forge.Metadata + 969, // 388: forge.SwitchMetadataUpdateRequest.switch_id:type_name -> common.SwitchId + 251, // 389: forge.SwitchMetadataUpdateRequest.metadata:type_name -> forge.Metadata + 966, // 390: forge.PowerShelfMetadataUpdateRequest.power_shelf_id:type_name -> common.PowerShelfId + 251, // 391: forge.PowerShelfMetadataUpdateRequest.metadata:type_name -> forge.Metadata + 958, // 392: forge.DpuAgentInventoryReport.machine_id:type_name -> common.MachineId + 335, // 393: forge.DpuAgentInventoryReport.inventory:type_name -> forge.MachineComponentInventory + 336, // 394: forge.MachineComponentInventory.components:type_name -> forge.MachineInventorySoftwareComponent + 38, // 395: forge.HealthSourceOrigin.mode:type_name -> forge.HealthReportApplyMode + 21, // 396: forge.ControllerStateReason.outcome:type_name -> forge.ControllerStateOutcome + 339, // 397: forge.ControllerStateReason.source_ref:type_name -> forge.ControllerStateSourceReference + 981, // 398: forge.StateSla.sla:type_name -> google.protobuf.Duration + 7, // 399: forge.InstanceTenantStatus.state:type_name -> forge.TenantState + 959, // 400: forge.MachineEvent.time:type_name -> google.protobuf.Timestamp + 979, // 401: forge.MachineInterface.id:type_name -> common.MachineInterfaceId + 958, // 402: forge.MachineInterface.attached_dpu_machine_id:type_name -> common.MachineId + 958, // 403: forge.MachineInterface.machine_id:type_name -> common.MachineId + 972, // 404: forge.MachineInterface.segment_id:type_name -> common.NetworkSegmentId + 971, // 405: forge.MachineInterface.domain_id:type_name -> common.DomainId + 959, // 406: forge.MachineInterface.created:type_name -> google.protobuf.Timestamp + 959, // 407: forge.MachineInterface.last_dhcp:type_name -> google.protobuf.Timestamp + 966, // 408: forge.MachineInterface.power_shelf_id:type_name -> common.PowerShelfId + 969, // 409: forge.MachineInterface.switch_id:type_name -> common.SwitchId + 24, // 410: forge.MachineInterface.association_type:type_name -> forge.InterfaceAssociationType + 25, // 411: forge.MachineInterface.interface_type:type_name -> forge.InterfaceType + 345, // 412: forge.InfinibandStatusObservation.ib_interfaces:type_name -> forge.MachineIbInterface + 959, // 413: forge.InfinibandStatusObservation.observed_at:type_name -> google.protobuf.Timestamp + 982, // 414: forge.MachineIbInterface.associated_pkeys:type_name -> common.StringList + 982, // 415: forge.MachineIbInterface.associated_partition_ids:type_name -> common.StringList + 26, // 416: forge.DhcpDiscovery.address_family:type_name -> forge.AddressFamily + 27, // 417: forge.DhcpDiscovery.message_kind:type_name -> forge.MessageKind + 28, // 418: forge.ExpireDhcpLeaseResponse.status:type_name -> forge.ExpireDhcpLeaseStatus + 958, // 419: forge.DhcpRecord.machine_id:type_name -> common.MachineId + 979, // 420: forge.DhcpRecord.machine_interface_id:type_name -> common.MachineInterfaceId + 972, // 421: forge.DhcpRecord.segment_id:type_name -> common.NetworkSegmentId + 971, // 422: forge.DhcpRecord.subdomain_id:type_name -> common.DomainId + 959, // 423: forge.DhcpRecord.last_invalidation_time:type_name -> google.protobuf.Timestamp + 235, // 424: forge.NetworkSegmentList.network_segments:type_name -> forge.NetworkSegment + 29, // 425: forge.SSHKeyValidationResponse.role:type_name -> forge.UserRoles + 969, // 426: forge.GetSwitchNvosCredentialsRequest.switch_id:type_name -> common.SwitchId + 356, // 427: forge.GetBmcCredentialsResponse.credentials:type_name -> forge.BmcCredentials + 808, // 428: forge.BmcCredentials.username_password:type_name -> forge.UsernamePassword + 809, // 429: forge.BmcCredentials.session_token:type_name -> forge.SessionToken + 364, // 430: forge.SshRequest.endpoint_request:type_name -> forge.BmcEndpointRequest + 366, // 431: forge.CopyBfbToDpuRshimRequest.ssh_request:type_name -> forge.SshRequest + 958, // 432: forge.UpdateMachineHardwareInfoRequest.machine_id:type_name -> common.MachineId + 369, // 433: forge.UpdateMachineHardwareInfoRequest.info:type_name -> forge.MachineHardwareInfo + 30, // 434: forge.UpdateMachineHardwareInfoRequest.update_type:type_name -> forge.MachineHardwareInfoUpdateType + 983, // 435: forge.MachineHardwareInfo.gpus:type_name -> machine_discovery.Gpu + 958, // 436: forge.ManagedHostNetworkConfigRequest.dpu_machine_id:type_name -> common.MachineId + 382, // 437: forge.ManagedHostNetworkConfigResponse.managed_host_config:type_name -> forge.ManagedHostNetworkConfig + 383, // 438: forge.ManagedHostNetworkConfigResponse.admin_interface:type_name -> forge.FlatInterfaceConfig + 383, // 439: forge.ManagedHostNetworkConfigResponse.tenant_interfaces:type_name -> forge.FlatInterfaceConfig + 974, // 440: forge.ManagedHostNetworkConfigResponse.instance_id:type_name -> common.InstanceId + 5, // 441: forge.ManagedHostNetworkConfigResponse.network_virtualization_type:type_name -> forge.VpcVirtualizationType + 32, // 442: forge.ManagedHostNetworkConfigResponse.vpc_isolation_behavior:type_name -> forge.VpcIsolationBehaviorType + 284, // 443: forge.ManagedHostNetworkConfigResponse.instance:type_name -> forge.Instance + 984, // 444: forge.ManagedHostNetworkConfigResponse.common_internal_route_target:type_name -> common.RouteTarget + 984, // 445: forge.ManagedHostNetworkConfigResponse.additional_route_target_imports:type_name -> common.RouteTarget + 672, // 446: forge.ManagedHostNetworkConfigResponse.network_security_policy_overrides:type_name -> forge.ResolvedNetworkSecurityGroupRule + 374, // 447: forge.ManagedHostNetworkConfigResponse.dpu_extension_services:type_name -> forge.ManagedHostDpuExtensionServiceConfig + 372, // 448: forge.ManagedHostNetworkConfigResponse.traffic_intercept_config:type_name -> forge.TrafficInterceptConfig + 844, // 449: forge.ManagedHostNetworkConfigResponse.routing_profile:type_name -> forge.RoutingProfile + 373, // 450: forge.TrafficInterceptConfig.bridging:type_name -> forge.TrafficInterceptBridging + 927, // 451: forge.TrafficInterceptBridging.host_representor_intercept_bridging:type_name -> forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry + 67, // 452: forge.ManagedHostDpuExtensionServiceConfig.service_type:type_name -> forge.DpuExtensionServiceType + 810, // 453: forge.ManagedHostDpuExtensionServiceConfig.credential:type_name -> forge.DpuExtensionServiceCredential + 829, // 454: forge.ManagedHostDpuExtensionServiceConfig.observability:type_name -> forge.DpuExtensionServiceObservability + 31, // 455: forge.ManagedHostQuarantineState.mode:type_name -> forge.ManagedHostQuarantineMode + 958, // 456: forge.GetManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId + 375, // 457: forge.GetManagedHostQuarantineStateResponse.quarantine_state:type_name -> forge.ManagedHostQuarantineState + 958, // 458: forge.SetManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId + 375, // 459: forge.SetManagedHostQuarantineStateRequest.quarantine_state:type_name -> forge.ManagedHostQuarantineState + 375, // 460: forge.SetManagedHostQuarantineStateResponse.prior_quarantine_state:type_name -> forge.ManagedHostQuarantineState + 958, // 461: forge.ClearManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId + 375, // 462: forge.ClearManagedHostQuarantineStateResponse.prior_quarantine_state:type_name -> forge.ManagedHostQuarantineState + 375, // 463: forge.ManagedHostNetworkConfig.quarantine_state:type_name -> forge.ManagedHostQuarantineState + 37, // 464: forge.FlatInterfaceConfig.function_type:type_name -> forge.InterfaceFunctionType + 385, // 465: forge.FlatInterfaceConfig.ipv6_interface_config:type_name -> forge.FlatInterfaceIpv6Config + 844, // 466: forge.FlatInterfaceConfig.vpc_routing_profile:type_name -> forge.RoutingProfile + 384, // 467: forge.FlatInterfaceConfig.interface_routing_profile:type_name -> forge.FlatInterfaceRoutingProfile + 386, // 468: forge.FlatInterfaceConfig.network_security_group:type_name -> forge.FlatInterfaceNetworkSecurityGroupConfig + 968, // 469: forge.FlatInterfaceConfig.internal_uuid:type_name -> common.UUID + 843, // 470: forge.FlatInterfaceRoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry + 54, // 471: forge.FlatInterfaceNetworkSecurityGroupConfig.source:type_name -> forge.NetworkSecurityGroupSource + 672, // 472: forge.FlatInterfaceNetworkSecurityGroupConfig.rules:type_name -> forge.ResolvedNetworkSecurityGroupRule + 435, // 473: forge.ManagedHostNetworkStatusResponse.all:type_name -> forge.DpuNetworkStatus + 959, // 474: forge.DpuAgentUpgradeCheckRequest.binary_mtime:type_name -> google.protobuf.Timestamp + 33, // 475: forge.DpuAgentUpgradePolicyRequest.new_policy:type_name -> forge.AgentUpgradePolicy + 33, // 476: forge.DpuAgentUpgradePolicyResponse.active_policy:type_name -> forge.AgentUpgradePolicy + 364, // 477: forge.LockdownRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 958, // 478: forge.LockdownRequest.machine_id:type_name -> common.MachineId + 34, // 479: forge.LockdownRequest.action:type_name -> forge.LockdownAction + 364, // 480: forge.LockdownStatusRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 958, // 481: forge.LockdownStatusRequest.machine_id:type_name -> common.MachineId + 364, // 482: forge.MachineSetupStatusRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 364, // 483: forge.MachineSetupRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 364, // 484: forge.SetDpuFirstBootOrderRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 364, // 485: forge.AdminRebootRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 364, // 486: forge.AdminBmcResetRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 364, // 487: forge.EnableInfiniteBootRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 364, // 488: forge.IsInfiniteBootEnabledRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 958, // 489: forge.BMCMetaDataGetRequest.machine_id:type_name -> common.MachineId + 29, // 490: forge.BMCMetaDataGetRequest.role:type_name -> forge.UserRoles + 35, // 491: forge.BMCMetaDataGetRequest.request_type:type_name -> forge.BMCRequestType + 364, // 492: forge.BMCMetaDataGetRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 958, // 493: forge.MachineCredentialsUpdateRequest.machine_id:type_name -> common.MachineId + 928, // 494: forge.MachineCredentialsUpdateRequest.credentials:type_name -> forge.MachineCredentialsUpdateRequest.Credentials + 958, // 495: forge.ForgeAgentControlRequest.machine_id:type_name -> common.MachineId + 79, // 496: forge.ForgeAgentControlResponse.legacy_action:type_name -> forge.ForgeAgentControlResponse.LegacyAction + 929, // 497: forge.ForgeAgentControlResponse.data:type_name -> forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo + 930, // 498: forge.ForgeAgentControlResponse.noop:type_name -> forge.ForgeAgentControlResponse.Noop + 931, // 499: forge.ForgeAgentControlResponse.reset:type_name -> forge.ForgeAgentControlResponse.Reset + 932, // 500: forge.ForgeAgentControlResponse.discovery:type_name -> forge.ForgeAgentControlResponse.Discovery + 933, // 501: forge.ForgeAgentControlResponse.rebuild:type_name -> forge.ForgeAgentControlResponse.Rebuild + 934, // 502: forge.ForgeAgentControlResponse.retry:type_name -> forge.ForgeAgentControlResponse.Retry + 935, // 503: forge.ForgeAgentControlResponse.measure:type_name -> forge.ForgeAgentControlResponse.Measure + 936, // 504: forge.ForgeAgentControlResponse.log_error:type_name -> forge.ForgeAgentControlResponse.LogError + 937, // 505: forge.ForgeAgentControlResponse.machine_validation:type_name -> forge.ForgeAgentControlResponse.MachineValidation + 939, // 506: forge.ForgeAgentControlResponse.mlx_action:type_name -> forge.ForgeAgentControlResponse.MlxAction + 946, // 507: forge.ForgeAgentControlResponse.firmware_upgrade:type_name -> forge.ForgeAgentControlResponse.FirmwareUpgrade + 979, // 508: forge.MachineDiscoveryInfo.machine_interface_id:type_name -> common.MachineInterfaceId + 980, // 509: forge.MachineDiscoveryInfo.info:type_name -> machine_discovery.DiscoveryInfo + 36, // 510: forge.MachineDiscoveryInfo.discovery_reporter:type_name -> forge.MachineDiscoveryReporter + 958, // 511: forge.MachineDiscoveryCompletedRequest.machine_id:type_name -> common.MachineId + 958, // 512: forge.MachineCleanupInfo.machine_id:type_name -> common.MachineId + 948, // 513: forge.MachineCleanupInfo.nvme:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 948, // 514: forge.MachineCleanupInfo.ram:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 948, // 515: forge.MachineCleanupInfo.mem_overwrite:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 948, // 516: forge.MachineCleanupInfo.ib:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 948, // 517: forge.MachineCleanupInfo.hdd:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 80, // 518: forge.MachineCleanupInfo.result:type_name -> forge.MachineCleanupInfo.CleanupResult + 421, // 519: forge.MachineCertificateResult.machine_certificate:type_name -> forge.MachineCertificate + 958, // 520: forge.MachineDiscoveryResult.machine_id:type_name -> common.MachineId + 421, // 521: forge.MachineDiscoveryResult.machine_certificate:type_name -> forge.MachineCertificate + 123, // 522: forge.MachineDiscoveryResult.attest_key_challenge:type_name -> forge.AttestKeyBindChallenge + 979, // 523: forge.MachineDiscoveryResult.machine_interface_id:type_name -> common.MachineInterfaceId + 958, // 524: forge.ForgeScoutErrorReport.machine_id:type_name -> common.MachineId + 979, // 525: forge.ForgeScoutErrorReport.machine_interface_id:type_name -> common.MachineInterfaceId + 23, // 526: forge.PxeInstructionRequest.arch:type_name -> forge.MachineArchitecture + 979, // 527: forge.PxeInstructionRequest.interface_id:type_name -> common.MachineInterfaceId + 343, // 528: forge.CloudInitDiscoveryInstructions.machine_interface:type_name -> forge.MachineInterface + 850, // 529: forge.CloudInitDiscoveryInstructions.domain:type_name -> forge.PxeDomain + 431, // 530: forge.CloudInitInstructions.discovery_instructions:type_name -> forge.CloudInitDiscoveryInstructions + 432, // 531: forge.CloudInitInstructions.metadata:type_name -> forge.CloudInitMetaData + 958, // 532: forge.DpuNetworkStatus.dpu_machine_id:type_name -> common.MachineId + 959, // 533: forge.DpuNetworkStatus.observed_at:type_name -> google.protobuf.Timestamp + 456, // 534: forge.DpuNetworkStatus.interfaces:type_name -> forge.InstanceInterfaceStatusObservation + 974, // 535: forge.DpuNetworkStatus.instance_id:type_name -> common.InstanceId + 965, // 536: forge.DpuNetworkStatus.dpu_health:type_name -> health.HealthReport + 457, // 537: forge.DpuNetworkStatus.fabric_interfaces:type_name -> forge.FabricInterfaceData + 436, // 538: forge.DpuNetworkStatus.last_dhcp_requests:type_name -> forge.LastDhcpRequest + 437, // 539: forge.DpuNetworkStatus.dpu_extension_services:type_name -> forge.DpuExtensionServiceStatusObservation + 979, // 540: forge.LastDhcpRequest.host_interface_id:type_name -> common.MachineInterfaceId + 67, // 541: forge.DpuExtensionServiceStatusObservation.service_type:type_name -> forge.DpuExtensionServiceType + 68, // 542: forge.DpuExtensionServiceStatusObservation.state:type_name -> forge.DpuExtensionServiceDeploymentStatus + 438, // 543: forge.DpuExtensionServiceStatusObservation.components:type_name -> forge.DpuExtensionServiceComponent + 965, // 544: forge.OptionalHealthReport.report:type_name -> health.HealthReport + 965, // 545: forge.HealthReportEntry.report:type_name -> health.HealthReport + 38, // 546: forge.HealthReportEntry.mode:type_name -> forge.HealthReportApplyMode + 958, // 547: forge.InsertMachineHealthReportRequest.machine_id:type_name -> common.MachineId + 440, // 548: forge.InsertMachineHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 967, // 549: forge.InsertRackHealthReportRequest.rack_id:type_name -> common.RackId + 440, // 550: forge.InsertRackHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 967, // 551: forge.RemoveRackHealthReportRequest.rack_id:type_name -> common.RackId + 967, // 552: forge.ListRackHealthReportsRequest.rack_id:type_name -> common.RackId + 969, // 553: forge.InsertSwitchHealthReportRequest.switch_id:type_name -> common.SwitchId + 440, // 554: forge.InsertSwitchHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 969, // 555: forge.RemoveSwitchHealthReportRequest.switch_id:type_name -> common.SwitchId + 969, // 556: forge.ListSwitchHealthReportsRequest.switch_id:type_name -> common.SwitchId + 966, // 557: forge.InsertPowerShelfHealthReportRequest.power_shelf_id:type_name -> common.PowerShelfId + 440, // 558: forge.InsertPowerShelfHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 966, // 559: forge.RemovePowerShelfHealthReportRequest.power_shelf_id:type_name -> common.PowerShelfId + 966, // 560: forge.ListPowerShelfHealthReportsRequest.power_shelf_id:type_name -> common.PowerShelfId + 440, // 561: forge.ListHealthReportResponse.health_report_entries:type_name -> forge.HealthReportEntry + 958, // 562: forge.RemoveMachineHealthReportRequest.machine_id:type_name -> common.MachineId + 978, // 563: forge.ListNVLinkDomainHealthReportsRequest.domain_id:type_name -> common.NVLinkDomainId + 978, // 564: forge.InsertNVLinkDomainHealthReportRequest.domain_id:type_name -> common.NVLinkDomainId + 440, // 565: forge.InsertNVLinkDomainHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 978, // 566: forge.RemoveNVLinkDomainHealthReportRequest.domain_id:type_name -> common.NVLinkDomainId + 37, // 567: forge.InstanceInterfaceStatusObservation.function_type:type_name -> forge.InterfaceFunctionType + 666, // 568: forge.InstanceInterfaceStatusObservation.network_security_group:type_name -> forge.NetworkSecurityGroupStatus + 968, // 569: forge.InstanceInterfaceStatusObservation.internal_uuid:type_name -> common.UUID + 458, // 570: forge.FabricInterfaceData.link_data:type_name -> forge.LinkData + 251, // 571: forge.Tenant.metadata:type_name -> forge.Metadata + 251, // 572: forge.CreateTenantRequest.metadata:type_name -> forge.Metadata + 459, // 573: forge.CreateTenantResponse.tenant:type_name -> forge.Tenant + 251, // 574: forge.UpdateTenantRequest.metadata:type_name -> forge.Metadata + 459, // 575: forge.UpdateTenantResponse.tenant:type_name -> forge.Tenant + 459, // 576: forge.FindTenantResponse.tenant:type_name -> forge.Tenant + 467, // 577: forge.TenantKeysetContent.public_keys:type_name -> forge.TenantPublicKey + 466, // 578: forge.TenantKeyset.keyset_identifier:type_name -> forge.TenantKeysetIdentifier + 468, // 579: forge.TenantKeyset.keyset_content:type_name -> forge.TenantKeysetContent + 466, // 580: forge.CreateTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier + 468, // 581: forge.CreateTenantKeysetRequest.keyset_content:type_name -> forge.TenantKeysetContent + 469, // 582: forge.CreateTenantKeysetResponse.keyset:type_name -> forge.TenantKeyset + 469, // 583: forge.TenantKeySetList.keyset:type_name -> forge.TenantKeyset + 466, // 584: forge.UpdateTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier + 468, // 585: forge.UpdateTenantKeysetRequest.keyset_content:type_name -> forge.TenantKeysetContent + 466, // 586: forge.DeleteTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier + 466, // 587: forge.TenantKeysetIdList.keyset_ids:type_name -> forge.TenantKeysetIdentifier + 466, // 588: forge.TenantKeysetsByIdsRequest.keyset_ids:type_name -> forge.TenantKeysetIdentifier + 484, // 589: forge.ResourcePools.pools:type_name -> forge.ResourcePool + 40, // 590: forge.MaintenanceRequest.operation:type_name -> forge.MaintenanceOperation + 958, // 591: forge.MaintenanceRequest.host_id:type_name -> common.MachineId + 41, // 592: forge.SetDynamicConfigRequest.setting:type_name -> forge.ConfigSetting + 512, // 593: forge.FindIpAddressResponse.matches:type_name -> forge.IpAddressMatch + 968, // 594: forge.IdentifyUuidRequest.uuid:type_name -> common.UUID + 968, // 595: forge.IdentifyUuidResponse.uuid:type_name -> common.UUID + 42, // 596: forge.IdentifyUuidResponse.object_type:type_name -> forge.UuidType + 43, // 597: forge.IdentifyMacResponse.object_type:type_name -> forge.MacOwner + 958, // 598: forge.IdentifySerialResponse.machine_id:type_name -> common.MachineId + 958, // 599: forge.DpuReprovisioningRequest.dpu_id:type_name -> common.MachineId + 81, // 600: forge.DpuReprovisioningRequest.mode:type_name -> forge.DpuReprovisioningRequest.Mode + 44, // 601: forge.DpuReprovisioningRequest.initiator:type_name -> forge.UpdateInitiator + 958, // 602: forge.DpuReprovisioningRequest.machine_id:type_name -> common.MachineId + 949, // 603: forge.DpuReprovisioningListResponse.dpus:type_name -> forge.DpuReprovisioningListResponse.DpuReprovisioningListItem + 958, // 604: forge.HostReprovisioningRequest.machine_id:type_name -> common.MachineId + 82, // 605: forge.HostReprovisioningRequest.mode:type_name -> forge.HostReprovisioningRequest.Mode + 44, // 606: forge.HostReprovisioningRequest.initiator:type_name -> forge.UpdateInitiator + 950, // 607: forge.HostReprovisioningListResponse.hosts:type_name -> forge.HostReprovisioningListResponse.HostReprovisioningListItem + 506, // 608: forge.DpuInfoStatusObservation.os_operational_state:type_name -> forge.DpuOsOperationalState + 507, // 609: forge.DpuInfoStatusObservation.representors:type_name -> forge.DpuRepresentorStatus + 959, // 610: forge.DpuInfoStatusObservation.last_heartbeat:type_name -> google.protobuf.Timestamp + 508, // 611: forge.DpuInfo.observed_status:type_name -> forge.DpuInfoStatusObservation + 509, // 612: forge.GetDpuInfoListResponse.dpu_list:type_name -> forge.DpuInfo + 45, // 613: forge.IpAddressMatch.ip_type:type_name -> forge.IpType + 979, // 614: forge.MachineBootOverride.machine_interface_id:type_name -> common.MachineInterfaceId + 958, // 615: forge.ConnectedDevice.id:type_name -> common.MachineId + 514, // 616: forge.ConnectedDeviceList.connected_devices:type_name -> forge.ConnectedDevice + 520, // 617: forge.MachineIdBmcIpPairs.pairs:type_name -> forge.MachineIdBmcIp + 958, // 618: forge.MachineIdBmcIp.machine_id:type_name -> common.MachineId + 514, // 619: forge.NetworkDevice.devices:type_name -> forge.ConnectedDevice + 521, // 620: forge.NetworkTopologyData.network_devices:type_name -> forge.NetworkDevice + 46, // 621: forge.RouteServers.source_type:type_name -> forge.RouteServerSourceType + 527, // 622: forge.RouteServerEntries.route_servers:type_name -> forge.RouteServer + 46, // 623: forge.RouteServer.source_type:type_name -> forge.RouteServerSourceType + 958, // 624: forge.SetHostUefiPasswordRequest.host_id:type_name -> common.MachineId + 958, // 625: forge.ClearHostUefiPasswordRequest.host_id:type_name -> common.MachineId + 968, // 626: forge.OsImageAttributes.id:type_name -> common.UUID + 532, // 627: forge.OsImage.attributes:type_name -> forge.OsImageAttributes + 47, // 628: forge.OsImage.status:type_name -> forge.OsImageStatus + 533, // 629: forge.ListOsImageResponse.images:type_name -> forge.OsImage + 968, // 630: forge.DeleteOsImageRequest.id:type_name -> common.UUID + 975, // 631: forge.GetIpxeTemplateRequest.id:type_name -> common.IpxeTemplateId + 260, // 632: forge.IpxeTemplateList.templates:type_name -> forge.IpxeTemplate + 11, // 633: forge.ExpectedHostNic.network_segment_type:type_name -> forge.NetworkSegmentType + 251, // 634: forge.ExpectedMachine.metadata:type_name -> forge.Metadata + 968, // 635: forge.ExpectedMachine.id:type_name -> common.UUID + 541, // 636: forge.ExpectedMachine.host_nics:type_name -> forge.ExpectedHostNic + 967, // 637: forge.ExpectedMachine.rack_id:type_name -> common.RackId + 48, // 638: forge.ExpectedMachine.dpu_mode:type_name -> forge.DpuMode + 542, // 639: forge.ExpectedMachine.host_lifecycle_profile:type_name -> forge.HostLifecycleProfile + 968, // 640: forge.ExpectedMachineRequest.id:type_name -> common.UUID + 543, // 641: forge.ExpectedMachineList.expected_machines:type_name -> forge.ExpectedMachine + 547, // 642: forge.LinkedExpectedMachineList.expected_machines:type_name -> forge.LinkedExpectedMachine + 958, // 643: forge.LinkedExpectedMachine.machine_id:type_name -> common.MachineId + 968, // 644: forge.LinkedExpectedMachine.expected_machine_id:type_name -> common.UUID + 549, // 645: forge.UnexpectedMachineList.unexpected_machines:type_name -> forge.UnexpectedMachine + 958, // 646: forge.UnexpectedMachine.machine_id:type_name -> common.MachineId + 545, // 647: forge.BatchExpectedMachineOperationRequest.expected_machines:type_name -> forge.ExpectedMachineList + 968, // 648: forge.ExpectedMachineOperationResult.id:type_name -> common.UUID + 543, // 649: forge.ExpectedMachineOperationResult.expected_machine:type_name -> forge.ExpectedMachine + 551, // 650: forge.BatchExpectedMachineOperationResponse.results:type_name -> forge.ExpectedMachineOperationResult + 958, // 651: forge.MachineRebootCompletedRequest.machine_id:type_name -> common.MachineId + 958, // 652: forge.ScoutFirmwareUpgradeStatusRequest.machine_id:type_name -> common.MachineId + 958, // 653: forge.MachineValidationCompletedRequest.machine_id:type_name -> common.MachineId + 985, // 654: forge.MachineValidationCompletedRequest.validation_id:type_name -> common.MachineValidationId + 959, // 655: forge.MachineValidationResult.start_time:type_name -> google.protobuf.Timestamp + 959, // 656: forge.MachineValidationResult.end_time:type_name -> google.protobuf.Timestamp + 985, // 657: forge.MachineValidationResult.validation_id:type_name -> common.MachineValidationId + 558, // 658: forge.MachineValidationResultPostRequest.result:type_name -> forge.MachineValidationResult + 558, // 659: forge.MachineValidationResultList.results:type_name -> forge.MachineValidationResult + 958, // 660: forge.MachineValidationGetRequest.machine_id:type_name -> common.MachineId + 985, // 661: forge.MachineValidationGetRequest.validation_id:type_name -> common.MachineValidationId + 49, // 662: forge.MachineValidationStatus.started:type_name -> forge.MachineValidationStarted + 50, // 663: forge.MachineValidationStatus.in_progress:type_name -> forge.MachineValidationInProgress + 51, // 664: forge.MachineValidationStatus.completed:type_name -> forge.MachineValidationCompleted + 985, // 665: forge.MachineValidationRun.validation_id:type_name -> common.MachineValidationId + 958, // 666: forge.MachineValidationRun.machine_id:type_name -> common.MachineId + 959, // 667: forge.MachineValidationRun.start_time:type_name -> google.protobuf.Timestamp + 959, // 668: forge.MachineValidationRun.end_time:type_name -> google.protobuf.Timestamp + 562, // 669: forge.MachineValidationRun.status:type_name -> forge.MachineValidationStatus + 981, // 670: forge.MachineValidationRun.duration_to_complete:type_name -> google.protobuf.Duration + 959, // 671: forge.MachineValidationRun.last_heartbeat_at:type_name -> google.protobuf.Timestamp + 958, // 672: forge.MachineSetAutoUpdateRequest.machine_id:type_name -> common.MachineId + 83, // 673: forge.MachineSetAutoUpdateRequest.action:type_name -> forge.MachineSetAutoUpdateRequest.SetAutoupdateAction + 959, // 674: forge.MachineValidationExternalConfig.timestamp:type_name -> google.protobuf.Timestamp + 567, // 675: forge.GetMachineValidationExternalConfigResponse.config:type_name -> forge.MachineValidationExternalConfig + 567, // 676: forge.GetMachineValidationExternalConfigsResponse.configs:type_name -> forge.MachineValidationExternalConfig + 958, // 677: forge.MachineValidationOnDemandRequest.machine_id:type_name -> common.MachineId + 84, // 678: forge.MachineValidationOnDemandRequest.action:type_name -> forge.MachineValidationOnDemandRequest.Action + 985, // 679: forge.MachineValidationOnDemandResponse.validation_id:type_name -> common.MachineValidationId + 575, // 680: forge.MaintenanceActivityConfig.firmware_upgrade:type_name -> forge.FirmwareUpgradeActivity + 577, // 681: forge.MaintenanceActivityConfig.configure_nmx_cluster:type_name -> forge.ConfigureNmxClusterActivity + 578, // 682: forge.MaintenanceActivityConfig.power_sequence:type_name -> forge.PowerSequenceActivity + 576, // 683: forge.MaintenanceActivityConfig.nvos_update:type_name -> forge.NvosUpdateActivity + 579, // 684: forge.RackMaintenanceScope.activities:type_name -> forge.MaintenanceActivityConfig + 967, // 685: forge.RackMaintenanceOnDemandRequest.rack_id:type_name -> common.RackId + 580, // 686: forge.RackMaintenanceOnDemandRequest.scope:type_name -> forge.RackMaintenanceScope + 364, // 687: forge.AdminPowerControlRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 85, // 688: forge.AdminPowerControlRequest.action:type_name -> forge.AdminPowerControlRequest.SystemPowerControl + 958, // 689: forge.GetRedfishJobStateRequest.machine_id:type_name -> common.MachineId + 86, // 690: forge.GetRedfishJobStateResponse.job_state:type_name -> forge.GetRedfishJobStateResponse.RedfishJobState + 563, // 691: forge.MachineValidationRunList.runs:type_name -> forge.MachineValidationRun + 958, // 692: forge.MachineValidationRunListGetRequest.machine_id:type_name -> common.MachineId + 985, // 693: forge.MachineValidationRunItemSearchFilter.validation_id:type_name -> common.MachineValidationId + 968, // 694: forge.MachineValidationRunItemIdList.run_item_ids:type_name -> common.UUID + 968, // 695: forge.MachineValidationRunItemsByIdsRequest.run_item_ids:type_name -> common.UUID + 593, // 696: forge.MachineValidationRunItemList.run_items:type_name -> forge.MachineValidationRunItem + 968, // 697: forge.MachineValidationRunItem.run_item_id:type_name -> common.UUID + 985, // 698: forge.MachineValidationRunItem.validation_id:type_name -> common.MachineValidationId + 981, // 699: forge.MachineValidationRunItem.timeout:type_name -> google.protobuf.Duration + 959, // 700: forge.MachineValidationRunItem.started_at:type_name -> google.protobuf.Timestamp + 959, // 701: forge.MachineValidationRunItem.ended_at:type_name -> google.protobuf.Timestamp + 959, // 702: forge.MachineValidationRunItem.last_heartbeat_at:type_name -> google.protobuf.Timestamp + 968, // 703: forge.MachineValidationRunItem.current_attempt_id:type_name -> common.UUID + 968, // 704: forge.MachineValidationAttemptGetRequest.attempt_id:type_name -> common.UUID + 968, // 705: forge.MachineValidationAttempt.attempt_id:type_name -> common.UUID + 968, // 706: forge.MachineValidationAttempt.run_item_id:type_name -> common.UUID + 959, // 707: forge.MachineValidationAttempt.started_at:type_name -> google.protobuf.Timestamp + 959, // 708: forge.MachineValidationAttempt.ended_at:type_name -> google.protobuf.Timestamp + 959, // 709: forge.MachineValidationAttempt.last_heartbeat_at:type_name -> google.protobuf.Timestamp + 985, // 710: forge.MachineValidationHeartbeatRequest.validation_id:type_name -> common.MachineValidationId + 968, // 711: forge.MachineValidationHeartbeatRequest.run_item_id:type_name -> common.UUID + 968, // 712: forge.MachineValidationHeartbeatRequest.attempt_id:type_name -> common.UUID + 951, // 713: forge.MachineValidationTestUpdateRequest.payload:type_name -> forge.MachineValidationTestUpdateRequest.Payload + 607, // 714: forge.MachineValidationTestsGetResponse.tests:type_name -> forge.MachineValidationTest + 985, // 715: forge.MachineValidationRunRequest.validation_id:type_name -> common.MachineValidationId + 981, // 716: forge.MachineValidationRunRequest.duration_to_complete:type_name -> google.protobuf.Duration + 607, // 717: forge.MachineValidationRunRequest.selected_tests:type_name -> forge.MachineValidationTest + 52, // 718: forge.MachineCapabilityAttributesGpu.device_type:type_name -> forge.MachineCapabilityDeviceType + 52, // 719: forge.MachineCapabilityAttributesNetwork.device_type:type_name -> forge.MachineCapabilityDeviceType + 614, // 720: forge.MachineCapabilitiesSet.cpu:type_name -> forge.MachineCapabilityAttributesCpu + 615, // 721: forge.MachineCapabilitiesSet.gpu:type_name -> forge.MachineCapabilityAttributesGpu + 616, // 722: forge.MachineCapabilitiesSet.memory:type_name -> forge.MachineCapabilityAttributesMemory + 617, // 723: forge.MachineCapabilitiesSet.storage:type_name -> forge.MachineCapabilityAttributesStorage + 618, // 724: forge.MachineCapabilitiesSet.network:type_name -> forge.MachineCapabilityAttributesNetwork + 619, // 725: forge.MachineCapabilitiesSet.infiniband:type_name -> forge.MachineCapabilityAttributesInfiniband + 620, // 726: forge.MachineCapabilitiesSet.dpu:type_name -> forge.MachineCapabilityAttributesDpu + 624, // 727: forge.InstanceTypeAttributes.desired_capabilities:type_name -> forge.InstanceTypeMachineCapabilityFilterAttributes + 622, // 728: forge.InstanceType.attributes:type_name -> forge.InstanceTypeAttributes + 251, // 729: forge.InstanceType.metadata:type_name -> forge.Metadata + 722, // 730: forge.InstanceType.allocation_stats:type_name -> forge.InstanceTypeAllocationStats + 53, // 731: forge.InstanceTypeMachineCapabilityFilterAttributes.capability_type:type_name -> forge.MachineCapabilityType + 986, // 732: forge.InstanceTypeMachineCapabilityFilterAttributes.inactive_devices:type_name -> common.Uint32List + 52, // 733: forge.InstanceTypeMachineCapabilityFilterAttributes.device_type:type_name -> forge.MachineCapabilityDeviceType + 251, // 734: forge.CreateInstanceTypeRequest.metadata:type_name -> forge.Metadata + 622, // 735: forge.CreateInstanceTypeRequest.instance_type_attributes:type_name -> forge.InstanceTypeAttributes + 623, // 736: forge.CreateInstanceTypeResponse.instance_type:type_name -> forge.InstanceType + 623, // 737: forge.FindInstanceTypesByIdsResponse.instance_types:type_name -> forge.InstanceType + 623, // 738: forge.UpdateInstanceTypeResponse.instance_type:type_name -> forge.InstanceType + 251, // 739: forge.UpdateInstanceTypeRequest.metadata:type_name -> forge.Metadata + 622, // 740: forge.UpdateInstanceTypeRequest.instance_type_attributes:type_name -> forge.InstanceTypeAttributes + 952, // 741: forge.RedfishBrowseResponse.headers:type_name -> forge.RedfishBrowseResponse.HeadersEntry + 643, // 742: forge.RedfishListActionsResponse.actions:type_name -> forge.RedfishAction + 959, // 743: forge.RedfishAction.approver_dates:type_name -> google.protobuf.Timestamp + 959, // 744: forge.RedfishAction.applied_at:type_name -> google.protobuf.Timestamp + 644, // 745: forge.RedfishAction.results:type_name -> forge.OptionalRedfishActionResult + 645, // 746: forge.OptionalRedfishActionResult.result:type_name -> forge.RedfishActionResult + 953, // 747: forge.RedfishActionResult.headers:type_name -> forge.RedfishActionResult.HeadersEntry + 959, // 748: forge.RedfishActionResult.completed_at:type_name -> google.protobuf.Timestamp + 954, // 749: forge.UfmBrowseResponse.headers:type_name -> forge.UfmBrowseResponse.HeadersEntry + 671, // 750: forge.NetworkSecurityGroupAttributes.rules:type_name -> forge.NetworkSecurityGroupRuleAttributes + 251, // 751: forge.NetworkSecurityGroup.metadata:type_name -> forge.Metadata + 654, // 752: forge.NetworkSecurityGroup.attributes:type_name -> forge.NetworkSecurityGroupAttributes + 251, // 753: forge.CreateNetworkSecurityGroupRequest.metadata:type_name -> forge.Metadata + 654, // 754: forge.CreateNetworkSecurityGroupRequest.network_security_group_attributes:type_name -> forge.NetworkSecurityGroupAttributes + 655, // 755: forge.CreateNetworkSecurityGroupResponse.network_security_group:type_name -> forge.NetworkSecurityGroup + 655, // 756: forge.FindNetworkSecurityGroupsByIdsResponse.network_security_groups:type_name -> forge.NetworkSecurityGroup + 655, // 757: forge.UpdateNetworkSecurityGroupResponse.network_security_group:type_name -> forge.NetworkSecurityGroup + 251, // 758: forge.UpdateNetworkSecurityGroupRequest.metadata:type_name -> forge.Metadata + 654, // 759: forge.UpdateNetworkSecurityGroupRequest.network_security_group_attributes:type_name -> forge.NetworkSecurityGroupAttributes + 54, // 760: forge.NetworkSecurityGroupStatus.source:type_name -> forge.NetworkSecurityGroupSource + 55, // 761: forge.NetworkSecurityGroupPropagationObjectStatus.status:type_name -> forge.NetworkSecurityGroupPropagationStatus + 667, // 762: forge.GetNetworkSecurityGroupPropagationStatusResponse.vpcs:type_name -> forge.NetworkSecurityGroupPropagationObjectStatus + 667, // 763: forge.GetNetworkSecurityGroupPropagationStatusResponse.instances:type_name -> forge.NetworkSecurityGroupPropagationObjectStatus + 669, // 764: forge.GetNetworkSecurityGroupPropagationStatusRequest.network_security_group_ids:type_name -> forge.NetworkSecurityGroupIdList + 56, // 765: forge.NetworkSecurityGroupRuleAttributes.direction:type_name -> forge.NetworkSecurityGroupRuleDirection + 57, // 766: forge.NetworkSecurityGroupRuleAttributes.protocol:type_name -> forge.NetworkSecurityGroupRuleProtocol + 58, // 767: forge.NetworkSecurityGroupRuleAttributes.action:type_name -> forge.NetworkSecurityGroupRuleAction + 671, // 768: forge.ResolvedNetworkSecurityGroupRule.rule:type_name -> forge.NetworkSecurityGroupRuleAttributes + 674, // 769: forge.GetNetworkSecurityGroupAttachmentsResponse.attachments:type_name -> forge.NetworkSecurityGroupAttachments + 678, // 770: forge.GetDesiredFirmwareVersionsResponse.entries:type_name -> forge.DesiredFirmwareVersionEntry + 955, // 771: forge.DesiredFirmwareVersionEntry.component_versions:type_name -> forge.DesiredFirmwareVersionEntry.ComponentVersionsEntry + 679, // 772: forge.SkuComponents.chassis:type_name -> forge.SkuComponentChassis + 680, // 773: forge.SkuComponents.cpus:type_name -> forge.SkuComponentCpu + 681, // 774: forge.SkuComponents.gpus:type_name -> forge.SkuComponentGpu + 682, // 775: forge.SkuComponents.ethernet_devices:type_name -> forge.SkuComponentEthernetDevices + 683, // 776: forge.SkuComponents.infiniband_devices:type_name -> forge.SkuComponentInfinibandDevices + 684, // 777: forge.SkuComponents.storage:type_name -> forge.SkuComponentStorage + 686, // 778: forge.SkuComponents.memory:type_name -> forge.SkuComponentMemory + 687, // 779: forge.SkuComponents.tpm:type_name -> forge.SkuComponentTpm + 959, // 780: forge.Sku.created:type_name -> google.protobuf.Timestamp + 688, // 781: forge.Sku.components:type_name -> forge.SkuComponents + 958, // 782: forge.Sku.associated_machine_ids:type_name -> common.MachineId + 958, // 783: forge.SkuMachinePair.machine_id:type_name -> common.MachineId + 958, // 784: forge.RemoveSkuRequest.machine_id:type_name -> common.MachineId + 689, // 785: forge.SkuList.skus:type_name -> forge.Sku + 959, // 786: forge.SkuStatus.verify_request_time:type_name -> google.protobuf.Timestamp + 959, // 787: forge.SkuStatus.last_match_attempt:type_name -> google.protobuf.Timestamp + 959, // 788: forge.SkuStatus.last_generate_attempt:type_name -> google.protobuf.Timestamp + 987, // 789: forge.DpaInterface.id:type_name -> common.DpaInterfaceId + 958, // 790: forge.DpaInterface.machine_id:type_name -> common.MachineId + 959, // 791: forge.DpaInterface.created:type_name -> google.protobuf.Timestamp + 959, // 792: forge.DpaInterface.updated:type_name -> google.protobuf.Timestamp + 959, // 793: forge.DpaInterface.deleted:type_name -> google.protobuf.Timestamp + 215, // 794: forge.DpaInterface.history:type_name -> forge.StateHistoryRecord + 959, // 795: forge.DpaInterface.last_hb_time:type_name -> google.protobuf.Timestamp + 59, // 796: forge.DpaInterface.interface_type:type_name -> forge.DpaInterfaceType + 958, // 797: forge.DpaInterfaceCreationRequest.machine_id:type_name -> common.MachineId + 59, // 798: forge.DpaInterfaceCreationRequest.interface_type:type_name -> forge.DpaInterfaceType + 987, // 799: forge.DpaInterfaceIdList.ids:type_name -> common.DpaInterfaceId + 987, // 800: forge.DpaInterfacesByIdsRequest.ids:type_name -> common.DpaInterfaceId + 697, // 801: forge.DpaInterfaceList.interfaces:type_name -> forge.DpaInterface + 987, // 802: forge.DpaNetworkObservationSetRequest.id:type_name -> common.DpaInterfaceId + 987, // 803: forge.DpaInterfaceDeletionRequest.id:type_name -> common.DpaInterfaceId + 958, // 804: forge.PowerOptionRequest.machine_id:type_name -> common.MachineId + 958, // 805: forge.PowerOptionUpdateRequest.machine_id:type_name -> common.MachineId + 60, // 806: forge.PowerOptionUpdateRequest.power_state:type_name -> forge.PowerState + 60, // 807: forge.PowerOptions.desired_state:type_name -> forge.PowerState + 959, // 808: forge.PowerOptions.desired_state_updated_at:type_name -> google.protobuf.Timestamp + 60, // 809: forge.PowerOptions.actual_state:type_name -> forge.PowerState + 959, // 810: forge.PowerOptions.actual_state_updated_at:type_name -> google.protobuf.Timestamp + 958, // 811: forge.PowerOptions.host_id:type_name -> common.MachineId + 959, // 812: forge.PowerOptions.next_power_state_fetch_at:type_name -> google.protobuf.Timestamp + 959, // 813: forge.PowerOptions.tried_triggering_on_at:type_name -> google.protobuf.Timestamp + 959, // 814: forge.PowerOptions.wait_until_time_before_performing_next_power_action:type_name -> google.protobuf.Timestamp + 708, // 815: forge.PowerOptionResponse.response:type_name -> forge.PowerOptions + 988, // 816: forge.ComputeAllocation.id:type_name -> common.ComputeAllocationId + 710, // 817: forge.ComputeAllocation.attributes:type_name -> forge.ComputeAllocationAttributes + 251, // 818: forge.ComputeAllocation.metadata:type_name -> forge.Metadata + 988, // 819: forge.CreateComputeAllocationRequest.id:type_name -> common.ComputeAllocationId + 251, // 820: forge.CreateComputeAllocationRequest.metadata:type_name -> forge.Metadata + 710, // 821: forge.CreateComputeAllocationRequest.attributes:type_name -> forge.ComputeAllocationAttributes + 711, // 822: forge.CreateComputeAllocationResponse.allocation:type_name -> forge.ComputeAllocation + 988, // 823: forge.FindComputeAllocationIdsResponse.ids:type_name -> common.ComputeAllocationId + 988, // 824: forge.FindComputeAllocationsByIdsRequest.ids:type_name -> common.ComputeAllocationId + 711, // 825: forge.FindComputeAllocationsByIdsResponse.allocations:type_name -> forge.ComputeAllocation + 711, // 826: forge.UpdateComputeAllocationResponse.allocation:type_name -> forge.ComputeAllocation + 988, // 827: forge.UpdateComputeAllocationRequest.id:type_name -> common.ComputeAllocationId + 251, // 828: forge.UpdateComputeAllocationRequest.metadata:type_name -> forge.Metadata + 710, // 829: forge.UpdateComputeAllocationRequest.attributes:type_name -> forge.ComputeAllocationAttributes + 988, // 830: forge.DeleteComputeAllocationRequest.id:type_name -> common.ComputeAllocationId + 729, // 831: forge.GetRackResponse.rack:type_name -> forge.Rack + 729, // 832: forge.RackList.racks:type_name -> forge.Rack + 250, // 833: forge.RackSearchFilter.label:type_name -> forge.Label + 967, // 834: forge.RackIdList.rack_ids:type_name -> common.RackId + 967, // 835: forge.RacksByIdsRequest.rack_ids:type_name -> common.RackId + 967, // 836: forge.Rack.id:type_name -> common.RackId + 959, // 837: forge.Rack.created:type_name -> google.protobuf.Timestamp + 959, // 838: forge.Rack.updated:type_name -> google.protobuf.Timestamp + 959, // 839: forge.Rack.deleted:type_name -> google.protobuf.Timestamp + 251, // 840: forge.Rack.metadata:type_name -> forge.Metadata + 730, // 841: forge.Rack.config:type_name -> forge.RackConfig + 731, // 842: forge.Rack.status:type_name -> forge.RackStatus + 965, // 843: forge.RackStatus.health:type_name -> health.HealthReport + 337, // 844: forge.RackStatus.health_sources:type_name -> forge.HealthSourceOrigin + 87, // 845: forge.RackStatus.lifecycle:type_name -> forge.LifecycleStatus + 967, // 846: forge.RackStateHistoriesRequest.rack_ids:type_name -> common.RackId + 967, // 847: forge.AdminForceDeleteRackRequest.rack_id:type_name -> common.RackId + 736, // 848: forge.RackCapabilitiesSet.compute:type_name -> forge.RackCapabilityCompute + 737, // 849: forge.RackCapabilitiesSet.switch:type_name -> forge.RackCapabilitySwitch + 738, // 850: forge.RackCapabilitiesSet.power_shelf:type_name -> forge.RackCapabilityPowerShelf + 989, // 851: forge.RackProfile.rack_hardware_type:type_name -> common.RackHardwareType + 61, // 852: forge.RackProfile.rack_hardware_topology:type_name -> forge.RackHardwareTopology + 63, // 853: forge.RackProfile.rack_hardware_class:type_name -> forge.RackHardwareClass + 739, // 854: forge.RackProfile.capabilities:type_name -> forge.RackCapabilitiesSet + 62, // 855: forge.RackProfile.product_family:type_name -> forge.RackProductFamily + 967, // 856: forge.GetRackProfileRequest.rack_id:type_name -> common.RackId + 967, // 857: forge.GetRackProfileResponse.rack_id:type_name -> common.RackId + 970, // 858: forge.GetRackProfileResponse.rack_profile_id:type_name -> common.RackProfileId + 740, // 859: forge.GetRackProfileResponse.profile:type_name -> forge.RackProfile + 64, // 860: forge.RackManagerForgeRequest.cmd:type_name -> forge.RackManagerForgeCmd + 978, // 861: forge.MachineNVLinkInfo.domain_uuid:type_name -> common.NVLinkDomainId + 749, // 862: forge.MachineNVLinkInfo.gpus:type_name -> forge.NVLinkGpu + 958, // 863: forge.UpdateMachineNvLinkInfoRequest.machine_id:type_name -> common.MachineId + 745, // 864: forge.UpdateMachineNvLinkInfoRequest.nvlink_info:type_name -> forge.MachineNVLinkInfo + 748, // 865: forge.MachineSpxStatusObservation.attachment_status:type_name -> forge.MachineSpxAttachmentStatusObservation + 959, // 866: forge.MachineSpxStatusObservation.observed_at:type_name -> google.protobuf.Timestamp + 977, // 867: forge.MachineSpxAttachmentStatusObservation.partition_id:type_name -> common.SpxPartitionId + 15, // 868: forge.MachineSpxAttachmentStatusObservation.attachment_type:type_name -> forge.SpxAttachmentType + 959, // 869: forge.MachineSpxAttachmentStatusObservation.observed_at:type_name -> google.protobuf.Timestamp + 751, // 870: forge.MachineNVLinkStatusObservation.gpu_status:type_name -> forge.MachineNVLinkGpuStatusObservation + 990, // 871: forge.MachineNVLinkGpuStatusObservation.partition_id:type_name -> common.NVLinkPartitionId + 961, // 872: forge.MachineNVLinkGpuStatusObservation.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 978, // 873: forge.MachineNVLinkGpuStatusObservation.domain_id:type_name -> common.NVLinkDomainId + 65, // 874: forge.NmxcBrowseRequest.operation:type_name -> forge.NmxcBrowseOperation + 956, // 875: forge.NmxcBrowseResponse.headers:type_name -> forge.NmxcBrowseResponse.HeadersEntry + 990, // 876: forge.NVLinkPartition.id:type_name -> common.NVLinkPartitionId + 978, // 877: forge.NVLinkPartition.domain_uuid:type_name -> common.NVLinkDomainId + 961, // 878: forge.NVLinkPartition.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 754, // 879: forge.NVLinkPartitionList.partitions:type_name -> forge.NVLinkPartition + 968, // 880: forge.NVLinkPartitionQuery.id:type_name -> common.UUID + 756, // 881: forge.NVLinkPartitionQuery.search_config:type_name -> forge.NVLinkPartitionSearchConfig + 990, // 882: forge.NVLinkPartitionsByIdsRequest.partition_ids:type_name -> common.NVLinkPartitionId + 990, // 883: forge.NVLinkPartitionIdList.partition_ids:type_name -> common.NVLinkPartitionId + 251, // 884: forge.NVLinkLogicalPartitionConfig.metadata:type_name -> forge.Metadata + 7, // 885: forge.NVLinkLogicalPartitionStatus.state:type_name -> forge.TenantState + 961, // 886: forge.NVLinkLogicalPartition.id:type_name -> common.NVLinkLogicalPartitionId + 762, // 887: forge.NVLinkLogicalPartition.config:type_name -> forge.NVLinkLogicalPartitionConfig + 763, // 888: forge.NVLinkLogicalPartition.status:type_name -> forge.NVLinkLogicalPartitionStatus + 959, // 889: forge.NVLinkLogicalPartition.created:type_name -> google.protobuf.Timestamp + 764, // 890: forge.NVLinkLogicalPartitionList.partitions:type_name -> forge.NVLinkLogicalPartition + 762, // 891: forge.NVLinkLogicalPartitionCreationRequest.config:type_name -> forge.NVLinkLogicalPartitionConfig + 961, // 892: forge.NVLinkLogicalPartitionCreationRequest.id:type_name -> common.NVLinkLogicalPartitionId + 961, // 893: forge.NVLinkLogicalPartitionDeletionRequest.id:type_name -> common.NVLinkLogicalPartitionId + 961, // 894: forge.NVLinkLogicalPartitionsByIdsRequest.partition_ids:type_name -> common.NVLinkLogicalPartitionId + 961, // 895: forge.NVLinkLogicalPartitionIdList.partition_ids:type_name -> common.NVLinkLogicalPartitionId + 961, // 896: forge.NVLinkLogicalPartitionUpdateRequest.id:type_name -> common.NVLinkLogicalPartitionId + 762, // 897: forge.NVLinkLogicalPartitionUpdateRequest.config:type_name -> forge.NVLinkLogicalPartitionConfig + 364, // 898: forge.CreateBmcUserRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 364, // 899: forge.DeleteBmcUserRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 958, // 900: forge.SetFirmwareUpdateTimeWindowRequest.machine_ids:type_name -> common.MachineId + 959, // 901: forge.SetFirmwareUpdateTimeWindowRequest.start_timestamp:type_name -> google.protobuf.Timestamp + 959, // 902: forge.SetFirmwareUpdateTimeWindowRequest.end_timestamp:type_name -> google.protobuf.Timestamp + 782, // 903: forge.ListHostFirmwareResponse.available:type_name -> forge.AvailableHostFirmware + 66, // 904: forge.TrimTableRequest.target:type_name -> forge.TrimTableTarget + 785, // 905: forge.NvlinkNmxcEndpointList.entries:type_name -> forge.NvlinkNmxcEndpoint + 251, // 906: forge.CreateRemediationRequest.metadata:type_name -> forge.Metadata + 991, // 907: forge.CreateRemediationResponse.remediation_id:type_name -> common.RemediationId + 991, // 908: forge.RemediationIdList.remediation_ids:type_name -> common.RemediationId + 792, // 909: forge.RemediationList.remediations:type_name -> forge.Remediation + 991, // 910: forge.Remediation.id:type_name -> common.RemediationId + 251, // 911: forge.Remediation.metadata:type_name -> forge.Metadata + 959, // 912: forge.Remediation.creation_time:type_name -> google.protobuf.Timestamp + 991, // 913: forge.ApproveRemediationRequest.remediation_id:type_name -> common.RemediationId + 991, // 914: forge.RevokeRemediationRequest.remediation_id:type_name -> common.RemediationId + 991, // 915: forge.EnableRemediationRequest.remediation_id:type_name -> common.RemediationId + 991, // 916: forge.DisableRemediationRequest.remediation_id:type_name -> common.RemediationId + 991, // 917: forge.FindAppliedRemediationIdsRequest.remediation_id:type_name -> common.RemediationId + 958, // 918: forge.FindAppliedRemediationIdsRequest.dpu_machine_id:type_name -> common.MachineId + 991, // 919: forge.AppliedRemediationIdList.remediation_ids:type_name -> common.RemediationId + 958, // 920: forge.AppliedRemediationIdList.dpu_machine_ids:type_name -> common.MachineId + 991, // 921: forge.FindAppliedRemediationsRequest.remediation_id:type_name -> common.RemediationId + 958, // 922: forge.FindAppliedRemediationsRequest.dpu_machine_id:type_name -> common.MachineId + 991, // 923: forge.AppliedRemediation.remediation_id:type_name -> common.RemediationId + 958, // 924: forge.AppliedRemediation.dpu_machine_id:type_name -> common.MachineId + 959, // 925: forge.AppliedRemediation.applied_time:type_name -> google.protobuf.Timestamp + 251, // 926: forge.AppliedRemediation.metadata:type_name -> forge.Metadata + 800, // 927: forge.AppliedRemediationList.applied_remediations:type_name -> forge.AppliedRemediation + 958, // 928: forge.GetNextRemediationForMachineRequest.dpu_machine_id:type_name -> common.MachineId + 991, // 929: forge.GetNextRemediationForMachineResponse.remediation_id:type_name -> common.RemediationId + 991, // 930: forge.RemediationAppliedRequest.remediation_id:type_name -> common.RemediationId + 958, // 931: forge.RemediationAppliedRequest.dpu_machine_id:type_name -> common.MachineId + 805, // 932: forge.RemediationAppliedRequest.status:type_name -> forge.RemediationApplicationStatus + 251, // 933: forge.RemediationApplicationStatus.metadata:type_name -> forge.Metadata + 958, // 934: forge.SetPrimaryDpuRequest.host_machine_id:type_name -> common.MachineId + 958, // 935: forge.SetPrimaryDpuRequest.dpu_machine_id:type_name -> common.MachineId + 958, // 936: forge.SetPrimaryInterfaceRequest.host_machine_id:type_name -> common.MachineId + 979, // 937: forge.SetPrimaryInterfaceRequest.interface_id:type_name -> common.MachineInterfaceId + 808, // 938: forge.DpuExtensionServiceCredential.username_password:type_name -> forge.UsernamePassword + 829, // 939: forge.DpuExtensionServiceVersionInfo.observability:type_name -> forge.DpuExtensionServiceObservability + 67, // 940: forge.DpuExtensionService.service_type:type_name -> forge.DpuExtensionServiceType + 811, // 941: forge.DpuExtensionService.latest_version_info:type_name -> forge.DpuExtensionServiceVersionInfo + 67, // 942: forge.CreateDpuExtensionServiceRequest.service_type:type_name -> forge.DpuExtensionServiceType + 810, // 943: forge.CreateDpuExtensionServiceRequest.credential:type_name -> forge.DpuExtensionServiceCredential + 829, // 944: forge.CreateDpuExtensionServiceRequest.observability:type_name -> forge.DpuExtensionServiceObservability + 810, // 945: forge.UpdateDpuExtensionServiceRequest.credential:type_name -> forge.DpuExtensionServiceCredential + 829, // 946: forge.UpdateDpuExtensionServiceRequest.observability:type_name -> forge.DpuExtensionServiceObservability + 67, // 947: forge.DpuExtensionServiceSearchFilter.service_type:type_name -> forge.DpuExtensionServiceType + 812, // 948: forge.DpuExtensionServiceList.services:type_name -> forge.DpuExtensionService + 811, // 949: forge.DpuExtensionServiceVersionInfoList.version_infos:type_name -> forge.DpuExtensionServiceVersionInfo + 825, // 950: forge.FindInstancesByDpuExtensionServiceResponse.instances:type_name -> forge.InstanceDpuExtensionServiceInfo + 826, // 951: forge.DpuExtensionServiceObservabilityConfig.prometheus:type_name -> forge.DpuExtensionServiceObservabilityConfigPrometheus + 827, // 952: forge.DpuExtensionServiceObservabilityConfig.logging:type_name -> forge.DpuExtensionServiceObservabilityConfigLogging + 828, // 953: forge.DpuExtensionServiceObservability.configs:type_name -> forge.DpuExtensionServiceObservabilityConfig + 968, // 954: forge.ScoutStreamApiBoundMessage.flow_uuid:type_name -> common.UUID + 832, // 955: forge.ScoutStreamApiBoundMessage.init:type_name -> forge.ScoutStreamInitRequest + 992, // 956: forge.ScoutStreamApiBoundMessage.mlx_device_lockdown_response:type_name -> mlx_device.MlxDeviceLockdownResponse + 993, // 957: forge.ScoutStreamApiBoundMessage.mlx_device_profile_sync_response:type_name -> mlx_device.MlxDeviceProfileSyncResponse + 994, // 958: forge.ScoutStreamApiBoundMessage.mlx_device_profile_compare_response:type_name -> mlx_device.MlxDeviceProfileCompareResponse + 995, // 959: forge.ScoutStreamApiBoundMessage.mlx_device_info_device_response:type_name -> mlx_device.MlxDeviceInfoDeviceResponse + 996, // 960: forge.ScoutStreamApiBoundMessage.mlx_device_info_report_response:type_name -> mlx_device.MlxDeviceInfoReportResponse + 997, // 961: forge.ScoutStreamApiBoundMessage.mlx_device_registry_list_response:type_name -> mlx_device.MlxDeviceRegistryListResponse + 998, // 962: forge.ScoutStreamApiBoundMessage.mlx_device_registry_show_response:type_name -> mlx_device.MlxDeviceRegistryShowResponse + 999, // 963: forge.ScoutStreamApiBoundMessage.mlx_device_config_query_response:type_name -> mlx_device.MlxDeviceConfigQueryResponse + 1000, // 964: forge.ScoutStreamApiBoundMessage.mlx_device_config_set_response:type_name -> mlx_device.MlxDeviceConfigSetResponse + 1001, // 965: forge.ScoutStreamApiBoundMessage.mlx_device_config_sync_response:type_name -> mlx_device.MlxDeviceConfigSyncResponse + 1002, // 966: forge.ScoutStreamApiBoundMessage.mlx_device_config_compare_response:type_name -> mlx_device.MlxDeviceConfigCompareResponse + 840, // 967: forge.ScoutStreamApiBoundMessage.scout_stream_agent_ping_response:type_name -> forge.ScoutStreamAgentPingResponse + 968, // 968: forge.ScoutStreamScoutBoundMessage.flow_uuid:type_name -> common.UUID + 1003, // 969: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_lock_request:type_name -> mlx_device.MlxDeviceLockdownLockRequest + 1004, // 970: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_unlock_request:type_name -> mlx_device.MlxDeviceLockdownUnlockRequest + 1005, // 971: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_status_request:type_name -> mlx_device.MlxDeviceLockdownStatusRequest + 1006, // 972: forge.ScoutStreamScoutBoundMessage.mlx_device_profile_sync_request:type_name -> mlx_device.MlxDeviceProfileSyncRequest + 1007, // 973: forge.ScoutStreamScoutBoundMessage.mlx_device_profile_compare_request:type_name -> mlx_device.MlxDeviceProfileCompareRequest + 1008, // 974: forge.ScoutStreamScoutBoundMessage.mlx_device_info_device_request:type_name -> mlx_device.MlxDeviceInfoDeviceRequest + 1009, // 975: forge.ScoutStreamScoutBoundMessage.mlx_device_info_report_request:type_name -> mlx_device.MlxDeviceInfoReportRequest + 1010, // 976: forge.ScoutStreamScoutBoundMessage.mlx_device_registry_list_request:type_name -> mlx_device.MlxDeviceRegistryListRequest + 1011, // 977: forge.ScoutStreamScoutBoundMessage.mlx_device_registry_show_request:type_name -> mlx_device.MlxDeviceRegistryShowRequest + 1012, // 978: forge.ScoutStreamScoutBoundMessage.mlx_device_config_query_request:type_name -> mlx_device.MlxDeviceConfigQueryRequest + 1013, // 979: forge.ScoutStreamScoutBoundMessage.mlx_device_config_set_request:type_name -> mlx_device.MlxDeviceConfigSetRequest + 1014, // 980: forge.ScoutStreamScoutBoundMessage.mlx_device_config_sync_request:type_name -> mlx_device.MlxDeviceConfigSyncRequest + 1015, // 981: forge.ScoutStreamScoutBoundMessage.mlx_device_config_compare_request:type_name -> mlx_device.MlxDeviceConfigCompareRequest + 839, // 982: forge.ScoutStreamScoutBoundMessage.scout_stream_agent_ping_request:type_name -> forge.ScoutStreamAgentPingRequest + 958, // 983: forge.ScoutStreamInitRequest.machine_id:type_name -> common.MachineId + 841, // 984: forge.ScoutStreamShowConnectionsResponse.scout_stream_connections:type_name -> forge.ScoutStreamConnectionInfo + 958, // 985: forge.ScoutStreamDisconnectRequest.machine_id:type_name -> common.MachineId + 958, // 986: forge.ScoutStreamDisconnectResponse.machine_id:type_name -> common.MachineId + 958, // 987: forge.ScoutStreamAdminPingRequest.machine_id:type_name -> common.MachineId + 842, // 988: forge.ScoutStreamAgentPingResponse.error:type_name -> forge.ScoutStreamError + 958, // 989: forge.ScoutStreamConnectionInfo.machine_id:type_name -> common.MachineId + 69, // 990: forge.ScoutStreamError.status:type_name -> forge.ScoutStreamErrorStatus + 984, // 991: forge.RoutingProfile.route_target_imports:type_name -> common.RouteTarget + 984, // 992: forge.RoutingProfile.route_targets_on_exports:type_name -> common.RouteTarget + 843, // 993: forge.RoutingProfile.accepted_leaks_from_underlay:type_name -> forge.PrefixFilterPolicyEntry + 843, // 994: forge.RoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry + 971, // 995: forge.DomainLegacy.id:type_name -> common.DomainId + 959, // 996: forge.DomainLegacy.created:type_name -> google.protobuf.Timestamp + 959, // 997: forge.DomainLegacy.updated:type_name -> google.protobuf.Timestamp + 959, // 998: forge.DomainLegacy.deleted:type_name -> google.protobuf.Timestamp + 845, // 999: forge.DomainListLegacy.domains:type_name -> forge.DomainLegacy + 971, // 1000: forge.DomainDeletionLegacy.id:type_name -> common.DomainId + 971, // 1001: forge.DomainSearchQueryLegacy.id:type_name -> common.DomainId + 1016, // 1002: forge.PxeDomain.new_domain:type_name -> dns.Domain + 845, // 1003: forge.PxeDomain.legacy_domain:type_name -> forge.DomainLegacy + 958, // 1004: forge.MachinePositionQuery.machine_ids:type_name -> common.MachineId + 853, // 1005: forge.MachinePositionInfoList.machine_position_info:type_name -> forge.MachinePositionInfo + 958, // 1006: forge.MachinePositionInfo.machine_id:type_name -> common.MachineId + 969, // 1007: forge.MachinePositionInfo.switch_id:type_name -> common.SwitchId + 966, // 1008: forge.MachinePositionInfo.power_shelf_id:type_name -> common.PowerShelfId + 958, // 1009: forge.ModifyDPFStateRequest.machine_id:type_name -> common.MachineId + 957, // 1010: forge.DPFStateResponse.dpf_states:type_name -> forge.DPFStateResponse.DPFState + 958, // 1011: forge.GetDPFStateRequest.machine_ids:type_name -> common.MachineId + 958, // 1012: forge.GetDPFHostSnapshotRequest.host_machine_id:type_name -> common.MachineId + 860, // 1013: forge.DPFServiceVersionsResponse.services:type_name -> forge.DPFServiceVersion + 70, // 1014: forge.ComponentResult.status:type_name -> forge.ComponentManagerStatusCode + 969, // 1015: forge.SwitchIdList.ids:type_name -> common.SwitchId + 966, // 1016: forge.PowerShelfIdList.ids:type_name -> common.PowerShelfId + 1017, // 1017: forge.GetComponentInventoryRequest.machine_ids:type_name -> common.MachineIdList + 863, // 1018: forge.GetComponentInventoryRequest.switch_ids:type_name -> forge.SwitchIdList + 864, // 1019: forge.GetComponentInventoryRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList + 862, // 1020: forge.ComponentInventoryEntry.result:type_name -> forge.ComponentResult + 1018, // 1021: forge.ComponentInventoryEntry.report:type_name -> site_explorer.EndpointExplorationReport + 866, // 1022: forge.GetComponentInventoryResponse.entries:type_name -> forge.ComponentInventoryEntry + 1017, // 1023: forge.ComponentPowerControlRequest.machine_ids:type_name -> common.MachineIdList + 863, // 1024: forge.ComponentPowerControlRequest.switch_ids:type_name -> forge.SwitchIdList + 864, // 1025: forge.ComponentPowerControlRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList + 1019, // 1026: forge.ComponentPowerControlRequest.action:type_name -> common.SystemPowerControl + 862, // 1027: forge.ComponentPowerControlResponse.results:type_name -> forge.ComponentResult + 862, // 1028: forge.FirmwareUpdateStatus.result:type_name -> forge.ComponentResult + 71, // 1029: forge.FirmwareUpdateStatus.state:type_name -> forge.FirmwareUpdateState + 959, // 1030: forge.FirmwareUpdateStatus.updated_at:type_name -> google.protobuf.Timestamp + 1017, // 1031: forge.UpdateComputeTrayFirmwareTarget.machine_ids:type_name -> common.MachineIdList + 74, // 1032: forge.UpdateComputeTrayFirmwareTarget.components:type_name -> forge.ComputeTrayComponent + 863, // 1033: forge.UpdateSwitchFirmwareTarget.switch_ids:type_name -> forge.SwitchIdList + 72, // 1034: forge.UpdateSwitchFirmwareTarget.components:type_name -> forge.NvSwitchComponent + 864, // 1035: forge.UpdatePowerShelfFirmwareTarget.power_shelf_ids:type_name -> forge.PowerShelfIdList + 73, // 1036: forge.UpdatePowerShelfFirmwareTarget.components:type_name -> forge.PowerShelfComponent + 727, // 1037: forge.UpdateFirmwareObjectTarget.rack_ids:type_name -> forge.RackIdList + 871, // 1038: forge.UpdateComponentFirmwareRequest.compute_trays:type_name -> forge.UpdateComputeTrayFirmwareTarget + 872, // 1039: forge.UpdateComponentFirmwareRequest.switches:type_name -> forge.UpdateSwitchFirmwareTarget + 873, // 1040: forge.UpdateComponentFirmwareRequest.power_shelves:type_name -> forge.UpdatePowerShelfFirmwareTarget + 874, // 1041: forge.UpdateComponentFirmwareRequest.racks:type_name -> forge.UpdateFirmwareObjectTarget + 862, // 1042: forge.UpdateComponentFirmwareResponse.results:type_name -> forge.ComponentResult + 1017, // 1043: forge.GetComponentFirmwareStatusRequest.machine_ids:type_name -> common.MachineIdList + 863, // 1044: forge.GetComponentFirmwareStatusRequest.switch_ids:type_name -> forge.SwitchIdList + 864, // 1045: forge.GetComponentFirmwareStatusRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList + 727, // 1046: forge.GetComponentFirmwareStatusRequest.rack_ids:type_name -> forge.RackIdList + 870, // 1047: forge.GetComponentFirmwareStatusResponse.statuses:type_name -> forge.FirmwareUpdateStatus + 1017, // 1048: forge.ListComponentFirmwareVersionsRequest.machine_ids:type_name -> common.MachineIdList + 863, // 1049: forge.ListComponentFirmwareVersionsRequest.switch_ids:type_name -> forge.SwitchIdList + 864, // 1050: forge.ListComponentFirmwareVersionsRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList + 727, // 1051: forge.ListComponentFirmwareVersionsRequest.rack_ids:type_name -> forge.RackIdList + 74, // 1052: forge.ComputeTrayFirmwareVersions.component:type_name -> forge.ComputeTrayComponent + 862, // 1053: forge.DeviceFirmwareVersions.result:type_name -> forge.ComponentResult + 880, // 1054: forge.DeviceFirmwareVersions.compute_fw_versions:type_name -> forge.ComputeTrayFirmwareVersions + 881, // 1055: forge.ListComponentFirmwareVersionsResponse.devices:type_name -> forge.DeviceFirmwareVersions + 251, // 1056: forge.SpxPartitionCreationRequest.metadata:type_name -> forge.Metadata + 977, // 1057: forge.SpxPartitionCreationRequest.id:type_name -> common.SpxPartitionId + 251, // 1058: forge.SpxPartition.metadata:type_name -> forge.Metadata + 977, // 1059: forge.SpxPartition.id:type_name -> common.SpxPartitionId + 977, // 1060: forge.SpxPartitionIdList.spx_partition_ids:type_name -> common.SpxPartitionId + 977, // 1061: forge.SpxPartitionDeletionRequest.id:type_name -> common.SpxPartitionId + 250, // 1062: forge.SpxPartitionSearchFilter.label:type_name -> forge.Label + 884, // 1063: forge.SpxPartitionList.spx_partitions:type_name -> forge.SpxPartition + 977, // 1064: forge.SpxPartitionsByIdsRequest.spx_partition_ids:type_name -> common.SpxPartitionId + 969, // 1065: forge.AdminForceDeleteSwitchRequest.switch_id:type_name -> common.SwitchId + 966, // 1066: forge.AdminForceDeletePowerShelfRequest.power_shelf_id:type_name -> common.PowerShelfId + 976, // 1067: forge.OperatingSystem.id:type_name -> common.OperatingSystemId + 75, // 1068: forge.OperatingSystem.type:type_name -> forge.OperatingSystemType + 7, // 1069: forge.OperatingSystem.status:type_name -> forge.TenantState + 975, // 1070: forge.OperatingSystem.ipxe_template_id:type_name -> common.IpxeTemplateId + 258, // 1071: forge.OperatingSystem.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameter + 259, // 1072: forge.OperatingSystem.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifact + 976, // 1073: forge.CreateOperatingSystemRequest.id:type_name -> common.OperatingSystemId + 975, // 1074: forge.CreateOperatingSystemRequest.ipxe_template_id:type_name -> common.IpxeTemplateId + 258, // 1075: forge.CreateOperatingSystemRequest.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameter + 259, // 1076: forge.CreateOperatingSystemRequest.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifact + 258, // 1077: forge.IpxeTemplateParameters.items:type_name -> forge.IpxeTemplateParameter + 259, // 1078: forge.IpxeTemplateArtifacts.items:type_name -> forge.IpxeTemplateArtifact + 976, // 1079: forge.UpdateOperatingSystemRequest.id:type_name -> common.OperatingSystemId + 975, // 1080: forge.UpdateOperatingSystemRequest.ipxe_template_id:type_name -> common.IpxeTemplateId + 897, // 1081: forge.UpdateOperatingSystemRequest.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameters + 898, // 1082: forge.UpdateOperatingSystemRequest.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifacts + 976, // 1083: forge.DeleteOperatingSystemRequest.id:type_name -> common.OperatingSystemId + 976, // 1084: forge.OperatingSystemIdList.ids:type_name -> common.OperatingSystemId + 976, // 1085: forge.OperatingSystemsByIdsRequest.ids:type_name -> common.OperatingSystemId + 895, // 1086: forge.OperatingSystemList.operating_systems:type_name -> forge.OperatingSystem + 976, // 1087: forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest.id:type_name -> common.OperatingSystemId + 259, // 1088: forge.IpxeTemplateArtifactList.artifacts:type_name -> forge.IpxeTemplateArtifact + 976, // 1089: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest.id:type_name -> common.OperatingSystemId + 908, // 1090: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest.updates:type_name -> forge.IpxeTemplateArtifactUpdateRequest + 958, // 1091: forge.GetMachineBootInterfacesRequest.machine_id:type_name -> common.MachineId + 959, // 1092: forge.RetainedBootInterface.recorded_at:type_name -> google.protobuf.Timestamp + 958, // 1093: forge.GetMachineBootInterfacesResponse.machine_id:type_name -> common.MachineId + 914, // 1094: forge.GetMachineBootInterfacesResponse.machine_interfaces:type_name -> forge.MachineInterfaceBootInterface + 915, // 1095: forge.GetMachineBootInterfacesResponse.predicted_interfaces:type_name -> forge.PredictedBootInterface + 916, // 1096: forge.GetMachineBootInterfacesResponse.explored_endpoints:type_name -> forge.ExploredBootInterface + 917, // 1097: forge.GetMachineBootInterfacesResponse.retained_interfaces:type_name -> forge.RetainedBootInterface + 922, // 1098: forge.DNSMessage.DNSResponse.rrs:type_name -> forge.DNSMessage.DNSResponse.DNSRR + 216, // 1099: forge.StateHistories.HistoriesEntry.value:type_name -> forge.StateHistoryRecords + 305, // 1100: forge.MachineStateHistories.HistoriesEntry.value:type_name -> forge.MachineStateHistoryRecords + 308, // 1101: forge.HealthHistories.HistoriesEntry.value:type_name -> forge.HealthHistoryRecords + 910, // 1102: forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry.value:type_name -> forge.HostRepresentorInterceptBridging + 78, // 1103: forge.MachineCredentialsUpdateRequest.Credentials.credential_purpose:type_name -> forge.MachineCredentialsUpdateRequest.CredentialPurpose + 947, // 1104: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.pair:type_name -> forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.KeyValuePair + 985, // 1105: forge.ForgeAgentControlResponse.MachineValidation.validation_id:type_name -> common.MachineValidationId + 938, // 1106: forge.ForgeAgentControlResponse.MachineValidation.filter:type_name -> forge.ForgeAgentControlResponse.MachineValidationFilter + 982, // 1107: forge.ForgeAgentControlResponse.MachineValidationFilter.contexts:type_name -> common.StringList + 940, // 1108: forge.ForgeAgentControlResponse.MlxAction.device_actions:type_name -> forge.ForgeAgentControlResponse.MlxDeviceAction + 941, // 1109: forge.ForgeAgentControlResponse.MlxDeviceAction.noop:type_name -> forge.ForgeAgentControlResponse.MlxDeviceNoop + 942, // 1110: forge.ForgeAgentControlResponse.MlxDeviceAction.lock:type_name -> forge.ForgeAgentControlResponse.MlxDeviceLock + 943, // 1111: forge.ForgeAgentControlResponse.MlxDeviceAction.unlock:type_name -> forge.ForgeAgentControlResponse.MlxDeviceUnlock + 944, // 1112: forge.ForgeAgentControlResponse.MlxDeviceAction.apply_profile:type_name -> forge.ForgeAgentControlResponse.MlxDeviceApplyProfile + 945, // 1113: forge.ForgeAgentControlResponse.MlxDeviceAction.apply_firmware:type_name -> forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware + 1020, // 1114: forge.ForgeAgentControlResponse.MlxDeviceApplyProfile.serialized_profile:type_name -> mlx_device.SerializableMlxConfigProfile + 1021, // 1115: forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware.profile:type_name -> mlx_device.FirmwareFlasherProfile + 1022, // 1116: forge.ForgeAgentControlResponse.FirmwareUpgrade.task:type_name -> scout_firmware_upgrade.ScoutFirmwareUpgradeTask + 80, // 1117: forge.MachineCleanupInfo.CleanupStepResult.result:type_name -> forge.MachineCleanupInfo.CleanupResult + 958, // 1118: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.id:type_name -> common.MachineId + 959, // 1119: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.requested_at:type_name -> google.protobuf.Timestamp + 959, // 1120: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.initiated_at:type_name -> google.protobuf.Timestamp + 958, // 1121: forge.HostReprovisioningListResponse.HostReprovisioningListItem.id:type_name -> common.MachineId + 959, // 1122: forge.HostReprovisioningListResponse.HostReprovisioningListItem.requested_at:type_name -> google.protobuf.Timestamp + 959, // 1123: forge.HostReprovisioningListResponse.HostReprovisioningListItem.initiated_at:type_name -> google.protobuf.Timestamp + 958, // 1124: forge.DPFStateResponse.DPFState.machine_id:type_name -> common.MachineId + 130, // 1125: forge.Forge.Version:input_type -> forge.VersionRequest + 1023, // 1126: forge.Forge.CreateDomain:input_type -> dns.CreateDomainRequest + 1024, // 1127: forge.Forge.UpdateDomain:input_type -> dns.UpdateDomainRequest + 1025, // 1128: forge.Forge.DeleteDomain:input_type -> dns.DomainDeletionRequest + 1026, // 1129: forge.Forge.FindDomain:input_type -> dns.DomainSearchQuery + 845, // 1130: forge.Forge.CreateDomainLegacy:input_type -> forge.DomainLegacy + 845, // 1131: forge.Forge.UpdateDomainLegacy:input_type -> forge.DomainLegacy + 847, // 1132: forge.Forge.DeleteDomainLegacy:input_type -> forge.DomainDeletionLegacy + 849, // 1133: forge.Forge.FindDomainLegacy:input_type -> forge.DomainSearchQueryLegacy + 149, // 1134: forge.Forge.CreateVpc:input_type -> forge.VpcCreationRequest + 150, // 1135: forge.Forge.UpdateVpc:input_type -> forge.VpcUpdateRequest + 152, // 1136: forge.Forge.UpdateVpcVirtualization:input_type -> forge.VpcUpdateVirtualizationRequest + 154, // 1137: forge.Forge.DeleteVpc:input_type -> forge.VpcDeletionRequest + 142, // 1138: forge.Forge.FindVpcIds:input_type -> forge.VpcSearchFilter + 144, // 1139: forge.Forge.FindVpcsByIds:input_type -> forge.VpcsByIdsRequest + 883, // 1140: forge.Forge.CreateSpxPartition:input_type -> forge.SpxPartitionCreationRequest + 886, // 1141: forge.Forge.DeleteSpxPartition:input_type -> forge.SpxPartitionDeletionRequest + 888, // 1142: forge.Forge.FindSpxPartitionIds:input_type -> forge.SpxPartitionSearchFilter + 890, // 1143: forge.Forge.FindSpxPartitionsByIds:input_type -> forge.SpxPartitionsByIdsRequest + 160, // 1144: forge.Forge.CreateVpcPrefix:input_type -> forge.VpcPrefixCreationRequest + 161, // 1145: forge.Forge.SearchVpcPrefixes:input_type -> forge.VpcPrefixSearchQuery + 162, // 1146: forge.Forge.GetVpcPrefixes:input_type -> forge.VpcPrefixGetRequest + 165, // 1147: forge.Forge.UpdateVpcPrefix:input_type -> forge.VpcPrefixUpdateRequest + 166, // 1148: forge.Forge.DeleteVpcPrefix:input_type -> forge.VpcPrefixDeletionRequest + 172, // 1149: forge.Forge.CreateVpcPeering:input_type -> forge.VpcPeeringCreationRequest + 173, // 1150: forge.Forge.FindVpcPeeringIds:input_type -> forge.VpcPeeringSearchFilter + 174, // 1151: forge.Forge.FindVpcPeeringsByIds:input_type -> forge.VpcPeeringsByIdsRequest + 175, // 1152: forge.Forge.DeleteVpcPeering:input_type -> forge.VpcPeeringDeletionRequest + 242, // 1153: forge.Forge.FindNetworkSegmentIds:input_type -> forge.NetworkSegmentSearchFilter + 244, // 1154: forge.Forge.FindNetworkSegmentsByIds:input_type -> forge.NetworkSegmentsByIdsRequest + 236, // 1155: forge.Forge.CreateNetworkSegment:input_type -> forge.NetworkSegmentCreationRequest + 238, // 1156: forge.Forge.AttachNetworkSegmentToVpc:input_type -> forge.AttachNetworkSegmentToVpcRequest + 237, // 1157: forge.Forge.DeleteNetworkSegment:input_type -> forge.NetworkSegmentDeletionRequest + 141, // 1158: forge.Forge.NetworkSegmentsForVpc:input_type -> forge.VpcSearchQuery + 185, // 1159: forge.Forge.FindIBPartitionIds:input_type -> forge.IBPartitionSearchFilter + 186, // 1160: forge.Forge.FindIBPartitionsByIds:input_type -> forge.IBPartitionsByIdsRequest + 181, // 1161: forge.Forge.CreateIBPartition:input_type -> forge.IBPartitionCreationRequest + 182, // 1162: forge.Forge.UpdateIBPartition:input_type -> forge.IBPartitionUpdateRequest + 183, // 1163: forge.Forge.DeleteIBPartition:input_type -> forge.IBPartitionDeletionRequest + 145, // 1164: forge.Forge.IBPartitionsForTenant:input_type -> forge.TenantSearchQuery + 197, // 1165: forge.Forge.FindPowerShelves:input_type -> forge.PowerShelfQuery + 198, // 1166: forge.Forge.FindPowerShelfIds:input_type -> forge.PowerShelfSearchFilter + 199, // 1167: forge.Forge.FindPowerShelvesByIds:input_type -> forge.PowerShelvesByIdsRequest + 193, // 1168: forge.Forge.DeletePowerShelf:input_type -> forge.PowerShelfDeletionRequest + 893, // 1169: forge.Forge.AdminForceDeletePowerShelf:input_type -> forge.AdminForceDeletePowerShelfRequest + 195, // 1170: forge.Forge.SetPowerShelfMaintenance:input_type -> forge.PowerShelfMaintenanceRequest + 219, // 1171: forge.Forge.FindSwitches:input_type -> forge.SwitchQuery + 220, // 1172: forge.Forge.FindSwitchIds:input_type -> forge.SwitchSearchFilter + 221, // 1173: forge.Forge.FindSwitchesByIds:input_type -> forge.SwitchesByIdsRequest + 213, // 1174: forge.Forge.DeleteSwitch:input_type -> forge.SwitchDeletionRequest + 891, // 1175: forge.Forge.AdminForceDeleteSwitch:input_type -> forge.AdminForceDeleteSwitchRequest + 230, // 1176: forge.Forge.FindIBFabricIds:input_type -> forge.IBFabricSearchFilter + 255, // 1177: forge.Forge.AllocateInstance:input_type -> forge.InstanceAllocationRequest + 256, // 1178: forge.Forge.AllocateInstances:input_type -> forge.BatchInstanceAllocationRequest + 299, // 1179: forge.Forge.ReleaseInstance:input_type -> forge.InstanceReleaseRequest + 273, // 1180: forge.Forge.UpdateInstanceOperatingSystem:input_type -> forge.InstanceOperatingSystemUpdateRequest + 274, // 1181: forge.Forge.UpdateInstanceConfig:input_type -> forge.InstanceConfigUpdateRequest + 252, // 1182: forge.Forge.FindInstanceIds:input_type -> forge.InstanceSearchFilter + 254, // 1183: forge.Forge.FindInstancesByIds:input_type -> forge.InstancesByIdsRequest + 958, // 1184: forge.Forge.FindInstanceByMachineID:input_type -> common.MachineId + 370, // 1185: forge.Forge.GetManagedHostNetworkConfig:input_type -> forge.ManagedHostNetworkConfigRequest + 435, // 1186: forge.Forge.RecordDpuNetworkStatus:input_type -> forge.DpuNetworkStatus + 958, // 1187: forge.Forge.ListMachineHealthReports:input_type -> common.MachineId + 441, // 1188: forge.Forge.InsertMachineHealthReport:input_type -> forge.InsertMachineHealthReportRequest + 452, // 1189: forge.Forge.RemoveMachineHealthReport:input_type -> forge.RemoveMachineHealthReportRequest + 444, // 1190: forge.Forge.ListRackHealthReports:input_type -> forge.ListRackHealthReportsRequest + 442, // 1191: forge.Forge.InsertRackHealthReport:input_type -> forge.InsertRackHealthReportRequest + 443, // 1192: forge.Forge.RemoveRackHealthReport:input_type -> forge.RemoveRackHealthReportRequest + 447, // 1193: forge.Forge.ListSwitchHealthReports:input_type -> forge.ListSwitchHealthReportsRequest + 445, // 1194: forge.Forge.InsertSwitchHealthReport:input_type -> forge.InsertSwitchHealthReportRequest + 446, // 1195: forge.Forge.RemoveSwitchHealthReport:input_type -> forge.RemoveSwitchHealthReportRequest + 450, // 1196: forge.Forge.ListPowerShelfHealthReports:input_type -> forge.ListPowerShelfHealthReportsRequest + 448, // 1197: forge.Forge.InsertPowerShelfHealthReport:input_type -> forge.InsertPowerShelfHealthReportRequest + 449, // 1198: forge.Forge.RemovePowerShelfHealthReport:input_type -> forge.RemovePowerShelfHealthReportRequest + 453, // 1199: forge.Forge.ListNVLinkDomainHealthReports:input_type -> forge.ListNVLinkDomainHealthReportsRequest + 454, // 1200: forge.Forge.InsertNVLinkDomainHealthReport:input_type -> forge.InsertNVLinkDomainHealthReportRequest + 455, // 1201: forge.Forge.RemoveNVLinkDomainHealthReport:input_type -> forge.RemoveNVLinkDomainHealthReportRequest + 958, // 1202: forge.Forge.ListHealthReportOverrides:input_type -> common.MachineId + 441, // 1203: forge.Forge.InsertHealthReportOverride:input_type -> forge.InsertMachineHealthReportRequest + 452, // 1204: forge.Forge.RemoveHealthReportOverride:input_type -> forge.RemoveMachineHealthReportRequest + 389, // 1205: forge.Forge.DpuAgentUpgradeCheck:input_type -> forge.DpuAgentUpgradeCheckRequest + 391, // 1206: forge.Forge.DpuAgentUpgradePolicyAction:input_type -> forge.DpuAgentUpgradePolicyRequest + 1027, // 1207: forge.Forge.LookupRecord:input_type -> dns.DnsResourceRecordLookupRequest + 1028, // 1208: forge.Forge.GetAllDomains:input_type -> dns.GetAllDomainsRequest + 1029, // 1209: forge.Forge.GetAllDomainMetadata:input_type -> dns.DomainMetadataRequest + 247, // 1210: forge.Forge.InvokeInstancePower:input_type -> forge.InstancePowerRequest + 416, // 1211: forge.Forge.ForgeAgentControl:input_type -> forge.ForgeAgentControlRequest + 418, // 1212: forge.Forge.DiscoverMachine:input_type -> forge.MachineDiscoveryInfo + 422, // 1213: forge.Forge.RenewMachineCertificate:input_type -> forge.MachineCertificateRenewRequest + 419, // 1214: forge.Forge.DiscoveryCompleted:input_type -> forge.MachineDiscoveryCompletedRequest + 420, // 1215: forge.Forge.CleanupMachineCompleted:input_type -> forge.MachineCleanupInfo + 427, // 1216: forge.Forge.ReportForgeScoutError:input_type -> forge.ForgeScoutErrorReport + 346, // 1217: forge.Forge.DiscoverDhcp:input_type -> forge.DhcpDiscovery + 347, // 1218: forge.Forge.ExpireDhcpLease:input_type -> forge.ExpireDhcpLeaseRequest + 318, // 1219: forge.Forge.AssignStaticAddress:input_type -> forge.AssignStaticAddressRequest + 320, // 1220: forge.Forge.RemoveStaticAddress:input_type -> forge.RemoveStaticAddressRequest + 322, // 1221: forge.Forge.FindInterfaceAddresses:input_type -> forge.FindInterfaceAddressesRequest + 317, // 1222: forge.Forge.FindInterfaces:input_type -> forge.InterfaceSearchQuery + 316, // 1223: forge.Forge.DeleteInterface:input_type -> forge.InterfaceDeleteQuery + 491, // 1224: forge.Forge.FindIpAddress:input_type -> forge.FindIpAddressRequest + 302, // 1225: forge.Forge.FindMachineIds:input_type -> forge.MachineSearchConfig + 301, // 1226: forge.Forge.FindMachinesByIds:input_type -> forge.MachinesByIdsRequest + 303, // 1227: forge.Forge.FindMachineStateHistories:input_type -> forge.MachineStateHistoriesRequest + 306, // 1228: forge.Forge.FindMachineHealthHistories:input_type -> forge.MachineHealthHistoriesRequest + 196, // 1229: forge.Forge.FindPowerShelfStateHistories:input_type -> forge.PowerShelfStateHistoriesRequest + 732, // 1230: forge.Forge.FindRackStateHistories:input_type -> forge.RackStateHistoriesRequest + 217, // 1231: forge.Forge.FindSwitchStateHistories:input_type -> forge.SwitchStateHistoriesRequest + 240, // 1232: forge.Forge.FindNetworkSegmentStateHistories:input_type -> forge.NetworkSegmentStateHistoriesRequest + 168, // 1233: forge.Forge.FindVpcPrefixStateHistories:input_type -> forge.VpcPrefixStateHistoriesRequest + 311, // 1234: forge.Forge.FindTenantOrganizationIds:input_type -> forge.TenantSearchFilter + 310, // 1235: forge.Forge.FindTenantsByOrganizationIds:input_type -> forge.TenantByOrganizationIdsRequest + 1017, // 1236: forge.Forge.FindConnectedDevicesByDpuMachineIds:input_type -> common.MachineIdList + 516, // 1237: forge.Forge.FindMachineIdsByBmcIps:input_type -> forge.BmcIpList + 517, // 1238: forge.Forge.FindMacAddressByBmcIp:input_type -> forge.BmcIp + 495, // 1239: forge.Forge.FindBmcIps:input_type -> forge.FindBmcIpsRequest + 493, // 1240: forge.Forge.IdentifyUuid:input_type -> forge.IdentifyUuidRequest + 496, // 1241: forge.Forge.IdentifyMac:input_type -> forge.IdentifyMacRequest + 498, // 1242: forge.Forge.IdentifySerial:input_type -> forge.IdentifySerialRequest + 412, // 1243: forge.Forge.GetBMCMetaData:input_type -> forge.BMCMetaDataGetRequest + 414, // 1244: forge.Forge.UpdateMachineCredentials:input_type -> forge.MachineCredentialsUpdateRequest + 429, // 1245: forge.Forge.GetPxeInstructions:input_type -> forge.PxeInstructionRequest + 433, // 1246: forge.Forge.GetCloudInitInstructions:input_type -> forge.CloudInitInstructionsRequest + 133, // 1247: forge.Forge.Echo:input_type -> forge.EchoRequest + 460, // 1248: forge.Forge.CreateTenant:input_type -> forge.CreateTenantRequest + 464, // 1249: forge.Forge.FindTenant:input_type -> forge.FindTenantRequest + 462, // 1250: forge.Forge.UpdateTenant:input_type -> forge.UpdateTenantRequest + 470, // 1251: forge.Forge.CreateTenantKeyset:input_type -> forge.CreateTenantKeysetRequest + 477, // 1252: forge.Forge.FindTenantKeysetIds:input_type -> forge.TenantKeysetSearchFilter + 479, // 1253: forge.Forge.FindTenantKeysetsByIds:input_type -> forge.TenantKeysetsByIdsRequest + 473, // 1254: forge.Forge.UpdateTenantKeyset:input_type -> forge.UpdateTenantKeysetRequest + 475, // 1255: forge.Forge.DeleteTenantKeyset:input_type -> forge.DeleteTenantKeysetRequest + 480, // 1256: forge.Forge.ValidateTenantPublicKey:input_type -> forge.ValidateTenantPublicKeyRequest + 353, // 1257: forge.Forge.GetBmcCredentials:input_type -> forge.GetBmcCredentialsRequest + 354, // 1258: forge.Forge.GetSwitchNvosCredentials:input_type -> forge.GetSwitchNvosCredentialsRequest + 387, // 1259: forge.Forge.GetAllManagedHostNetworkStatus:input_type -> forge.ManagedHostNetworkStatusRequest + 357, // 1260: forge.Forge.GetSiteExplorationReport:input_type -> forge.GetSiteExplorationRequest + 1030, // 1261: forge.Forge.GetSiteExplorerLastRun:input_type -> google.protobuf.Empty + 358, // 1262: forge.Forge.ClearSiteExplorationError:input_type -> forge.ClearSiteExplorationErrorRequest + 364, // 1263: forge.Forge.IsBmcInManagedHost:input_type -> forge.BmcEndpointRequest + 364, // 1264: forge.Forge.BmcCredentialStatus:input_type -> forge.BmcEndpointRequest + 364, // 1265: forge.Forge.Explore:input_type -> forge.BmcEndpointRequest + 359, // 1266: forge.Forge.ReExploreEndpoint:input_type -> forge.ReExploreEndpointRequest + 360, // 1267: forge.Forge.RefreshEndpointReport:input_type -> forge.RefreshEndpointReportRequest + 361, // 1268: forge.Forge.DeleteExploredEndpoint:input_type -> forge.DeleteExploredEndpointRequest + 362, // 1269: forge.Forge.PauseExploredEndpointRemediation:input_type -> forge.PauseExploredEndpointRemediationRequest + 1031, // 1270: forge.Forge.FindExploredEndpointIds:input_type -> site_explorer.ExploredEndpointSearchFilter + 1032, // 1271: forge.Forge.FindExploredEndpointsByIds:input_type -> site_explorer.ExploredEndpointsByIdsRequest + 1033, // 1272: forge.Forge.FindExploredManagedHostIds:input_type -> site_explorer.ExploredManagedHostSearchFilter + 1034, // 1273: forge.Forge.FindExploredManagedHostsByIds:input_type -> site_explorer.ExploredManagedHostsByIdsRequest + 1035, // 1274: forge.Forge.FindExploredMlxDeviceHostIds:input_type -> site_explorer.ExploredMlxDeviceHostSearchFilter + 1036, // 1275: forge.Forge.FindExploredMlxDevicesByIds:input_type -> site_explorer.ExploredMlxDevicesByIdsRequest + 368, // 1276: forge.Forge.UpdateMachineHardwareInfo:input_type -> forge.UpdateMachineHardwareInfoRequest + 393, // 1277: forge.Forge.AdminForceDeleteMachine:input_type -> forge.AdminForceDeleteMachineRequest + 482, // 1278: forge.Forge.AdminListResourcePools:input_type -> forge.ListResourcePoolsRequest + 485, // 1279: forge.Forge.AdminGrowResourcePool:input_type -> forge.GrowResourcePoolRequest + 330, // 1280: forge.Forge.UpdateMachineMetadata:input_type -> forge.MachineMetadataUpdateRequest + 331, // 1281: forge.Forge.UpdateRackMetadata:input_type -> forge.RackMetadataUpdateRequest + 332, // 1282: forge.Forge.UpdateSwitchMetadata:input_type -> forge.SwitchMetadataUpdateRequest + 333, // 1283: forge.Forge.UpdatePowerShelfMetadata:input_type -> forge.PowerShelfMetadataUpdateRequest + 746, // 1284: forge.Forge.UpdateMachineNvLinkInfo:input_type -> forge.UpdateMachineNvLinkInfoRequest + 489, // 1285: forge.Forge.SetMaintenance:input_type -> forge.MaintenanceRequest + 490, // 1286: forge.Forge.SetDynamicConfig:input_type -> forge.SetDynamicConfigRequest + 500, // 1287: forge.Forge.TriggerDpuReprovisioning:input_type -> forge.DpuReprovisioningRequest + 501, // 1288: forge.Forge.ListDpuWaitingForReprovisioning:input_type -> forge.DpuReprovisioningListRequest + 503, // 1289: forge.Forge.TriggerHostReprovisioning:input_type -> forge.HostReprovisioningRequest + 504, // 1290: forge.Forge.ListHostsWaitingForReprovisioning:input_type -> forge.HostReprovisioningListRequest + 958, // 1291: forge.Forge.MarkManualFirmwareUpgradeComplete:input_type -> common.MachineId + 555, // 1292: forge.Forge.ReportScoutFirmwareUpgradeStatus:input_type -> forge.ScoutFirmwareUpgradeStatusRequest + 510, // 1293: forge.Forge.GetDpuInfoList:input_type -> forge.GetDpuInfoListRequest + 979, // 1294: forge.Forge.GetMachineBootOverride:input_type -> common.MachineInterfaceId + 513, // 1295: forge.Forge.SetMachineBootOverride:input_type -> forge.MachineBootOverride + 979, // 1296: forge.Forge.ClearMachineBootOverride:input_type -> common.MachineInterfaceId + 913, // 1297: forge.Forge.GetMachineBootInterfaces:input_type -> forge.GetMachineBootInterfacesRequest + 522, // 1298: forge.Forge.GetNetworkTopology:input_type -> forge.NetworkTopologyRequest + 523, // 1299: forge.Forge.FindNetworkDevicesByDeviceIds:input_type -> forge.NetworkDeviceIdList + 126, // 1300: forge.Forge.CreateCredential:input_type -> forge.CredentialCreationRequest + 127, // 1301: forge.Forge.DeleteCredential:input_type -> forge.CredentialDeletionRequest + 1030, // 1302: forge.Forge.GetRouteServers:input_type -> google.protobuf.Empty + 525, // 1303: forge.Forge.AddRouteServers:input_type -> forge.RouteServers + 525, // 1304: forge.Forge.RemoveRouteServers:input_type -> forge.RouteServers + 525, // 1305: forge.Forge.ReplaceRouteServers:input_type -> forge.RouteServers + 334, // 1306: forge.Forge.UpdateAgentReportedInventory:input_type -> forge.DpuAgentInventoryReport + 294, // 1307: forge.Forge.UpdateInstancePhoneHomeLastContact:input_type -> forge.InstancePhoneHomeLastContactRequest + 528, // 1308: forge.Forge.SetHostUefiPassword:input_type -> forge.SetHostUefiPasswordRequest + 530, // 1309: forge.Forge.ClearHostUefiPassword:input_type -> forge.ClearHostUefiPasswordRequest + 543, // 1310: forge.Forge.AddExpectedMachine:input_type -> forge.ExpectedMachine + 544, // 1311: forge.Forge.DeleteExpectedMachine:input_type -> forge.ExpectedMachineRequest + 543, // 1312: forge.Forge.UpdateExpectedMachine:input_type -> forge.ExpectedMachine + 544, // 1313: forge.Forge.GetExpectedMachine:input_type -> forge.ExpectedMachineRequest + 1030, // 1314: forge.Forge.GetAllExpectedMachines:input_type -> google.protobuf.Empty + 545, // 1315: forge.Forge.ReplaceAllExpectedMachines:input_type -> forge.ExpectedMachineList + 1030, // 1316: forge.Forge.DeleteAllExpectedMachines:input_type -> google.protobuf.Empty + 1030, // 1317: forge.Forge.GetAllExpectedMachinesLinked:input_type -> google.protobuf.Empty + 1030, // 1318: forge.Forge.GetAllUnexpectedMachines:input_type -> google.protobuf.Empty + 550, // 1319: forge.Forge.CreateExpectedMachines:input_type -> forge.BatchExpectedMachineOperationRequest + 550, // 1320: forge.Forge.UpdateExpectedMachines:input_type -> forge.BatchExpectedMachineOperationRequest + 200, // 1321: forge.Forge.AddExpectedPowerShelf:input_type -> forge.ExpectedPowerShelf + 201, // 1322: forge.Forge.DeleteExpectedPowerShelf:input_type -> forge.ExpectedPowerShelfRequest + 200, // 1323: forge.Forge.UpdateExpectedPowerShelf:input_type -> forge.ExpectedPowerShelf + 201, // 1324: forge.Forge.GetExpectedPowerShelf:input_type -> forge.ExpectedPowerShelfRequest + 1030, // 1325: forge.Forge.GetAllExpectedPowerShelves:input_type -> google.protobuf.Empty + 202, // 1326: forge.Forge.ReplaceAllExpectedPowerShelves:input_type -> forge.ExpectedPowerShelfList + 1030, // 1327: forge.Forge.DeleteAllExpectedPowerShelves:input_type -> google.protobuf.Empty + 1030, // 1328: forge.Forge.GetAllExpectedPowerShelvesLinked:input_type -> google.protobuf.Empty + 222, // 1329: forge.Forge.AddExpectedSwitch:input_type -> forge.ExpectedSwitch + 223, // 1330: forge.Forge.DeleteExpectedSwitch:input_type -> forge.ExpectedSwitchRequest + 222, // 1331: forge.Forge.UpdateExpectedSwitch:input_type -> forge.ExpectedSwitch + 223, // 1332: forge.Forge.GetExpectedSwitch:input_type -> forge.ExpectedSwitchRequest + 1030, // 1333: forge.Forge.GetAllExpectedSwitches:input_type -> google.protobuf.Empty + 224, // 1334: forge.Forge.ReplaceAllExpectedSwitches:input_type -> forge.ExpectedSwitchList + 1030, // 1335: forge.Forge.DeleteAllExpectedSwitches:input_type -> google.protobuf.Empty + 1030, // 1336: forge.Forge.GetAllExpectedSwitchesLinked:input_type -> google.protobuf.Empty + 227, // 1337: forge.Forge.AddExpectedRack:input_type -> forge.ExpectedRack + 228, // 1338: forge.Forge.DeleteExpectedRack:input_type -> forge.ExpectedRackRequest + 227, // 1339: forge.Forge.UpdateExpectedRack:input_type -> forge.ExpectedRack + 228, // 1340: forge.Forge.GetExpectedRack:input_type -> forge.ExpectedRackRequest + 1030, // 1341: forge.Forge.GetAllExpectedRacks:input_type -> google.protobuf.Empty + 229, // 1342: forge.Forge.ReplaceAllExpectedRacks:input_type -> forge.ExpectedRackList + 1030, // 1343: forge.Forge.DeleteAllExpectedRacks:input_type -> google.protobuf.Empty + 124, // 1344: forge.Forge.AttestQuote:input_type -> forge.AttestQuoteRequest + 625, // 1345: forge.Forge.CreateInstanceType:input_type -> forge.CreateInstanceTypeRequest + 627, // 1346: forge.Forge.FindInstanceTypeIds:input_type -> forge.FindInstanceTypeIdsRequest + 629, // 1347: forge.Forge.FindInstanceTypesByIds:input_type -> forge.FindInstanceTypesByIdsRequest + 634, // 1348: forge.Forge.UpdateInstanceType:input_type -> forge.UpdateInstanceTypeRequest + 631, // 1349: forge.Forge.DeleteInstanceType:input_type -> forge.DeleteInstanceTypeRequest + 635, // 1350: forge.Forge.AssociateMachinesWithInstanceType:input_type -> forge.AssociateMachinesWithInstanceTypeRequest + 637, // 1351: forge.Forge.RemoveMachineInstanceTypeAssociation:input_type -> forge.RemoveMachineInstanceTypeAssociationRequest + 1037, // 1352: forge.Forge.CreateMeasurementBundle:input_type -> measured_boot.CreateMeasurementBundleRequest + 1038, // 1353: forge.Forge.DeleteMeasurementBundle:input_type -> measured_boot.DeleteMeasurementBundleRequest + 1039, // 1354: forge.Forge.RenameMeasurementBundle:input_type -> measured_boot.RenameMeasurementBundleRequest + 1040, // 1355: forge.Forge.UpdateMeasurementBundle:input_type -> measured_boot.UpdateMeasurementBundleRequest + 1041, // 1356: forge.Forge.ShowMeasurementBundle:input_type -> measured_boot.ShowMeasurementBundleRequest + 1042, // 1357: forge.Forge.ShowMeasurementBundles:input_type -> measured_boot.ShowMeasurementBundlesRequest + 1043, // 1358: forge.Forge.ListMeasurementBundles:input_type -> measured_boot.ListMeasurementBundlesRequest + 1044, // 1359: forge.Forge.ListMeasurementBundleMachines:input_type -> measured_boot.ListMeasurementBundleMachinesRequest + 1045, // 1360: forge.Forge.FindClosestBundleMatch:input_type -> measured_boot.FindClosestBundleMatchRequest + 1046, // 1361: forge.Forge.DeleteMeasurementJournal:input_type -> measured_boot.DeleteMeasurementJournalRequest + 1047, // 1362: forge.Forge.ShowMeasurementJournal:input_type -> measured_boot.ShowMeasurementJournalRequest + 1048, // 1363: forge.Forge.ShowMeasurementJournals:input_type -> measured_boot.ShowMeasurementJournalsRequest + 1049, // 1364: forge.Forge.ListMeasurementJournal:input_type -> measured_boot.ListMeasurementJournalRequest + 1050, // 1365: forge.Forge.AttestCandidateMachine:input_type -> measured_boot.AttestCandidateMachineRequest + 1051, // 1366: forge.Forge.ShowCandidateMachine:input_type -> measured_boot.ShowCandidateMachineRequest + 1052, // 1367: forge.Forge.ShowCandidateMachines:input_type -> measured_boot.ShowCandidateMachinesRequest + 1053, // 1368: forge.Forge.ListCandidateMachines:input_type -> measured_boot.ListCandidateMachinesRequest + 1054, // 1369: forge.Forge.CreateMeasurementSystemProfile:input_type -> measured_boot.CreateMeasurementSystemProfileRequest + 1055, // 1370: forge.Forge.DeleteMeasurementSystemProfile:input_type -> measured_boot.DeleteMeasurementSystemProfileRequest + 1056, // 1371: forge.Forge.RenameMeasurementSystemProfile:input_type -> measured_boot.RenameMeasurementSystemProfileRequest + 1057, // 1372: forge.Forge.ShowMeasurementSystemProfile:input_type -> measured_boot.ShowMeasurementSystemProfileRequest + 1058, // 1373: forge.Forge.ShowMeasurementSystemProfiles:input_type -> measured_boot.ShowMeasurementSystemProfilesRequest + 1059, // 1374: forge.Forge.ListMeasurementSystemProfiles:input_type -> measured_boot.ListMeasurementSystemProfilesRequest + 1060, // 1375: forge.Forge.ListMeasurementSystemProfileBundles:input_type -> measured_boot.ListMeasurementSystemProfileBundlesRequest + 1061, // 1376: forge.Forge.ListMeasurementSystemProfileMachines:input_type -> measured_boot.ListMeasurementSystemProfileMachinesRequest + 1062, // 1377: forge.Forge.CreateMeasurementReport:input_type -> measured_boot.CreateMeasurementReportRequest + 1063, // 1378: forge.Forge.DeleteMeasurementReport:input_type -> measured_boot.DeleteMeasurementReportRequest + 1064, // 1379: forge.Forge.PromoteMeasurementReport:input_type -> measured_boot.PromoteMeasurementReportRequest + 1065, // 1380: forge.Forge.RevokeMeasurementReport:input_type -> measured_boot.RevokeMeasurementReportRequest + 1066, // 1381: forge.Forge.ShowMeasurementReportForId:input_type -> measured_boot.ShowMeasurementReportForIdRequest + 1067, // 1382: forge.Forge.ShowMeasurementReportsForMachine:input_type -> measured_boot.ShowMeasurementReportsForMachineRequest + 1068, // 1383: forge.Forge.ShowMeasurementReports:input_type -> measured_boot.ShowMeasurementReportsRequest + 1069, // 1384: forge.Forge.ListMeasurementReport:input_type -> measured_boot.ListMeasurementReportRequest + 1070, // 1385: forge.Forge.MatchMeasurementReport:input_type -> measured_boot.MatchMeasurementReportRequest + 1071, // 1386: forge.Forge.ImportSiteMeasurements:input_type -> measured_boot.ImportSiteMeasurementsRequest + 1072, // 1387: forge.Forge.ExportSiteMeasurements:input_type -> measured_boot.ExportSiteMeasurementsRequest + 1073, // 1388: forge.Forge.AddMeasurementTrustedMachine:input_type -> measured_boot.AddMeasurementTrustedMachineRequest + 1074, // 1389: forge.Forge.RemoveMeasurementTrustedMachine:input_type -> measured_boot.RemoveMeasurementTrustedMachineRequest + 1075, // 1390: forge.Forge.AddMeasurementTrustedProfile:input_type -> measured_boot.AddMeasurementTrustedProfileRequest + 1076, // 1391: forge.Forge.RemoveMeasurementTrustedProfile:input_type -> measured_boot.RemoveMeasurementTrustedProfileRequest + 1077, // 1392: forge.Forge.ListMeasurementTrustedMachines:input_type -> measured_boot.ListMeasurementTrustedMachinesRequest + 1078, // 1393: forge.Forge.ListMeasurementTrustedProfiles:input_type -> measured_boot.ListMeasurementTrustedProfilesRequest + 1079, // 1394: forge.Forge.ListAttestationSummary:input_type -> measured_boot.ListAttestationSummaryRequest + 656, // 1395: forge.Forge.CreateNetworkSecurityGroup:input_type -> forge.CreateNetworkSecurityGroupRequest + 658, // 1396: forge.Forge.FindNetworkSecurityGroupIds:input_type -> forge.FindNetworkSecurityGroupIdsRequest + 660, // 1397: forge.Forge.FindNetworkSecurityGroupsByIds:input_type -> forge.FindNetworkSecurityGroupsByIdsRequest + 663, // 1398: forge.Forge.UpdateNetworkSecurityGroup:input_type -> forge.UpdateNetworkSecurityGroupRequest + 664, // 1399: forge.Forge.DeleteNetworkSecurityGroup:input_type -> forge.DeleteNetworkSecurityGroupRequest + 670, // 1400: forge.Forge.GetNetworkSecurityGroupPropagationStatus:input_type -> forge.GetNetworkSecurityGroupPropagationStatusRequest + 673, // 1401: forge.Forge.GetNetworkSecurityGroupAttachments:input_type -> forge.GetNetworkSecurityGroupAttachmentsRequest + 532, // 1402: forge.Forge.CreateOsImage:input_type -> forge.OsImageAttributes + 536, // 1403: forge.Forge.DeleteOsImage:input_type -> forge.DeleteOsImageRequest + 534, // 1404: forge.Forge.ListOsImage:input_type -> forge.ListOsImageRequest + 968, // 1405: forge.Forge.GetOsImage:input_type -> common.UUID + 532, // 1406: forge.Forge.UpdateOsImage:input_type -> forge.OsImageAttributes + 538, // 1407: forge.Forge.GetIpxeTemplate:input_type -> forge.GetIpxeTemplateRequest + 539, // 1408: forge.Forge.ListIpxeTemplates:input_type -> forge.ListIpxeTemplatesRequest + 554, // 1409: forge.Forge.RebootCompleted:input_type -> forge.MachineRebootCompletedRequest + 559, // 1410: forge.Forge.PersistValidationResult:input_type -> forge.MachineValidationResultPostRequest + 561, // 1411: forge.Forge.GetMachineValidationResults:input_type -> forge.MachineValidationGetRequest + 556, // 1412: forge.Forge.MachineValidationCompleted:input_type -> forge.MachineValidationCompletedRequest + 564, // 1413: forge.Forge.MachineSetAutoUpdate:input_type -> forge.MachineSetAutoUpdateRequest + 566, // 1414: forge.Forge.GetMachineValidationExternalConfig:input_type -> forge.GetMachineValidationExternalConfigRequest + 569, // 1415: forge.Forge.GetMachineValidationExternalConfigs:input_type -> forge.GetMachineValidationExternalConfigsRequest + 571, // 1416: forge.Forge.AddUpdateMachineValidationExternalConfig:input_type -> forge.AddUpdateMachineValidationExternalConfigRequest + 588, // 1417: forge.Forge.GetMachineValidationRuns:input_type -> forge.MachineValidationRunListGetRequest + 589, // 1418: forge.Forge.FindMachineValidationRunItemIds:input_type -> forge.MachineValidationRunItemSearchFilter + 591, // 1419: forge.Forge.FindMachineValidationRunItemsByIds:input_type -> forge.MachineValidationRunItemsByIdsRequest + 594, // 1420: forge.Forge.GetMachineValidationAttempt:input_type -> forge.MachineValidationAttemptGetRequest + 596, // 1421: forge.Forge.HeartbeatMachineValidationRun:input_type -> forge.MachineValidationHeartbeatRequest + 572, // 1422: forge.Forge.RemoveMachineValidationExternalConfig:input_type -> forge.RemoveMachineValidationExternalConfigRequest + 600, // 1423: forge.Forge.GetMachineValidationTests:input_type -> forge.MachineValidationTestsGetRequest + 602, // 1424: forge.Forge.AddMachineValidationTest:input_type -> forge.MachineValidationTestAddRequest + 601, // 1425: forge.Forge.UpdateMachineValidationTest:input_type -> forge.MachineValidationTestUpdateRequest + 605, // 1426: forge.Forge.MachineValidationTestVerfied:input_type -> forge.MachineValidationTestVerfiedRequest + 609, // 1427: forge.Forge.MachineValidationTestNextVersion:input_type -> forge.MachineValidationTestNextVersionRequest + 610, // 1428: forge.Forge.MachineValidationTestEnableDisableTest:input_type -> forge.MachineValidationTestEnableDisableTestRequest + 612, // 1429: forge.Forge.UpdateMachineValidationRun:input_type -> forge.MachineValidationRunRequest + 406, // 1430: forge.Forge.AdminBmcReset:input_type -> forge.AdminBmcResetRequest + 583, // 1431: forge.Forge.AdminPowerControl:input_type -> forge.AdminPowerControlRequest + 364, // 1432: forge.Forge.DisableSecureBoot:input_type -> forge.BmcEndpointRequest + 396, // 1433: forge.Forge.Lockdown:input_type -> forge.LockdownRequest + 398, // 1434: forge.Forge.LockdownStatus:input_type -> forge.LockdownStatusRequest + 400, // 1435: forge.Forge.MachineSetup:input_type -> forge.MachineSetupRequest + 402, // 1436: forge.Forge.SetDpuFirstBootOrder:input_type -> forge.SetDpuFirstBootOrderRequest + 774, // 1437: forge.Forge.CreateBmcUser:input_type -> forge.CreateBmcUserRequest + 776, // 1438: forge.Forge.DeleteBmcUser:input_type -> forge.DeleteBmcUserRequest + 408, // 1439: forge.Forge.EnableInfiniteBoot:input_type -> forge.EnableInfiniteBootRequest + 410, // 1440: forge.Forge.IsInfiniteBootEnabled:input_type -> forge.IsInfiniteBootEnabledRequest + 573, // 1441: forge.Forge.OnDemandMachineValidation:input_type -> forge.MachineValidationOnDemandRequest + 581, // 1442: forge.Forge.OnDemandRackMaintenance:input_type -> forge.RackMaintenanceOnDemandRequest + 120, // 1443: forge.Forge.TpmAddCaCert:input_type -> forge.TpmCaCert + 1030, // 1444: forge.Forge.TpmShowCaCerts:input_type -> google.protobuf.Empty + 1030, // 1445: forge.Forge.TpmShowUnmatchedEkCerts:input_type -> google.protobuf.Empty + 117, // 1446: forge.Forge.TpmDeleteCaCert:input_type -> forge.TpmCaCertId + 639, // 1447: forge.Forge.RedfishBrowse:input_type -> forge.RedfishBrowseRequest + 641, // 1448: forge.Forge.RedfishListActions:input_type -> forge.RedfishListActionsRequest + 646, // 1449: forge.Forge.RedfishCreateAction:input_type -> forge.RedfishCreateActionRequest + 648, // 1450: forge.Forge.RedfishApproveAction:input_type -> forge.RedfishActionID + 648, // 1451: forge.Forge.RedfishApplyAction:input_type -> forge.RedfishActionID + 648, // 1452: forge.Forge.RedfishCancelAction:input_type -> forge.RedfishActionID + 652, // 1453: forge.Forge.UfmBrowse:input_type -> forge.UfmBrowseRequest + 676, // 1454: forge.Forge.GetDesiredFirmwareVersions:input_type -> forge.GetDesiredFirmwareVersionsRequest + 692, // 1455: forge.Forge.CreateSku:input_type -> forge.SkuList + 958, // 1456: forge.Forge.GenerateSkuFromMachine:input_type -> common.MachineId + 958, // 1457: forge.Forge.VerifySkuForMachine:input_type -> common.MachineId + 690, // 1458: forge.Forge.AssignSkuToMachine:input_type -> forge.SkuMachinePair + 691, // 1459: forge.Forge.RemoveSkuAssociation:input_type -> forge.RemoveSkuRequest + 693, // 1460: forge.Forge.DeleteSku:input_type -> forge.SkuIdList + 1030, // 1461: forge.Forge.GetAllSkuIds:input_type -> google.protobuf.Empty + 695, // 1462: forge.Forge.FindSkusByIds:input_type -> forge.SkusByIdsRequest + 705, // 1463: forge.Forge.UpdateSkuMetadata:input_type -> forge.SkuUpdateMetadataRequest + 689, // 1464: forge.Forge.ReplaceSku:input_type -> forge.Sku + 376, // 1465: forge.Forge.GetManagedHostQuarantineState:input_type -> forge.GetManagedHostQuarantineStateRequest + 378, // 1466: forge.Forge.SetManagedHostQuarantineState:input_type -> forge.SetManagedHostQuarantineStateRequest + 380, // 1467: forge.Forge.ClearManagedHostQuarantineState:input_type -> forge.ClearManagedHostQuarantineStateRequest + 958, // 1468: forge.Forge.ResetHostReprovisioning:input_type -> common.MachineId + 367, // 1469: forge.Forge.CopyBfbToDpuRshim:input_type -> forge.CopyBfbToDpuRshimRequest + 1030, // 1470: forge.Forge.GetAllDpaInterfaceIds:input_type -> google.protobuf.Empty + 700, // 1471: forge.Forge.FindDpaInterfacesByIds:input_type -> forge.DpaInterfacesByIdsRequest + 698, // 1472: forge.Forge.CreateDpaInterface:input_type -> forge.DpaInterfaceCreationRequest + 698, // 1473: forge.Forge.EnsureDpaInterface:input_type -> forge.DpaInterfaceCreationRequest + 703, // 1474: forge.Forge.DeleteDpaInterface:input_type -> forge.DpaInterfaceDeletionRequest + 706, // 1475: forge.Forge.GetPowerOptions:input_type -> forge.PowerOptionRequest + 707, // 1476: forge.Forge.UpdatePowerOption:input_type -> forge.PowerOptionUpdateRequest + 364, // 1477: forge.Forge.AllowIngestionAndPowerOn:input_type -> forge.BmcEndpointRequest + 364, // 1478: forge.Forge.DetermineMachineIngestionState:input_type -> forge.BmcEndpointRequest + 726, // 1479: forge.Forge.FindRackIds:input_type -> forge.RackSearchFilter + 728, // 1480: forge.Forge.FindRacksByIds:input_type -> forge.RacksByIdsRequest + 723, // 1481: forge.Forge.GetRack:input_type -> forge.GetRackRequest + 733, // 1482: forge.Forge.DeleteRack:input_type -> forge.DeleteRackRequest + 734, // 1483: forge.Forge.AdminForceDeleteRack:input_type -> forge.AdminForceDeleteRackRequest + 741, // 1484: forge.Forge.GetRackProfile:input_type -> forge.GetRackProfileRequest + 712, // 1485: forge.Forge.CreateComputeAllocation:input_type -> forge.CreateComputeAllocationRequest + 714, // 1486: forge.Forge.FindComputeAllocationIds:input_type -> forge.FindComputeAllocationIdsRequest + 716, // 1487: forge.Forge.FindComputeAllocationsByIds:input_type -> forge.FindComputeAllocationsByIdsRequest + 719, // 1488: forge.Forge.UpdateComputeAllocation:input_type -> forge.UpdateComputeAllocationRequest + 720, // 1489: forge.Forge.DeleteComputeAllocation:input_type -> forge.DeleteComputeAllocationRequest + 778, // 1490: forge.Forge.SetFirmwareUpdateTimeWindow:input_type -> forge.SetFirmwareUpdateTimeWindowRequest + 780, // 1491: forge.Forge.ListHostFirmware:input_type -> forge.ListHostFirmwareRequest + 1080, // 1492: forge.Forge.PublishMlxDeviceReport:input_type -> mlx_device.PublishMlxDeviceReportRequest + 1081, // 1493: forge.Forge.PublishMlxObservationReport:input_type -> mlx_device.PublishMlxObservationReportRequest + 783, // 1494: forge.Forge.TrimTable:input_type -> forge.TrimTableRequest + 1030, // 1495: forge.Forge.ListNvlinkNmxcEndpoints:input_type -> google.protobuf.Empty + 785, // 1496: forge.Forge.CreateNvlinkNmxcEndpoint:input_type -> forge.NvlinkNmxcEndpoint + 785, // 1497: forge.Forge.UpdateNvlinkNmxcEndpoint:input_type -> forge.NvlinkNmxcEndpoint + 787, // 1498: forge.Forge.DeleteNvlinkNmxcEndpoint:input_type -> forge.DeleteNvlinkNmxcEndpointRequest + 788, // 1499: forge.Forge.CreateRemediation:input_type -> forge.CreateRemediationRequest + 793, // 1500: forge.Forge.ApproveRemediation:input_type -> forge.ApproveRemediationRequest + 794, // 1501: forge.Forge.RevokeRemediation:input_type -> forge.RevokeRemediationRequest + 795, // 1502: forge.Forge.EnableRemediation:input_type -> forge.EnableRemediationRequest + 796, // 1503: forge.Forge.DisableRemediation:input_type -> forge.DisableRemediationRequest + 1030, // 1504: forge.Forge.FindRemediationIds:input_type -> google.protobuf.Empty + 790, // 1505: forge.Forge.FindRemediationsByIds:input_type -> forge.RemediationIdList + 797, // 1506: forge.Forge.FindAppliedRemediationIds:input_type -> forge.FindAppliedRemediationIdsRequest + 799, // 1507: forge.Forge.FindAppliedRemediations:input_type -> forge.FindAppliedRemediationsRequest + 802, // 1508: forge.Forge.GetNextRemediationForMachine:input_type -> forge.GetNextRemediationForMachineRequest + 804, // 1509: forge.Forge.RemediationApplied:input_type -> forge.RemediationAppliedRequest + 806, // 1510: forge.Forge.SetPrimaryDpu:input_type -> forge.SetPrimaryDpuRequest + 807, // 1511: forge.Forge.SetPrimaryInterface:input_type -> forge.SetPrimaryInterfaceRequest + 813, // 1512: forge.Forge.CreateDpuExtensionService:input_type -> forge.CreateDpuExtensionServiceRequest + 814, // 1513: forge.Forge.UpdateDpuExtensionService:input_type -> forge.UpdateDpuExtensionServiceRequest + 815, // 1514: forge.Forge.DeleteDpuExtensionService:input_type -> forge.DeleteDpuExtensionServiceRequest + 817, // 1515: forge.Forge.FindDpuExtensionServiceIds:input_type -> forge.DpuExtensionServiceSearchFilter + 819, // 1516: forge.Forge.FindDpuExtensionServicesByIds:input_type -> forge.DpuExtensionServicesByIdsRequest + 821, // 1517: forge.Forge.GetDpuExtensionServiceVersionsInfo:input_type -> forge.GetDpuExtensionServiceVersionsInfoRequest + 823, // 1518: forge.Forge.FindInstancesByDpuExtensionService:input_type -> forge.FindInstancesByDpuExtensionServiceRequest + 92, // 1519: forge.Forge.TriggerMachineAttestation:input_type -> forge.SpdmMachineAttestationTriggerRequest + 958, // 1520: forge.Forge.CancelMachineAttestation:input_type -> common.MachineId + 93, // 1521: forge.Forge.ListAttestationMachines:input_type -> forge.SpdmListAttestationMachinesRequest + 958, // 1522: forge.Forge.GetAttestationMachine:input_type -> common.MachineId + 95, // 1523: forge.Forge.SignMachineIdentity:input_type -> forge.MachineIdentityRequest + 97, // 1524: forge.Forge.GetTenantIdentityConfiguration:input_type -> forge.GetTenantIdentityConfigRequest + 100, // 1525: forge.Forge.SetTenantIdentityConfiguration:input_type -> forge.SetTenantIdentityConfigRequest + 97, // 1526: forge.Forge.DeleteTenantIdentityConfiguration:input_type -> forge.GetTenantIdentityConfigRequest + 105, // 1527: forge.Forge.GetTokenDelegation:input_type -> forge.GetTokenDelegationRequest + 107, // 1528: forge.Forge.SetTokenDelegation:input_type -> forge.TokenDelegationRequest + 105, // 1529: forge.Forge.DeleteTokenDelegation:input_type -> forge.GetTokenDelegationRequest + 108, // 1530: forge.Forge.ReencryptTenantIdentitySecrets:input_type -> forge.ReencryptTenantIdentitySecretsRequest + 113, // 1531: forge.Forge.GetJWKS:input_type -> forge.JwksRequest + 114, // 1532: forge.Forge.GetOpenIDConfiguration:input_type -> forge.OpenIdConfigRequest + 830, // 1533: forge.Forge.ScoutStream:input_type -> forge.ScoutStreamApiBoundMessage + 833, // 1534: forge.Forge.ScoutStreamShowConnections:input_type -> forge.ScoutStreamShowConnectionsRequest + 835, // 1535: forge.Forge.ScoutStreamDisconnect:input_type -> forge.ScoutStreamDisconnectRequest + 837, // 1536: forge.Forge.ScoutStreamPing:input_type -> forge.ScoutStreamAdminPingRequest + 1082, // 1537: forge.Forge.MlxAdminProfileSync:input_type -> mlx_device.MlxAdminProfileSyncRequest + 1083, // 1538: forge.Forge.MlxAdminProfileShow:input_type -> mlx_device.MlxAdminProfileShowRequest + 1084, // 1539: forge.Forge.MlxAdminProfileCompare:input_type -> mlx_device.MlxAdminProfileCompareRequest + 1085, // 1540: forge.Forge.MlxAdminProfileList:input_type -> mlx_device.MlxAdminProfileListRequest + 1086, // 1541: forge.Forge.MlxAdminLockdownLock:input_type -> mlx_device.MlxAdminLockdownLockRequest + 1087, // 1542: forge.Forge.MlxAdminLockdownUnlock:input_type -> mlx_device.MlxAdminLockdownUnlockRequest + 1088, // 1543: forge.Forge.MlxAdminLockdownStatus:input_type -> mlx_device.MlxAdminLockdownStatusRequest + 1089, // 1544: forge.Forge.MlxAdminShowDevice:input_type -> mlx_device.MlxAdminDeviceInfoRequest + 1090, // 1545: forge.Forge.MlxAdminShowMachine:input_type -> mlx_device.MlxAdminDeviceReportRequest + 1091, // 1546: forge.Forge.MlxAdminRegistryList:input_type -> mlx_device.MlxAdminRegistryListRequest + 1092, // 1547: forge.Forge.MlxAdminRegistryShow:input_type -> mlx_device.MlxAdminRegistryShowRequest + 1093, // 1548: forge.Forge.MlxAdminConfigQuery:input_type -> mlx_device.MlxAdminConfigQueryRequest + 1094, // 1549: forge.Forge.MlxAdminConfigSet:input_type -> mlx_device.MlxAdminConfigSetRequest + 1095, // 1550: forge.Forge.MlxAdminConfigSync:input_type -> mlx_device.MlxAdminConfigSyncRequest + 1096, // 1551: forge.Forge.MlxAdminConfigCompare:input_type -> mlx_device.MlxAdminConfigCompareRequest + 758, // 1552: forge.Forge.FindNVLinkPartitionIds:input_type -> forge.NVLinkPartitionSearchFilter + 759, // 1553: forge.Forge.FindNVLinkPartitionsByIds:input_type -> forge.NVLinkPartitionsByIdsRequest + 145, // 1554: forge.Forge.NVLinkPartitionsForTenant:input_type -> forge.TenantSearchQuery + 769, // 1555: forge.Forge.FindNVLinkLogicalPartitionIds:input_type -> forge.NVLinkLogicalPartitionSearchFilter + 770, // 1556: forge.Forge.FindNVLinkLogicalPartitionsByIds:input_type -> forge.NVLinkLogicalPartitionsByIdsRequest + 766, // 1557: forge.Forge.CreateNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionCreationRequest + 772, // 1558: forge.Forge.UpdateNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionUpdateRequest + 767, // 1559: forge.Forge.DeleteNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionDeletionRequest + 145, // 1560: forge.Forge.NVLinkLogicalPartitionsForTenant:input_type -> forge.TenantSearchQuery + 851, // 1561: forge.Forge.GetMachinePositionInfo:input_type -> forge.MachinePositionQuery + 752, // 1562: forge.Forge.NmxcBrowse:input_type -> forge.NmxcBrowseRequest + 854, // 1563: forge.Forge.ModifyDPFState:input_type -> forge.ModifyDPFStateRequest + 856, // 1564: forge.Forge.GetDPFState:input_type -> forge.GetDPFStateRequest + 857, // 1565: forge.Forge.GetDPFHostSnapshot:input_type -> forge.GetDPFHostSnapshotRequest + 859, // 1566: forge.Forge.GetDPFServiceVersions:input_type -> forge.GetDPFServiceVersionsRequest + 868, // 1567: forge.Forge.ComponentPowerControl:input_type -> forge.ComponentPowerControlRequest + 865, // 1568: forge.Forge.GetComponentInventory:input_type -> forge.GetComponentInventoryRequest + 875, // 1569: forge.Forge.UpdateComponentFirmware:input_type -> forge.UpdateComponentFirmwareRequest + 877, // 1570: forge.Forge.GetComponentFirmwareStatus:input_type -> forge.GetComponentFirmwareStatusRequest + 879, // 1571: forge.Forge.ListComponentFirmwareVersions:input_type -> forge.ListComponentFirmwareVersionsRequest + 896, // 1572: forge.Forge.CreateOperatingSystem:input_type -> forge.CreateOperatingSystemRequest + 976, // 1573: forge.Forge.GetOperatingSystem:input_type -> common.OperatingSystemId + 899, // 1574: forge.Forge.UpdateOperatingSystem:input_type -> forge.UpdateOperatingSystemRequest + 900, // 1575: forge.Forge.DeleteOperatingSystem:input_type -> forge.DeleteOperatingSystemRequest + 902, // 1576: forge.Forge.FindOperatingSystemIds:input_type -> forge.OperatingSystemSearchFilter + 904, // 1577: forge.Forge.FindOperatingSystemsByIds:input_type -> forge.OperatingSystemsByIdsRequest + 906, // 1578: forge.Forge.GetOperatingSystemCachableIpxeTemplateArtifacts:input_type -> forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest + 909, // 1579: forge.Forge.UpdateOperatingSystemCachableIpxeTemplateArtifacts:input_type -> forge.UpdateOperatingSystemIpxeTemplateArtifactRequest + 911, // 1580: forge.Forge.ReWrapSecrets:input_type -> forge.ReWrapSecretsRequest + 131, // 1581: forge.Forge.Version:output_type -> forge.BuildInfo + 1016, // 1582: forge.Forge.CreateDomain:output_type -> dns.Domain + 1016, // 1583: forge.Forge.UpdateDomain:output_type -> dns.Domain + 1097, // 1584: forge.Forge.DeleteDomain:output_type -> dns.DomainDeletionResult + 1098, // 1585: forge.Forge.FindDomain:output_type -> dns.DomainList + 845, // 1586: forge.Forge.CreateDomainLegacy:output_type -> forge.DomainLegacy + 845, // 1587: forge.Forge.UpdateDomainLegacy:output_type -> forge.DomainLegacy + 848, // 1588: forge.Forge.DeleteDomainLegacy:output_type -> forge.DomainDeletionResultLegacy + 846, // 1589: forge.Forge.FindDomainLegacy:output_type -> forge.DomainListLegacy + 148, // 1590: forge.Forge.CreateVpc:output_type -> forge.Vpc + 151, // 1591: forge.Forge.UpdateVpc:output_type -> forge.VpcUpdateResult + 153, // 1592: forge.Forge.UpdateVpcVirtualization:output_type -> forge.VpcUpdateVirtualizationResult + 155, // 1593: forge.Forge.DeleteVpc:output_type -> forge.VpcDeletionResult + 143, // 1594: forge.Forge.FindVpcIds:output_type -> forge.VpcIdList + 156, // 1595: forge.Forge.FindVpcsByIds:output_type -> forge.VpcList + 884, // 1596: forge.Forge.CreateSpxPartition:output_type -> forge.SpxPartition + 887, // 1597: forge.Forge.DeleteSpxPartition:output_type -> forge.SpxPartitionDeletionResult + 885, // 1598: forge.Forge.FindSpxPartitionIds:output_type -> forge.SpxPartitionIdList + 889, // 1599: forge.Forge.FindSpxPartitionsByIds:output_type -> forge.SpxPartitionList + 157, // 1600: forge.Forge.CreateVpcPrefix:output_type -> forge.VpcPrefix + 163, // 1601: forge.Forge.SearchVpcPrefixes:output_type -> forge.VpcPrefixIdList + 164, // 1602: forge.Forge.GetVpcPrefixes:output_type -> forge.VpcPrefixList + 157, // 1603: forge.Forge.UpdateVpcPrefix:output_type -> forge.VpcPrefix + 167, // 1604: forge.Forge.DeleteVpcPrefix:output_type -> forge.VpcPrefixDeletionResult + 169, // 1605: forge.Forge.CreateVpcPeering:output_type -> forge.VpcPeering + 170, // 1606: forge.Forge.FindVpcPeeringIds:output_type -> forge.VpcPeeringIdList + 171, // 1607: forge.Forge.FindVpcPeeringsByIds:output_type -> forge.VpcPeeringList + 176, // 1608: forge.Forge.DeleteVpcPeering:output_type -> forge.VpcPeeringDeletionResult + 243, // 1609: forge.Forge.FindNetworkSegmentIds:output_type -> forge.NetworkSegmentIdList + 350, // 1610: forge.Forge.FindNetworkSegmentsByIds:output_type -> forge.NetworkSegmentList + 235, // 1611: forge.Forge.CreateNetworkSegment:output_type -> forge.NetworkSegment + 235, // 1612: forge.Forge.AttachNetworkSegmentToVpc:output_type -> forge.NetworkSegment + 239, // 1613: forge.Forge.DeleteNetworkSegment:output_type -> forge.NetworkSegmentDeletionResult + 350, // 1614: forge.Forge.NetworkSegmentsForVpc:output_type -> forge.NetworkSegmentList + 187, // 1615: forge.Forge.FindIBPartitionIds:output_type -> forge.IBPartitionIdList + 180, // 1616: forge.Forge.FindIBPartitionsByIds:output_type -> forge.IBPartitionList + 179, // 1617: forge.Forge.CreateIBPartition:output_type -> forge.IBPartition + 179, // 1618: forge.Forge.UpdateIBPartition:output_type -> forge.IBPartition + 184, // 1619: forge.Forge.DeleteIBPartition:output_type -> forge.IBPartitionDeletionResult + 180, // 1620: forge.Forge.IBPartitionsForTenant:output_type -> forge.IBPartitionList + 191, // 1621: forge.Forge.FindPowerShelves:output_type -> forge.PowerShelfList + 864, // 1622: forge.Forge.FindPowerShelfIds:output_type -> forge.PowerShelfIdList + 191, // 1623: forge.Forge.FindPowerShelvesByIds:output_type -> forge.PowerShelfList + 194, // 1624: forge.Forge.DeletePowerShelf:output_type -> forge.PowerShelfDeletionResult + 894, // 1625: forge.Forge.AdminForceDeletePowerShelf:output_type -> forge.AdminForceDeletePowerShelfResponse + 1030, // 1626: forge.Forge.SetPowerShelfMaintenance:output_type -> google.protobuf.Empty + 211, // 1627: forge.Forge.FindSwitches:output_type -> forge.SwitchList + 863, // 1628: forge.Forge.FindSwitchIds:output_type -> forge.SwitchIdList + 211, // 1629: forge.Forge.FindSwitchesByIds:output_type -> forge.SwitchList + 214, // 1630: forge.Forge.DeleteSwitch:output_type -> forge.SwitchDeletionResult + 892, // 1631: forge.Forge.AdminForceDeleteSwitch:output_type -> forge.AdminForceDeleteSwitchResponse + 231, // 1632: forge.Forge.FindIBFabricIds:output_type -> forge.IBFabricIdList + 284, // 1633: forge.Forge.AllocateInstance:output_type -> forge.Instance + 257, // 1634: forge.Forge.AllocateInstances:output_type -> forge.BatchInstanceAllocationResponse + 300, // 1635: forge.Forge.ReleaseInstance:output_type -> forge.InstanceReleaseResult + 284, // 1636: forge.Forge.UpdateInstanceOperatingSystem:output_type -> forge.Instance + 284, // 1637: forge.Forge.UpdateInstanceConfig:output_type -> forge.Instance + 253, // 1638: forge.Forge.FindInstanceIds:output_type -> forge.InstanceIdList + 249, // 1639: forge.Forge.FindInstancesByIds:output_type -> forge.InstanceList + 249, // 1640: forge.Forge.FindInstanceByMachineID:output_type -> forge.InstanceList + 371, // 1641: forge.Forge.GetManagedHostNetworkConfig:output_type -> forge.ManagedHostNetworkConfigResponse + 1030, // 1642: forge.Forge.RecordDpuNetworkStatus:output_type -> google.protobuf.Empty + 451, // 1643: forge.Forge.ListMachineHealthReports:output_type -> forge.ListHealthReportResponse + 1030, // 1644: forge.Forge.InsertMachineHealthReport:output_type -> google.protobuf.Empty + 1030, // 1645: forge.Forge.RemoveMachineHealthReport:output_type -> google.protobuf.Empty + 451, // 1646: forge.Forge.ListRackHealthReports:output_type -> forge.ListHealthReportResponse + 1030, // 1647: forge.Forge.InsertRackHealthReport:output_type -> google.protobuf.Empty + 1030, // 1648: forge.Forge.RemoveRackHealthReport:output_type -> google.protobuf.Empty + 451, // 1649: forge.Forge.ListSwitchHealthReports:output_type -> forge.ListHealthReportResponse + 1030, // 1650: forge.Forge.InsertSwitchHealthReport:output_type -> google.protobuf.Empty + 1030, // 1651: forge.Forge.RemoveSwitchHealthReport:output_type -> google.protobuf.Empty + 451, // 1652: forge.Forge.ListPowerShelfHealthReports:output_type -> forge.ListHealthReportResponse + 1030, // 1653: forge.Forge.InsertPowerShelfHealthReport:output_type -> google.protobuf.Empty + 1030, // 1654: forge.Forge.RemovePowerShelfHealthReport:output_type -> google.protobuf.Empty + 451, // 1655: forge.Forge.ListNVLinkDomainHealthReports:output_type -> forge.ListHealthReportResponse + 1030, // 1656: forge.Forge.InsertNVLinkDomainHealthReport:output_type -> google.protobuf.Empty + 1030, // 1657: forge.Forge.RemoveNVLinkDomainHealthReport:output_type -> google.protobuf.Empty + 451, // 1658: forge.Forge.ListHealthReportOverrides:output_type -> forge.ListHealthReportResponse + 1030, // 1659: forge.Forge.InsertHealthReportOverride:output_type -> google.protobuf.Empty + 1030, // 1660: forge.Forge.RemoveHealthReportOverride:output_type -> google.protobuf.Empty + 390, // 1661: forge.Forge.DpuAgentUpgradeCheck:output_type -> forge.DpuAgentUpgradeCheckResponse + 392, // 1662: forge.Forge.DpuAgentUpgradePolicyAction:output_type -> forge.DpuAgentUpgradePolicyResponse + 1099, // 1663: forge.Forge.LookupRecord:output_type -> dns.DnsResourceRecordLookupResponse + 1100, // 1664: forge.Forge.GetAllDomains:output_type -> dns.GetAllDomainsResponse + 1101, // 1665: forge.Forge.GetAllDomainMetadata:output_type -> dns.DomainMetadataResponse + 248, // 1666: forge.Forge.InvokeInstancePower:output_type -> forge.InstancePowerResult + 417, // 1667: forge.Forge.ForgeAgentControl:output_type -> forge.ForgeAgentControlResponse + 424, // 1668: forge.Forge.DiscoverMachine:output_type -> forge.MachineDiscoveryResult + 423, // 1669: forge.Forge.RenewMachineCertificate:output_type -> forge.MachineCertificateResult + 425, // 1670: forge.Forge.DiscoveryCompleted:output_type -> forge.MachineDiscoveryCompletedResponse + 426, // 1671: forge.Forge.CleanupMachineCompleted:output_type -> forge.MachineCleanupResult + 428, // 1672: forge.Forge.ReportForgeScoutError:output_type -> forge.ForgeScoutErrorReportResult + 349, // 1673: forge.Forge.DiscoverDhcp:output_type -> forge.DhcpRecord + 348, // 1674: forge.Forge.ExpireDhcpLease:output_type -> forge.ExpireDhcpLeaseResponse + 319, // 1675: forge.Forge.AssignStaticAddress:output_type -> forge.AssignStaticAddressResponse + 321, // 1676: forge.Forge.RemoveStaticAddress:output_type -> forge.RemoveStaticAddressResponse + 324, // 1677: forge.Forge.FindInterfaceAddresses:output_type -> forge.FindInterfaceAddressesResponse + 314, // 1678: forge.Forge.FindInterfaces:output_type -> forge.InterfaceList + 1030, // 1679: forge.Forge.DeleteInterface:output_type -> google.protobuf.Empty + 492, // 1680: forge.Forge.FindIpAddress:output_type -> forge.FindIpAddressResponse + 1017, // 1681: forge.Forge.FindMachineIds:output_type -> common.MachineIdList + 315, // 1682: forge.Forge.FindMachinesByIds:output_type -> forge.MachineList + 304, // 1683: forge.Forge.FindMachineStateHistories:output_type -> forge.MachineStateHistories + 307, // 1684: forge.Forge.FindMachineHealthHistories:output_type -> forge.HealthHistories + 218, // 1685: forge.Forge.FindPowerShelfStateHistories:output_type -> forge.StateHistories + 218, // 1686: forge.Forge.FindRackStateHistories:output_type -> forge.StateHistories + 218, // 1687: forge.Forge.FindSwitchStateHistories:output_type -> forge.StateHistories + 218, // 1688: forge.Forge.FindNetworkSegmentStateHistories:output_type -> forge.StateHistories + 218, // 1689: forge.Forge.FindVpcPrefixStateHistories:output_type -> forge.StateHistories + 313, // 1690: forge.Forge.FindTenantOrganizationIds:output_type -> forge.TenantOrganizationIdList + 312, // 1691: forge.Forge.FindTenantsByOrganizationIds:output_type -> forge.TenantList + 515, // 1692: forge.Forge.FindConnectedDevicesByDpuMachineIds:output_type -> forge.ConnectedDeviceList + 519, // 1693: forge.Forge.FindMachineIdsByBmcIps:output_type -> forge.MachineIdBmcIpPairs + 518, // 1694: forge.Forge.FindMacAddressByBmcIp:output_type -> forge.MacAddressBmcIp + 516, // 1695: forge.Forge.FindBmcIps:output_type -> forge.BmcIpList + 494, // 1696: forge.Forge.IdentifyUuid:output_type -> forge.IdentifyUuidResponse + 497, // 1697: forge.Forge.IdentifyMac:output_type -> forge.IdentifyMacResponse + 499, // 1698: forge.Forge.IdentifySerial:output_type -> forge.IdentifySerialResponse + 413, // 1699: forge.Forge.GetBMCMetaData:output_type -> forge.BMCMetaDataGetResponse + 415, // 1700: forge.Forge.UpdateMachineCredentials:output_type -> forge.MachineCredentialsUpdateResponse + 430, // 1701: forge.Forge.GetPxeInstructions:output_type -> forge.PxeInstructions + 434, // 1702: forge.Forge.GetCloudInitInstructions:output_type -> forge.CloudInitInstructions + 134, // 1703: forge.Forge.Echo:output_type -> forge.EchoResponse + 461, // 1704: forge.Forge.CreateTenant:output_type -> forge.CreateTenantResponse + 465, // 1705: forge.Forge.FindTenant:output_type -> forge.FindTenantResponse + 463, // 1706: forge.Forge.UpdateTenant:output_type -> forge.UpdateTenantResponse + 471, // 1707: forge.Forge.CreateTenantKeyset:output_type -> forge.CreateTenantKeysetResponse + 478, // 1708: forge.Forge.FindTenantKeysetIds:output_type -> forge.TenantKeysetIdList + 472, // 1709: forge.Forge.FindTenantKeysetsByIds:output_type -> forge.TenantKeySetList + 474, // 1710: forge.Forge.UpdateTenantKeyset:output_type -> forge.UpdateTenantKeysetResponse + 476, // 1711: forge.Forge.DeleteTenantKeyset:output_type -> forge.DeleteTenantKeysetResponse + 481, // 1712: forge.Forge.ValidateTenantPublicKey:output_type -> forge.ValidateTenantPublicKeyResponse + 355, // 1713: forge.Forge.GetBmcCredentials:output_type -> forge.GetBmcCredentialsResponse + 355, // 1714: forge.Forge.GetSwitchNvosCredentials:output_type -> forge.GetBmcCredentialsResponse + 388, // 1715: forge.Forge.GetAllManagedHostNetworkStatus:output_type -> forge.ManagedHostNetworkStatusResponse + 1102, // 1716: forge.Forge.GetSiteExplorationReport:output_type -> site_explorer.SiteExplorationReport + 1103, // 1717: forge.Forge.GetSiteExplorerLastRun:output_type -> site_explorer.SiteExplorerLastRunResponse + 1030, // 1718: forge.Forge.ClearSiteExplorationError:output_type -> google.protobuf.Empty + 598, // 1719: forge.Forge.IsBmcInManagedHost:output_type -> forge.IsBmcInManagedHostResponse + 599, // 1720: forge.Forge.BmcCredentialStatus:output_type -> forge.BmcCredentialStatusResponse + 1018, // 1721: forge.Forge.Explore:output_type -> site_explorer.EndpointExplorationReport + 1030, // 1722: forge.Forge.ReExploreEndpoint:output_type -> google.protobuf.Empty + 1104, // 1723: forge.Forge.RefreshEndpointReport:output_type -> site_explorer.ExploredEndpoint + 363, // 1724: forge.Forge.DeleteExploredEndpoint:output_type -> forge.DeleteExploredEndpointResponse + 1030, // 1725: forge.Forge.PauseExploredEndpointRemediation:output_type -> google.protobuf.Empty + 1105, // 1726: forge.Forge.FindExploredEndpointIds:output_type -> site_explorer.ExploredEndpointIdList + 1106, // 1727: forge.Forge.FindExploredEndpointsByIds:output_type -> site_explorer.ExploredEndpointList + 1107, // 1728: forge.Forge.FindExploredManagedHostIds:output_type -> site_explorer.ExploredManagedHostIdList + 1108, // 1729: forge.Forge.FindExploredManagedHostsByIds:output_type -> site_explorer.ExploredManagedHostList + 1109, // 1730: forge.Forge.FindExploredMlxDeviceHostIds:output_type -> site_explorer.ExploredMlxDeviceHostIdList + 1110, // 1731: forge.Forge.FindExploredMlxDevicesByIds:output_type -> site_explorer.ExploredMlxDeviceList + 1030, // 1732: forge.Forge.UpdateMachineHardwareInfo:output_type -> google.protobuf.Empty + 394, // 1733: forge.Forge.AdminForceDeleteMachine:output_type -> forge.AdminForceDeleteMachineResponse + 483, // 1734: forge.Forge.AdminListResourcePools:output_type -> forge.ResourcePools + 486, // 1735: forge.Forge.AdminGrowResourcePool:output_type -> forge.GrowResourcePoolResponse + 1030, // 1736: forge.Forge.UpdateMachineMetadata:output_type -> google.protobuf.Empty + 1030, // 1737: forge.Forge.UpdateRackMetadata:output_type -> google.protobuf.Empty + 1030, // 1738: forge.Forge.UpdateSwitchMetadata:output_type -> google.protobuf.Empty + 1030, // 1739: forge.Forge.UpdatePowerShelfMetadata:output_type -> google.protobuf.Empty + 1030, // 1740: forge.Forge.UpdateMachineNvLinkInfo:output_type -> google.protobuf.Empty + 1030, // 1741: forge.Forge.SetMaintenance:output_type -> google.protobuf.Empty + 1030, // 1742: forge.Forge.SetDynamicConfig:output_type -> google.protobuf.Empty + 1030, // 1743: forge.Forge.TriggerDpuReprovisioning:output_type -> google.protobuf.Empty + 502, // 1744: forge.Forge.ListDpuWaitingForReprovisioning:output_type -> forge.DpuReprovisioningListResponse + 1030, // 1745: forge.Forge.TriggerHostReprovisioning:output_type -> google.protobuf.Empty + 505, // 1746: forge.Forge.ListHostsWaitingForReprovisioning:output_type -> forge.HostReprovisioningListResponse + 1030, // 1747: forge.Forge.MarkManualFirmwareUpgradeComplete:output_type -> google.protobuf.Empty + 1030, // 1748: forge.Forge.ReportScoutFirmwareUpgradeStatus:output_type -> google.protobuf.Empty + 511, // 1749: forge.Forge.GetDpuInfoList:output_type -> forge.GetDpuInfoListResponse + 513, // 1750: forge.Forge.GetMachineBootOverride:output_type -> forge.MachineBootOverride + 1030, // 1751: forge.Forge.SetMachineBootOverride:output_type -> google.protobuf.Empty + 1030, // 1752: forge.Forge.ClearMachineBootOverride:output_type -> google.protobuf.Empty + 918, // 1753: forge.Forge.GetMachineBootInterfaces:output_type -> forge.GetMachineBootInterfacesResponse + 524, // 1754: forge.Forge.GetNetworkTopology:output_type -> forge.NetworkTopologyData + 524, // 1755: forge.Forge.FindNetworkDevicesByDeviceIds:output_type -> forge.NetworkTopologyData + 128, // 1756: forge.Forge.CreateCredential:output_type -> forge.CredentialCreationResult + 129, // 1757: forge.Forge.DeleteCredential:output_type -> forge.CredentialDeletionResult + 526, // 1758: forge.Forge.GetRouteServers:output_type -> forge.RouteServerEntries + 1030, // 1759: forge.Forge.AddRouteServers:output_type -> google.protobuf.Empty + 1030, // 1760: forge.Forge.RemoveRouteServers:output_type -> google.protobuf.Empty + 1030, // 1761: forge.Forge.ReplaceRouteServers:output_type -> google.protobuf.Empty + 1030, // 1762: forge.Forge.UpdateAgentReportedInventory:output_type -> google.protobuf.Empty + 295, // 1763: forge.Forge.UpdateInstancePhoneHomeLastContact:output_type -> forge.InstancePhoneHomeLastContactResponse + 529, // 1764: forge.Forge.SetHostUefiPassword:output_type -> forge.SetHostUefiPasswordResponse + 531, // 1765: forge.Forge.ClearHostUefiPassword:output_type -> forge.ClearHostUefiPasswordResponse + 1030, // 1766: forge.Forge.AddExpectedMachine:output_type -> google.protobuf.Empty + 1030, // 1767: forge.Forge.DeleteExpectedMachine:output_type -> google.protobuf.Empty + 1030, // 1768: forge.Forge.UpdateExpectedMachine:output_type -> google.protobuf.Empty + 543, // 1769: forge.Forge.GetExpectedMachine:output_type -> forge.ExpectedMachine + 545, // 1770: forge.Forge.GetAllExpectedMachines:output_type -> forge.ExpectedMachineList + 1030, // 1771: forge.Forge.ReplaceAllExpectedMachines:output_type -> google.protobuf.Empty + 1030, // 1772: forge.Forge.DeleteAllExpectedMachines:output_type -> google.protobuf.Empty + 546, // 1773: forge.Forge.GetAllExpectedMachinesLinked:output_type -> forge.LinkedExpectedMachineList + 548, // 1774: forge.Forge.GetAllUnexpectedMachines:output_type -> forge.UnexpectedMachineList + 552, // 1775: forge.Forge.CreateExpectedMachines:output_type -> forge.BatchExpectedMachineOperationResponse + 552, // 1776: forge.Forge.UpdateExpectedMachines:output_type -> forge.BatchExpectedMachineOperationResponse + 1030, // 1777: forge.Forge.AddExpectedPowerShelf:output_type -> google.protobuf.Empty + 1030, // 1778: forge.Forge.DeleteExpectedPowerShelf:output_type -> google.protobuf.Empty + 1030, // 1779: forge.Forge.UpdateExpectedPowerShelf:output_type -> google.protobuf.Empty + 200, // 1780: forge.Forge.GetExpectedPowerShelf:output_type -> forge.ExpectedPowerShelf + 202, // 1781: forge.Forge.GetAllExpectedPowerShelves:output_type -> forge.ExpectedPowerShelfList + 1030, // 1782: forge.Forge.ReplaceAllExpectedPowerShelves:output_type -> google.protobuf.Empty + 1030, // 1783: forge.Forge.DeleteAllExpectedPowerShelves:output_type -> google.protobuf.Empty + 203, // 1784: forge.Forge.GetAllExpectedPowerShelvesLinked:output_type -> forge.LinkedExpectedPowerShelfList + 1030, // 1785: forge.Forge.AddExpectedSwitch:output_type -> google.protobuf.Empty + 1030, // 1786: forge.Forge.DeleteExpectedSwitch:output_type -> google.protobuf.Empty + 1030, // 1787: forge.Forge.UpdateExpectedSwitch:output_type -> google.protobuf.Empty + 222, // 1788: forge.Forge.GetExpectedSwitch:output_type -> forge.ExpectedSwitch + 224, // 1789: forge.Forge.GetAllExpectedSwitches:output_type -> forge.ExpectedSwitchList + 1030, // 1790: forge.Forge.ReplaceAllExpectedSwitches:output_type -> google.protobuf.Empty + 1030, // 1791: forge.Forge.DeleteAllExpectedSwitches:output_type -> google.protobuf.Empty + 225, // 1792: forge.Forge.GetAllExpectedSwitchesLinked:output_type -> forge.LinkedExpectedSwitchList + 1030, // 1793: forge.Forge.AddExpectedRack:output_type -> google.protobuf.Empty + 1030, // 1794: forge.Forge.DeleteExpectedRack:output_type -> google.protobuf.Empty + 1030, // 1795: forge.Forge.UpdateExpectedRack:output_type -> google.protobuf.Empty + 227, // 1796: forge.Forge.GetExpectedRack:output_type -> forge.ExpectedRack + 229, // 1797: forge.Forge.GetAllExpectedRacks:output_type -> forge.ExpectedRackList + 1030, // 1798: forge.Forge.ReplaceAllExpectedRacks:output_type -> google.protobuf.Empty + 1030, // 1799: forge.Forge.DeleteAllExpectedRacks:output_type -> google.protobuf.Empty + 125, // 1800: forge.Forge.AttestQuote:output_type -> forge.AttestQuoteResponse + 626, // 1801: forge.Forge.CreateInstanceType:output_type -> forge.CreateInstanceTypeResponse + 628, // 1802: forge.Forge.FindInstanceTypeIds:output_type -> forge.FindInstanceTypeIdsResponse + 630, // 1803: forge.Forge.FindInstanceTypesByIds:output_type -> forge.FindInstanceTypesByIdsResponse + 633, // 1804: forge.Forge.UpdateInstanceType:output_type -> forge.UpdateInstanceTypeResponse + 632, // 1805: forge.Forge.DeleteInstanceType:output_type -> forge.DeleteInstanceTypeResponse + 636, // 1806: forge.Forge.AssociateMachinesWithInstanceType:output_type -> forge.AssociateMachinesWithInstanceTypeResponse + 638, // 1807: forge.Forge.RemoveMachineInstanceTypeAssociation:output_type -> forge.RemoveMachineInstanceTypeAssociationResponse + 1111, // 1808: forge.Forge.CreateMeasurementBundle:output_type -> measured_boot.CreateMeasurementBundleResponse + 1112, // 1809: forge.Forge.DeleteMeasurementBundle:output_type -> measured_boot.DeleteMeasurementBundleResponse + 1113, // 1810: forge.Forge.RenameMeasurementBundle:output_type -> measured_boot.RenameMeasurementBundleResponse + 1114, // 1811: forge.Forge.UpdateMeasurementBundle:output_type -> measured_boot.UpdateMeasurementBundleResponse + 1115, // 1812: forge.Forge.ShowMeasurementBundle:output_type -> measured_boot.ShowMeasurementBundleResponse + 1116, // 1813: forge.Forge.ShowMeasurementBundles:output_type -> measured_boot.ShowMeasurementBundlesResponse + 1117, // 1814: forge.Forge.ListMeasurementBundles:output_type -> measured_boot.ListMeasurementBundlesResponse + 1118, // 1815: forge.Forge.ListMeasurementBundleMachines:output_type -> measured_boot.ListMeasurementBundleMachinesResponse + 1115, // 1816: forge.Forge.FindClosestBundleMatch:output_type -> measured_boot.ShowMeasurementBundleResponse + 1119, // 1817: forge.Forge.DeleteMeasurementJournal:output_type -> measured_boot.DeleteMeasurementJournalResponse + 1120, // 1818: forge.Forge.ShowMeasurementJournal:output_type -> measured_boot.ShowMeasurementJournalResponse + 1121, // 1819: forge.Forge.ShowMeasurementJournals:output_type -> measured_boot.ShowMeasurementJournalsResponse + 1122, // 1820: forge.Forge.ListMeasurementJournal:output_type -> measured_boot.ListMeasurementJournalResponse + 1123, // 1821: forge.Forge.AttestCandidateMachine:output_type -> measured_boot.AttestCandidateMachineResponse + 1124, // 1822: forge.Forge.ShowCandidateMachine:output_type -> measured_boot.ShowCandidateMachineResponse + 1125, // 1823: forge.Forge.ShowCandidateMachines:output_type -> measured_boot.ShowCandidateMachinesResponse + 1126, // 1824: forge.Forge.ListCandidateMachines:output_type -> measured_boot.ListCandidateMachinesResponse + 1127, // 1825: forge.Forge.CreateMeasurementSystemProfile:output_type -> measured_boot.CreateMeasurementSystemProfileResponse + 1128, // 1826: forge.Forge.DeleteMeasurementSystemProfile:output_type -> measured_boot.DeleteMeasurementSystemProfileResponse + 1129, // 1827: forge.Forge.RenameMeasurementSystemProfile:output_type -> measured_boot.RenameMeasurementSystemProfileResponse + 1130, // 1828: forge.Forge.ShowMeasurementSystemProfile:output_type -> measured_boot.ShowMeasurementSystemProfileResponse + 1131, // 1829: forge.Forge.ShowMeasurementSystemProfiles:output_type -> measured_boot.ShowMeasurementSystemProfilesResponse + 1132, // 1830: forge.Forge.ListMeasurementSystemProfiles:output_type -> measured_boot.ListMeasurementSystemProfilesResponse + 1133, // 1831: forge.Forge.ListMeasurementSystemProfileBundles:output_type -> measured_boot.ListMeasurementSystemProfileBundlesResponse + 1134, // 1832: forge.Forge.ListMeasurementSystemProfileMachines:output_type -> measured_boot.ListMeasurementSystemProfileMachinesResponse + 1135, // 1833: forge.Forge.CreateMeasurementReport:output_type -> measured_boot.CreateMeasurementReportResponse + 1136, // 1834: forge.Forge.DeleteMeasurementReport:output_type -> measured_boot.DeleteMeasurementReportResponse + 1137, // 1835: forge.Forge.PromoteMeasurementReport:output_type -> measured_boot.PromoteMeasurementReportResponse + 1138, // 1836: forge.Forge.RevokeMeasurementReport:output_type -> measured_boot.RevokeMeasurementReportResponse + 1139, // 1837: forge.Forge.ShowMeasurementReportForId:output_type -> measured_boot.ShowMeasurementReportForIdResponse + 1140, // 1838: forge.Forge.ShowMeasurementReportsForMachine:output_type -> measured_boot.ShowMeasurementReportsForMachineResponse + 1141, // 1839: forge.Forge.ShowMeasurementReports:output_type -> measured_boot.ShowMeasurementReportsResponse + 1142, // 1840: forge.Forge.ListMeasurementReport:output_type -> measured_boot.ListMeasurementReportResponse + 1143, // 1841: forge.Forge.MatchMeasurementReport:output_type -> measured_boot.MatchMeasurementReportResponse + 1144, // 1842: forge.Forge.ImportSiteMeasurements:output_type -> measured_boot.ImportSiteMeasurementsResponse + 1145, // 1843: forge.Forge.ExportSiteMeasurements:output_type -> measured_boot.ExportSiteMeasurementsResponse + 1146, // 1844: forge.Forge.AddMeasurementTrustedMachine:output_type -> measured_boot.AddMeasurementTrustedMachineResponse + 1147, // 1845: forge.Forge.RemoveMeasurementTrustedMachine:output_type -> measured_boot.RemoveMeasurementTrustedMachineResponse + 1148, // 1846: forge.Forge.AddMeasurementTrustedProfile:output_type -> measured_boot.AddMeasurementTrustedProfileResponse + 1149, // 1847: forge.Forge.RemoveMeasurementTrustedProfile:output_type -> measured_boot.RemoveMeasurementTrustedProfileResponse + 1150, // 1848: forge.Forge.ListMeasurementTrustedMachines:output_type -> measured_boot.ListMeasurementTrustedMachinesResponse + 1151, // 1849: forge.Forge.ListMeasurementTrustedProfiles:output_type -> measured_boot.ListMeasurementTrustedProfilesResponse + 1152, // 1850: forge.Forge.ListAttestationSummary:output_type -> measured_boot.ListAttestationSummaryResponse + 657, // 1851: forge.Forge.CreateNetworkSecurityGroup:output_type -> forge.CreateNetworkSecurityGroupResponse + 659, // 1852: forge.Forge.FindNetworkSecurityGroupIds:output_type -> forge.FindNetworkSecurityGroupIdsResponse + 661, // 1853: forge.Forge.FindNetworkSecurityGroupsByIds:output_type -> forge.FindNetworkSecurityGroupsByIdsResponse + 662, // 1854: forge.Forge.UpdateNetworkSecurityGroup:output_type -> forge.UpdateNetworkSecurityGroupResponse + 665, // 1855: forge.Forge.DeleteNetworkSecurityGroup:output_type -> forge.DeleteNetworkSecurityGroupResponse + 668, // 1856: forge.Forge.GetNetworkSecurityGroupPropagationStatus:output_type -> forge.GetNetworkSecurityGroupPropagationStatusResponse + 675, // 1857: forge.Forge.GetNetworkSecurityGroupAttachments:output_type -> forge.GetNetworkSecurityGroupAttachmentsResponse + 533, // 1858: forge.Forge.CreateOsImage:output_type -> forge.OsImage + 537, // 1859: forge.Forge.DeleteOsImage:output_type -> forge.DeleteOsImageResponse + 535, // 1860: forge.Forge.ListOsImage:output_type -> forge.ListOsImageResponse + 533, // 1861: forge.Forge.GetOsImage:output_type -> forge.OsImage + 533, // 1862: forge.Forge.UpdateOsImage:output_type -> forge.OsImage + 260, // 1863: forge.Forge.GetIpxeTemplate:output_type -> forge.IpxeTemplate + 540, // 1864: forge.Forge.ListIpxeTemplates:output_type -> forge.IpxeTemplateList + 553, // 1865: forge.Forge.RebootCompleted:output_type -> forge.MachineRebootCompletedResponse + 1030, // 1866: forge.Forge.PersistValidationResult:output_type -> google.protobuf.Empty + 560, // 1867: forge.Forge.GetMachineValidationResults:output_type -> forge.MachineValidationResultList + 557, // 1868: forge.Forge.MachineValidationCompleted:output_type -> forge.MachineValidationCompletedResponse + 565, // 1869: forge.Forge.MachineSetAutoUpdate:output_type -> forge.MachineSetAutoUpdateResponse + 568, // 1870: forge.Forge.GetMachineValidationExternalConfig:output_type -> forge.GetMachineValidationExternalConfigResponse + 570, // 1871: forge.Forge.GetMachineValidationExternalConfigs:output_type -> forge.GetMachineValidationExternalConfigsResponse + 1030, // 1872: forge.Forge.AddUpdateMachineValidationExternalConfig:output_type -> google.protobuf.Empty + 587, // 1873: forge.Forge.GetMachineValidationRuns:output_type -> forge.MachineValidationRunList + 590, // 1874: forge.Forge.FindMachineValidationRunItemIds:output_type -> forge.MachineValidationRunItemIdList + 592, // 1875: forge.Forge.FindMachineValidationRunItemsByIds:output_type -> forge.MachineValidationRunItemList + 595, // 1876: forge.Forge.GetMachineValidationAttempt:output_type -> forge.MachineValidationAttempt + 597, // 1877: forge.Forge.HeartbeatMachineValidationRun:output_type -> forge.MachineValidationHeartbeatResponse + 1030, // 1878: forge.Forge.RemoveMachineValidationExternalConfig:output_type -> google.protobuf.Empty + 604, // 1879: forge.Forge.GetMachineValidationTests:output_type -> forge.MachineValidationTestsGetResponse + 603, // 1880: forge.Forge.AddMachineValidationTest:output_type -> forge.MachineValidationTestAddUpdateResponse + 603, // 1881: forge.Forge.UpdateMachineValidationTest:output_type -> forge.MachineValidationTestAddUpdateResponse + 606, // 1882: forge.Forge.MachineValidationTestVerfied:output_type -> forge.MachineValidationTestVerfiedResponse + 608, // 1883: forge.Forge.MachineValidationTestNextVersion:output_type -> forge.MachineValidationTestNextVersionResponse + 611, // 1884: forge.Forge.MachineValidationTestEnableDisableTest:output_type -> forge.MachineValidationTestEnableDisableTestResponse + 613, // 1885: forge.Forge.UpdateMachineValidationRun:output_type -> forge.MachineValidationRunResponse + 407, // 1886: forge.Forge.AdminBmcReset:output_type -> forge.AdminBmcResetResponse + 584, // 1887: forge.Forge.AdminPowerControl:output_type -> forge.AdminPowerControlResponse + 395, // 1888: forge.Forge.DisableSecureBoot:output_type -> forge.DisableSecureBootResponse + 397, // 1889: forge.Forge.Lockdown:output_type -> forge.LockdownResponse + 1153, // 1890: forge.Forge.LockdownStatus:output_type -> site_explorer.LockdownStatus + 401, // 1891: forge.Forge.MachineSetup:output_type -> forge.MachineSetupResponse + 403, // 1892: forge.Forge.SetDpuFirstBootOrder:output_type -> forge.SetDpuFirstBootOrderResponse + 775, // 1893: forge.Forge.CreateBmcUser:output_type -> forge.CreateBmcUserResponse + 777, // 1894: forge.Forge.DeleteBmcUser:output_type -> forge.DeleteBmcUserResponse + 409, // 1895: forge.Forge.EnableInfiniteBoot:output_type -> forge.EnableInfiniteBootResponse + 411, // 1896: forge.Forge.IsInfiniteBootEnabled:output_type -> forge.IsInfiniteBootEnabledResponse + 574, // 1897: forge.Forge.OnDemandMachineValidation:output_type -> forge.MachineValidationOnDemandResponse + 582, // 1898: forge.Forge.OnDemandRackMaintenance:output_type -> forge.RackMaintenanceOnDemandResponse + 116, // 1899: forge.Forge.TpmAddCaCert:output_type -> forge.TpmCaAddedCaStatus + 122, // 1900: forge.Forge.TpmShowCaCerts:output_type -> forge.TpmCaCertDetailCollection + 119, // 1901: forge.Forge.TpmShowUnmatchedEkCerts:output_type -> forge.TpmEkCertStatusCollection + 1030, // 1902: forge.Forge.TpmDeleteCaCert:output_type -> google.protobuf.Empty + 640, // 1903: forge.Forge.RedfishBrowse:output_type -> forge.RedfishBrowseResponse + 642, // 1904: forge.Forge.RedfishListActions:output_type -> forge.RedfishListActionsResponse + 647, // 1905: forge.Forge.RedfishCreateAction:output_type -> forge.RedfishCreateActionResponse + 649, // 1906: forge.Forge.RedfishApproveAction:output_type -> forge.RedfishApproveActionResponse + 650, // 1907: forge.Forge.RedfishApplyAction:output_type -> forge.RedfishApplyActionResponse + 651, // 1908: forge.Forge.RedfishCancelAction:output_type -> forge.RedfishCancelActionResponse + 653, // 1909: forge.Forge.UfmBrowse:output_type -> forge.UfmBrowseResponse + 677, // 1910: forge.Forge.GetDesiredFirmwareVersions:output_type -> forge.GetDesiredFirmwareVersionsResponse + 693, // 1911: forge.Forge.CreateSku:output_type -> forge.SkuIdList + 689, // 1912: forge.Forge.GenerateSkuFromMachine:output_type -> forge.Sku + 1030, // 1913: forge.Forge.VerifySkuForMachine:output_type -> google.protobuf.Empty + 1030, // 1914: forge.Forge.AssignSkuToMachine:output_type -> google.protobuf.Empty + 1030, // 1915: forge.Forge.RemoveSkuAssociation:output_type -> google.protobuf.Empty + 1030, // 1916: forge.Forge.DeleteSku:output_type -> google.protobuf.Empty + 693, // 1917: forge.Forge.GetAllSkuIds:output_type -> forge.SkuIdList + 692, // 1918: forge.Forge.FindSkusByIds:output_type -> forge.SkuList + 1030, // 1919: forge.Forge.UpdateSkuMetadata:output_type -> google.protobuf.Empty + 689, // 1920: forge.Forge.ReplaceSku:output_type -> forge.Sku + 377, // 1921: forge.Forge.GetManagedHostQuarantineState:output_type -> forge.GetManagedHostQuarantineStateResponse + 379, // 1922: forge.Forge.SetManagedHostQuarantineState:output_type -> forge.SetManagedHostQuarantineStateResponse + 381, // 1923: forge.Forge.ClearManagedHostQuarantineState:output_type -> forge.ClearManagedHostQuarantineStateResponse + 1030, // 1924: forge.Forge.ResetHostReprovisioning:output_type -> google.protobuf.Empty + 1030, // 1925: forge.Forge.CopyBfbToDpuRshim:output_type -> google.protobuf.Empty + 699, // 1926: forge.Forge.GetAllDpaInterfaceIds:output_type -> forge.DpaInterfaceIdList + 701, // 1927: forge.Forge.FindDpaInterfacesByIds:output_type -> forge.DpaInterfaceList + 697, // 1928: forge.Forge.CreateDpaInterface:output_type -> forge.DpaInterface + 697, // 1929: forge.Forge.EnsureDpaInterface:output_type -> forge.DpaInterface + 704, // 1930: forge.Forge.DeleteDpaInterface:output_type -> forge.DpaInterfaceDeletionResult + 709, // 1931: forge.Forge.GetPowerOptions:output_type -> forge.PowerOptionResponse + 709, // 1932: forge.Forge.UpdatePowerOption:output_type -> forge.PowerOptionResponse + 1030, // 1933: forge.Forge.AllowIngestionAndPowerOn:output_type -> google.protobuf.Empty + 115, // 1934: forge.Forge.DetermineMachineIngestionState:output_type -> forge.MachineIngestionStateResponse + 727, // 1935: forge.Forge.FindRackIds:output_type -> forge.RackIdList + 725, // 1936: forge.Forge.FindRacksByIds:output_type -> forge.RackList + 724, // 1937: forge.Forge.GetRack:output_type -> forge.GetRackResponse + 1030, // 1938: forge.Forge.DeleteRack:output_type -> google.protobuf.Empty + 735, // 1939: forge.Forge.AdminForceDeleteRack:output_type -> forge.AdminForceDeleteRackResponse + 742, // 1940: forge.Forge.GetRackProfile:output_type -> forge.GetRackProfileResponse + 713, // 1941: forge.Forge.CreateComputeAllocation:output_type -> forge.CreateComputeAllocationResponse + 715, // 1942: forge.Forge.FindComputeAllocationIds:output_type -> forge.FindComputeAllocationIdsResponse + 717, // 1943: forge.Forge.FindComputeAllocationsByIds:output_type -> forge.FindComputeAllocationsByIdsResponse + 718, // 1944: forge.Forge.UpdateComputeAllocation:output_type -> forge.UpdateComputeAllocationResponse + 721, // 1945: forge.Forge.DeleteComputeAllocation:output_type -> forge.DeleteComputeAllocationResponse + 779, // 1946: forge.Forge.SetFirmwareUpdateTimeWindow:output_type -> forge.SetFirmwareUpdateTimeWindowResponse + 781, // 1947: forge.Forge.ListHostFirmware:output_type -> forge.ListHostFirmwareResponse + 1154, // 1948: forge.Forge.PublishMlxDeviceReport:output_type -> mlx_device.PublishMlxDeviceReportResponse + 1155, // 1949: forge.Forge.PublishMlxObservationReport:output_type -> mlx_device.PublishMlxObservationReportResponse + 784, // 1950: forge.Forge.TrimTable:output_type -> forge.TrimTableResponse + 786, // 1951: forge.Forge.ListNvlinkNmxcEndpoints:output_type -> forge.NvlinkNmxcEndpointList + 785, // 1952: forge.Forge.CreateNvlinkNmxcEndpoint:output_type -> forge.NvlinkNmxcEndpoint + 785, // 1953: forge.Forge.UpdateNvlinkNmxcEndpoint:output_type -> forge.NvlinkNmxcEndpoint + 1030, // 1954: forge.Forge.DeleteNvlinkNmxcEndpoint:output_type -> google.protobuf.Empty + 789, // 1955: forge.Forge.CreateRemediation:output_type -> forge.CreateRemediationResponse + 1030, // 1956: forge.Forge.ApproveRemediation:output_type -> google.protobuf.Empty + 1030, // 1957: forge.Forge.RevokeRemediation:output_type -> google.protobuf.Empty + 1030, // 1958: forge.Forge.EnableRemediation:output_type -> google.protobuf.Empty + 1030, // 1959: forge.Forge.DisableRemediation:output_type -> google.protobuf.Empty + 790, // 1960: forge.Forge.FindRemediationIds:output_type -> forge.RemediationIdList + 791, // 1961: forge.Forge.FindRemediationsByIds:output_type -> forge.RemediationList + 798, // 1962: forge.Forge.FindAppliedRemediationIds:output_type -> forge.AppliedRemediationIdList + 801, // 1963: forge.Forge.FindAppliedRemediations:output_type -> forge.AppliedRemediationList + 803, // 1964: forge.Forge.GetNextRemediationForMachine:output_type -> forge.GetNextRemediationForMachineResponse + 1030, // 1965: forge.Forge.RemediationApplied:output_type -> google.protobuf.Empty + 1030, // 1966: forge.Forge.SetPrimaryDpu:output_type -> google.protobuf.Empty + 1030, // 1967: forge.Forge.SetPrimaryInterface:output_type -> google.protobuf.Empty + 812, // 1968: forge.Forge.CreateDpuExtensionService:output_type -> forge.DpuExtensionService + 812, // 1969: forge.Forge.UpdateDpuExtensionService:output_type -> forge.DpuExtensionService + 816, // 1970: forge.Forge.DeleteDpuExtensionService:output_type -> forge.DeleteDpuExtensionServiceResponse + 818, // 1971: forge.Forge.FindDpuExtensionServiceIds:output_type -> forge.DpuExtensionServiceIdList + 820, // 1972: forge.Forge.FindDpuExtensionServicesByIds:output_type -> forge.DpuExtensionServiceList + 822, // 1973: forge.Forge.GetDpuExtensionServiceVersionsInfo:output_type -> forge.DpuExtensionServiceVersionInfoList + 824, // 1974: forge.Forge.FindInstancesByDpuExtensionService:output_type -> forge.FindInstancesByDpuExtensionServiceResponse + 89, // 1975: forge.Forge.TriggerMachineAttestation:output_type -> forge.SpdmMachineAttestationTriggerResponse + 1030, // 1976: forge.Forge.CancelMachineAttestation:output_type -> google.protobuf.Empty + 94, // 1977: forge.Forge.ListAttestationMachines:output_type -> forge.SpdmListAttestationMachinesResponse + 91, // 1978: forge.Forge.GetAttestationMachine:output_type -> forge.SpdmGetAttestationMachineResponse + 96, // 1979: forge.Forge.SignMachineIdentity:output_type -> forge.MachineIdentityResponse + 101, // 1980: forge.Forge.GetTenantIdentityConfiguration:output_type -> forge.TenantIdentityConfigResponse + 101, // 1981: forge.Forge.SetTenantIdentityConfiguration:output_type -> forge.TenantIdentityConfigResponse + 1030, // 1982: forge.Forge.DeleteTenantIdentityConfiguration:output_type -> google.protobuf.Empty + 104, // 1983: forge.Forge.GetTokenDelegation:output_type -> forge.TokenDelegationResponse + 104, // 1984: forge.Forge.SetTokenDelegation:output_type -> forge.TokenDelegationResponse + 1030, // 1985: forge.Forge.DeleteTokenDelegation:output_type -> google.protobuf.Empty + 110, // 1986: forge.Forge.ReencryptTenantIdentitySecrets:output_type -> forge.ReencryptTenantIdentitySecretsResponse + 111, // 1987: forge.Forge.GetJWKS:output_type -> forge.Jwks + 112, // 1988: forge.Forge.GetOpenIDConfiguration:output_type -> forge.OpenIdConfiguration + 831, // 1989: forge.Forge.ScoutStream:output_type -> forge.ScoutStreamScoutBoundMessage + 834, // 1990: forge.Forge.ScoutStreamShowConnections:output_type -> forge.ScoutStreamShowConnectionsResponse + 836, // 1991: forge.Forge.ScoutStreamDisconnect:output_type -> forge.ScoutStreamDisconnectResponse + 838, // 1992: forge.Forge.ScoutStreamPing:output_type -> forge.ScoutStreamAdminPingResponse + 1156, // 1993: forge.Forge.MlxAdminProfileSync:output_type -> mlx_device.MlxAdminProfileSyncResponse + 1157, // 1994: forge.Forge.MlxAdminProfileShow:output_type -> mlx_device.MlxAdminProfileShowResponse + 1158, // 1995: forge.Forge.MlxAdminProfileCompare:output_type -> mlx_device.MlxAdminProfileCompareResponse + 1159, // 1996: forge.Forge.MlxAdminProfileList:output_type -> mlx_device.MlxAdminProfileListResponse + 1160, // 1997: forge.Forge.MlxAdminLockdownLock:output_type -> mlx_device.MlxAdminLockdownLockResponse + 1161, // 1998: forge.Forge.MlxAdminLockdownUnlock:output_type -> mlx_device.MlxAdminLockdownUnlockResponse + 1162, // 1999: forge.Forge.MlxAdminLockdownStatus:output_type -> mlx_device.MlxAdminLockdownStatusResponse + 1163, // 2000: forge.Forge.MlxAdminShowDevice:output_type -> mlx_device.MlxAdminDeviceInfoResponse + 1164, // 2001: forge.Forge.MlxAdminShowMachine:output_type -> mlx_device.MlxAdminDeviceReportResponse + 1165, // 2002: forge.Forge.MlxAdminRegistryList:output_type -> mlx_device.MlxAdminRegistryListResponse + 1166, // 2003: forge.Forge.MlxAdminRegistryShow:output_type -> mlx_device.MlxAdminRegistryShowResponse + 1167, // 2004: forge.Forge.MlxAdminConfigQuery:output_type -> mlx_device.MlxAdminConfigQueryResponse + 1168, // 2005: forge.Forge.MlxAdminConfigSet:output_type -> mlx_device.MlxAdminConfigSetResponse + 1169, // 2006: forge.Forge.MlxAdminConfigSync:output_type -> mlx_device.MlxAdminConfigSyncResponse + 1170, // 2007: forge.Forge.MlxAdminConfigCompare:output_type -> mlx_device.MlxAdminConfigCompareResponse + 760, // 2008: forge.Forge.FindNVLinkPartitionIds:output_type -> forge.NVLinkPartitionIdList + 755, // 2009: forge.Forge.FindNVLinkPartitionsByIds:output_type -> forge.NVLinkPartitionList + 755, // 2010: forge.Forge.NVLinkPartitionsForTenant:output_type -> forge.NVLinkPartitionList + 771, // 2011: forge.Forge.FindNVLinkLogicalPartitionIds:output_type -> forge.NVLinkLogicalPartitionIdList + 765, // 2012: forge.Forge.FindNVLinkLogicalPartitionsByIds:output_type -> forge.NVLinkLogicalPartitionList + 764, // 2013: forge.Forge.CreateNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartition + 773, // 2014: forge.Forge.UpdateNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartitionUpdateResult + 768, // 2015: forge.Forge.DeleteNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartitionDeletionResult + 765, // 2016: forge.Forge.NVLinkLogicalPartitionsForTenant:output_type -> forge.NVLinkLogicalPartitionList + 852, // 2017: forge.Forge.GetMachinePositionInfo:output_type -> forge.MachinePositionInfoList + 753, // 2018: forge.Forge.NmxcBrowse:output_type -> forge.NmxcBrowseResponse + 1030, // 2019: forge.Forge.ModifyDPFState:output_type -> google.protobuf.Empty + 855, // 2020: forge.Forge.GetDPFState:output_type -> forge.DPFStateResponse + 858, // 2021: forge.Forge.GetDPFHostSnapshot:output_type -> forge.DPFHostSnapshotResponse + 861, // 2022: forge.Forge.GetDPFServiceVersions:output_type -> forge.DPFServiceVersionsResponse + 869, // 2023: forge.Forge.ComponentPowerControl:output_type -> forge.ComponentPowerControlResponse + 867, // 2024: forge.Forge.GetComponentInventory:output_type -> forge.GetComponentInventoryResponse + 876, // 2025: forge.Forge.UpdateComponentFirmware:output_type -> forge.UpdateComponentFirmwareResponse + 878, // 2026: forge.Forge.GetComponentFirmwareStatus:output_type -> forge.GetComponentFirmwareStatusResponse + 882, // 2027: forge.Forge.ListComponentFirmwareVersions:output_type -> forge.ListComponentFirmwareVersionsResponse + 895, // 2028: forge.Forge.CreateOperatingSystem:output_type -> forge.OperatingSystem + 895, // 2029: forge.Forge.GetOperatingSystem:output_type -> forge.OperatingSystem + 895, // 2030: forge.Forge.UpdateOperatingSystem:output_type -> forge.OperatingSystem + 901, // 2031: forge.Forge.DeleteOperatingSystem:output_type -> forge.DeleteOperatingSystemResponse + 903, // 2032: forge.Forge.FindOperatingSystemIds:output_type -> forge.OperatingSystemIdList + 905, // 2033: forge.Forge.FindOperatingSystemsByIds:output_type -> forge.OperatingSystemList + 907, // 2034: forge.Forge.GetOperatingSystemCachableIpxeTemplateArtifacts:output_type -> forge.IpxeTemplateArtifactList + 907, // 2035: forge.Forge.UpdateOperatingSystemCachableIpxeTemplateArtifacts:output_type -> forge.IpxeTemplateArtifactList + 912, // 2036: forge.Forge.ReWrapSecrets:output_type -> forge.ReWrapSecretsResponse + 1581, // [1581:2037] is the sub-list for method output_type + 1125, // [1125:1581] is the sub-list for method input_type + 1125, // [1125:1125] is the sub-list for extension type_name + 1125, // [1125:1125] is the sub-list for extension extendee + 0, // [0:1125] is the sub-list for field type_name } func init() { file_nico_nico_proto_init() } @@ -67376,57 +67511,57 @@ func file_nico_nico_proto_init() { file_nico_nico_proto_msgTypes[203].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[204].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[205].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[210].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[213].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[222].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[228].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[236].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[237].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[212].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[215].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[224].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[230].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[238].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[241].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[242].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[239].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[240].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[243].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[244].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[249].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[254].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[255].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[245].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[246].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[251].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[256].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[257].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[258].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[259].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[260].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[267].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[262].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[269].OneofWrappers = []any{ (*BmcCredentials_UsernamePassword)(nil), (*BmcCredentials_SessionToken)(nil), } - file_nico_nico_proto_msgTypes[270].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[274].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[275].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[272].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[276].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[282].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[283].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[277].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[278].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[284].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[285].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[286].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[287].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[288].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[290].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[292].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[293].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[294].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[295].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[296].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[302].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[307].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[298].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[304].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[309].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[310].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[311].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[312].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[313].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[315].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[317].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[319].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[321].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[322].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[323].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[324].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[325].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[328].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[326].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[327].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[330].OneofWrappers = []any{ (*ForgeAgentControlResponse_Noop_)(nil), (*ForgeAgentControlResponse_Reset_)(nil), (*ForgeAgentControlResponse_Discovery_)(nil), @@ -67438,160 +67573,160 @@ func file_nico_nico_proto_init() { (*ForgeAgentControlResponse_MlxAction_)(nil), (*ForgeAgentControlResponse_FirmwareUpgrade_)(nil), } - file_nico_nico_proto_msgTypes[329].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[331].OneofWrappers = []any{ (*MachineDiscoveryInfo_Info)(nil), } - file_nico_nico_proto_msgTypes[340].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[341].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[342].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[345].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[346].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[343].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[344].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[347].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[348].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[350].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[355].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[358].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[361].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[364].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[367].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[352].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[357].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[360].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[370].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[371].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[372].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[373].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[378].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[384].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[388].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[393].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[400].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[401].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[406].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[375].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[380].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[386].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[390].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[395].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[402].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[403].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[408].OneofWrappers = []any{ (*FindBmcIpsRequest_MacAddress)(nil), (*FindBmcIpsRequest_Serial)(nil), } - file_nico_nico_proto_msgTypes[418].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[419].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[420].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[423].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[424].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[421].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[422].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[425].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[432].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[433].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[439].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[440].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[426].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[427].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[434].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[435].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[441].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[442].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[443].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[444].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[445].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[452].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[453].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[446].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[447].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[454].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[455].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[458].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[456].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[457].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[460].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[462].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[467].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[464].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[469].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[472].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[473].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[471].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[474].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[475].OneofWrappers = []any{ (*MachineValidationStatus_Started)(nil), (*MachineValidationStatus_InProgress)(nil), (*MachineValidationStatus_Completed)(nil), } - file_nico_nico_proto_msgTypes[474].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[478].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[482].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[486].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[487].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[490].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[476].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[480].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[484].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[488].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[489].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[492].OneofWrappers = []any{ (*MaintenanceActivityConfig_FirmwareUpgrade)(nil), (*MaintenanceActivityConfig_ConfigureNmxCluster)(nil), (*MaintenanceActivityConfig_PowerSequence)(nil), (*MaintenanceActivityConfig_NvosUpdate)(nil), } - file_nico_nico_proto_msgTypes[494].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[495].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[504].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[496].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[497].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[506].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[507].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[508].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[509].OneofWrappers = []any{ (*MachineValidationHeartbeatRequest_RunItemId)(nil), (*MachineValidationHeartbeatRequest_AttemptId)(nil), (*MachineValidationHeartbeatRequest_TestId)(nil), } - file_nico_nico_proto_msgTypes[511].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[513].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[518].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[525].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[526].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[515].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[520].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[527].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[528].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[529].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[530].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[531].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[534].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[535].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[532].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[533].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[536].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[540].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[545].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[552].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[537].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[538].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[542].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[547].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[554].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[555].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[566].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[567].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[556].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[557].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[568].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[569].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[571].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[574].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[578].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[581].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[582].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[573].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[576].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[580].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[583].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[584].OneofWrappers = []any{ (*NetworkSecurityGroupRuleAttributes_SrcPrefix)(nil), (*NetworkSecurityGroupRuleAttributes_DstPrefix)(nil), } - file_nico_nico_proto_msgTypes[599].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[600].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[605].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[608].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[609].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[616].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[619].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[622].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[623].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[601].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[602].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[607].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[610].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[611].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[618].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[621].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[624].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[625].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[630].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[634].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[637].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[647].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[648].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[627].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[632].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[636].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[639].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[649].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[654].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[655].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[658].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[659].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[662].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[668].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[669].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[677].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[680].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[683].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[650].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[651].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[656].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[657].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[660].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[661].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[664].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[670].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[671].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[679].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[682].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[685].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[687].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[703].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[708].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[714].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[721].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[689].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[705].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[710].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[716].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[723].OneofWrappers = []any{ (*DpuExtensionServiceCredential_UsernamePassword)(nil), } - file_nico_nico_proto_msgTypes[722].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[723].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[724].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[725].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[728].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[734].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[726].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[727].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[730].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[736].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[739].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[738].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[741].OneofWrappers = []any{ (*DpuExtensionServiceObservabilityConfig_Prometheus)(nil), (*DpuExtensionServiceObservabilityConfig_Logging)(nil), } - file_nico_nico_proto_msgTypes[741].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[743].OneofWrappers = []any{ (*ScoutStreamApiBoundMessage_Init)(nil), (*ScoutStreamApiBoundMessage_MlxDeviceLockdownResponse)(nil), (*ScoutStreamApiBoundMessage_MlxDeviceProfileSyncResponse)(nil), @@ -67606,7 +67741,7 @@ func file_nico_nico_proto_init() { (*ScoutStreamApiBoundMessage_MlxDeviceConfigCompareResponse)(nil), (*ScoutStreamApiBoundMessage_ScoutStreamAgentPingResponse)(nil), } - file_nico_nico_proto_msgTypes[742].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[744].OneofWrappers = []any{ (*ScoutStreamScoutBoundMessage_MlxDeviceLockdownLockRequest)(nil), (*ScoutStreamScoutBoundMessage_MlxDeviceLockdownUnlockRequest)(nil), (*ScoutStreamScoutBoundMessage_MlxDeviceLockdownStatusRequest)(nil), @@ -67622,79 +67757,79 @@ func file_nico_nico_proto_init() { (*ScoutStreamScoutBoundMessage_MlxDeviceConfigCompareRequest)(nil), (*ScoutStreamScoutBoundMessage_ScoutStreamAgentPingRequest)(nil), } - file_nico_nico_proto_msgTypes[751].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[753].OneofWrappers = []any{ (*ScoutStreamAgentPingResponse_Pong)(nil), (*ScoutStreamAgentPingResponse_Error)(nil), } - file_nico_nico_proto_msgTypes[760].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[761].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[762].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[763].OneofWrappers = []any{ (*PxeDomain_NewDomain)(nil), (*PxeDomain_LegacyDomain)(nil), } - file_nico_nico_proto_msgTypes[764].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[776].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[766].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[778].OneofWrappers = []any{ (*GetComponentInventoryRequest_MachineIds)(nil), (*GetComponentInventoryRequest_SwitchIds)(nil), (*GetComponentInventoryRequest_PowerShelfIds)(nil), } - file_nico_nico_proto_msgTypes[777].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[779].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[779].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[781].OneofWrappers = []any{ (*ComponentPowerControlRequest_MachineIds)(nil), (*ComponentPowerControlRequest_SwitchIds)(nil), (*ComponentPowerControlRequest_PowerShelfIds)(nil), } - file_nico_nico_proto_msgTypes[786].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[788].OneofWrappers = []any{ (*UpdateComponentFirmwareRequest_ComputeTrays)(nil), (*UpdateComponentFirmwareRequest_Switches)(nil), (*UpdateComponentFirmwareRequest_PowerShelves)(nil), (*UpdateComponentFirmwareRequest_Racks)(nil), } - file_nico_nico_proto_msgTypes[788].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[790].OneofWrappers = []any{ (*GetComponentFirmwareStatusRequest_MachineIds)(nil), (*GetComponentFirmwareStatusRequest_SwitchIds)(nil), (*GetComponentFirmwareStatusRequest_PowerShelfIds)(nil), (*GetComponentFirmwareStatusRequest_RackIds)(nil), } - file_nico_nico_proto_msgTypes[790].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[792].OneofWrappers = []any{ (*ListComponentFirmwareVersionsRequest_MachineIds)(nil), (*ListComponentFirmwareVersionsRequest_SwitchIds)(nil), (*ListComponentFirmwareVersionsRequest_PowerShelfIds)(nil), (*ListComponentFirmwareVersionsRequest_RackIds)(nil), } - file_nico_nico_proto_msgTypes[794].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[799].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[806].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[807].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[810].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[813].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[819].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[822].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[825].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[826].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[796].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[801].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[808].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[809].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[812].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[815].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[821].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[824].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[827].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[828].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[829].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[831].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[833].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[849].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[851].OneofWrappers = []any{ + file_nico_nico_proto_msgTypes[835].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[851].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[853].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[855].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[856].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[860].OneofWrappers = []any{} - file_nico_nico_proto_msgTypes[861].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[857].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[858].OneofWrappers = []any{} file_nico_nico_proto_msgTypes[862].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[863].OneofWrappers = []any{} + file_nico_nico_proto_msgTypes[864].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: 87, - NumMessages: 869, + NumMessages: 871, NumExtensions: 0, NumServices: 1, }, diff --git a/rest-api/workflow-schema/site-agent/workflows/v1/nico_nico.proto b/rest-api/workflow-schema/site-agent/workflows/v1/nico_nico.proto index c771369806..99a46df2b0 100644 --- a/rest-api/workflow-schema/site-agent/workflows/v1/nico_nico.proto +++ b/rest-api/workflow-schema/site-agent/workflows/v1/nico_nico.proto @@ -3322,12 +3322,26 @@ message Issue { string details = 3; // Additional context about the issue } +// Records who initiated an instance delete in the cloud API layer. +message DeleteInitiatedBy { + string org = 1; + string org_display_name = 2; + string user_id = 3; + string tenant_id = 4; +} + +message DeleteAttribution { + DeleteInitiatedBy initiated_by = 1; +} + message InstanceReleaseRequest { common.InstanceId id = 1; // Optional issue information if tenant is reporting a problem optional Issue issue = 2; // Optional flag indicating the call is from repair tenant (default: false) optional bool is_repair_tenant = 3; + // Optional cloud-side attribution for who initiated the delete + optional DeleteAttribution delete_attribution = 4; } message InstanceReleaseResult { From 05a5ba6489afcb1ca302f27207a1518c671038d2 Mon Sep 17 00:00:00 2001 From: Hitesh Wadekar Date: Thu, 25 Jun 2026 19:57:20 -0700 Subject: [PATCH 3/9] Regenerate proto buf --- rest-api/api/pkg/api/handler/instance_test.go | 53 +++++++++++++------ 1 file changed, 37 insertions(+), 16 deletions(-) diff --git a/rest-api/api/pkg/api/handler/instance_test.go b/rest-api/api/pkg/api/handler/instance_test.go index 800a44c1f9..e193f1083b 100644 --- a/rest-api/api/pkg/api/handler/instance_test.go +++ b/rest-api/api/pkg/api/handler/instance_test.go @@ -9751,22 +9751,43 @@ func TestDeleteInstanceHandler_Handle(t *testing.T) { require.NotEmpty(t, statusDetails) require.NotNil(t, statusDetails[0].Message) - if len(tsc.Calls) > 0 && len(tsc.Calls[len(tsc.Calls)-1].Arguments) > 3 { - releaseReq := tsc.Calls[len(tsc.Calls)-1].Arguments[3].(*cwssaws.InstanceReleaseRequest) - require.NotNil(t, releaseReq.DeleteAttribution) - require.NotNil(t, releaseReq.DeleteAttribution.InitiatedBy) - assert.Equal(t, tt.args.reqOrg, releaseReq.DeleteAttribution.InitiatedBy.Org) - assert.Equal(t, tt.args.reqUser.ID.String(), releaseReq.DeleteAttribution.InitiatedBy.UserId) - assert.Equal(t, dinstance.TenantID.String(), releaseReq.DeleteAttribution.InitiatedBy.TenantId) - - if tt.args.reqData != nil && tt.args.reqData.MachineHealthIssue != nil { - require.NotNil(t, releaseReq.Issue) - if tt.args.reqData.MachineHealthIssue.Details != nil { - assert.Equal(t, *tt.args.reqData.MachineHealthIssue.Details, releaseReq.Issue.Details) - } - if tt.args.reqData.MachineHealthIssue.Summary != nil { - assert.Equal(t, *tt.args.reqData.MachineHealthIssue.Summary, releaseReq.Issue.Summary) - } + siteClient, scErr := tt.fields.scp.GetClientByID(dinstance.SiteID) + require.NoError(t, scErr) + mockSiteClient, ok := siteClient.(*tmocks.Client) + require.True(t, ok, "site temporal client should be a test mock") + + var releaseReq *cwssaws.InstanceReleaseRequest + for i := len(mockSiteClient.Calls) - 1; i >= 0; i-- { + call := mockSiteClient.Calls[i] + if call.Method != "ExecuteWorkflow" || len(call.Arguments) <= 3 { + continue + } + wfName, ok := call.Arguments[2].(string) + if !ok || wfName != "DeleteInstanceV2" { + continue + } + req, ok := call.Arguments[3].(*cwssaws.InstanceReleaseRequest) + if !ok || req.GetId().GetValue() != tt.args.reqInstance { + continue + } + releaseReq = req + break + } + require.NotNil(t, releaseReq, "DeleteInstanceV2 workflow should have been called for this Instance") + + require.NotNil(t, releaseReq.DeleteAttribution) + require.NotNil(t, releaseReq.DeleteAttribution.InitiatedBy) + assert.Equal(t, tt.args.reqOrg, releaseReq.DeleteAttribution.InitiatedBy.Org) + assert.Equal(t, tt.args.reqUser.ID.String(), releaseReq.DeleteAttribution.InitiatedBy.UserId) + assert.Equal(t, dinstance.TenantID.String(), releaseReq.DeleteAttribution.InitiatedBy.TenantId) + + if tt.args.reqData != nil && tt.args.reqData.MachineHealthIssue != nil { + require.NotNil(t, releaseReq.Issue) + if tt.args.reqData.MachineHealthIssue.Details != nil { + assert.Equal(t, *tt.args.reqData.MachineHealthIssue.Details, releaseReq.Issue.Details) + } + if tt.args.reqData.MachineHealthIssue.Summary != nil { + assert.Equal(t, *tt.args.reqData.MachineHealthIssue.Summary, releaseReq.Issue.Summary) } } }) From 742ebfcb4f8794a47ab709efcd54bbeb9da1304c Mon Sep 17 00:00:00 2001 From: Hitesh Wadekar Date: Fri, 26 Jun 2026 13:02:32 -0700 Subject: [PATCH 4/9] chore(rest-api): regenerate flow gRPC protobuf with protoc-gen-go-grpc v1.6.2 Align generated flow_grpc.pb.go with CI buf generate output so the check-protobuf-generated job passes. Signed-off-by: Hitesh Wadekar --- rest-api/workflow-schema/flow/protobuf/v1/flow_grpc.pb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest-api/workflow-schema/flow/protobuf/v1/flow_grpc.pb.go b/rest-api/workflow-schema/flow/protobuf/v1/flow_grpc.pb.go index fb8ba0d8b3..2db7331188 100644 --- a/rest-api/workflow-schema/flow/protobuf/v1/flow_grpc.pb.go +++ b/rest-api/workflow-schema/flow/protobuf/v1/flow_grpc.pb.go @@ -3,7 +3,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.6.1 +// - protoc-gen-go-grpc v1.6.2 // - protoc (unknown) // source: flow.proto From bceec1aeb306cb9ca9e7d22ad6cb57ae22f8d537 Mon Sep 17 00:00:00 2001 From: Hitesh Wadekar Date: Fri, 26 Jun 2026 13:41:24 -0700 Subject: [PATCH 5/9] fix the unit test --- rest-api/api/pkg/api/handler/instance_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest-api/api/pkg/api/handler/instance_test.go b/rest-api/api/pkg/api/handler/instance_test.go index e193f1083b..3eb33bd896 100644 --- a/rest-api/api/pkg/api/handler/instance_test.go +++ b/rest-api/api/pkg/api/handler/instance_test.go @@ -9746,7 +9746,7 @@ func TestDeleteInstanceHandler_Handle(t *testing.T) { assert.Equal(t, cdbm.InstanceStatusTerminating, dinstance.Status) sdDAO := cdbm.NewStatusDetailDAO(dbSession) - statusDetails, _, serr := sdDAO.GetAllByEntityID(context.Background(), nil, tt.args.reqInstance, nil, nil, nil) + statusDetails, _, serr := sdDAO.GetAll(context.Background(), nil, cdbm.StatusDetailFilterInput{EntityIDs: []string{tt.args.reqInstance}}, cdbp.PageInput{}) require.NoError(t, serr) require.NotEmpty(t, statusDetails) require.NotNil(t, statusDetails[0].Message) From d5f87af7fb6b7afc9f68fbf75e5d0c4c31565334 Mon Sep 17 00:00:00 2001 From: Hitesh Wadekar Date: Fri, 26 Jun 2026 16:49:17 -0700 Subject: [PATCH 6/9] chore(rest-api): regenerate REST Core protobuf sync from upstream protos Sync workflow-schema and flow nicoapi generated Go from current Core proto definitions, including Site Explorer last-run metadata RPC additions. --- rest-api/flow/internal/nicoapi/gen/nico.pb.go | 9801 +++++++++-------- .../internal/nicoapi/nicoproto/nico.proto | 14 + .../flow/protobuf/v1/flow.pb.go | 5551 ++++++++-- .../flow/protobuf/v1/flow_grpc.pb.go | 270 +- 4 files changed, 9805 insertions(+), 5831 deletions(-) diff --git a/rest-api/flow/internal/nicoapi/gen/nico.pb.go b/rest-api/flow/internal/nicoapi/gen/nico.pb.go index 9e743462dd..1f69d6ba16 100644 --- a/rest-api/flow/internal/nicoapi/gen/nico.pb.go +++ b/rest-api/flow/internal/nicoapi/gen/nico.pb.go @@ -4106,7 +4106,7 @@ func (x MachineCredentialsUpdateRequest_CredentialPurpose) Number() protoreflect // Deprecated: Use MachineCredentialsUpdateRequest_CredentialPurpose.Descriptor instead. func (MachineCredentialsUpdateRequest_CredentialPurpose) EnumDescriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{330, 0} + return file_nico_proto_rawDescGZIP(), []int{332, 0} } // Legacy action enum. New clients will use `action` oneof below. @@ -4177,7 +4177,7 @@ func (x ForgeAgentControlResponse_LegacyAction) Number() protoreflect.EnumNumber // Deprecated: Use ForgeAgentControlResponse_LegacyAction.Descriptor instead. func (ForgeAgentControlResponse_LegacyAction) EnumDescriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 0} + return file_nico_proto_rawDescGZIP(), []int{335, 0} } type MachineCleanupInfo_CleanupResult int32 @@ -4223,7 +4223,7 @@ func (x MachineCleanupInfo_CleanupResult) Number() protoreflect.EnumNumber { // Deprecated: Use MachineCleanupInfo_CleanupResult.Descriptor instead. func (MachineCleanupInfo_CleanupResult) EnumDescriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{336, 0} + return file_nico_proto_rawDescGZIP(), []int{338, 0} } type DpuReprovisioningRequest_Mode int32 @@ -4272,7 +4272,7 @@ func (x DpuReprovisioningRequest_Mode) Number() protoreflect.EnumNumber { // Deprecated: Use DpuReprovisioningRequest_Mode.Descriptor instead. func (DpuReprovisioningRequest_Mode) EnumDescriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{416, 0} + return file_nico_proto_rawDescGZIP(), []int{418, 0} } type HostReprovisioningRequest_Mode int32 @@ -4318,7 +4318,7 @@ func (x HostReprovisioningRequest_Mode) Number() protoreflect.EnumNumber { // Deprecated: Use HostReprovisioningRequest_Mode.Descriptor instead. func (HostReprovisioningRequest_Mode) EnumDescriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{419, 0} + return file_nico_proto_rawDescGZIP(), []int{421, 0} } type MachineValidationStatus_MachineValidationStarted int32 @@ -4361,7 +4361,7 @@ func (x MachineValidationStatus_MachineValidationStarted) Number() protoreflect. // Deprecated: Use MachineValidationStatus_MachineValidationStarted.Descriptor instead. func (MachineValidationStatus_MachineValidationStarted) EnumDescriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{478, 0} + return file_nico_proto_rawDescGZIP(), []int{480, 0} } type MachineValidationStatus_MachineValidationInProgress int32 @@ -4404,7 +4404,7 @@ func (x MachineValidationStatus_MachineValidationInProgress) Number() protorefle // Deprecated: Use MachineValidationStatus_MachineValidationInProgress.Descriptor instead. func (MachineValidationStatus_MachineValidationInProgress) EnumDescriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{478, 1} + return file_nico_proto_rawDescGZIP(), []int{480, 1} } type MachineValidationStatus_MachineValidationCompleted int32 @@ -4453,7 +4453,7 @@ func (x MachineValidationStatus_MachineValidationCompleted) Number() protoreflec // Deprecated: Use MachineValidationStatus_MachineValidationCompleted.Descriptor instead. func (MachineValidationStatus_MachineValidationCompleted) EnumDescriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{478, 2} + return file_nico_proto_rawDescGZIP(), []int{480, 2} } type MachineSetAutoUpdateRequest_SetAutoupdateAction int32 @@ -4502,7 +4502,7 @@ func (x MachineSetAutoUpdateRequest_SetAutoupdateAction) Number() protoreflect.E // Deprecated: Use MachineSetAutoUpdateRequest_SetAutoupdateAction.Descriptor instead. func (MachineSetAutoUpdateRequest_SetAutoupdateAction) EnumDescriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{480, 0} + return file_nico_proto_rawDescGZIP(), []int{482, 0} } type MachineValidationOnDemandRequest_Action int32 @@ -4548,7 +4548,7 @@ func (x MachineValidationOnDemandRequest_Action) Number() protoreflect.EnumNumbe // Deprecated: Use MachineValidationOnDemandRequest_Action.Descriptor instead. func (MachineValidationOnDemandRequest_Action) EnumDescriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{489, 0} + return file_nico_proto_rawDescGZIP(), []int{491, 0} } type AdminPowerControlRequest_SystemPowerControl int32 @@ -4612,7 +4612,7 @@ func (x AdminPowerControlRequest_SystemPowerControl) Number() protoreflect.EnumN // Deprecated: Use AdminPowerControlRequest_SystemPowerControl.Descriptor instead. func (AdminPowerControlRequest_SystemPowerControl) EnumDescriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{499, 0} + return file_nico_proto_rawDescGZIP(), []int{501, 0} } type GetRedfishJobStateResponse_RedfishJobState int32 @@ -4667,7 +4667,7 @@ func (x GetRedfishJobStateResponse_RedfishJobState) Number() protoreflect.EnumNu // Deprecated: Use GetRedfishJobStateResponse_RedfishJobState.Descriptor instead. func (GetRedfishJobStateResponse_RedfishJobState) EnumDescriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{502, 0} + return file_nico_proto_rawDescGZIP(), []int{504, 0} } // Indicates the lifecycle state of a resource that is controlled by a state controller @@ -18660,6 +18660,119 @@ func (x *Issue) GetDetails() string { return "" } +// Records who initiated an instance delete in the cloud API layer. +type DeleteInitiatedBy struct { + state protoimpl.MessageState `protogen:"open.v1"` + Org string `protobuf:"bytes,1,opt,name=org,proto3" json:"org,omitempty"` + OrgDisplayName string `protobuf:"bytes,2,opt,name=org_display_name,json=orgDisplayName,proto3" json:"org_display_name,omitempty"` + UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` + TenantId string `protobuf:"bytes,4,opt,name=tenant_id,json=tenantId,proto3" json:"tenant_id,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *DeleteInitiatedBy) Reset() { + *x = DeleteInitiatedBy{} + mi := &file_nico_proto_msgTypes[215] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *DeleteInitiatedBy) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DeleteInitiatedBy) ProtoMessage() {} + +func (x *DeleteInitiatedBy) ProtoReflect() protoreflect.Message { + mi := &file_nico_proto_msgTypes[215] + 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 DeleteInitiatedBy.ProtoReflect.Descriptor instead. +func (*DeleteInitiatedBy) Descriptor() ([]byte, []int) { + return file_nico_proto_rawDescGZIP(), []int{215} +} + +func (x *DeleteInitiatedBy) GetOrg() string { + if x != nil { + return x.Org + } + return "" +} + +func (x *DeleteInitiatedBy) GetOrgDisplayName() string { + if x != nil { + return x.OrgDisplayName + } + return "" +} + +func (x *DeleteInitiatedBy) GetUserId() string { + if x != nil { + return x.UserId + } + return "" +} + +func (x *DeleteInitiatedBy) GetTenantId() string { + if x != nil { + return x.TenantId + } + return "" +} + +type DeleteAttribution struct { + state protoimpl.MessageState `protogen:"open.v1"` + InitiatedBy *DeleteInitiatedBy `protobuf:"bytes,1,opt,name=initiated_by,json=initiatedBy,proto3" json:"initiated_by,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *DeleteAttribution) Reset() { + *x = DeleteAttribution{} + mi := &file_nico_proto_msgTypes[216] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *DeleteAttribution) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DeleteAttribution) ProtoMessage() {} + +func (x *DeleteAttribution) ProtoReflect() protoreflect.Message { + mi := &file_nico_proto_msgTypes[216] + 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 DeleteAttribution.ProtoReflect.Descriptor instead. +func (*DeleteAttribution) Descriptor() ([]byte, []int) { + return file_nico_proto_rawDescGZIP(), []int{216} +} + +func (x *DeleteAttribution) GetInitiatedBy() *DeleteInitiatedBy { + if x != nil { + return x.InitiatedBy + } + return nil +} + type InstanceReleaseRequest struct { state protoimpl.MessageState `protogen:"open.v1"` Id *InstanceId `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` @@ -18667,13 +18780,15 @@ type InstanceReleaseRequest struct { Issue *Issue `protobuf:"bytes,2,opt,name=issue,proto3,oneof" json:"issue,omitempty"` // Optional flag indicating the call is from repair tenant (default: false) IsRepairTenant *bool `protobuf:"varint,3,opt,name=is_repair_tenant,json=isRepairTenant,proto3,oneof" json:"is_repair_tenant,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + // Optional cloud-side attribution for who initiated the delete + DeleteAttribution *DeleteAttribution `protobuf:"bytes,4,opt,name=delete_attribution,json=deleteAttribution,proto3,oneof" json:"delete_attribution,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } func (x *InstanceReleaseRequest) Reset() { *x = InstanceReleaseRequest{} - mi := &file_nico_proto_msgTypes[215] + mi := &file_nico_proto_msgTypes[217] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18685,7 +18800,7 @@ func (x *InstanceReleaseRequest) String() string { func (*InstanceReleaseRequest) ProtoMessage() {} func (x *InstanceReleaseRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[215] + mi := &file_nico_proto_msgTypes[217] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18698,7 +18813,7 @@ func (x *InstanceReleaseRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceReleaseRequest.ProtoReflect.Descriptor instead. func (*InstanceReleaseRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{215} + return file_nico_proto_rawDescGZIP(), []int{217} } func (x *InstanceReleaseRequest) GetId() *InstanceId { @@ -18722,6 +18837,13 @@ func (x *InstanceReleaseRequest) GetIsRepairTenant() bool { return false } +func (x *InstanceReleaseRequest) GetDeleteAttribution() *DeleteAttribution { + if x != nil { + return x.DeleteAttribution + } + return nil +} + type InstanceReleaseResult struct { state protoimpl.MessageState `protogen:"open.v1"` unknownFields protoimpl.UnknownFields @@ -18730,7 +18852,7 @@ type InstanceReleaseResult struct { func (x *InstanceReleaseResult) Reset() { *x = InstanceReleaseResult{} - mi := &file_nico_proto_msgTypes[216] + mi := &file_nico_proto_msgTypes[218] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18742,7 +18864,7 @@ func (x *InstanceReleaseResult) String() string { func (*InstanceReleaseResult) ProtoMessage() {} func (x *InstanceReleaseResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[216] + mi := &file_nico_proto_msgTypes[218] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18755,7 +18877,7 @@ func (x *InstanceReleaseResult) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceReleaseResult.ProtoReflect.Descriptor instead. func (*InstanceReleaseResult) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{216} + return file_nico_proto_rawDescGZIP(), []int{218} } type MachinesByIdsRequest struct { @@ -18768,7 +18890,7 @@ type MachinesByIdsRequest struct { func (x *MachinesByIdsRequest) Reset() { *x = MachinesByIdsRequest{} - mi := &file_nico_proto_msgTypes[217] + mi := &file_nico_proto_msgTypes[219] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18780,7 +18902,7 @@ func (x *MachinesByIdsRequest) String() string { func (*MachinesByIdsRequest) ProtoMessage() {} func (x *MachinesByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[217] + mi := &file_nico_proto_msgTypes[219] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18793,7 +18915,7 @@ func (x *MachinesByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachinesByIdsRequest.ProtoReflect.Descriptor instead. func (*MachinesByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{217} + return file_nico_proto_rawDescGZIP(), []int{219} } func (x *MachinesByIdsRequest) GetMachineIds() []*MachineId { @@ -18833,7 +18955,7 @@ type MachineSearchConfig struct { func (x *MachineSearchConfig) Reset() { *x = MachineSearchConfig{} - mi := &file_nico_proto_msgTypes[218] + mi := &file_nico_proto_msgTypes[220] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18845,7 +18967,7 @@ func (x *MachineSearchConfig) String() string { func (*MachineSearchConfig) ProtoMessage() {} func (x *MachineSearchConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[218] + mi := &file_nico_proto_msgTypes[220] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18858,7 +18980,7 @@ func (x *MachineSearchConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineSearchConfig.ProtoReflect.Descriptor instead. func (*MachineSearchConfig) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{218} + return file_nico_proto_rawDescGZIP(), []int{220} } func (x *MachineSearchConfig) GetIncludeDpus() bool { @@ -18947,7 +19069,7 @@ type MachineStateHistoriesRequest struct { func (x *MachineStateHistoriesRequest) Reset() { *x = MachineStateHistoriesRequest{} - mi := &file_nico_proto_msgTypes[219] + mi := &file_nico_proto_msgTypes[221] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18959,7 +19081,7 @@ func (x *MachineStateHistoriesRequest) String() string { func (*MachineStateHistoriesRequest) ProtoMessage() {} func (x *MachineStateHistoriesRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[219] + mi := &file_nico_proto_msgTypes[221] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18972,7 +19094,7 @@ func (x *MachineStateHistoriesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineStateHistoriesRequest.ProtoReflect.Descriptor instead. func (*MachineStateHistoriesRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{219} + return file_nico_proto_rawDescGZIP(), []int{221} } func (x *MachineStateHistoriesRequest) GetMachineIds() []*MachineId { @@ -18992,7 +19114,7 @@ type MachineStateHistories struct { func (x *MachineStateHistories) Reset() { *x = MachineStateHistories{} - mi := &file_nico_proto_msgTypes[220] + mi := &file_nico_proto_msgTypes[222] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19004,7 +19126,7 @@ func (x *MachineStateHistories) String() string { func (*MachineStateHistories) ProtoMessage() {} func (x *MachineStateHistories) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[220] + mi := &file_nico_proto_msgTypes[222] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19017,7 +19139,7 @@ func (x *MachineStateHistories) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineStateHistories.ProtoReflect.Descriptor instead. func (*MachineStateHistories) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{220} + return file_nico_proto_rawDescGZIP(), []int{222} } func (x *MachineStateHistories) GetHistories() map[string]*MachineStateHistoryRecords { @@ -19037,7 +19159,7 @@ type MachineStateHistoryRecords struct { func (x *MachineStateHistoryRecords) Reset() { *x = MachineStateHistoryRecords{} - mi := &file_nico_proto_msgTypes[221] + mi := &file_nico_proto_msgTypes[223] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19049,7 +19171,7 @@ func (x *MachineStateHistoryRecords) String() string { func (*MachineStateHistoryRecords) ProtoMessage() {} func (x *MachineStateHistoryRecords) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[221] + mi := &file_nico_proto_msgTypes[223] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19062,7 +19184,7 @@ func (x *MachineStateHistoryRecords) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineStateHistoryRecords.ProtoReflect.Descriptor instead. func (*MachineStateHistoryRecords) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{221} + return file_nico_proto_rawDescGZIP(), []int{223} } func (x *MachineStateHistoryRecords) GetRecords() []*MachineEvent { @@ -19085,7 +19207,7 @@ type MachineHealthHistoriesRequest struct { func (x *MachineHealthHistoriesRequest) Reset() { *x = MachineHealthHistoriesRequest{} - mi := &file_nico_proto_msgTypes[222] + mi := &file_nico_proto_msgTypes[224] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19097,7 +19219,7 @@ func (x *MachineHealthHistoriesRequest) String() string { func (*MachineHealthHistoriesRequest) ProtoMessage() {} func (x *MachineHealthHistoriesRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[222] + mi := &file_nico_proto_msgTypes[224] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19110,7 +19232,7 @@ func (x *MachineHealthHistoriesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineHealthHistoriesRequest.ProtoReflect.Descriptor instead. func (*MachineHealthHistoriesRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{222} + return file_nico_proto_rawDescGZIP(), []int{224} } func (x *MachineHealthHistoriesRequest) GetMachineIds() []*MachineId { @@ -19144,7 +19266,7 @@ type HealthHistories struct { func (x *HealthHistories) Reset() { *x = HealthHistories{} - mi := &file_nico_proto_msgTypes[223] + mi := &file_nico_proto_msgTypes[225] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19156,7 +19278,7 @@ func (x *HealthHistories) String() string { func (*HealthHistories) ProtoMessage() {} func (x *HealthHistories) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[223] + mi := &file_nico_proto_msgTypes[225] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19169,7 +19291,7 @@ func (x *HealthHistories) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthHistories.ProtoReflect.Descriptor instead. func (*HealthHistories) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{223} + return file_nico_proto_rawDescGZIP(), []int{225} } func (x *HealthHistories) GetHistories() map[string]*HealthHistoryRecords { @@ -19189,7 +19311,7 @@ type HealthHistoryRecords struct { func (x *HealthHistoryRecords) Reset() { *x = HealthHistoryRecords{} - mi := &file_nico_proto_msgTypes[224] + mi := &file_nico_proto_msgTypes[226] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19201,7 +19323,7 @@ func (x *HealthHistoryRecords) String() string { func (*HealthHistoryRecords) ProtoMessage() {} func (x *HealthHistoryRecords) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[224] + mi := &file_nico_proto_msgTypes[226] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19214,7 +19336,7 @@ func (x *HealthHistoryRecords) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthHistoryRecords.ProtoReflect.Descriptor instead. func (*HealthHistoryRecords) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{224} + return file_nico_proto_rawDescGZIP(), []int{226} } func (x *HealthHistoryRecords) GetRecords() []*HealthHistoryRecord { @@ -19237,7 +19359,7 @@ type HealthHistoryRecord struct { func (x *HealthHistoryRecord) Reset() { *x = HealthHistoryRecord{} - mi := &file_nico_proto_msgTypes[225] + mi := &file_nico_proto_msgTypes[227] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19249,7 +19371,7 @@ func (x *HealthHistoryRecord) String() string { func (*HealthHistoryRecord) ProtoMessage() {} func (x *HealthHistoryRecord) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[225] + mi := &file_nico_proto_msgTypes[227] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19262,7 +19384,7 @@ func (x *HealthHistoryRecord) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthHistoryRecord.ProtoReflect.Descriptor instead. func (*HealthHistoryRecord) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{225} + return file_nico_proto_rawDescGZIP(), []int{227} } func (x *HealthHistoryRecord) GetHealth() *HealthReport { @@ -19288,7 +19410,7 @@ type TenantByOrganizationIdsRequest struct { func (x *TenantByOrganizationIdsRequest) Reset() { *x = TenantByOrganizationIdsRequest{} - mi := &file_nico_proto_msgTypes[226] + mi := &file_nico_proto_msgTypes[228] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19300,7 +19422,7 @@ func (x *TenantByOrganizationIdsRequest) String() string { func (*TenantByOrganizationIdsRequest) ProtoMessage() {} func (x *TenantByOrganizationIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[226] + mi := &file_nico_proto_msgTypes[228] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19313,7 +19435,7 @@ func (x *TenantByOrganizationIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantByOrganizationIdsRequest.ProtoReflect.Descriptor instead. func (*TenantByOrganizationIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{226} + return file_nico_proto_rawDescGZIP(), []int{228} } func (x *TenantByOrganizationIdsRequest) GetOrganizationIds() []string { @@ -19332,7 +19454,7 @@ type TenantSearchFilter struct { func (x *TenantSearchFilter) Reset() { *x = TenantSearchFilter{} - mi := &file_nico_proto_msgTypes[227] + mi := &file_nico_proto_msgTypes[229] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19344,7 +19466,7 @@ func (x *TenantSearchFilter) String() string { func (*TenantSearchFilter) ProtoMessage() {} func (x *TenantSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[227] + mi := &file_nico_proto_msgTypes[229] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19357,7 +19479,7 @@ func (x *TenantSearchFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantSearchFilter.ProtoReflect.Descriptor instead. func (*TenantSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{227} + return file_nico_proto_rawDescGZIP(), []int{229} } func (x *TenantSearchFilter) GetTenantOrganizationName() string { @@ -19376,7 +19498,7 @@ type TenantList struct { func (x *TenantList) Reset() { *x = TenantList{} - mi := &file_nico_proto_msgTypes[228] + mi := &file_nico_proto_msgTypes[230] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19388,7 +19510,7 @@ func (x *TenantList) String() string { func (*TenantList) ProtoMessage() {} func (x *TenantList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[228] + mi := &file_nico_proto_msgTypes[230] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19401,7 +19523,7 @@ func (x *TenantList) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantList.ProtoReflect.Descriptor instead. func (*TenantList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{228} + return file_nico_proto_rawDescGZIP(), []int{230} } func (x *TenantList) GetTenants() []*Tenant { @@ -19420,7 +19542,7 @@ type TenantOrganizationIdList struct { func (x *TenantOrganizationIdList) Reset() { *x = TenantOrganizationIdList{} - mi := &file_nico_proto_msgTypes[229] + mi := &file_nico_proto_msgTypes[231] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19432,7 +19554,7 @@ func (x *TenantOrganizationIdList) String() string { func (*TenantOrganizationIdList) ProtoMessage() {} func (x *TenantOrganizationIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[229] + mi := &file_nico_proto_msgTypes[231] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19445,7 +19567,7 @@ func (x *TenantOrganizationIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantOrganizationIdList.ProtoReflect.Descriptor instead. func (*TenantOrganizationIdList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{229} + return file_nico_proto_rawDescGZIP(), []int{231} } func (x *TenantOrganizationIdList) GetTenantOrganizationIds() []string { @@ -19464,7 +19586,7 @@ type InterfaceList struct { func (x *InterfaceList) Reset() { *x = InterfaceList{} - mi := &file_nico_proto_msgTypes[230] + mi := &file_nico_proto_msgTypes[232] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19476,7 +19598,7 @@ func (x *InterfaceList) String() string { func (*InterfaceList) ProtoMessage() {} func (x *InterfaceList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[230] + mi := &file_nico_proto_msgTypes[232] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19489,7 +19611,7 @@ func (x *InterfaceList) ProtoReflect() protoreflect.Message { // Deprecated: Use InterfaceList.ProtoReflect.Descriptor instead. func (*InterfaceList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{230} + return file_nico_proto_rawDescGZIP(), []int{232} } func (x *InterfaceList) GetInterfaces() []*MachineInterface { @@ -19508,7 +19630,7 @@ type MachineList struct { func (x *MachineList) Reset() { *x = MachineList{} - mi := &file_nico_proto_msgTypes[231] + mi := &file_nico_proto_msgTypes[233] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19520,7 +19642,7 @@ func (x *MachineList) String() string { func (*MachineList) ProtoMessage() {} func (x *MachineList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[231] + mi := &file_nico_proto_msgTypes[233] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19533,7 +19655,7 @@ func (x *MachineList) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineList.ProtoReflect.Descriptor instead. func (*MachineList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{231} + return file_nico_proto_rawDescGZIP(), []int{233} } func (x *MachineList) GetMachines() []*Machine { @@ -19552,7 +19674,7 @@ type InterfaceDeleteQuery struct { func (x *InterfaceDeleteQuery) Reset() { *x = InterfaceDeleteQuery{} - mi := &file_nico_proto_msgTypes[232] + mi := &file_nico_proto_msgTypes[234] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19564,7 +19686,7 @@ func (x *InterfaceDeleteQuery) String() string { func (*InterfaceDeleteQuery) ProtoMessage() {} func (x *InterfaceDeleteQuery) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[232] + mi := &file_nico_proto_msgTypes[234] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19577,7 +19699,7 @@ func (x *InterfaceDeleteQuery) ProtoReflect() protoreflect.Message { // Deprecated: Use InterfaceDeleteQuery.ProtoReflect.Descriptor instead. func (*InterfaceDeleteQuery) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{232} + return file_nico_proto_rawDescGZIP(), []int{234} } func (x *InterfaceDeleteQuery) GetId() *MachineInterfaceId { @@ -19597,7 +19719,7 @@ type InterfaceSearchQuery struct { func (x *InterfaceSearchQuery) Reset() { *x = InterfaceSearchQuery{} - mi := &file_nico_proto_msgTypes[233] + mi := &file_nico_proto_msgTypes[235] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19609,7 +19731,7 @@ func (x *InterfaceSearchQuery) String() string { func (*InterfaceSearchQuery) ProtoMessage() {} func (x *InterfaceSearchQuery) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[233] + mi := &file_nico_proto_msgTypes[235] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19622,7 +19744,7 @@ func (x *InterfaceSearchQuery) ProtoReflect() protoreflect.Message { // Deprecated: Use InterfaceSearchQuery.ProtoReflect.Descriptor instead. func (*InterfaceSearchQuery) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{233} + return file_nico_proto_rawDescGZIP(), []int{235} } func (x *InterfaceSearchQuery) GetId() *MachineInterfaceId { @@ -19649,7 +19771,7 @@ type AssignStaticAddressRequest struct { func (x *AssignStaticAddressRequest) Reset() { *x = AssignStaticAddressRequest{} - mi := &file_nico_proto_msgTypes[234] + mi := &file_nico_proto_msgTypes[236] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19661,7 +19783,7 @@ func (x *AssignStaticAddressRequest) String() string { func (*AssignStaticAddressRequest) ProtoMessage() {} func (x *AssignStaticAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[234] + mi := &file_nico_proto_msgTypes[236] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19674,7 +19796,7 @@ func (x *AssignStaticAddressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AssignStaticAddressRequest.ProtoReflect.Descriptor instead. func (*AssignStaticAddressRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{234} + return file_nico_proto_rawDescGZIP(), []int{236} } func (x *AssignStaticAddressRequest) GetInterfaceId() *MachineInterfaceId { @@ -19702,7 +19824,7 @@ type AssignStaticAddressResponse struct { func (x *AssignStaticAddressResponse) Reset() { *x = AssignStaticAddressResponse{} - mi := &file_nico_proto_msgTypes[235] + mi := &file_nico_proto_msgTypes[237] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19714,7 +19836,7 @@ func (x *AssignStaticAddressResponse) String() string { func (*AssignStaticAddressResponse) ProtoMessage() {} func (x *AssignStaticAddressResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[235] + mi := &file_nico_proto_msgTypes[237] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19727,7 +19849,7 @@ func (x *AssignStaticAddressResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AssignStaticAddressResponse.ProtoReflect.Descriptor instead. func (*AssignStaticAddressResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{235} + return file_nico_proto_rawDescGZIP(), []int{237} } func (x *AssignStaticAddressResponse) GetInterfaceId() *MachineInterfaceId { @@ -19761,7 +19883,7 @@ type RemoveStaticAddressRequest struct { func (x *RemoveStaticAddressRequest) Reset() { *x = RemoveStaticAddressRequest{} - mi := &file_nico_proto_msgTypes[236] + mi := &file_nico_proto_msgTypes[238] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19773,7 +19895,7 @@ func (x *RemoveStaticAddressRequest) String() string { func (*RemoveStaticAddressRequest) ProtoMessage() {} func (x *RemoveStaticAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[236] + mi := &file_nico_proto_msgTypes[238] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19786,7 +19908,7 @@ func (x *RemoveStaticAddressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveStaticAddressRequest.ProtoReflect.Descriptor instead. func (*RemoveStaticAddressRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{236} + return file_nico_proto_rawDescGZIP(), []int{238} } func (x *RemoveStaticAddressRequest) GetInterfaceId() *MachineInterfaceId { @@ -19814,7 +19936,7 @@ type RemoveStaticAddressResponse struct { func (x *RemoveStaticAddressResponse) Reset() { *x = RemoveStaticAddressResponse{} - mi := &file_nico_proto_msgTypes[237] + mi := &file_nico_proto_msgTypes[239] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19826,7 +19948,7 @@ func (x *RemoveStaticAddressResponse) String() string { func (*RemoveStaticAddressResponse) ProtoMessage() {} func (x *RemoveStaticAddressResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[237] + mi := &file_nico_proto_msgTypes[239] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19839,7 +19961,7 @@ func (x *RemoveStaticAddressResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveStaticAddressResponse.ProtoReflect.Descriptor instead. func (*RemoveStaticAddressResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{237} + return file_nico_proto_rawDescGZIP(), []int{239} } func (x *RemoveStaticAddressResponse) GetInterfaceId() *MachineInterfaceId { @@ -19872,7 +19994,7 @@ type FindInterfaceAddressesRequest struct { func (x *FindInterfaceAddressesRequest) Reset() { *x = FindInterfaceAddressesRequest{} - mi := &file_nico_proto_msgTypes[238] + mi := &file_nico_proto_msgTypes[240] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19884,7 +20006,7 @@ func (x *FindInterfaceAddressesRequest) String() string { func (*FindInterfaceAddressesRequest) ProtoMessage() {} func (x *FindInterfaceAddressesRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[238] + mi := &file_nico_proto_msgTypes[240] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19897,7 +20019,7 @@ func (x *FindInterfaceAddressesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FindInterfaceAddressesRequest.ProtoReflect.Descriptor instead. func (*FindInterfaceAddressesRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{238} + return file_nico_proto_rawDescGZIP(), []int{240} } func (x *FindInterfaceAddressesRequest) GetInterfaceId() *MachineInterfaceId { @@ -19917,7 +20039,7 @@ type InterfaceAddress struct { func (x *InterfaceAddress) Reset() { *x = InterfaceAddress{} - mi := &file_nico_proto_msgTypes[239] + mi := &file_nico_proto_msgTypes[241] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19929,7 +20051,7 @@ func (x *InterfaceAddress) String() string { func (*InterfaceAddress) ProtoMessage() {} func (x *InterfaceAddress) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[239] + mi := &file_nico_proto_msgTypes[241] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19942,7 +20064,7 @@ func (x *InterfaceAddress) ProtoReflect() protoreflect.Message { // Deprecated: Use InterfaceAddress.ProtoReflect.Descriptor instead. func (*InterfaceAddress) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{239} + return file_nico_proto_rawDescGZIP(), []int{241} } func (x *InterfaceAddress) GetAddress() string { @@ -19969,7 +20091,7 @@ type FindInterfaceAddressesResponse struct { func (x *FindInterfaceAddressesResponse) Reset() { *x = FindInterfaceAddressesResponse{} - mi := &file_nico_proto_msgTypes[240] + mi := &file_nico_proto_msgTypes[242] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19981,7 +20103,7 @@ func (x *FindInterfaceAddressesResponse) String() string { func (*FindInterfaceAddressesResponse) ProtoMessage() {} func (x *FindInterfaceAddressesResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[240] + mi := &file_nico_proto_msgTypes[242] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19994,7 +20116,7 @@ func (x *FindInterfaceAddressesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use FindInterfaceAddressesResponse.ProtoReflect.Descriptor instead. func (*FindInterfaceAddressesResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{240} + return file_nico_proto_rawDescGZIP(), []int{242} } func (x *FindInterfaceAddressesResponse) GetInterfaceId() *MachineInterfaceId { @@ -20025,7 +20147,7 @@ type BmcInfo struct { func (x *BmcInfo) Reset() { *x = BmcInfo{} - mi := &file_nico_proto_msgTypes[241] + mi := &file_nico_proto_msgTypes[243] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20037,7 +20159,7 @@ func (x *BmcInfo) String() string { func (*BmcInfo) ProtoMessage() {} func (x *BmcInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[241] + mi := &file_nico_proto_msgTypes[243] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20050,7 +20172,7 @@ func (x *BmcInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use BmcInfo.ProtoReflect.Descriptor instead. func (*BmcInfo) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{241} + return file_nico_proto_rawDescGZIP(), []int{243} } func (x *BmcInfo) GetIp() string { @@ -20106,7 +20228,7 @@ type SwitchNvosInfo struct { func (x *SwitchNvosInfo) Reset() { *x = SwitchNvosInfo{} - mi := &file_nico_proto_msgTypes[242] + mi := &file_nico_proto_msgTypes[244] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20118,7 +20240,7 @@ func (x *SwitchNvosInfo) String() string { func (*SwitchNvosInfo) ProtoMessage() {} func (x *SwitchNvosInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[242] + mi := &file_nico_proto_msgTypes[244] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20131,7 +20253,7 @@ func (x *SwitchNvosInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SwitchNvosInfo.ProtoReflect.Descriptor instead. func (*SwitchNvosInfo) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{242} + return file_nico_proto_rawDescGZIP(), []int{244} } func (x *SwitchNvosInfo) GetIp() string { @@ -20236,7 +20358,7 @@ type Machine struct { func (x *Machine) Reset() { *x = Machine{} - mi := &file_nico_proto_msgTypes[243] + mi := &file_nico_proto_msgTypes[245] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20248,7 +20370,7 @@ func (x *Machine) String() string { func (*Machine) ProtoMessage() {} func (x *Machine) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[243] + mi := &file_nico_proto_msgTypes[245] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20261,7 +20383,7 @@ func (x *Machine) ProtoReflect() protoreflect.Message { // Deprecated: Use Machine.ProtoReflect.Descriptor instead. func (*Machine) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{243} + return file_nico_proto_rawDescGZIP(), []int{245} } func (x *Machine) GetId() *MachineId { @@ -20568,7 +20690,7 @@ type DpfMachineState struct { func (x *DpfMachineState) Reset() { *x = DpfMachineState{} - mi := &file_nico_proto_msgTypes[244] + mi := &file_nico_proto_msgTypes[246] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20580,7 +20702,7 @@ func (x *DpfMachineState) String() string { func (*DpfMachineState) ProtoMessage() {} func (x *DpfMachineState) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[244] + mi := &file_nico_proto_msgTypes[246] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20593,7 +20715,7 @@ func (x *DpfMachineState) ProtoReflect() protoreflect.Message { // Deprecated: Use DpfMachineState.ProtoReflect.Descriptor instead. func (*DpfMachineState) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{244} + return file_nico_proto_rawDescGZIP(), []int{246} } func (x *DpfMachineState) GetEnabled() bool { @@ -20625,7 +20747,7 @@ type InstanceNetworkRestrictions struct { func (x *InstanceNetworkRestrictions) Reset() { *x = InstanceNetworkRestrictions{} - mi := &file_nico_proto_msgTypes[245] + mi := &file_nico_proto_msgTypes[247] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20637,7 +20759,7 @@ func (x *InstanceNetworkRestrictions) String() string { func (*InstanceNetworkRestrictions) ProtoMessage() {} func (x *InstanceNetworkRestrictions) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[245] + mi := &file_nico_proto_msgTypes[247] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20650,7 +20772,7 @@ func (x *InstanceNetworkRestrictions) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceNetworkRestrictions.ProtoReflect.Descriptor instead. func (*InstanceNetworkRestrictions) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{245} + return file_nico_proto_rawDescGZIP(), []int{247} } func (x *InstanceNetworkRestrictions) GetNetworkSegmentMembershipType() InstanceNetworkSegmentMembershipType { @@ -20685,7 +20807,7 @@ type MachineMetadataUpdateRequest struct { func (x *MachineMetadataUpdateRequest) Reset() { *x = MachineMetadataUpdateRequest{} - mi := &file_nico_proto_msgTypes[246] + mi := &file_nico_proto_msgTypes[248] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20697,7 +20819,7 @@ func (x *MachineMetadataUpdateRequest) String() string { func (*MachineMetadataUpdateRequest) ProtoMessage() {} func (x *MachineMetadataUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[246] + mi := &file_nico_proto_msgTypes[248] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20710,7 +20832,7 @@ func (x *MachineMetadataUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineMetadataUpdateRequest.ProtoReflect.Descriptor instead. func (*MachineMetadataUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{246} + return file_nico_proto_rawDescGZIP(), []int{248} } func (x *MachineMetadataUpdateRequest) GetMachineId() *MachineId { @@ -20751,7 +20873,7 @@ type RackMetadataUpdateRequest struct { func (x *RackMetadataUpdateRequest) Reset() { *x = RackMetadataUpdateRequest{} - mi := &file_nico_proto_msgTypes[247] + mi := &file_nico_proto_msgTypes[249] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20763,7 +20885,7 @@ func (x *RackMetadataUpdateRequest) String() string { func (*RackMetadataUpdateRequest) ProtoMessage() {} func (x *RackMetadataUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[247] + mi := &file_nico_proto_msgTypes[249] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20776,7 +20898,7 @@ func (x *RackMetadataUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RackMetadataUpdateRequest.ProtoReflect.Descriptor instead. func (*RackMetadataUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{247} + return file_nico_proto_rawDescGZIP(), []int{249} } func (x *RackMetadataUpdateRequest) GetRackId() *RackId { @@ -20817,7 +20939,7 @@ type SwitchMetadataUpdateRequest struct { func (x *SwitchMetadataUpdateRequest) Reset() { *x = SwitchMetadataUpdateRequest{} - mi := &file_nico_proto_msgTypes[248] + mi := &file_nico_proto_msgTypes[250] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20829,7 +20951,7 @@ func (x *SwitchMetadataUpdateRequest) String() string { func (*SwitchMetadataUpdateRequest) ProtoMessage() {} func (x *SwitchMetadataUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[248] + mi := &file_nico_proto_msgTypes[250] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20842,7 +20964,7 @@ func (x *SwitchMetadataUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SwitchMetadataUpdateRequest.ProtoReflect.Descriptor instead. func (*SwitchMetadataUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{248} + return file_nico_proto_rawDescGZIP(), []int{250} } func (x *SwitchMetadataUpdateRequest) GetSwitchId() *SwitchId { @@ -20883,7 +21005,7 @@ type PowerShelfMetadataUpdateRequest struct { func (x *PowerShelfMetadataUpdateRequest) Reset() { *x = PowerShelfMetadataUpdateRequest{} - mi := &file_nico_proto_msgTypes[249] + mi := &file_nico_proto_msgTypes[251] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20895,7 +21017,7 @@ func (x *PowerShelfMetadataUpdateRequest) String() string { func (*PowerShelfMetadataUpdateRequest) ProtoMessage() {} func (x *PowerShelfMetadataUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[249] + mi := &file_nico_proto_msgTypes[251] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20908,7 +21030,7 @@ func (x *PowerShelfMetadataUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PowerShelfMetadataUpdateRequest.ProtoReflect.Descriptor instead. func (*PowerShelfMetadataUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{249} + return file_nico_proto_rawDescGZIP(), []int{251} } func (x *PowerShelfMetadataUpdateRequest) GetPowerShelfId() *PowerShelfId { @@ -20942,7 +21064,7 @@ type DpuAgentInventoryReport struct { func (x *DpuAgentInventoryReport) Reset() { *x = DpuAgentInventoryReport{} - mi := &file_nico_proto_msgTypes[250] + mi := &file_nico_proto_msgTypes[252] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20954,7 +21076,7 @@ func (x *DpuAgentInventoryReport) String() string { func (*DpuAgentInventoryReport) ProtoMessage() {} func (x *DpuAgentInventoryReport) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[250] + mi := &file_nico_proto_msgTypes[252] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20967,7 +21089,7 @@ func (x *DpuAgentInventoryReport) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuAgentInventoryReport.ProtoReflect.Descriptor instead. func (*DpuAgentInventoryReport) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{250} + return file_nico_proto_rawDescGZIP(), []int{252} } func (x *DpuAgentInventoryReport) GetMachineId() *MachineId { @@ -20993,7 +21115,7 @@ type MachineInventory struct { func (x *MachineInventory) Reset() { *x = MachineInventory{} - mi := &file_nico_proto_msgTypes[251] + mi := &file_nico_proto_msgTypes[253] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21005,7 +21127,7 @@ func (x *MachineInventory) String() string { func (*MachineInventory) ProtoMessage() {} func (x *MachineInventory) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[251] + mi := &file_nico_proto_msgTypes[253] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21018,7 +21140,7 @@ func (x *MachineInventory) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineInventory.ProtoReflect.Descriptor instead. func (*MachineInventory) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{251} + return file_nico_proto_rawDescGZIP(), []int{253} } func (x *MachineInventory) GetComponents() []*MachineInventorySoftwareComponent { @@ -21039,7 +21161,7 @@ type MachineInventorySoftwareComponent struct { func (x *MachineInventorySoftwareComponent) Reset() { *x = MachineInventorySoftwareComponent{} - mi := &file_nico_proto_msgTypes[252] + mi := &file_nico_proto_msgTypes[254] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21051,7 +21173,7 @@ func (x *MachineInventorySoftwareComponent) String() string { func (*MachineInventorySoftwareComponent) ProtoMessage() {} func (x *MachineInventorySoftwareComponent) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[252] + mi := &file_nico_proto_msgTypes[254] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21064,7 +21186,7 @@ func (x *MachineInventorySoftwareComponent) ProtoReflect() protoreflect.Message // Deprecated: Use MachineInventorySoftwareComponent.ProtoReflect.Descriptor instead. func (*MachineInventorySoftwareComponent) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{252} + return file_nico_proto_rawDescGZIP(), []int{254} } func (x *MachineInventorySoftwareComponent) GetName() string { @@ -21099,7 +21221,7 @@ type HealthSourceOrigin struct { func (x *HealthSourceOrigin) Reset() { *x = HealthSourceOrigin{} - mi := &file_nico_proto_msgTypes[253] + mi := &file_nico_proto_msgTypes[255] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21111,7 +21233,7 @@ func (x *HealthSourceOrigin) String() string { func (*HealthSourceOrigin) ProtoMessage() {} func (x *HealthSourceOrigin) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[253] + mi := &file_nico_proto_msgTypes[255] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21124,7 +21246,7 @@ func (x *HealthSourceOrigin) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthSourceOrigin.ProtoReflect.Descriptor instead. func (*HealthSourceOrigin) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{253} + return file_nico_proto_rawDescGZIP(), []int{255} } func (x *HealthSourceOrigin) GetMode() HealthReportApplyMode { @@ -21156,7 +21278,7 @@ type ControllerStateReason struct { func (x *ControllerStateReason) Reset() { *x = ControllerStateReason{} - mi := &file_nico_proto_msgTypes[254] + mi := &file_nico_proto_msgTypes[256] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21168,7 +21290,7 @@ func (x *ControllerStateReason) String() string { func (*ControllerStateReason) ProtoMessage() {} func (x *ControllerStateReason) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[254] + mi := &file_nico_proto_msgTypes[256] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21181,7 +21303,7 @@ func (x *ControllerStateReason) ProtoReflect() protoreflect.Message { // Deprecated: Use ControllerStateReason.ProtoReflect.Descriptor instead. func (*ControllerStateReason) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{254} + return file_nico_proto_rawDescGZIP(), []int{256} } func (x *ControllerStateReason) GetOutcome() ControllerStateOutcome { @@ -21216,7 +21338,7 @@ type ControllerStateSourceReference struct { func (x *ControllerStateSourceReference) Reset() { *x = ControllerStateSourceReference{} - mi := &file_nico_proto_msgTypes[255] + mi := &file_nico_proto_msgTypes[257] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21228,7 +21350,7 @@ func (x *ControllerStateSourceReference) String() string { func (*ControllerStateSourceReference) ProtoMessage() {} func (x *ControllerStateSourceReference) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[255] + mi := &file_nico_proto_msgTypes[257] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21241,7 +21363,7 @@ func (x *ControllerStateSourceReference) ProtoReflect() protoreflect.Message { // Deprecated: Use ControllerStateSourceReference.ProtoReflect.Descriptor instead. func (*ControllerStateSourceReference) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{255} + return file_nico_proto_rawDescGZIP(), []int{257} } func (x *ControllerStateSourceReference) GetFile() string { @@ -21275,7 +21397,7 @@ type StateSla struct { func (x *StateSla) Reset() { *x = StateSla{} - mi := &file_nico_proto_msgTypes[256] + mi := &file_nico_proto_msgTypes[258] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21287,7 +21409,7 @@ func (x *StateSla) String() string { func (*StateSla) ProtoMessage() {} func (x *StateSla) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[256] + mi := &file_nico_proto_msgTypes[258] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21300,7 +21422,7 @@ func (x *StateSla) ProtoReflect() protoreflect.Message { // Deprecated: Use StateSla.ProtoReflect.Descriptor instead. func (*StateSla) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{256} + return file_nico_proto_rawDescGZIP(), []int{258} } func (x *StateSla) GetSla() *durationpb.Duration { @@ -21330,7 +21452,7 @@ type InstanceTenantStatus struct { func (x *InstanceTenantStatus) Reset() { *x = InstanceTenantStatus{} - mi := &file_nico_proto_msgTypes[257] + mi := &file_nico_proto_msgTypes[259] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21342,7 +21464,7 @@ func (x *InstanceTenantStatus) String() string { func (*InstanceTenantStatus) ProtoMessage() {} func (x *InstanceTenantStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[257] + mi := &file_nico_proto_msgTypes[259] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21355,7 +21477,7 @@ func (x *InstanceTenantStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceTenantStatus.ProtoReflect.Descriptor instead. func (*InstanceTenantStatus) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{257} + return file_nico_proto_rawDescGZIP(), []int{259} } func (x *InstanceTenantStatus) GetState() TenantState { @@ -21386,7 +21508,7 @@ type MachineEvent struct { func (x *MachineEvent) Reset() { *x = MachineEvent{} - mi := &file_nico_proto_msgTypes[258] + mi := &file_nico_proto_msgTypes[260] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21398,7 +21520,7 @@ func (x *MachineEvent) String() string { func (*MachineEvent) ProtoMessage() {} func (x *MachineEvent) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[258] + mi := &file_nico_proto_msgTypes[260] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21411,7 +21533,7 @@ func (x *MachineEvent) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineEvent.ProtoReflect.Descriptor instead. func (*MachineEvent) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{258} + return file_nico_proto_rawDescGZIP(), []int{260} } func (x *MachineEvent) GetEvent() string { @@ -21461,7 +21583,7 @@ type MachineInterface struct { func (x *MachineInterface) Reset() { *x = MachineInterface{} - mi := &file_nico_proto_msgTypes[259] + mi := &file_nico_proto_msgTypes[261] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21473,7 +21595,7 @@ func (x *MachineInterface) String() string { func (*MachineInterface) ProtoMessage() {} func (x *MachineInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[259] + mi := &file_nico_proto_msgTypes[261] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21486,7 +21608,7 @@ func (x *MachineInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineInterface.ProtoReflect.Descriptor instead. func (*MachineInterface) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{259} + return file_nico_proto_rawDescGZIP(), []int{261} } func (x *MachineInterface) GetId() *MachineInterfaceId { @@ -21622,7 +21744,7 @@ type InfinibandStatusObservation struct { func (x *InfinibandStatusObservation) Reset() { *x = InfinibandStatusObservation{} - mi := &file_nico_proto_msgTypes[260] + mi := &file_nico_proto_msgTypes[262] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21634,7 +21756,7 @@ func (x *InfinibandStatusObservation) String() string { func (*InfinibandStatusObservation) ProtoMessage() {} func (x *InfinibandStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[260] + mi := &file_nico_proto_msgTypes[262] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21647,7 +21769,7 @@ func (x *InfinibandStatusObservation) ProtoReflect() protoreflect.Message { // Deprecated: Use InfinibandStatusObservation.ProtoReflect.Descriptor instead. func (*InfinibandStatusObservation) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{260} + return file_nico_proto_rawDescGZIP(), []int{262} } func (x *InfinibandStatusObservation) GetIbInterfaces() []*MachineIbInterface { @@ -21699,7 +21821,7 @@ type MachineIbInterface struct { func (x *MachineIbInterface) Reset() { *x = MachineIbInterface{} - mi := &file_nico_proto_msgTypes[261] + mi := &file_nico_proto_msgTypes[263] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21711,7 +21833,7 @@ func (x *MachineIbInterface) String() string { func (*MachineIbInterface) ProtoMessage() {} func (x *MachineIbInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[261] + mi := &file_nico_proto_msgTypes[263] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21724,7 +21846,7 @@ func (x *MachineIbInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineIbInterface.ProtoReflect.Descriptor instead. func (*MachineIbInterface) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{261} + return file_nico_proto_rawDescGZIP(), []int{263} } func (x *MachineIbInterface) GetPfGuid() string { @@ -21803,7 +21925,7 @@ type DhcpDiscovery struct { func (x *DhcpDiscovery) Reset() { *x = DhcpDiscovery{} - mi := &file_nico_proto_msgTypes[262] + mi := &file_nico_proto_msgTypes[264] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21815,7 +21937,7 @@ func (x *DhcpDiscovery) String() string { func (*DhcpDiscovery) ProtoMessage() {} func (x *DhcpDiscovery) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[262] + mi := &file_nico_proto_msgTypes[264] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21828,7 +21950,7 @@ func (x *DhcpDiscovery) ProtoReflect() protoreflect.Message { // Deprecated: Use DhcpDiscovery.ProtoReflect.Descriptor instead. func (*DhcpDiscovery) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{262} + return file_nico_proto_rawDescGZIP(), []int{264} } func (x *DhcpDiscovery) GetMacAddress() string { @@ -21915,7 +22037,7 @@ type ExpireDhcpLeaseRequest struct { func (x *ExpireDhcpLeaseRequest) Reset() { *x = ExpireDhcpLeaseRequest{} - mi := &file_nico_proto_msgTypes[263] + mi := &file_nico_proto_msgTypes[265] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21927,7 +22049,7 @@ func (x *ExpireDhcpLeaseRequest) String() string { func (*ExpireDhcpLeaseRequest) ProtoMessage() {} func (x *ExpireDhcpLeaseRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[263] + mi := &file_nico_proto_msgTypes[265] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21940,7 +22062,7 @@ func (x *ExpireDhcpLeaseRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ExpireDhcpLeaseRequest.ProtoReflect.Descriptor instead. func (*ExpireDhcpLeaseRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{263} + return file_nico_proto_rawDescGZIP(), []int{265} } func (x *ExpireDhcpLeaseRequest) GetIpAddress() string { @@ -21967,7 +22089,7 @@ type ExpireDhcpLeaseResponse struct { func (x *ExpireDhcpLeaseResponse) Reset() { *x = ExpireDhcpLeaseResponse{} - mi := &file_nico_proto_msgTypes[264] + mi := &file_nico_proto_msgTypes[266] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21979,7 +22101,7 @@ func (x *ExpireDhcpLeaseResponse) String() string { func (*ExpireDhcpLeaseResponse) ProtoMessage() {} func (x *ExpireDhcpLeaseResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[264] + mi := &file_nico_proto_msgTypes[266] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21992,7 +22114,7 @@ func (x *ExpireDhcpLeaseResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ExpireDhcpLeaseResponse.ProtoReflect.Descriptor instead. func (*ExpireDhcpLeaseResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{264} + return file_nico_proto_rawDescGZIP(), []int{266} } func (x *ExpireDhcpLeaseResponse) GetIpAddress() string { @@ -22040,7 +22162,7 @@ type DhcpRecord struct { func (x *DhcpRecord) Reset() { *x = DhcpRecord{} - mi := &file_nico_proto_msgTypes[265] + mi := &file_nico_proto_msgTypes[267] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22052,7 +22174,7 @@ func (x *DhcpRecord) String() string { func (*DhcpRecord) ProtoMessage() {} func (x *DhcpRecord) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[265] + mi := &file_nico_proto_msgTypes[267] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22065,7 +22187,7 @@ func (x *DhcpRecord) ProtoReflect() protoreflect.Message { // Deprecated: Use DhcpRecord.ProtoReflect.Descriptor instead. func (*DhcpRecord) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{265} + return file_nico_proto_rawDescGZIP(), []int{267} } func (x *DhcpRecord) GetMachineId() *MachineId { @@ -22182,7 +22304,7 @@ type NetworkSegmentList struct { func (x *NetworkSegmentList) Reset() { *x = NetworkSegmentList{} - mi := &file_nico_proto_msgTypes[266] + mi := &file_nico_proto_msgTypes[268] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22194,7 +22316,7 @@ func (x *NetworkSegmentList) String() string { func (*NetworkSegmentList) ProtoMessage() {} func (x *NetworkSegmentList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[266] + mi := &file_nico_proto_msgTypes[268] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22207,7 +22329,7 @@ func (x *NetworkSegmentList) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkSegmentList.ProtoReflect.Descriptor instead. func (*NetworkSegmentList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{266} + return file_nico_proto_rawDescGZIP(), []int{268} } func (x *NetworkSegmentList) GetNetworkSegments() []*NetworkSegment { @@ -22227,7 +22349,7 @@ type SSHKeyValidationRequest struct { func (x *SSHKeyValidationRequest) Reset() { *x = SSHKeyValidationRequest{} - mi := &file_nico_proto_msgTypes[267] + mi := &file_nico_proto_msgTypes[269] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22239,7 +22361,7 @@ func (x *SSHKeyValidationRequest) String() string { func (*SSHKeyValidationRequest) ProtoMessage() {} func (x *SSHKeyValidationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[267] + mi := &file_nico_proto_msgTypes[269] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22252,7 +22374,7 @@ func (x *SSHKeyValidationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SSHKeyValidationRequest.ProtoReflect.Descriptor instead. func (*SSHKeyValidationRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{267} + return file_nico_proto_rawDescGZIP(), []int{269} } func (x *SSHKeyValidationRequest) GetUser() string { @@ -22279,7 +22401,7 @@ type SSHKeyValidationResponse struct { func (x *SSHKeyValidationResponse) Reset() { *x = SSHKeyValidationResponse{} - mi := &file_nico_proto_msgTypes[268] + mi := &file_nico_proto_msgTypes[270] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22291,7 +22413,7 @@ func (x *SSHKeyValidationResponse) String() string { func (*SSHKeyValidationResponse) ProtoMessage() {} func (x *SSHKeyValidationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[268] + mi := &file_nico_proto_msgTypes[270] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22304,7 +22426,7 @@ func (x *SSHKeyValidationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SSHKeyValidationResponse.ProtoReflect.Descriptor instead. func (*SSHKeyValidationResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{268} + return file_nico_proto_rawDescGZIP(), []int{270} } func (x *SSHKeyValidationResponse) GetIsAuthenticated() bool { @@ -22330,7 +22452,7 @@ type GetBmcCredentialsRequest struct { func (x *GetBmcCredentialsRequest) Reset() { *x = GetBmcCredentialsRequest{} - mi := &file_nico_proto_msgTypes[269] + mi := &file_nico_proto_msgTypes[271] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22342,7 +22464,7 @@ func (x *GetBmcCredentialsRequest) String() string { func (*GetBmcCredentialsRequest) ProtoMessage() {} func (x *GetBmcCredentialsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[269] + mi := &file_nico_proto_msgTypes[271] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22355,7 +22477,7 @@ func (x *GetBmcCredentialsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetBmcCredentialsRequest.ProtoReflect.Descriptor instead. func (*GetBmcCredentialsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{269} + return file_nico_proto_rawDescGZIP(), []int{271} } func (x *GetBmcCredentialsRequest) GetMacAddr() string { @@ -22374,7 +22496,7 @@ type GetSwitchNvosCredentialsRequest struct { func (x *GetSwitchNvosCredentialsRequest) Reset() { *x = GetSwitchNvosCredentialsRequest{} - mi := &file_nico_proto_msgTypes[270] + mi := &file_nico_proto_msgTypes[272] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22386,7 +22508,7 @@ func (x *GetSwitchNvosCredentialsRequest) String() string { func (*GetSwitchNvosCredentialsRequest) ProtoMessage() {} func (x *GetSwitchNvosCredentialsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[270] + mi := &file_nico_proto_msgTypes[272] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22399,7 +22521,7 @@ func (x *GetSwitchNvosCredentialsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSwitchNvosCredentialsRequest.ProtoReflect.Descriptor instead. func (*GetSwitchNvosCredentialsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{270} + return file_nico_proto_rawDescGZIP(), []int{272} } func (x *GetSwitchNvosCredentialsRequest) GetSwitchId() *SwitchId { @@ -22418,7 +22540,7 @@ type GetBmcCredentialsResponse struct { func (x *GetBmcCredentialsResponse) Reset() { *x = GetBmcCredentialsResponse{} - mi := &file_nico_proto_msgTypes[271] + mi := &file_nico_proto_msgTypes[273] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22430,7 +22552,7 @@ func (x *GetBmcCredentialsResponse) String() string { func (*GetBmcCredentialsResponse) ProtoMessage() {} func (x *GetBmcCredentialsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[271] + mi := &file_nico_proto_msgTypes[273] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22443,7 +22565,7 @@ func (x *GetBmcCredentialsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetBmcCredentialsResponse.ProtoReflect.Descriptor instead. func (*GetBmcCredentialsResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{271} + return file_nico_proto_rawDescGZIP(), []int{273} } func (x *GetBmcCredentialsResponse) GetCredentials() *BmcCredentials { @@ -22466,7 +22588,7 @@ type BmcCredentials struct { func (x *BmcCredentials) Reset() { *x = BmcCredentials{} - mi := &file_nico_proto_msgTypes[272] + mi := &file_nico_proto_msgTypes[274] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22478,7 +22600,7 @@ func (x *BmcCredentials) String() string { func (*BmcCredentials) ProtoMessage() {} func (x *BmcCredentials) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[272] + mi := &file_nico_proto_msgTypes[274] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22491,7 +22613,7 @@ func (x *BmcCredentials) ProtoReflect() protoreflect.Message { // Deprecated: Use BmcCredentials.ProtoReflect.Descriptor instead. func (*BmcCredentials) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{272} + return file_nico_proto_rawDescGZIP(), []int{274} } func (x *BmcCredentials) GetType() isBmcCredentials_Type { @@ -22543,7 +22665,7 @@ type GetSiteExplorationRequest struct { func (x *GetSiteExplorationRequest) Reset() { *x = GetSiteExplorationRequest{} - mi := &file_nico_proto_msgTypes[273] + mi := &file_nico_proto_msgTypes[275] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22555,7 +22677,7 @@ func (x *GetSiteExplorationRequest) String() string { func (*GetSiteExplorationRequest) ProtoMessage() {} func (x *GetSiteExplorationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[273] + mi := &file_nico_proto_msgTypes[275] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22568,7 +22690,7 @@ func (x *GetSiteExplorationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSiteExplorationRequest.ProtoReflect.Descriptor instead. func (*GetSiteExplorationRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{273} + return file_nico_proto_rawDescGZIP(), []int{275} } type ClearSiteExplorationErrorRequest struct { @@ -22581,7 +22703,7 @@ type ClearSiteExplorationErrorRequest struct { func (x *ClearSiteExplorationErrorRequest) Reset() { *x = ClearSiteExplorationErrorRequest{} - mi := &file_nico_proto_msgTypes[274] + mi := &file_nico_proto_msgTypes[276] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22593,7 +22715,7 @@ func (x *ClearSiteExplorationErrorRequest) String() string { func (*ClearSiteExplorationErrorRequest) ProtoMessage() {} func (x *ClearSiteExplorationErrorRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[274] + mi := &file_nico_proto_msgTypes[276] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22606,7 +22728,7 @@ func (x *ClearSiteExplorationErrorRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ClearSiteExplorationErrorRequest.ProtoReflect.Descriptor instead. func (*ClearSiteExplorationErrorRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{274} + return file_nico_proto_rawDescGZIP(), []int{276} } func (x *ClearSiteExplorationErrorRequest) GetIpAddress() string { @@ -22629,7 +22751,7 @@ type ReExploreEndpointRequest struct { func (x *ReExploreEndpointRequest) Reset() { *x = ReExploreEndpointRequest{} - mi := &file_nico_proto_msgTypes[275] + mi := &file_nico_proto_msgTypes[277] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22641,7 +22763,7 @@ func (x *ReExploreEndpointRequest) String() string { func (*ReExploreEndpointRequest) ProtoMessage() {} func (x *ReExploreEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[275] + mi := &file_nico_proto_msgTypes[277] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22654,7 +22776,7 @@ func (x *ReExploreEndpointRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ReExploreEndpointRequest.ProtoReflect.Descriptor instead. func (*ReExploreEndpointRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{275} + return file_nico_proto_rawDescGZIP(), []int{277} } func (x *ReExploreEndpointRequest) GetIpAddress() string { @@ -22681,7 +22803,7 @@ type RefreshEndpointReportRequest struct { func (x *RefreshEndpointReportRequest) Reset() { *x = RefreshEndpointReportRequest{} - mi := &file_nico_proto_msgTypes[276] + mi := &file_nico_proto_msgTypes[278] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22693,7 +22815,7 @@ func (x *RefreshEndpointReportRequest) String() string { func (*RefreshEndpointReportRequest) ProtoMessage() {} func (x *RefreshEndpointReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[276] + mi := &file_nico_proto_msgTypes[278] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22706,7 +22828,7 @@ func (x *RefreshEndpointReportRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RefreshEndpointReportRequest.ProtoReflect.Descriptor instead. func (*RefreshEndpointReportRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{276} + return file_nico_proto_rawDescGZIP(), []int{278} } func (x *RefreshEndpointReportRequest) GetIpAddress() string { @@ -22726,7 +22848,7 @@ type DeleteExploredEndpointRequest struct { func (x *DeleteExploredEndpointRequest) Reset() { *x = DeleteExploredEndpointRequest{} - mi := &file_nico_proto_msgTypes[277] + mi := &file_nico_proto_msgTypes[279] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22738,7 +22860,7 @@ func (x *DeleteExploredEndpointRequest) String() string { func (*DeleteExploredEndpointRequest) ProtoMessage() {} func (x *DeleteExploredEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[277] + mi := &file_nico_proto_msgTypes[279] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22751,7 +22873,7 @@ func (x *DeleteExploredEndpointRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteExploredEndpointRequest.ProtoReflect.Descriptor instead. func (*DeleteExploredEndpointRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{277} + return file_nico_proto_rawDescGZIP(), []int{279} } func (x *DeleteExploredEndpointRequest) GetIpAddress() string { @@ -22773,7 +22895,7 @@ type PauseExploredEndpointRemediationRequest struct { func (x *PauseExploredEndpointRemediationRequest) Reset() { *x = PauseExploredEndpointRemediationRequest{} - mi := &file_nico_proto_msgTypes[278] + mi := &file_nico_proto_msgTypes[280] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22785,7 +22907,7 @@ func (x *PauseExploredEndpointRemediationRequest) String() string { func (*PauseExploredEndpointRemediationRequest) ProtoMessage() {} func (x *PauseExploredEndpointRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[278] + mi := &file_nico_proto_msgTypes[280] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22798,7 +22920,7 @@ func (x *PauseExploredEndpointRemediationRequest) ProtoReflect() protoreflect.Me // Deprecated: Use PauseExploredEndpointRemediationRequest.ProtoReflect.Descriptor instead. func (*PauseExploredEndpointRemediationRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{278} + return file_nico_proto_rawDescGZIP(), []int{280} } func (x *PauseExploredEndpointRemediationRequest) GetIpAddress() string { @@ -22827,7 +22949,7 @@ type DeleteExploredEndpointResponse struct { func (x *DeleteExploredEndpointResponse) Reset() { *x = DeleteExploredEndpointResponse{} - mi := &file_nico_proto_msgTypes[279] + mi := &file_nico_proto_msgTypes[281] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22839,7 +22961,7 @@ func (x *DeleteExploredEndpointResponse) String() string { func (*DeleteExploredEndpointResponse) ProtoMessage() {} func (x *DeleteExploredEndpointResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[279] + mi := &file_nico_proto_msgTypes[281] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22852,7 +22974,7 @@ func (x *DeleteExploredEndpointResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteExploredEndpointResponse.ProtoReflect.Descriptor instead. func (*DeleteExploredEndpointResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{279} + return file_nico_proto_rawDescGZIP(), []int{281} } func (x *DeleteExploredEndpointResponse) GetDeleted() bool { @@ -22881,7 +23003,7 @@ type BmcEndpointRequest struct { func (x *BmcEndpointRequest) Reset() { *x = BmcEndpointRequest{} - mi := &file_nico_proto_msgTypes[280] + mi := &file_nico_proto_msgTypes[282] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22893,7 +23015,7 @@ func (x *BmcEndpointRequest) String() string { func (*BmcEndpointRequest) ProtoMessage() {} func (x *BmcEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[280] + mi := &file_nico_proto_msgTypes[282] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22906,7 +23028,7 @@ func (x *BmcEndpointRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BmcEndpointRequest.ProtoReflect.Descriptor instead. func (*BmcEndpointRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{280} + return file_nico_proto_rawDescGZIP(), []int{282} } func (x *BmcEndpointRequest) GetIpAddress() string { @@ -22939,7 +23061,7 @@ type SshTimeoutConfig struct { func (x *SshTimeoutConfig) Reset() { *x = SshTimeoutConfig{} - mi := &file_nico_proto_msgTypes[281] + mi := &file_nico_proto_msgTypes[283] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22951,7 +23073,7 @@ func (x *SshTimeoutConfig) String() string { func (*SshTimeoutConfig) ProtoMessage() {} func (x *SshTimeoutConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[281] + mi := &file_nico_proto_msgTypes[283] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22964,7 +23086,7 @@ func (x *SshTimeoutConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use SshTimeoutConfig.ProtoReflect.Descriptor instead. func (*SshTimeoutConfig) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{281} + return file_nico_proto_rawDescGZIP(), []int{283} } func (x *SshTimeoutConfig) GetTcpConnectionTimeout() uint64 { @@ -23005,7 +23127,7 @@ type SshRequest struct { func (x *SshRequest) Reset() { *x = SshRequest{} - mi := &file_nico_proto_msgTypes[282] + mi := &file_nico_proto_msgTypes[284] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23017,7 +23139,7 @@ func (x *SshRequest) String() string { func (*SshRequest) ProtoMessage() {} func (x *SshRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[282] + mi := &file_nico_proto_msgTypes[284] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23030,7 +23152,7 @@ func (x *SshRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SshRequest.ProtoReflect.Descriptor instead. func (*SshRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{282} + return file_nico_proto_rawDescGZIP(), []int{284} } func (x *SshRequest) GetEndpointRequest() *BmcEndpointRequest { @@ -23055,7 +23177,7 @@ type CopyBfbToDpuRshimRequest struct { func (x *CopyBfbToDpuRshimRequest) Reset() { *x = CopyBfbToDpuRshimRequest{} - mi := &file_nico_proto_msgTypes[283] + mi := &file_nico_proto_msgTypes[285] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23067,7 +23189,7 @@ func (x *CopyBfbToDpuRshimRequest) String() string { func (*CopyBfbToDpuRshimRequest) ProtoMessage() {} func (x *CopyBfbToDpuRshimRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[283] + mi := &file_nico_proto_msgTypes[285] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23080,7 +23202,7 @@ func (x *CopyBfbToDpuRshimRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CopyBfbToDpuRshimRequest.ProtoReflect.Descriptor instead. func (*CopyBfbToDpuRshimRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{283} + return file_nico_proto_rawDescGZIP(), []int{285} } func (x *CopyBfbToDpuRshimRequest) GetSshRequest() *SshRequest { @@ -23117,7 +23239,7 @@ type UpdateMachineHardwareInfoRequest struct { func (x *UpdateMachineHardwareInfoRequest) Reset() { *x = UpdateMachineHardwareInfoRequest{} - mi := &file_nico_proto_msgTypes[284] + mi := &file_nico_proto_msgTypes[286] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23129,7 +23251,7 @@ func (x *UpdateMachineHardwareInfoRequest) String() string { func (*UpdateMachineHardwareInfoRequest) ProtoMessage() {} func (x *UpdateMachineHardwareInfoRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[284] + mi := &file_nico_proto_msgTypes[286] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23142,7 +23264,7 @@ func (x *UpdateMachineHardwareInfoRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateMachineHardwareInfoRequest.ProtoReflect.Descriptor instead. func (*UpdateMachineHardwareInfoRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{284} + return file_nico_proto_rawDescGZIP(), []int{286} } func (x *UpdateMachineHardwareInfoRequest) GetMachineId() *MachineId { @@ -23175,7 +23297,7 @@ type MachineHardwareInfo struct { func (x *MachineHardwareInfo) Reset() { *x = MachineHardwareInfo{} - mi := &file_nico_proto_msgTypes[285] + mi := &file_nico_proto_msgTypes[287] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23187,7 +23309,7 @@ func (x *MachineHardwareInfo) String() string { func (*MachineHardwareInfo) ProtoMessage() {} func (x *MachineHardwareInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[285] + mi := &file_nico_proto_msgTypes[287] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23200,7 +23322,7 @@ func (x *MachineHardwareInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineHardwareInfo.ProtoReflect.Descriptor instead. func (*MachineHardwareInfo) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{285} + return file_nico_proto_rawDescGZIP(), []int{287} } func (x *MachineHardwareInfo) GetGpus() []*Gpu { @@ -23219,7 +23341,7 @@ type ManagedHostNetworkConfigRequest struct { func (x *ManagedHostNetworkConfigRequest) Reset() { *x = ManagedHostNetworkConfigRequest{} - mi := &file_nico_proto_msgTypes[286] + mi := &file_nico_proto_msgTypes[288] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23231,7 +23353,7 @@ func (x *ManagedHostNetworkConfigRequest) String() string { func (*ManagedHostNetworkConfigRequest) ProtoMessage() {} func (x *ManagedHostNetworkConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[286] + mi := &file_nico_proto_msgTypes[288] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23244,7 +23366,7 @@ func (x *ManagedHostNetworkConfigRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedHostNetworkConfigRequest.ProtoReflect.Descriptor instead. func (*ManagedHostNetworkConfigRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{286} + return file_nico_proto_rawDescGZIP(), []int{288} } func (x *ManagedHostNetworkConfigRequest) GetDpuMachineId() *MachineId { @@ -23374,7 +23496,7 @@ type ManagedHostNetworkConfigResponse struct { func (x *ManagedHostNetworkConfigResponse) Reset() { *x = ManagedHostNetworkConfigResponse{} - mi := &file_nico_proto_msgTypes[287] + mi := &file_nico_proto_msgTypes[289] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23386,7 +23508,7 @@ func (x *ManagedHostNetworkConfigResponse) String() string { func (*ManagedHostNetworkConfigResponse) ProtoMessage() {} func (x *ManagedHostNetworkConfigResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[287] + mi := &file_nico_proto_msgTypes[289] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23399,7 +23521,7 @@ func (x *ManagedHostNetworkConfigResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedHostNetworkConfigResponse.ProtoReflect.Descriptor instead. func (*ManagedHostNetworkConfigResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{287} + return file_nico_proto_rawDescGZIP(), []int{289} } func (x *ManagedHostNetworkConfigResponse) GetAsn() uint32 { @@ -23690,7 +23812,7 @@ type TrafficInterceptConfig struct { func (x *TrafficInterceptConfig) Reset() { *x = TrafficInterceptConfig{} - mi := &file_nico_proto_msgTypes[288] + mi := &file_nico_proto_msgTypes[290] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23702,7 +23824,7 @@ func (x *TrafficInterceptConfig) String() string { func (*TrafficInterceptConfig) ProtoMessage() {} func (x *TrafficInterceptConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[288] + mi := &file_nico_proto_msgTypes[290] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23715,7 +23837,7 @@ func (x *TrafficInterceptConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use TrafficInterceptConfig.ProtoReflect.Descriptor instead. func (*TrafficInterceptConfig) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{288} + return file_nico_proto_rawDescGZIP(), []int{290} } func (x *TrafficInterceptConfig) GetAdditionalOverlayVtepIp() string { @@ -23772,7 +23894,7 @@ type TrafficInterceptBridging struct { func (x *TrafficInterceptBridging) Reset() { *x = TrafficInterceptBridging{} - mi := &file_nico_proto_msgTypes[289] + mi := &file_nico_proto_msgTypes[291] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23784,7 +23906,7 @@ func (x *TrafficInterceptBridging) String() string { func (*TrafficInterceptBridging) ProtoMessage() {} func (x *TrafficInterceptBridging) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[289] + mi := &file_nico_proto_msgTypes[291] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23797,7 +23919,7 @@ func (x *TrafficInterceptBridging) ProtoReflect() protoreflect.Message { // Deprecated: Use TrafficInterceptBridging.ProtoReflect.Descriptor instead. func (*TrafficInterceptBridging) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{289} + return file_nico_proto_rawDescGZIP(), []int{291} } func (x *TrafficInterceptBridging) GetInternalBridgeRoutingPrefix() string { @@ -23858,7 +23980,7 @@ type ManagedHostDpuExtensionServiceConfig struct { func (x *ManagedHostDpuExtensionServiceConfig) Reset() { *x = ManagedHostDpuExtensionServiceConfig{} - mi := &file_nico_proto_msgTypes[290] + mi := &file_nico_proto_msgTypes[292] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23870,7 +23992,7 @@ func (x *ManagedHostDpuExtensionServiceConfig) String() string { func (*ManagedHostDpuExtensionServiceConfig) ProtoMessage() {} func (x *ManagedHostDpuExtensionServiceConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[290] + mi := &file_nico_proto_msgTypes[292] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23883,7 +24005,7 @@ func (x *ManagedHostDpuExtensionServiceConfig) ProtoReflect() protoreflect.Messa // Deprecated: Use ManagedHostDpuExtensionServiceConfig.ProtoReflect.Descriptor instead. func (*ManagedHostDpuExtensionServiceConfig) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{290} + return file_nico_proto_rawDescGZIP(), []int{292} } func (x *ManagedHostDpuExtensionServiceConfig) GetServiceId() string { @@ -23952,7 +24074,7 @@ type ManagedHostQuarantineState struct { func (x *ManagedHostQuarantineState) Reset() { *x = ManagedHostQuarantineState{} - mi := &file_nico_proto_msgTypes[291] + mi := &file_nico_proto_msgTypes[293] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23964,7 +24086,7 @@ func (x *ManagedHostQuarantineState) String() string { func (*ManagedHostQuarantineState) ProtoMessage() {} func (x *ManagedHostQuarantineState) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[291] + mi := &file_nico_proto_msgTypes[293] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23977,7 +24099,7 @@ func (x *ManagedHostQuarantineState) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedHostQuarantineState.ProtoReflect.Descriptor instead. func (*ManagedHostQuarantineState) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{291} + return file_nico_proto_rawDescGZIP(), []int{293} } func (x *ManagedHostQuarantineState) GetMode() ManagedHostQuarantineMode { @@ -24003,7 +24125,7 @@ type GetManagedHostQuarantineStateRequest struct { func (x *GetManagedHostQuarantineStateRequest) Reset() { *x = GetManagedHostQuarantineStateRequest{} - mi := &file_nico_proto_msgTypes[292] + mi := &file_nico_proto_msgTypes[294] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24015,7 +24137,7 @@ func (x *GetManagedHostQuarantineStateRequest) String() string { func (*GetManagedHostQuarantineStateRequest) ProtoMessage() {} func (x *GetManagedHostQuarantineStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[292] + mi := &file_nico_proto_msgTypes[294] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24028,7 +24150,7 @@ func (x *GetManagedHostQuarantineStateRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use GetManagedHostQuarantineStateRequest.ProtoReflect.Descriptor instead. func (*GetManagedHostQuarantineStateRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{292} + return file_nico_proto_rawDescGZIP(), []int{294} } func (x *GetManagedHostQuarantineStateRequest) GetMachineId() *MachineId { @@ -24047,7 +24169,7 @@ type GetManagedHostQuarantineStateResponse struct { func (x *GetManagedHostQuarantineStateResponse) Reset() { *x = GetManagedHostQuarantineStateResponse{} - mi := &file_nico_proto_msgTypes[293] + mi := &file_nico_proto_msgTypes[295] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24059,7 +24181,7 @@ func (x *GetManagedHostQuarantineStateResponse) String() string { func (*GetManagedHostQuarantineStateResponse) ProtoMessage() {} func (x *GetManagedHostQuarantineStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[293] + mi := &file_nico_proto_msgTypes[295] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24072,7 +24194,7 @@ func (x *GetManagedHostQuarantineStateResponse) ProtoReflect() protoreflect.Mess // Deprecated: Use GetManagedHostQuarantineStateResponse.ProtoReflect.Descriptor instead. func (*GetManagedHostQuarantineStateResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{293} + return file_nico_proto_rawDescGZIP(), []int{295} } func (x *GetManagedHostQuarantineStateResponse) GetQuarantineState() *ManagedHostQuarantineState { @@ -24092,7 +24214,7 @@ type SetManagedHostQuarantineStateRequest struct { func (x *SetManagedHostQuarantineStateRequest) Reset() { *x = SetManagedHostQuarantineStateRequest{} - mi := &file_nico_proto_msgTypes[294] + mi := &file_nico_proto_msgTypes[296] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24104,7 +24226,7 @@ func (x *SetManagedHostQuarantineStateRequest) String() string { func (*SetManagedHostQuarantineStateRequest) ProtoMessage() {} func (x *SetManagedHostQuarantineStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[294] + mi := &file_nico_proto_msgTypes[296] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24117,7 +24239,7 @@ func (x *SetManagedHostQuarantineStateRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use SetManagedHostQuarantineStateRequest.ProtoReflect.Descriptor instead. func (*SetManagedHostQuarantineStateRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{294} + return file_nico_proto_rawDescGZIP(), []int{296} } func (x *SetManagedHostQuarantineStateRequest) GetMachineId() *MachineId { @@ -24143,7 +24265,7 @@ type SetManagedHostQuarantineStateResponse struct { func (x *SetManagedHostQuarantineStateResponse) Reset() { *x = SetManagedHostQuarantineStateResponse{} - mi := &file_nico_proto_msgTypes[295] + mi := &file_nico_proto_msgTypes[297] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24155,7 +24277,7 @@ func (x *SetManagedHostQuarantineStateResponse) String() string { func (*SetManagedHostQuarantineStateResponse) ProtoMessage() {} func (x *SetManagedHostQuarantineStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[295] + mi := &file_nico_proto_msgTypes[297] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24168,7 +24290,7 @@ func (x *SetManagedHostQuarantineStateResponse) ProtoReflect() protoreflect.Mess // Deprecated: Use SetManagedHostQuarantineStateResponse.ProtoReflect.Descriptor instead. func (*SetManagedHostQuarantineStateResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{295} + return file_nico_proto_rawDescGZIP(), []int{297} } func (x *SetManagedHostQuarantineStateResponse) GetPriorQuarantineState() *ManagedHostQuarantineState { @@ -24187,7 +24309,7 @@ type ClearManagedHostQuarantineStateRequest struct { func (x *ClearManagedHostQuarantineStateRequest) Reset() { *x = ClearManagedHostQuarantineStateRequest{} - mi := &file_nico_proto_msgTypes[296] + mi := &file_nico_proto_msgTypes[298] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24199,7 +24321,7 @@ func (x *ClearManagedHostQuarantineStateRequest) String() string { func (*ClearManagedHostQuarantineStateRequest) ProtoMessage() {} func (x *ClearManagedHostQuarantineStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[296] + mi := &file_nico_proto_msgTypes[298] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24212,7 +24334,7 @@ func (x *ClearManagedHostQuarantineStateRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use ClearManagedHostQuarantineStateRequest.ProtoReflect.Descriptor instead. func (*ClearManagedHostQuarantineStateRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{296} + return file_nico_proto_rawDescGZIP(), []int{298} } func (x *ClearManagedHostQuarantineStateRequest) GetMachineId() *MachineId { @@ -24231,7 +24353,7 @@ type ClearManagedHostQuarantineStateResponse struct { func (x *ClearManagedHostQuarantineStateResponse) Reset() { *x = ClearManagedHostQuarantineStateResponse{} - mi := &file_nico_proto_msgTypes[297] + mi := &file_nico_proto_msgTypes[299] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24243,7 +24365,7 @@ func (x *ClearManagedHostQuarantineStateResponse) String() string { func (*ClearManagedHostQuarantineStateResponse) ProtoMessage() {} func (x *ClearManagedHostQuarantineStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[297] + mi := &file_nico_proto_msgTypes[299] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24256,7 +24378,7 @@ func (x *ClearManagedHostQuarantineStateResponse) ProtoReflect() protoreflect.Me // Deprecated: Use ClearManagedHostQuarantineStateResponse.ProtoReflect.Descriptor instead. func (*ClearManagedHostQuarantineStateResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{297} + return file_nico_proto_rawDescGZIP(), []int{299} } func (x *ClearManagedHostQuarantineStateResponse) GetPriorQuarantineState() *ManagedHostQuarantineState { @@ -24278,7 +24400,7 @@ type ManagedHostNetworkConfig struct { func (x *ManagedHostNetworkConfig) Reset() { *x = ManagedHostNetworkConfig{} - mi := &file_nico_proto_msgTypes[298] + mi := &file_nico_proto_msgTypes[300] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24290,7 +24412,7 @@ func (x *ManagedHostNetworkConfig) String() string { func (*ManagedHostNetworkConfig) ProtoMessage() {} func (x *ManagedHostNetworkConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[298] + mi := &file_nico_proto_msgTypes[300] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24303,7 +24425,7 @@ func (x *ManagedHostNetworkConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedHostNetworkConfig.ProtoReflect.Descriptor instead. func (*ManagedHostNetworkConfig) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{298} + return file_nico_proto_rawDescGZIP(), []int{300} } func (x *ManagedHostNetworkConfig) GetLoopbackIp() string { @@ -24419,7 +24541,7 @@ type FlatInterfaceConfig struct { func (x *FlatInterfaceConfig) Reset() { *x = FlatInterfaceConfig{} - mi := &file_nico_proto_msgTypes[299] + mi := &file_nico_proto_msgTypes[301] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24431,7 +24553,7 @@ func (x *FlatInterfaceConfig) String() string { func (*FlatInterfaceConfig) ProtoMessage() {} func (x *FlatInterfaceConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[299] + mi := &file_nico_proto_msgTypes[301] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24444,7 +24566,7 @@ func (x *FlatInterfaceConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use FlatInterfaceConfig.ProtoReflect.Descriptor instead. func (*FlatInterfaceConfig) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{299} + return file_nico_proto_rawDescGZIP(), []int{301} } func (x *FlatInterfaceConfig) GetFunctionType() InterfaceFunctionType { @@ -24617,7 +24739,7 @@ type FlatInterfaceRoutingProfile struct { func (x *FlatInterfaceRoutingProfile) Reset() { *x = FlatInterfaceRoutingProfile{} - mi := &file_nico_proto_msgTypes[300] + mi := &file_nico_proto_msgTypes[302] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24629,7 +24751,7 @@ func (x *FlatInterfaceRoutingProfile) String() string { func (*FlatInterfaceRoutingProfile) ProtoMessage() {} func (x *FlatInterfaceRoutingProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[300] + mi := &file_nico_proto_msgTypes[302] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24642,7 +24764,7 @@ func (x *FlatInterfaceRoutingProfile) ProtoReflect() protoreflect.Message { // Deprecated: Use FlatInterfaceRoutingProfile.ProtoReflect.Descriptor instead. func (*FlatInterfaceRoutingProfile) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{300} + return file_nico_proto_rawDescGZIP(), []int{302} } func (x *FlatInterfaceRoutingProfile) GetAllowedAnycastPrefixes() []*PrefixFilterPolicyEntry { @@ -24669,7 +24791,7 @@ type FlatInterfaceIpv6Config struct { func (x *FlatInterfaceIpv6Config) Reset() { *x = FlatInterfaceIpv6Config{} - mi := &file_nico_proto_msgTypes[301] + mi := &file_nico_proto_msgTypes[303] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24681,7 +24803,7 @@ func (x *FlatInterfaceIpv6Config) String() string { func (*FlatInterfaceIpv6Config) ProtoMessage() {} func (x *FlatInterfaceIpv6Config) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[301] + mi := &file_nico_proto_msgTypes[303] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24694,7 +24816,7 @@ func (x *FlatInterfaceIpv6Config) ProtoReflect() protoreflect.Message { // Deprecated: Use FlatInterfaceIpv6Config.ProtoReflect.Descriptor instead. func (*FlatInterfaceIpv6Config) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{301} + return file_nico_proto_rawDescGZIP(), []int{303} } func (x *FlatInterfaceIpv6Config) GetIp() string { @@ -24731,7 +24853,7 @@ type FlatInterfaceNetworkSecurityGroupConfig struct { func (x *FlatInterfaceNetworkSecurityGroupConfig) Reset() { *x = FlatInterfaceNetworkSecurityGroupConfig{} - mi := &file_nico_proto_msgTypes[302] + mi := &file_nico_proto_msgTypes[304] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24743,7 +24865,7 @@ func (x *FlatInterfaceNetworkSecurityGroupConfig) String() string { func (*FlatInterfaceNetworkSecurityGroupConfig) ProtoMessage() {} func (x *FlatInterfaceNetworkSecurityGroupConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[302] + mi := &file_nico_proto_msgTypes[304] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24756,7 +24878,7 @@ func (x *FlatInterfaceNetworkSecurityGroupConfig) ProtoReflect() protoreflect.Me // Deprecated: Use FlatInterfaceNetworkSecurityGroupConfig.ProtoReflect.Descriptor instead. func (*FlatInterfaceNetworkSecurityGroupConfig) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{302} + return file_nico_proto_rawDescGZIP(), []int{304} } func (x *FlatInterfaceNetworkSecurityGroupConfig) GetId() string { @@ -24802,7 +24924,7 @@ type ManagedHostNetworkStatusRequest struct { func (x *ManagedHostNetworkStatusRequest) Reset() { *x = ManagedHostNetworkStatusRequest{} - mi := &file_nico_proto_msgTypes[303] + mi := &file_nico_proto_msgTypes[305] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24814,7 +24936,7 @@ func (x *ManagedHostNetworkStatusRequest) String() string { func (*ManagedHostNetworkStatusRequest) ProtoMessage() {} func (x *ManagedHostNetworkStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[303] + mi := &file_nico_proto_msgTypes[305] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24827,7 +24949,7 @@ func (x *ManagedHostNetworkStatusRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedHostNetworkStatusRequest.ProtoReflect.Descriptor instead. func (*ManagedHostNetworkStatusRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{303} + return file_nico_proto_rawDescGZIP(), []int{305} } type ManagedHostNetworkStatusResponse struct { @@ -24839,7 +24961,7 @@ type ManagedHostNetworkStatusResponse struct { func (x *ManagedHostNetworkStatusResponse) Reset() { *x = ManagedHostNetworkStatusResponse{} - mi := &file_nico_proto_msgTypes[304] + mi := &file_nico_proto_msgTypes[306] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24851,7 +24973,7 @@ func (x *ManagedHostNetworkStatusResponse) String() string { func (*ManagedHostNetworkStatusResponse) ProtoMessage() {} func (x *ManagedHostNetworkStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[304] + mi := &file_nico_proto_msgTypes[306] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24864,7 +24986,7 @@ func (x *ManagedHostNetworkStatusResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedHostNetworkStatusResponse.ProtoReflect.Descriptor instead. func (*ManagedHostNetworkStatusResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{304} + return file_nico_proto_rawDescGZIP(), []int{306} } func (x *ManagedHostNetworkStatusResponse) GetAll() []*DpuNetworkStatus { @@ -24886,7 +25008,7 @@ type DpuAgentUpgradeCheckRequest struct { func (x *DpuAgentUpgradeCheckRequest) Reset() { *x = DpuAgentUpgradeCheckRequest{} - mi := &file_nico_proto_msgTypes[305] + mi := &file_nico_proto_msgTypes[307] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24898,7 +25020,7 @@ func (x *DpuAgentUpgradeCheckRequest) String() string { func (*DpuAgentUpgradeCheckRequest) ProtoMessage() {} func (x *DpuAgentUpgradeCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[305] + mi := &file_nico_proto_msgTypes[307] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24911,7 +25033,7 @@ func (x *DpuAgentUpgradeCheckRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuAgentUpgradeCheckRequest.ProtoReflect.Descriptor instead. func (*DpuAgentUpgradeCheckRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{305} + return file_nico_proto_rawDescGZIP(), []int{307} } func (x *DpuAgentUpgradeCheckRequest) GetMachineId() string { @@ -24953,7 +25075,7 @@ type DpuAgentUpgradeCheckResponse struct { func (x *DpuAgentUpgradeCheckResponse) Reset() { *x = DpuAgentUpgradeCheckResponse{} - mi := &file_nico_proto_msgTypes[306] + mi := &file_nico_proto_msgTypes[308] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24965,7 +25087,7 @@ func (x *DpuAgentUpgradeCheckResponse) String() string { func (*DpuAgentUpgradeCheckResponse) ProtoMessage() {} func (x *DpuAgentUpgradeCheckResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[306] + mi := &file_nico_proto_msgTypes[308] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24978,7 +25100,7 @@ func (x *DpuAgentUpgradeCheckResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuAgentUpgradeCheckResponse.ProtoReflect.Descriptor instead. func (*DpuAgentUpgradeCheckResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{306} + return file_nico_proto_rawDescGZIP(), []int{308} } func (x *DpuAgentUpgradeCheckResponse) GetShouldUpgrade() bool { @@ -25011,7 +25133,7 @@ type DpuAgentUpgradePolicyRequest struct { func (x *DpuAgentUpgradePolicyRequest) Reset() { *x = DpuAgentUpgradePolicyRequest{} - mi := &file_nico_proto_msgTypes[307] + mi := &file_nico_proto_msgTypes[309] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25023,7 +25145,7 @@ func (x *DpuAgentUpgradePolicyRequest) String() string { func (*DpuAgentUpgradePolicyRequest) ProtoMessage() {} func (x *DpuAgentUpgradePolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[307] + mi := &file_nico_proto_msgTypes[309] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25036,7 +25158,7 @@ func (x *DpuAgentUpgradePolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuAgentUpgradePolicyRequest.ProtoReflect.Descriptor instead. func (*DpuAgentUpgradePolicyRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{307} + return file_nico_proto_rawDescGZIP(), []int{309} } func (x *DpuAgentUpgradePolicyRequest) GetNewPolicy() AgentUpgradePolicy { @@ -25058,7 +25180,7 @@ type DpuAgentUpgradePolicyResponse struct { func (x *DpuAgentUpgradePolicyResponse) Reset() { *x = DpuAgentUpgradePolicyResponse{} - mi := &file_nico_proto_msgTypes[308] + mi := &file_nico_proto_msgTypes[310] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25070,7 +25192,7 @@ func (x *DpuAgentUpgradePolicyResponse) String() string { func (*DpuAgentUpgradePolicyResponse) ProtoMessage() {} func (x *DpuAgentUpgradePolicyResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[308] + mi := &file_nico_proto_msgTypes[310] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25083,7 +25205,7 @@ func (x *DpuAgentUpgradePolicyResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuAgentUpgradePolicyResponse.ProtoReflect.Descriptor instead. func (*DpuAgentUpgradePolicyResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{308} + return file_nico_proto_rawDescGZIP(), []int{310} } func (x *DpuAgentUpgradePolicyResponse) GetActivePolicy() AgentUpgradePolicy { @@ -25120,7 +25242,7 @@ type AdminForceDeleteMachineRequest struct { func (x *AdminForceDeleteMachineRequest) Reset() { *x = AdminForceDeleteMachineRequest{} - mi := &file_nico_proto_msgTypes[309] + mi := &file_nico_proto_msgTypes[311] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25132,7 +25254,7 @@ func (x *AdminForceDeleteMachineRequest) String() string { func (*AdminForceDeleteMachineRequest) ProtoMessage() {} func (x *AdminForceDeleteMachineRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[309] + mi := &file_nico_proto_msgTypes[311] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25145,7 +25267,7 @@ func (x *AdminForceDeleteMachineRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminForceDeleteMachineRequest.ProtoReflect.Descriptor instead. func (*AdminForceDeleteMachineRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{309} + return file_nico_proto_rawDescGZIP(), []int{311} } func (x *AdminForceDeleteMachineRequest) GetHostQuery() string { @@ -25222,7 +25344,7 @@ type AdminForceDeleteMachineResponse struct { func (x *AdminForceDeleteMachineResponse) Reset() { *x = AdminForceDeleteMachineResponse{} - mi := &file_nico_proto_msgTypes[310] + mi := &file_nico_proto_msgTypes[312] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25234,7 +25356,7 @@ func (x *AdminForceDeleteMachineResponse) String() string { func (*AdminForceDeleteMachineResponse) ProtoMessage() {} func (x *AdminForceDeleteMachineResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[310] + mi := &file_nico_proto_msgTypes[312] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25247,7 +25369,7 @@ func (x *AdminForceDeleteMachineResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminForceDeleteMachineResponse.ProtoReflect.Descriptor instead. func (*AdminForceDeleteMachineResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{310} + return file_nico_proto_rawDescGZIP(), []int{312} } func (x *AdminForceDeleteMachineResponse) GetAllDone() bool { @@ -25398,7 +25520,7 @@ type DisableSecureBootResponse struct { func (x *DisableSecureBootResponse) Reset() { *x = DisableSecureBootResponse{} - mi := &file_nico_proto_msgTypes[311] + mi := &file_nico_proto_msgTypes[313] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25410,7 +25532,7 @@ func (x *DisableSecureBootResponse) String() string { func (*DisableSecureBootResponse) ProtoMessage() {} func (x *DisableSecureBootResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[311] + mi := &file_nico_proto_msgTypes[313] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25423,7 +25545,7 @@ func (x *DisableSecureBootResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DisableSecureBootResponse.ProtoReflect.Descriptor instead. func (*DisableSecureBootResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{311} + return file_nico_proto_rawDescGZIP(), []int{313} } type LockdownRequest struct { @@ -25437,7 +25559,7 @@ type LockdownRequest struct { func (x *LockdownRequest) Reset() { *x = LockdownRequest{} - mi := &file_nico_proto_msgTypes[312] + mi := &file_nico_proto_msgTypes[314] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25449,7 +25571,7 @@ func (x *LockdownRequest) String() string { func (*LockdownRequest) ProtoMessage() {} func (x *LockdownRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[312] + mi := &file_nico_proto_msgTypes[314] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25462,7 +25584,7 @@ func (x *LockdownRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use LockdownRequest.ProtoReflect.Descriptor instead. func (*LockdownRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{312} + return file_nico_proto_rawDescGZIP(), []int{314} } func (x *LockdownRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -25494,7 +25616,7 @@ type LockdownResponse struct { func (x *LockdownResponse) Reset() { *x = LockdownResponse{} - mi := &file_nico_proto_msgTypes[313] + mi := &file_nico_proto_msgTypes[315] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25506,7 +25628,7 @@ func (x *LockdownResponse) String() string { func (*LockdownResponse) ProtoMessage() {} func (x *LockdownResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[313] + mi := &file_nico_proto_msgTypes[315] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25519,7 +25641,7 @@ func (x *LockdownResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use LockdownResponse.ProtoReflect.Descriptor instead. func (*LockdownResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{313} + return file_nico_proto_rawDescGZIP(), []int{315} } type LockdownStatusRequest struct { @@ -25532,7 +25654,7 @@ type LockdownStatusRequest struct { func (x *LockdownStatusRequest) Reset() { *x = LockdownStatusRequest{} - mi := &file_nico_proto_msgTypes[314] + mi := &file_nico_proto_msgTypes[316] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25544,7 +25666,7 @@ func (x *LockdownStatusRequest) String() string { func (*LockdownStatusRequest) ProtoMessage() {} func (x *LockdownStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[314] + mi := &file_nico_proto_msgTypes[316] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25557,7 +25679,7 @@ func (x *LockdownStatusRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use LockdownStatusRequest.ProtoReflect.Descriptor instead. func (*LockdownStatusRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{314} + return file_nico_proto_rawDescGZIP(), []int{316} } func (x *LockdownStatusRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -25584,7 +25706,7 @@ type MachineSetupStatusRequest struct { func (x *MachineSetupStatusRequest) Reset() { *x = MachineSetupStatusRequest{} - mi := &file_nico_proto_msgTypes[315] + mi := &file_nico_proto_msgTypes[317] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25596,7 +25718,7 @@ func (x *MachineSetupStatusRequest) String() string { func (*MachineSetupStatusRequest) ProtoMessage() {} func (x *MachineSetupStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[315] + mi := &file_nico_proto_msgTypes[317] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25609,7 +25731,7 @@ func (x *MachineSetupStatusRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineSetupStatusRequest.ProtoReflect.Descriptor instead. func (*MachineSetupStatusRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{315} + return file_nico_proto_rawDescGZIP(), []int{317} } func (x *MachineSetupStatusRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -25637,7 +25759,7 @@ type MachineSetupRequest struct { func (x *MachineSetupRequest) Reset() { *x = MachineSetupRequest{} - mi := &file_nico_proto_msgTypes[316] + mi := &file_nico_proto_msgTypes[318] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25649,7 +25771,7 @@ func (x *MachineSetupRequest) String() string { func (*MachineSetupRequest) ProtoMessage() {} func (x *MachineSetupRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[316] + mi := &file_nico_proto_msgTypes[318] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25662,7 +25784,7 @@ func (x *MachineSetupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineSetupRequest.ProtoReflect.Descriptor instead. func (*MachineSetupRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{316} + return file_nico_proto_rawDescGZIP(), []int{318} } func (x *MachineSetupRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -25694,7 +25816,7 @@ type MachineSetupResponse struct { func (x *MachineSetupResponse) Reset() { *x = MachineSetupResponse{} - mi := &file_nico_proto_msgTypes[317] + mi := &file_nico_proto_msgTypes[319] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25706,7 +25828,7 @@ func (x *MachineSetupResponse) String() string { func (*MachineSetupResponse) ProtoMessage() {} func (x *MachineSetupResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[317] + mi := &file_nico_proto_msgTypes[319] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25719,7 +25841,7 @@ func (x *MachineSetupResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineSetupResponse.ProtoReflect.Descriptor instead. func (*MachineSetupResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{317} + return file_nico_proto_rawDescGZIP(), []int{319} } type SetDpuFirstBootOrderRequest struct { @@ -25733,7 +25855,7 @@ type SetDpuFirstBootOrderRequest struct { func (x *SetDpuFirstBootOrderRequest) Reset() { *x = SetDpuFirstBootOrderRequest{} - mi := &file_nico_proto_msgTypes[318] + mi := &file_nico_proto_msgTypes[320] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25745,7 +25867,7 @@ func (x *SetDpuFirstBootOrderRequest) String() string { func (*SetDpuFirstBootOrderRequest) ProtoMessage() {} func (x *SetDpuFirstBootOrderRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[318] + mi := &file_nico_proto_msgTypes[320] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25758,7 +25880,7 @@ func (x *SetDpuFirstBootOrderRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetDpuFirstBootOrderRequest.ProtoReflect.Descriptor instead. func (*SetDpuFirstBootOrderRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{318} + return file_nico_proto_rawDescGZIP(), []int{320} } func (x *SetDpuFirstBootOrderRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -25790,7 +25912,7 @@ type SetDpuFirstBootOrderResponse struct { func (x *SetDpuFirstBootOrderResponse) Reset() { *x = SetDpuFirstBootOrderResponse{} - mi := &file_nico_proto_msgTypes[319] + mi := &file_nico_proto_msgTypes[321] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25802,7 +25924,7 @@ func (x *SetDpuFirstBootOrderResponse) String() string { func (*SetDpuFirstBootOrderResponse) ProtoMessage() {} func (x *SetDpuFirstBootOrderResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[319] + mi := &file_nico_proto_msgTypes[321] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25815,7 +25937,7 @@ func (x *SetDpuFirstBootOrderResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SetDpuFirstBootOrderResponse.ProtoReflect.Descriptor instead. func (*SetDpuFirstBootOrderResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{319} + return file_nico_proto_rawDescGZIP(), []int{321} } // Must provide either machine_id or ip/mac pair @@ -25829,7 +25951,7 @@ type AdminRebootRequest struct { func (x *AdminRebootRequest) Reset() { *x = AdminRebootRequest{} - mi := &file_nico_proto_msgTypes[320] + mi := &file_nico_proto_msgTypes[322] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25841,7 +25963,7 @@ func (x *AdminRebootRequest) String() string { func (*AdminRebootRequest) ProtoMessage() {} func (x *AdminRebootRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[320] + mi := &file_nico_proto_msgTypes[322] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25854,7 +25976,7 @@ func (x *AdminRebootRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminRebootRequest.ProtoReflect.Descriptor instead. func (*AdminRebootRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{320} + return file_nico_proto_rawDescGZIP(), []int{322} } func (x *AdminRebootRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -25879,7 +26001,7 @@ type AdminRebootResponse struct { func (x *AdminRebootResponse) Reset() { *x = AdminRebootResponse{} - mi := &file_nico_proto_msgTypes[321] + mi := &file_nico_proto_msgTypes[323] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25891,7 +26013,7 @@ func (x *AdminRebootResponse) String() string { func (*AdminRebootResponse) ProtoMessage() {} func (x *AdminRebootResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[321] + mi := &file_nico_proto_msgTypes[323] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25904,7 +26026,7 @@ func (x *AdminRebootResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminRebootResponse.ProtoReflect.Descriptor instead. func (*AdminRebootResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{321} + return file_nico_proto_rawDescGZIP(), []int{323} } // Must provide either machine_id or ip/mac pair @@ -25921,7 +26043,7 @@ type AdminBmcResetRequest struct { func (x *AdminBmcResetRequest) Reset() { *x = AdminBmcResetRequest{} - mi := &file_nico_proto_msgTypes[322] + mi := &file_nico_proto_msgTypes[324] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25933,7 +26055,7 @@ func (x *AdminBmcResetRequest) String() string { func (*AdminBmcResetRequest) ProtoMessage() {} func (x *AdminBmcResetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[322] + mi := &file_nico_proto_msgTypes[324] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25946,7 +26068,7 @@ func (x *AdminBmcResetRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminBmcResetRequest.ProtoReflect.Descriptor instead. func (*AdminBmcResetRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{322} + return file_nico_proto_rawDescGZIP(), []int{324} } func (x *AdminBmcResetRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -25978,7 +26100,7 @@ type AdminBmcResetResponse struct { func (x *AdminBmcResetResponse) Reset() { *x = AdminBmcResetResponse{} - mi := &file_nico_proto_msgTypes[323] + mi := &file_nico_proto_msgTypes[325] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25990,7 +26112,7 @@ func (x *AdminBmcResetResponse) String() string { func (*AdminBmcResetResponse) ProtoMessage() {} func (x *AdminBmcResetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[323] + mi := &file_nico_proto_msgTypes[325] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26003,7 +26125,7 @@ func (x *AdminBmcResetResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminBmcResetResponse.ProtoReflect.Descriptor instead. func (*AdminBmcResetResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{323} + return file_nico_proto_rawDescGZIP(), []int{325} } type EnableInfiniteBootRequest struct { @@ -26016,7 +26138,7 @@ type EnableInfiniteBootRequest struct { func (x *EnableInfiniteBootRequest) Reset() { *x = EnableInfiniteBootRequest{} - mi := &file_nico_proto_msgTypes[324] + mi := &file_nico_proto_msgTypes[326] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26028,7 +26150,7 @@ func (x *EnableInfiniteBootRequest) String() string { func (*EnableInfiniteBootRequest) ProtoMessage() {} func (x *EnableInfiniteBootRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[324] + mi := &file_nico_proto_msgTypes[326] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26041,7 +26163,7 @@ func (x *EnableInfiniteBootRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use EnableInfiniteBootRequest.ProtoReflect.Descriptor instead. func (*EnableInfiniteBootRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{324} + return file_nico_proto_rawDescGZIP(), []int{326} } func (x *EnableInfiniteBootRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -26066,7 +26188,7 @@ type EnableInfiniteBootResponse struct { func (x *EnableInfiniteBootResponse) Reset() { *x = EnableInfiniteBootResponse{} - mi := &file_nico_proto_msgTypes[325] + mi := &file_nico_proto_msgTypes[327] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26078,7 +26200,7 @@ func (x *EnableInfiniteBootResponse) String() string { func (*EnableInfiniteBootResponse) ProtoMessage() {} func (x *EnableInfiniteBootResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[325] + mi := &file_nico_proto_msgTypes[327] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26091,7 +26213,7 @@ func (x *EnableInfiniteBootResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use EnableInfiniteBootResponse.ProtoReflect.Descriptor instead. func (*EnableInfiniteBootResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{325} + return file_nico_proto_rawDescGZIP(), []int{327} } type IsInfiniteBootEnabledRequest struct { @@ -26104,7 +26226,7 @@ type IsInfiniteBootEnabledRequest struct { func (x *IsInfiniteBootEnabledRequest) Reset() { *x = IsInfiniteBootEnabledRequest{} - mi := &file_nico_proto_msgTypes[326] + mi := &file_nico_proto_msgTypes[328] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26116,7 +26238,7 @@ func (x *IsInfiniteBootEnabledRequest) String() string { func (*IsInfiniteBootEnabledRequest) ProtoMessage() {} func (x *IsInfiniteBootEnabledRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[326] + mi := &file_nico_proto_msgTypes[328] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26129,7 +26251,7 @@ func (x *IsInfiniteBootEnabledRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use IsInfiniteBootEnabledRequest.ProtoReflect.Descriptor instead. func (*IsInfiniteBootEnabledRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{326} + return file_nico_proto_rawDescGZIP(), []int{328} } func (x *IsInfiniteBootEnabledRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -26155,7 +26277,7 @@ type IsInfiniteBootEnabledResponse struct { func (x *IsInfiniteBootEnabledResponse) Reset() { *x = IsInfiniteBootEnabledResponse{} - mi := &file_nico_proto_msgTypes[327] + mi := &file_nico_proto_msgTypes[329] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26167,7 +26289,7 @@ func (x *IsInfiniteBootEnabledResponse) String() string { func (*IsInfiniteBootEnabledResponse) ProtoMessage() {} func (x *IsInfiniteBootEnabledResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[327] + mi := &file_nico_proto_msgTypes[329] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26180,7 +26302,7 @@ func (x *IsInfiniteBootEnabledResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use IsInfiniteBootEnabledResponse.ProtoReflect.Descriptor instead. func (*IsInfiniteBootEnabledResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{327} + return file_nico_proto_rawDescGZIP(), []int{329} } func (x *IsInfiniteBootEnabledResponse) GetIsEnabled() bool { @@ -26204,7 +26326,7 @@ type BMCMetaDataGetRequest struct { func (x *BMCMetaDataGetRequest) Reset() { *x = BMCMetaDataGetRequest{} - mi := &file_nico_proto_msgTypes[328] + mi := &file_nico_proto_msgTypes[330] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26216,7 +26338,7 @@ func (x *BMCMetaDataGetRequest) String() string { func (*BMCMetaDataGetRequest) ProtoMessage() {} func (x *BMCMetaDataGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[328] + mi := &file_nico_proto_msgTypes[330] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26229,7 +26351,7 @@ func (x *BMCMetaDataGetRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BMCMetaDataGetRequest.ProtoReflect.Descriptor instead. func (*BMCMetaDataGetRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{328} + return file_nico_proto_rawDescGZIP(), []int{330} } func (x *BMCMetaDataGetRequest) GetMachineId() *MachineId { @@ -26276,7 +26398,7 @@ type BMCMetaDataGetResponse struct { func (x *BMCMetaDataGetResponse) Reset() { *x = BMCMetaDataGetResponse{} - mi := &file_nico_proto_msgTypes[329] + mi := &file_nico_proto_msgTypes[331] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26288,7 +26410,7 @@ func (x *BMCMetaDataGetResponse) String() string { func (*BMCMetaDataGetResponse) ProtoMessage() {} func (x *BMCMetaDataGetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[329] + mi := &file_nico_proto_msgTypes[331] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26301,7 +26423,7 @@ func (x *BMCMetaDataGetResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use BMCMetaDataGetResponse.ProtoReflect.Descriptor instead. func (*BMCMetaDataGetResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{329} + return file_nico_proto_rawDescGZIP(), []int{331} } func (x *BMCMetaDataGetResponse) GetIp() string { @@ -26371,7 +26493,7 @@ type MachineCredentialsUpdateRequest struct { func (x *MachineCredentialsUpdateRequest) Reset() { *x = MachineCredentialsUpdateRequest{} - mi := &file_nico_proto_msgTypes[330] + mi := &file_nico_proto_msgTypes[332] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26383,7 +26505,7 @@ func (x *MachineCredentialsUpdateRequest) String() string { func (*MachineCredentialsUpdateRequest) ProtoMessage() {} func (x *MachineCredentialsUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[330] + mi := &file_nico_proto_msgTypes[332] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26396,7 +26518,7 @@ func (x *MachineCredentialsUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCredentialsUpdateRequest.ProtoReflect.Descriptor instead. func (*MachineCredentialsUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{330} + return file_nico_proto_rawDescGZIP(), []int{332} } func (x *MachineCredentialsUpdateRequest) GetMachineId() *MachineId { @@ -26428,7 +26550,7 @@ type MachineCredentialsUpdateResponse struct { func (x *MachineCredentialsUpdateResponse) Reset() { *x = MachineCredentialsUpdateResponse{} - mi := &file_nico_proto_msgTypes[331] + mi := &file_nico_proto_msgTypes[333] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26440,7 +26562,7 @@ func (x *MachineCredentialsUpdateResponse) String() string { func (*MachineCredentialsUpdateResponse) ProtoMessage() {} func (x *MachineCredentialsUpdateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[331] + mi := &file_nico_proto_msgTypes[333] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26453,7 +26575,7 @@ func (x *MachineCredentialsUpdateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCredentialsUpdateResponse.ProtoReflect.Descriptor instead. func (*MachineCredentialsUpdateResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{331} + return file_nico_proto_rawDescGZIP(), []int{333} } type ForgeAgentControlRequest struct { @@ -26465,7 +26587,7 @@ type ForgeAgentControlRequest struct { func (x *ForgeAgentControlRequest) Reset() { *x = ForgeAgentControlRequest{} - mi := &file_nico_proto_msgTypes[332] + mi := &file_nico_proto_msgTypes[334] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26477,7 +26599,7 @@ func (x *ForgeAgentControlRequest) String() string { func (*ForgeAgentControlRequest) ProtoMessage() {} func (x *ForgeAgentControlRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[332] + mi := &file_nico_proto_msgTypes[334] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26490,7 +26612,7 @@ func (x *ForgeAgentControlRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ForgeAgentControlRequest.ProtoReflect.Descriptor instead. func (*ForgeAgentControlRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{332} + return file_nico_proto_rawDescGZIP(), []int{334} } func (x *ForgeAgentControlRequest) GetMachineId() *MachineId { @@ -26523,7 +26645,7 @@ type ForgeAgentControlResponse struct { func (x *ForgeAgentControlResponse) Reset() { *x = ForgeAgentControlResponse{} - mi := &file_nico_proto_msgTypes[333] + mi := &file_nico_proto_msgTypes[335] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26535,7 +26657,7 @@ func (x *ForgeAgentControlResponse) String() string { func (*ForgeAgentControlResponse) ProtoMessage() {} func (x *ForgeAgentControlResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[333] + mi := &file_nico_proto_msgTypes[335] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26548,7 +26670,7 @@ func (x *ForgeAgentControlResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ForgeAgentControlResponse.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333} + return file_nico_proto_rawDescGZIP(), []int{335} } func (x *ForgeAgentControlResponse) GetLegacyAction() ForgeAgentControlResponse_LegacyAction { @@ -26742,7 +26864,7 @@ type MachineDiscoveryInfo struct { func (x *MachineDiscoveryInfo) Reset() { *x = MachineDiscoveryInfo{} - mi := &file_nico_proto_msgTypes[334] + mi := &file_nico_proto_msgTypes[336] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26754,7 +26876,7 @@ func (x *MachineDiscoveryInfo) String() string { func (*MachineDiscoveryInfo) ProtoMessage() {} func (x *MachineDiscoveryInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[334] + mi := &file_nico_proto_msgTypes[336] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26767,7 +26889,7 @@ func (x *MachineDiscoveryInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineDiscoveryInfo.ProtoReflect.Descriptor instead. func (*MachineDiscoveryInfo) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{334} + return file_nico_proto_rawDescGZIP(), []int{336} } func (x *MachineDiscoveryInfo) GetMachineInterfaceId() *MachineInterfaceId { @@ -26833,7 +26955,7 @@ type MachineDiscoveryCompletedRequest struct { func (x *MachineDiscoveryCompletedRequest) Reset() { *x = MachineDiscoveryCompletedRequest{} - mi := &file_nico_proto_msgTypes[335] + mi := &file_nico_proto_msgTypes[337] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26845,7 +26967,7 @@ func (x *MachineDiscoveryCompletedRequest) String() string { func (*MachineDiscoveryCompletedRequest) ProtoMessage() {} func (x *MachineDiscoveryCompletedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[335] + mi := &file_nico_proto_msgTypes[337] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26858,7 +26980,7 @@ func (x *MachineDiscoveryCompletedRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineDiscoveryCompletedRequest.ProtoReflect.Descriptor instead. func (*MachineDiscoveryCompletedRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{335} + return file_nico_proto_rawDescGZIP(), []int{337} } func (x *MachineDiscoveryCompletedRequest) GetMachineId() *MachineId { @@ -26888,7 +27010,7 @@ type MachineCleanupInfo struct { func (x *MachineCleanupInfo) Reset() { *x = MachineCleanupInfo{} - mi := &file_nico_proto_msgTypes[336] + mi := &file_nico_proto_msgTypes[338] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26900,7 +27022,7 @@ func (x *MachineCleanupInfo) String() string { func (*MachineCleanupInfo) ProtoMessage() {} func (x *MachineCleanupInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[336] + mi := &file_nico_proto_msgTypes[338] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26913,7 +27035,7 @@ func (x *MachineCleanupInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCleanupInfo.ProtoReflect.Descriptor instead. func (*MachineCleanupInfo) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{336} + return file_nico_proto_rawDescGZIP(), []int{338} } func (x *MachineCleanupInfo) GetMachineId() *MachineId { @@ -26976,7 +27098,7 @@ type MachineCertificate struct { func (x *MachineCertificate) Reset() { *x = MachineCertificate{} - mi := &file_nico_proto_msgTypes[337] + mi := &file_nico_proto_msgTypes[339] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26988,7 +27110,7 @@ func (x *MachineCertificate) String() string { func (*MachineCertificate) ProtoMessage() {} func (x *MachineCertificate) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[337] + mi := &file_nico_proto_msgTypes[339] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27001,7 +27123,7 @@ func (x *MachineCertificate) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCertificate.ProtoReflect.Descriptor instead. func (*MachineCertificate) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{337} + return file_nico_proto_rawDescGZIP(), []int{339} } func (x *MachineCertificate) GetPublicKey() []byte { @@ -27033,7 +27155,7 @@ type MachineCertificateRenewRequest struct { func (x *MachineCertificateRenewRequest) Reset() { *x = MachineCertificateRenewRequest{} - mi := &file_nico_proto_msgTypes[338] + mi := &file_nico_proto_msgTypes[340] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27045,7 +27167,7 @@ func (x *MachineCertificateRenewRequest) String() string { func (*MachineCertificateRenewRequest) ProtoMessage() {} func (x *MachineCertificateRenewRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[338] + mi := &file_nico_proto_msgTypes[340] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27058,7 +27180,7 @@ func (x *MachineCertificateRenewRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCertificateRenewRequest.ProtoReflect.Descriptor instead. func (*MachineCertificateRenewRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{338} + return file_nico_proto_rawDescGZIP(), []int{340} } type MachineCertificateResult struct { @@ -27071,7 +27193,7 @@ type MachineCertificateResult struct { func (x *MachineCertificateResult) Reset() { *x = MachineCertificateResult{} - mi := &file_nico_proto_msgTypes[339] + mi := &file_nico_proto_msgTypes[341] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27083,7 +27205,7 @@ func (x *MachineCertificateResult) String() string { func (*MachineCertificateResult) ProtoMessage() {} func (x *MachineCertificateResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[339] + mi := &file_nico_proto_msgTypes[341] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27096,7 +27218,7 @@ func (x *MachineCertificateResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCertificateResult.ProtoReflect.Descriptor instead. func (*MachineCertificateResult) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{339} + return file_nico_proto_rawDescGZIP(), []int{341} } func (x *MachineCertificateResult) GetMachineCertificate() *MachineCertificate { @@ -27122,7 +27244,7 @@ type MachineDiscoveryResult struct { func (x *MachineDiscoveryResult) Reset() { *x = MachineDiscoveryResult{} - mi := &file_nico_proto_msgTypes[340] + mi := &file_nico_proto_msgTypes[342] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27134,7 +27256,7 @@ func (x *MachineDiscoveryResult) String() string { func (*MachineDiscoveryResult) ProtoMessage() {} func (x *MachineDiscoveryResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[340] + mi := &file_nico_proto_msgTypes[342] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27147,7 +27269,7 @@ func (x *MachineDiscoveryResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineDiscoveryResult.ProtoReflect.Descriptor instead. func (*MachineDiscoveryResult) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{340} + return file_nico_proto_rawDescGZIP(), []int{342} } func (x *MachineDiscoveryResult) GetMachineId() *MachineId { @@ -27186,7 +27308,7 @@ type MachineDiscoveryCompletedResponse struct { func (x *MachineDiscoveryCompletedResponse) Reset() { *x = MachineDiscoveryCompletedResponse{} - mi := &file_nico_proto_msgTypes[341] + mi := &file_nico_proto_msgTypes[343] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27198,7 +27320,7 @@ func (x *MachineDiscoveryCompletedResponse) String() string { func (*MachineDiscoveryCompletedResponse) ProtoMessage() {} func (x *MachineDiscoveryCompletedResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[341] + mi := &file_nico_proto_msgTypes[343] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27211,7 +27333,7 @@ func (x *MachineDiscoveryCompletedResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MachineDiscoveryCompletedResponse.ProtoReflect.Descriptor instead. func (*MachineDiscoveryCompletedResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{341} + return file_nico_proto_rawDescGZIP(), []int{343} } type MachineCleanupResult struct { @@ -27222,7 +27344,7 @@ type MachineCleanupResult struct { func (x *MachineCleanupResult) Reset() { *x = MachineCleanupResult{} - mi := &file_nico_proto_msgTypes[342] + mi := &file_nico_proto_msgTypes[344] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27234,7 +27356,7 @@ func (x *MachineCleanupResult) String() string { func (*MachineCleanupResult) ProtoMessage() {} func (x *MachineCleanupResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[342] + mi := &file_nico_proto_msgTypes[344] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27247,7 +27369,7 @@ func (x *MachineCleanupResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCleanupResult.ProtoReflect.Descriptor instead. func (*MachineCleanupResult) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{342} + return file_nico_proto_rawDescGZIP(), []int{344} } type ForgeScoutErrorReport struct { @@ -27265,7 +27387,7 @@ type ForgeScoutErrorReport struct { func (x *ForgeScoutErrorReport) Reset() { *x = ForgeScoutErrorReport{} - mi := &file_nico_proto_msgTypes[343] + mi := &file_nico_proto_msgTypes[345] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27277,7 +27399,7 @@ func (x *ForgeScoutErrorReport) String() string { func (*ForgeScoutErrorReport) ProtoMessage() {} func (x *ForgeScoutErrorReport) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[343] + mi := &file_nico_proto_msgTypes[345] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27290,7 +27412,7 @@ func (x *ForgeScoutErrorReport) ProtoReflect() protoreflect.Message { // Deprecated: Use ForgeScoutErrorReport.ProtoReflect.Descriptor instead. func (*ForgeScoutErrorReport) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{343} + return file_nico_proto_rawDescGZIP(), []int{345} } func (x *ForgeScoutErrorReport) GetMachineId() *MachineId { @@ -27322,7 +27444,7 @@ type ForgeScoutErrorReportResult struct { func (x *ForgeScoutErrorReportResult) Reset() { *x = ForgeScoutErrorReportResult{} - mi := &file_nico_proto_msgTypes[344] + mi := &file_nico_proto_msgTypes[346] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27334,7 +27456,7 @@ func (x *ForgeScoutErrorReportResult) String() string { func (*ForgeScoutErrorReportResult) ProtoMessage() {} func (x *ForgeScoutErrorReportResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[344] + mi := &file_nico_proto_msgTypes[346] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27347,7 +27469,7 @@ func (x *ForgeScoutErrorReportResult) ProtoReflect() protoreflect.Message { // Deprecated: Use ForgeScoutErrorReportResult.ProtoReflect.Descriptor instead. func (*ForgeScoutErrorReportResult) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{344} + return file_nico_proto_rawDescGZIP(), []int{346} } type PxeInstructionRequest struct { @@ -27371,7 +27493,7 @@ type PxeInstructionRequest struct { func (x *PxeInstructionRequest) Reset() { *x = PxeInstructionRequest{} - mi := &file_nico_proto_msgTypes[345] + mi := &file_nico_proto_msgTypes[347] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27383,7 +27505,7 @@ func (x *PxeInstructionRequest) String() string { func (*PxeInstructionRequest) ProtoMessage() {} func (x *PxeInstructionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[345] + mi := &file_nico_proto_msgTypes[347] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27396,7 +27518,7 @@ func (x *PxeInstructionRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PxeInstructionRequest.ProtoReflect.Descriptor instead. func (*PxeInstructionRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{345} + return file_nico_proto_rawDescGZIP(), []int{347} } func (x *PxeInstructionRequest) GetArch() MachineArchitecture { @@ -27444,7 +27566,7 @@ type PxeInstructions struct { func (x *PxeInstructions) Reset() { *x = PxeInstructions{} - mi := &file_nico_proto_msgTypes[346] + mi := &file_nico_proto_msgTypes[348] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27456,7 +27578,7 @@ func (x *PxeInstructions) String() string { func (*PxeInstructions) ProtoMessage() {} func (x *PxeInstructions) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[346] + mi := &file_nico_proto_msgTypes[348] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27469,7 +27591,7 @@ func (x *PxeInstructions) ProtoReflect() protoreflect.Message { // Deprecated: Use PxeInstructions.ProtoReflect.Descriptor instead. func (*PxeInstructions) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{346} + return file_nico_proto_rawDescGZIP(), []int{348} } func (x *PxeInstructions) GetPxeScript() string { @@ -27527,7 +27649,7 @@ type CloudInitDiscoveryInstructions struct { func (x *CloudInitDiscoveryInstructions) Reset() { *x = CloudInitDiscoveryInstructions{} - mi := &file_nico_proto_msgTypes[347] + mi := &file_nico_proto_msgTypes[349] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27539,7 +27661,7 @@ func (x *CloudInitDiscoveryInstructions) String() string { func (*CloudInitDiscoveryInstructions) ProtoMessage() {} func (x *CloudInitDiscoveryInstructions) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[347] + mi := &file_nico_proto_msgTypes[349] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27552,7 +27674,7 @@ func (x *CloudInitDiscoveryInstructions) ProtoReflect() protoreflect.Message { // Deprecated: Use CloudInitDiscoveryInstructions.ProtoReflect.Descriptor instead. func (*CloudInitDiscoveryInstructions) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{347} + return file_nico_proto_rawDescGZIP(), []int{349} } func (x *CloudInitDiscoveryInstructions) GetMachineInterface() *MachineInterface { @@ -27636,7 +27758,7 @@ type CloudInitMetaData struct { func (x *CloudInitMetaData) Reset() { *x = CloudInitMetaData{} - mi := &file_nico_proto_msgTypes[348] + mi := &file_nico_proto_msgTypes[350] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27648,7 +27770,7 @@ func (x *CloudInitMetaData) String() string { func (*CloudInitMetaData) ProtoMessage() {} func (x *CloudInitMetaData) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[348] + mi := &file_nico_proto_msgTypes[350] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27661,7 +27783,7 @@ func (x *CloudInitMetaData) ProtoReflect() protoreflect.Message { // Deprecated: Use CloudInitMetaData.ProtoReflect.Descriptor instead. func (*CloudInitMetaData) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{348} + return file_nico_proto_rawDescGZIP(), []int{350} } func (x *CloudInitMetaData) GetInstanceId() string { @@ -27694,7 +27816,7 @@ type CloudInitInstructionsRequest struct { func (x *CloudInitInstructionsRequest) Reset() { *x = CloudInitInstructionsRequest{} - mi := &file_nico_proto_msgTypes[349] + mi := &file_nico_proto_msgTypes[351] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27706,7 +27828,7 @@ func (x *CloudInitInstructionsRequest) String() string { func (*CloudInitInstructionsRequest) ProtoMessage() {} func (x *CloudInitInstructionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[349] + mi := &file_nico_proto_msgTypes[351] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27719,7 +27841,7 @@ func (x *CloudInitInstructionsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CloudInitInstructionsRequest.ProtoReflect.Descriptor instead. func (*CloudInitInstructionsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{349} + return file_nico_proto_rawDescGZIP(), []int{351} } func (x *CloudInitInstructionsRequest) GetIp() string { @@ -27746,7 +27868,7 @@ type CloudInitInstructions struct { func (x *CloudInitInstructions) Reset() { *x = CloudInitInstructions{} - mi := &file_nico_proto_msgTypes[350] + mi := &file_nico_proto_msgTypes[352] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27758,7 +27880,7 @@ func (x *CloudInitInstructions) String() string { func (*CloudInitInstructions) ProtoMessage() {} func (x *CloudInitInstructions) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[350] + mi := &file_nico_proto_msgTypes[352] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27771,7 +27893,7 @@ func (x *CloudInitInstructions) ProtoReflect() protoreflect.Message { // Deprecated: Use CloudInitInstructions.ProtoReflect.Descriptor instead. func (*CloudInitInstructions) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{350} + return file_nico_proto_rawDescGZIP(), []int{352} } func (x *CloudInitInstructions) GetCustomCloudInit() string { @@ -27839,7 +27961,7 @@ type DpuNetworkStatus struct { func (x *DpuNetworkStatus) Reset() { *x = DpuNetworkStatus{} - mi := &file_nico_proto_msgTypes[351] + mi := &file_nico_proto_msgTypes[353] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27851,7 +27973,7 @@ func (x *DpuNetworkStatus) String() string { func (*DpuNetworkStatus) ProtoMessage() {} func (x *DpuNetworkStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[351] + mi := &file_nico_proto_msgTypes[353] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27864,7 +27986,7 @@ func (x *DpuNetworkStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuNetworkStatus.ProtoReflect.Descriptor instead. func (*DpuNetworkStatus) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{351} + return file_nico_proto_rawDescGZIP(), []int{353} } func (x *DpuNetworkStatus) GetDpuMachineId() *MachineId { @@ -27982,7 +28104,7 @@ type LastDhcpRequest struct { func (x *LastDhcpRequest) Reset() { *x = LastDhcpRequest{} - mi := &file_nico_proto_msgTypes[352] + mi := &file_nico_proto_msgTypes[354] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27994,7 +28116,7 @@ func (x *LastDhcpRequest) String() string { func (*LastDhcpRequest) ProtoMessage() {} func (x *LastDhcpRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[352] + mi := &file_nico_proto_msgTypes[354] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28007,7 +28129,7 @@ func (x *LastDhcpRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use LastDhcpRequest.ProtoReflect.Descriptor instead. func (*LastDhcpRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{352} + return file_nico_proto_rawDescGZIP(), []int{354} } func (x *LastDhcpRequest) GetHostInterfaceId() *MachineInterfaceId { @@ -28041,7 +28163,7 @@ type DpuExtensionServiceStatusObservation struct { func (x *DpuExtensionServiceStatusObservation) Reset() { *x = DpuExtensionServiceStatusObservation{} - mi := &file_nico_proto_msgTypes[353] + mi := &file_nico_proto_msgTypes[355] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28053,7 +28175,7 @@ func (x *DpuExtensionServiceStatusObservation) String() string { func (*DpuExtensionServiceStatusObservation) ProtoMessage() {} func (x *DpuExtensionServiceStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[353] + mi := &file_nico_proto_msgTypes[355] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28066,7 +28188,7 @@ func (x *DpuExtensionServiceStatusObservation) ProtoReflect() protoreflect.Messa // Deprecated: Use DpuExtensionServiceStatusObservation.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceStatusObservation) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{353} + return file_nico_proto_rawDescGZIP(), []int{355} } func (x *DpuExtensionServiceStatusObservation) GetServiceId() string { @@ -28137,7 +28259,7 @@ type DpuExtensionServiceComponent struct { func (x *DpuExtensionServiceComponent) Reset() { *x = DpuExtensionServiceComponent{} - mi := &file_nico_proto_msgTypes[354] + mi := &file_nico_proto_msgTypes[356] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28149,7 +28271,7 @@ func (x *DpuExtensionServiceComponent) String() string { func (*DpuExtensionServiceComponent) ProtoMessage() {} func (x *DpuExtensionServiceComponent) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[354] + mi := &file_nico_proto_msgTypes[356] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28162,7 +28284,7 @@ func (x *DpuExtensionServiceComponent) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuExtensionServiceComponent.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceComponent) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{354} + return file_nico_proto_rawDescGZIP(), []int{356} } func (x *DpuExtensionServiceComponent) GetName() string { @@ -28202,7 +28324,7 @@ type OptionalHealthReport struct { func (x *OptionalHealthReport) Reset() { *x = OptionalHealthReport{} - mi := &file_nico_proto_msgTypes[355] + mi := &file_nico_proto_msgTypes[357] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28214,7 +28336,7 @@ func (x *OptionalHealthReport) String() string { func (*OptionalHealthReport) ProtoMessage() {} func (x *OptionalHealthReport) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[355] + mi := &file_nico_proto_msgTypes[357] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28227,7 +28349,7 @@ func (x *OptionalHealthReport) ProtoReflect() protoreflect.Message { // Deprecated: Use OptionalHealthReport.ProtoReflect.Descriptor instead. func (*OptionalHealthReport) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{355} + return file_nico_proto_rawDescGZIP(), []int{357} } func (x *OptionalHealthReport) GetReport() *HealthReport { @@ -28247,7 +28369,7 @@ type HealthReportEntry struct { func (x *HealthReportEntry) Reset() { *x = HealthReportEntry{} - mi := &file_nico_proto_msgTypes[356] + mi := &file_nico_proto_msgTypes[358] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28259,7 +28381,7 @@ func (x *HealthReportEntry) String() string { func (*HealthReportEntry) ProtoMessage() {} func (x *HealthReportEntry) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[356] + mi := &file_nico_proto_msgTypes[358] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28272,7 +28394,7 @@ func (x *HealthReportEntry) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthReportEntry.ProtoReflect.Descriptor instead. func (*HealthReportEntry) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{356} + return file_nico_proto_rawDescGZIP(), []int{358} } func (x *HealthReportEntry) GetReport() *HealthReport { @@ -28300,7 +28422,7 @@ type InsertMachineHealthReportRequest struct { func (x *InsertMachineHealthReportRequest) Reset() { *x = InsertMachineHealthReportRequest{} - mi := &file_nico_proto_msgTypes[357] + mi := &file_nico_proto_msgTypes[359] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28312,7 +28434,7 @@ func (x *InsertMachineHealthReportRequest) String() string { func (*InsertMachineHealthReportRequest) ProtoMessage() {} func (x *InsertMachineHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[357] + mi := &file_nico_proto_msgTypes[359] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28325,7 +28447,7 @@ func (x *InsertMachineHealthReportRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertMachineHealthReportRequest.ProtoReflect.Descriptor instead. func (*InsertMachineHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{357} + return file_nico_proto_rawDescGZIP(), []int{359} } func (x *InsertMachineHealthReportRequest) GetMachineId() *MachineId { @@ -28353,7 +28475,7 @@ type InsertRackHealthReportRequest struct { func (x *InsertRackHealthReportRequest) Reset() { *x = InsertRackHealthReportRequest{} - mi := &file_nico_proto_msgTypes[358] + mi := &file_nico_proto_msgTypes[360] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28365,7 +28487,7 @@ func (x *InsertRackHealthReportRequest) String() string { func (*InsertRackHealthReportRequest) ProtoMessage() {} func (x *InsertRackHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[358] + mi := &file_nico_proto_msgTypes[360] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28378,7 +28500,7 @@ func (x *InsertRackHealthReportRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertRackHealthReportRequest.ProtoReflect.Descriptor instead. func (*InsertRackHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{358} + return file_nico_proto_rawDescGZIP(), []int{360} } func (x *InsertRackHealthReportRequest) GetRackId() *RackId { @@ -28406,7 +28528,7 @@ type RemoveRackHealthReportRequest struct { func (x *RemoveRackHealthReportRequest) Reset() { *x = RemoveRackHealthReportRequest{} - mi := &file_nico_proto_msgTypes[359] + mi := &file_nico_proto_msgTypes[361] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28418,7 +28540,7 @@ func (x *RemoveRackHealthReportRequest) String() string { func (*RemoveRackHealthReportRequest) ProtoMessage() {} func (x *RemoveRackHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[359] + mi := &file_nico_proto_msgTypes[361] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28431,7 +28553,7 @@ func (x *RemoveRackHealthReportRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveRackHealthReportRequest.ProtoReflect.Descriptor instead. func (*RemoveRackHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{359} + return file_nico_proto_rawDescGZIP(), []int{361} } func (x *RemoveRackHealthReportRequest) GetRackId() *RackId { @@ -28458,7 +28580,7 @@ type ListRackHealthReportsRequest struct { func (x *ListRackHealthReportsRequest) Reset() { *x = ListRackHealthReportsRequest{} - mi := &file_nico_proto_msgTypes[360] + mi := &file_nico_proto_msgTypes[362] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28470,7 +28592,7 @@ func (x *ListRackHealthReportsRequest) String() string { func (*ListRackHealthReportsRequest) ProtoMessage() {} func (x *ListRackHealthReportsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[360] + mi := &file_nico_proto_msgTypes[362] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28483,7 +28605,7 @@ func (x *ListRackHealthReportsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListRackHealthReportsRequest.ProtoReflect.Descriptor instead. func (*ListRackHealthReportsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{360} + return file_nico_proto_rawDescGZIP(), []int{362} } func (x *ListRackHealthReportsRequest) GetRackId() *RackId { @@ -28504,7 +28626,7 @@ type InsertSwitchHealthReportRequest struct { func (x *InsertSwitchHealthReportRequest) Reset() { *x = InsertSwitchHealthReportRequest{} - mi := &file_nico_proto_msgTypes[361] + mi := &file_nico_proto_msgTypes[363] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28516,7 +28638,7 @@ func (x *InsertSwitchHealthReportRequest) String() string { func (*InsertSwitchHealthReportRequest) ProtoMessage() {} func (x *InsertSwitchHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[361] + mi := &file_nico_proto_msgTypes[363] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28529,7 +28651,7 @@ func (x *InsertSwitchHealthReportRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertSwitchHealthReportRequest.ProtoReflect.Descriptor instead. func (*InsertSwitchHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{361} + return file_nico_proto_rawDescGZIP(), []int{363} } func (x *InsertSwitchHealthReportRequest) GetSwitchId() *SwitchId { @@ -28557,7 +28679,7 @@ type RemoveSwitchHealthReportRequest struct { func (x *RemoveSwitchHealthReportRequest) Reset() { *x = RemoveSwitchHealthReportRequest{} - mi := &file_nico_proto_msgTypes[362] + mi := &file_nico_proto_msgTypes[364] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28569,7 +28691,7 @@ func (x *RemoveSwitchHealthReportRequest) String() string { func (*RemoveSwitchHealthReportRequest) ProtoMessage() {} func (x *RemoveSwitchHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[362] + mi := &file_nico_proto_msgTypes[364] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28582,7 +28704,7 @@ func (x *RemoveSwitchHealthReportRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveSwitchHealthReportRequest.ProtoReflect.Descriptor instead. func (*RemoveSwitchHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{362} + return file_nico_proto_rawDescGZIP(), []int{364} } func (x *RemoveSwitchHealthReportRequest) GetSwitchId() *SwitchId { @@ -28609,7 +28731,7 @@ type ListSwitchHealthReportsRequest struct { func (x *ListSwitchHealthReportsRequest) Reset() { *x = ListSwitchHealthReportsRequest{} - mi := &file_nico_proto_msgTypes[363] + mi := &file_nico_proto_msgTypes[365] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28621,7 +28743,7 @@ func (x *ListSwitchHealthReportsRequest) String() string { func (*ListSwitchHealthReportsRequest) ProtoMessage() {} func (x *ListSwitchHealthReportsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[363] + mi := &file_nico_proto_msgTypes[365] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28634,7 +28756,7 @@ func (x *ListSwitchHealthReportsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSwitchHealthReportsRequest.ProtoReflect.Descriptor instead. func (*ListSwitchHealthReportsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{363} + return file_nico_proto_rawDescGZIP(), []int{365} } func (x *ListSwitchHealthReportsRequest) GetSwitchId() *SwitchId { @@ -28655,7 +28777,7 @@ type InsertPowerShelfHealthReportRequest struct { func (x *InsertPowerShelfHealthReportRequest) Reset() { *x = InsertPowerShelfHealthReportRequest{} - mi := &file_nico_proto_msgTypes[364] + mi := &file_nico_proto_msgTypes[366] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28667,7 +28789,7 @@ func (x *InsertPowerShelfHealthReportRequest) String() string { func (*InsertPowerShelfHealthReportRequest) ProtoMessage() {} func (x *InsertPowerShelfHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[364] + mi := &file_nico_proto_msgTypes[366] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28680,7 +28802,7 @@ func (x *InsertPowerShelfHealthReportRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use InsertPowerShelfHealthReportRequest.ProtoReflect.Descriptor instead. func (*InsertPowerShelfHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{364} + return file_nico_proto_rawDescGZIP(), []int{366} } func (x *InsertPowerShelfHealthReportRequest) GetPowerShelfId() *PowerShelfId { @@ -28708,7 +28830,7 @@ type RemovePowerShelfHealthReportRequest struct { func (x *RemovePowerShelfHealthReportRequest) Reset() { *x = RemovePowerShelfHealthReportRequest{} - mi := &file_nico_proto_msgTypes[365] + mi := &file_nico_proto_msgTypes[367] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28720,7 +28842,7 @@ func (x *RemovePowerShelfHealthReportRequest) String() string { func (*RemovePowerShelfHealthReportRequest) ProtoMessage() {} func (x *RemovePowerShelfHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[365] + mi := &file_nico_proto_msgTypes[367] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28733,7 +28855,7 @@ func (x *RemovePowerShelfHealthReportRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use RemovePowerShelfHealthReportRequest.ProtoReflect.Descriptor instead. func (*RemovePowerShelfHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{365} + return file_nico_proto_rawDescGZIP(), []int{367} } func (x *RemovePowerShelfHealthReportRequest) GetPowerShelfId() *PowerShelfId { @@ -28760,7 +28882,7 @@ type ListPowerShelfHealthReportsRequest struct { func (x *ListPowerShelfHealthReportsRequest) Reset() { *x = ListPowerShelfHealthReportsRequest{} - mi := &file_nico_proto_msgTypes[366] + mi := &file_nico_proto_msgTypes[368] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28772,7 +28894,7 @@ func (x *ListPowerShelfHealthReportsRequest) String() string { func (*ListPowerShelfHealthReportsRequest) ProtoMessage() {} func (x *ListPowerShelfHealthReportsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[366] + mi := &file_nico_proto_msgTypes[368] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28785,7 +28907,7 @@ func (x *ListPowerShelfHealthReportsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use ListPowerShelfHealthReportsRequest.ProtoReflect.Descriptor instead. func (*ListPowerShelfHealthReportsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{366} + return file_nico_proto_rawDescGZIP(), []int{368} } func (x *ListPowerShelfHealthReportsRequest) GetPowerShelfId() *PowerShelfId { @@ -28804,7 +28926,7 @@ type ListHealthReportResponse struct { func (x *ListHealthReportResponse) Reset() { *x = ListHealthReportResponse{} - mi := &file_nico_proto_msgTypes[367] + mi := &file_nico_proto_msgTypes[369] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28816,7 +28938,7 @@ func (x *ListHealthReportResponse) String() string { func (*ListHealthReportResponse) ProtoMessage() {} func (x *ListHealthReportResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[367] + mi := &file_nico_proto_msgTypes[369] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28829,7 +28951,7 @@ func (x *ListHealthReportResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListHealthReportResponse.ProtoReflect.Descriptor instead. func (*ListHealthReportResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{367} + return file_nico_proto_rawDescGZIP(), []int{369} } func (x *ListHealthReportResponse) GetHealthReportEntries() []*HealthReportEntry { @@ -28850,7 +28972,7 @@ type RemoveMachineHealthReportRequest struct { func (x *RemoveMachineHealthReportRequest) Reset() { *x = RemoveMachineHealthReportRequest{} - mi := &file_nico_proto_msgTypes[368] + mi := &file_nico_proto_msgTypes[370] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28862,7 +28984,7 @@ func (x *RemoveMachineHealthReportRequest) String() string { func (*RemoveMachineHealthReportRequest) ProtoMessage() {} func (x *RemoveMachineHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[368] + mi := &file_nico_proto_msgTypes[370] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28875,7 +28997,7 @@ func (x *RemoveMachineHealthReportRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveMachineHealthReportRequest.ProtoReflect.Descriptor instead. func (*RemoveMachineHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{368} + return file_nico_proto_rawDescGZIP(), []int{370} } func (x *RemoveMachineHealthReportRequest) GetMachineId() *MachineId { @@ -28902,7 +29024,7 @@ type ListNVLinkDomainHealthReportsRequest struct { func (x *ListNVLinkDomainHealthReportsRequest) Reset() { *x = ListNVLinkDomainHealthReportsRequest{} - mi := &file_nico_proto_msgTypes[369] + mi := &file_nico_proto_msgTypes[371] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28914,7 +29036,7 @@ func (x *ListNVLinkDomainHealthReportsRequest) String() string { func (*ListNVLinkDomainHealthReportsRequest) ProtoMessage() {} func (x *ListNVLinkDomainHealthReportsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[369] + mi := &file_nico_proto_msgTypes[371] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28927,7 +29049,7 @@ func (x *ListNVLinkDomainHealthReportsRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use ListNVLinkDomainHealthReportsRequest.ProtoReflect.Descriptor instead. func (*ListNVLinkDomainHealthReportsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{369} + return file_nico_proto_rawDescGZIP(), []int{371} } func (x *ListNVLinkDomainHealthReportsRequest) GetDomainId() *NVLinkDomainId { @@ -28948,7 +29070,7 @@ type InsertNVLinkDomainHealthReportRequest struct { func (x *InsertNVLinkDomainHealthReportRequest) Reset() { *x = InsertNVLinkDomainHealthReportRequest{} - mi := &file_nico_proto_msgTypes[370] + mi := &file_nico_proto_msgTypes[372] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28960,7 +29082,7 @@ func (x *InsertNVLinkDomainHealthReportRequest) String() string { func (*InsertNVLinkDomainHealthReportRequest) ProtoMessage() {} func (x *InsertNVLinkDomainHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[370] + mi := &file_nico_proto_msgTypes[372] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28973,7 +29095,7 @@ func (x *InsertNVLinkDomainHealthReportRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use InsertNVLinkDomainHealthReportRequest.ProtoReflect.Descriptor instead. func (*InsertNVLinkDomainHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{370} + return file_nico_proto_rawDescGZIP(), []int{372} } func (x *InsertNVLinkDomainHealthReportRequest) GetDomainId() *NVLinkDomainId { @@ -29001,7 +29123,7 @@ type RemoveNVLinkDomainHealthReportRequest struct { func (x *RemoveNVLinkDomainHealthReportRequest) Reset() { *x = RemoveNVLinkDomainHealthReportRequest{} - mi := &file_nico_proto_msgTypes[371] + mi := &file_nico_proto_msgTypes[373] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29013,7 +29135,7 @@ func (x *RemoveNVLinkDomainHealthReportRequest) String() string { func (*RemoveNVLinkDomainHealthReportRequest) ProtoMessage() {} func (x *RemoveNVLinkDomainHealthReportRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[371] + mi := &file_nico_proto_msgTypes[373] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29026,7 +29148,7 @@ func (x *RemoveNVLinkDomainHealthReportRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use RemoveNVLinkDomainHealthReportRequest.ProtoReflect.Descriptor instead. func (*RemoveNVLinkDomainHealthReportRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{371} + return file_nico_proto_rawDescGZIP(), []int{373} } func (x *RemoveNVLinkDomainHealthReportRequest) GetDomainId() *NVLinkDomainId { @@ -29082,7 +29204,7 @@ type InstanceInterfaceStatusObservation struct { func (x *InstanceInterfaceStatusObservation) Reset() { *x = InstanceInterfaceStatusObservation{} - mi := &file_nico_proto_msgTypes[372] + mi := &file_nico_proto_msgTypes[374] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29094,7 +29216,7 @@ func (x *InstanceInterfaceStatusObservation) String() string { func (*InstanceInterfaceStatusObservation) ProtoMessage() {} func (x *InstanceInterfaceStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[372] + mi := &file_nico_proto_msgTypes[374] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29107,7 +29229,7 @@ func (x *InstanceInterfaceStatusObservation) ProtoReflect() protoreflect.Message // Deprecated: Use InstanceInterfaceStatusObservation.ProtoReflect.Descriptor instead. func (*InstanceInterfaceStatusObservation) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{372} + return file_nico_proto_rawDescGZIP(), []int{374} } func (x *InstanceInterfaceStatusObservation) GetFunctionType() InterfaceFunctionType { @@ -29178,7 +29300,7 @@ type FabricInterfaceData struct { func (x *FabricInterfaceData) Reset() { *x = FabricInterfaceData{} - mi := &file_nico_proto_msgTypes[373] + mi := &file_nico_proto_msgTypes[375] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29190,7 +29312,7 @@ func (x *FabricInterfaceData) String() string { func (*FabricInterfaceData) ProtoMessage() {} func (x *FabricInterfaceData) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[373] + mi := &file_nico_proto_msgTypes[375] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29203,7 +29325,7 @@ func (x *FabricInterfaceData) ProtoReflect() protoreflect.Message { // Deprecated: Use FabricInterfaceData.ProtoReflect.Descriptor instead. func (*FabricInterfaceData) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{373} + return file_nico_proto_rawDescGZIP(), []int{375} } func (x *FabricInterfaceData) GetInterfaceName() string { @@ -29235,7 +29357,7 @@ type LinkData struct { func (x *LinkData) Reset() { *x = LinkData{} - mi := &file_nico_proto_msgTypes[374] + mi := &file_nico_proto_msgTypes[376] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29247,7 +29369,7 @@ func (x *LinkData) String() string { func (*LinkData) ProtoMessage() {} func (x *LinkData) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[374] + mi := &file_nico_proto_msgTypes[376] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29260,7 +29382,7 @@ func (x *LinkData) ProtoReflect() protoreflect.Message { // Deprecated: Use LinkData.ProtoReflect.Descriptor instead. func (*LinkData) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{374} + return file_nico_proto_rawDescGZIP(), []int{376} } func (x *LinkData) GetLinkType() string { @@ -29318,7 +29440,7 @@ type Tenant struct { func (x *Tenant) Reset() { *x = Tenant{} - mi := &file_nico_proto_msgTypes[375] + mi := &file_nico_proto_msgTypes[377] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29330,7 +29452,7 @@ func (x *Tenant) String() string { func (*Tenant) ProtoMessage() {} func (x *Tenant) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[375] + mi := &file_nico_proto_msgTypes[377] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29343,7 +29465,7 @@ func (x *Tenant) ProtoReflect() protoreflect.Message { // Deprecated: Use Tenant.ProtoReflect.Descriptor instead. func (*Tenant) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{375} + return file_nico_proto_rawDescGZIP(), []int{377} } func (x *Tenant) GetOrganizationId() string { @@ -29386,7 +29508,7 @@ type CreateTenantRequest struct { func (x *CreateTenantRequest) Reset() { *x = CreateTenantRequest{} - mi := &file_nico_proto_msgTypes[376] + mi := &file_nico_proto_msgTypes[378] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29398,7 +29520,7 @@ func (x *CreateTenantRequest) String() string { func (*CreateTenantRequest) ProtoMessage() {} func (x *CreateTenantRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[376] + mi := &file_nico_proto_msgTypes[378] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29411,7 +29533,7 @@ func (x *CreateTenantRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateTenantRequest.ProtoReflect.Descriptor instead. func (*CreateTenantRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{376} + return file_nico_proto_rawDescGZIP(), []int{378} } func (x *CreateTenantRequest) GetOrganizationId() string { @@ -29444,7 +29566,7 @@ type CreateTenantResponse struct { func (x *CreateTenantResponse) Reset() { *x = CreateTenantResponse{} - mi := &file_nico_proto_msgTypes[377] + mi := &file_nico_proto_msgTypes[379] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29456,7 +29578,7 @@ func (x *CreateTenantResponse) String() string { func (*CreateTenantResponse) ProtoMessage() {} func (x *CreateTenantResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[377] + mi := &file_nico_proto_msgTypes[379] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29469,7 +29591,7 @@ func (x *CreateTenantResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateTenantResponse.ProtoReflect.Descriptor instead. func (*CreateTenantResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{377} + return file_nico_proto_rawDescGZIP(), []int{379} } func (x *CreateTenantResponse) GetTenant() *Tenant { @@ -29494,7 +29616,7 @@ type UpdateTenantRequest struct { func (x *UpdateTenantRequest) Reset() { *x = UpdateTenantRequest{} - mi := &file_nico_proto_msgTypes[378] + mi := &file_nico_proto_msgTypes[380] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29506,7 +29628,7 @@ func (x *UpdateTenantRequest) String() string { func (*UpdateTenantRequest) ProtoMessage() {} func (x *UpdateTenantRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[378] + mi := &file_nico_proto_msgTypes[380] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29519,7 +29641,7 @@ func (x *UpdateTenantRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateTenantRequest.ProtoReflect.Descriptor instead. func (*UpdateTenantRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{378} + return file_nico_proto_rawDescGZIP(), []int{380} } func (x *UpdateTenantRequest) GetOrganizationId() string { @@ -29560,7 +29682,7 @@ type UpdateTenantResponse struct { func (x *UpdateTenantResponse) Reset() { *x = UpdateTenantResponse{} - mi := &file_nico_proto_msgTypes[379] + mi := &file_nico_proto_msgTypes[381] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29572,7 +29694,7 @@ func (x *UpdateTenantResponse) String() string { func (*UpdateTenantResponse) ProtoMessage() {} func (x *UpdateTenantResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[379] + mi := &file_nico_proto_msgTypes[381] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29585,7 +29707,7 @@ func (x *UpdateTenantResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateTenantResponse.ProtoReflect.Descriptor instead. func (*UpdateTenantResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{379} + return file_nico_proto_rawDescGZIP(), []int{381} } func (x *UpdateTenantResponse) GetTenant() *Tenant { @@ -29604,7 +29726,7 @@ type FindTenantRequest struct { func (x *FindTenantRequest) Reset() { *x = FindTenantRequest{} - mi := &file_nico_proto_msgTypes[380] + mi := &file_nico_proto_msgTypes[382] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29616,7 +29738,7 @@ func (x *FindTenantRequest) String() string { func (*FindTenantRequest) ProtoMessage() {} func (x *FindTenantRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[380] + mi := &file_nico_proto_msgTypes[382] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29629,7 +29751,7 @@ func (x *FindTenantRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FindTenantRequest.ProtoReflect.Descriptor instead. func (*FindTenantRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{380} + return file_nico_proto_rawDescGZIP(), []int{382} } func (x *FindTenantRequest) GetTenantOrganizationId() string { @@ -29648,7 +29770,7 @@ type FindTenantResponse struct { func (x *FindTenantResponse) Reset() { *x = FindTenantResponse{} - mi := &file_nico_proto_msgTypes[381] + mi := &file_nico_proto_msgTypes[383] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29660,7 +29782,7 @@ func (x *FindTenantResponse) String() string { func (*FindTenantResponse) ProtoMessage() {} func (x *FindTenantResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[381] + mi := &file_nico_proto_msgTypes[383] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29673,7 +29795,7 @@ func (x *FindTenantResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use FindTenantResponse.ProtoReflect.Descriptor instead. func (*FindTenantResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{381} + return file_nico_proto_rawDescGZIP(), []int{383} } func (x *FindTenantResponse) GetTenant() *Tenant { @@ -29696,7 +29818,7 @@ type TenantKeysetIdentifier struct { func (x *TenantKeysetIdentifier) Reset() { *x = TenantKeysetIdentifier{} - mi := &file_nico_proto_msgTypes[382] + mi := &file_nico_proto_msgTypes[384] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29708,7 +29830,7 @@ func (x *TenantKeysetIdentifier) String() string { func (*TenantKeysetIdentifier) ProtoMessage() {} func (x *TenantKeysetIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[382] + mi := &file_nico_proto_msgTypes[384] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29721,7 +29843,7 @@ func (x *TenantKeysetIdentifier) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantKeysetIdentifier.ProtoReflect.Descriptor instead. func (*TenantKeysetIdentifier) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{382} + return file_nico_proto_rawDescGZIP(), []int{384} } func (x *TenantKeysetIdentifier) GetOrganizationId() string { @@ -29748,7 +29870,7 @@ type TenantPublicKey struct { func (x *TenantPublicKey) Reset() { *x = TenantPublicKey{} - mi := &file_nico_proto_msgTypes[383] + mi := &file_nico_proto_msgTypes[385] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29760,7 +29882,7 @@ func (x *TenantPublicKey) String() string { func (*TenantPublicKey) ProtoMessage() {} func (x *TenantPublicKey) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[383] + mi := &file_nico_proto_msgTypes[385] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29773,7 +29895,7 @@ func (x *TenantPublicKey) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantPublicKey.ProtoReflect.Descriptor instead. func (*TenantPublicKey) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{383} + return file_nico_proto_rawDescGZIP(), []int{385} } func (x *TenantPublicKey) GetPublicKey() string { @@ -29799,7 +29921,7 @@ type TenantKeysetContent struct { func (x *TenantKeysetContent) Reset() { *x = TenantKeysetContent{} - mi := &file_nico_proto_msgTypes[384] + mi := &file_nico_proto_msgTypes[386] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29811,7 +29933,7 @@ func (x *TenantKeysetContent) String() string { func (*TenantKeysetContent) ProtoMessage() {} func (x *TenantKeysetContent) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[384] + mi := &file_nico_proto_msgTypes[386] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29824,7 +29946,7 @@ func (x *TenantKeysetContent) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantKeysetContent.ProtoReflect.Descriptor instead. func (*TenantKeysetContent) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{384} + return file_nico_proto_rawDescGZIP(), []int{386} } func (x *TenantKeysetContent) GetPublicKeys() []*TenantPublicKey { @@ -29846,7 +29968,7 @@ type TenantKeyset struct { func (x *TenantKeyset) Reset() { *x = TenantKeyset{} - mi := &file_nico_proto_msgTypes[385] + mi := &file_nico_proto_msgTypes[387] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29858,7 +29980,7 @@ func (x *TenantKeyset) String() string { func (*TenantKeyset) ProtoMessage() {} func (x *TenantKeyset) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[385] + mi := &file_nico_proto_msgTypes[387] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29871,7 +29993,7 @@ func (x *TenantKeyset) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantKeyset.ProtoReflect.Descriptor instead. func (*TenantKeyset) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{385} + return file_nico_proto_rawDescGZIP(), []int{387} } func (x *TenantKeyset) GetKeysetIdentifier() *TenantKeysetIdentifier { @@ -29910,7 +30032,7 @@ type CreateTenantKeysetRequest struct { func (x *CreateTenantKeysetRequest) Reset() { *x = CreateTenantKeysetRequest{} - mi := &file_nico_proto_msgTypes[386] + mi := &file_nico_proto_msgTypes[388] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29922,7 +30044,7 @@ func (x *CreateTenantKeysetRequest) String() string { func (*CreateTenantKeysetRequest) ProtoMessage() {} func (x *CreateTenantKeysetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[386] + mi := &file_nico_proto_msgTypes[388] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29935,7 +30057,7 @@ func (x *CreateTenantKeysetRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateTenantKeysetRequest.ProtoReflect.Descriptor instead. func (*CreateTenantKeysetRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{386} + return file_nico_proto_rawDescGZIP(), []int{388} } func (x *CreateTenantKeysetRequest) GetKeysetIdentifier() *TenantKeysetIdentifier { @@ -29968,7 +30090,7 @@ type CreateTenantKeysetResponse struct { func (x *CreateTenantKeysetResponse) Reset() { *x = CreateTenantKeysetResponse{} - mi := &file_nico_proto_msgTypes[387] + mi := &file_nico_proto_msgTypes[389] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29980,7 +30102,7 @@ func (x *CreateTenantKeysetResponse) String() string { func (*CreateTenantKeysetResponse) ProtoMessage() {} func (x *CreateTenantKeysetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[387] + mi := &file_nico_proto_msgTypes[389] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29993,7 +30115,7 @@ func (x *CreateTenantKeysetResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateTenantKeysetResponse.ProtoReflect.Descriptor instead. func (*CreateTenantKeysetResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{387} + return file_nico_proto_rawDescGZIP(), []int{389} } func (x *CreateTenantKeysetResponse) GetKeyset() *TenantKeyset { @@ -30012,7 +30134,7 @@ type TenantKeySetList struct { func (x *TenantKeySetList) Reset() { *x = TenantKeySetList{} - mi := &file_nico_proto_msgTypes[388] + mi := &file_nico_proto_msgTypes[390] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30024,7 +30146,7 @@ func (x *TenantKeySetList) String() string { func (*TenantKeySetList) ProtoMessage() {} func (x *TenantKeySetList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[388] + mi := &file_nico_proto_msgTypes[390] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30037,7 +30159,7 @@ func (x *TenantKeySetList) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantKeySetList.ProtoReflect.Descriptor instead. func (*TenantKeySetList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{388} + return file_nico_proto_rawDescGZIP(), []int{390} } func (x *TenantKeySetList) GetKeyset() []*TenantKeyset { @@ -30065,7 +30187,7 @@ type UpdateTenantKeysetRequest struct { func (x *UpdateTenantKeysetRequest) Reset() { *x = UpdateTenantKeysetRequest{} - mi := &file_nico_proto_msgTypes[389] + mi := &file_nico_proto_msgTypes[391] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30077,7 +30199,7 @@ func (x *UpdateTenantKeysetRequest) String() string { func (*UpdateTenantKeysetRequest) ProtoMessage() {} func (x *UpdateTenantKeysetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[389] + mi := &file_nico_proto_msgTypes[391] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30090,7 +30212,7 @@ func (x *UpdateTenantKeysetRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateTenantKeysetRequest.ProtoReflect.Descriptor instead. func (*UpdateTenantKeysetRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{389} + return file_nico_proto_rawDescGZIP(), []int{391} } func (x *UpdateTenantKeysetRequest) GetKeysetIdentifier() *TenantKeysetIdentifier { @@ -30129,7 +30251,7 @@ type UpdateTenantKeysetResponse struct { func (x *UpdateTenantKeysetResponse) Reset() { *x = UpdateTenantKeysetResponse{} - mi := &file_nico_proto_msgTypes[390] + mi := &file_nico_proto_msgTypes[392] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30141,7 +30263,7 @@ func (x *UpdateTenantKeysetResponse) String() string { func (*UpdateTenantKeysetResponse) ProtoMessage() {} func (x *UpdateTenantKeysetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[390] + mi := &file_nico_proto_msgTypes[392] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30154,7 +30276,7 @@ func (x *UpdateTenantKeysetResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateTenantKeysetResponse.ProtoReflect.Descriptor instead. func (*UpdateTenantKeysetResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{390} + return file_nico_proto_rawDescGZIP(), []int{392} } type DeleteTenantKeysetRequest struct { @@ -30166,7 +30288,7 @@ type DeleteTenantKeysetRequest struct { func (x *DeleteTenantKeysetRequest) Reset() { *x = DeleteTenantKeysetRequest{} - mi := &file_nico_proto_msgTypes[391] + mi := &file_nico_proto_msgTypes[393] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30178,7 +30300,7 @@ func (x *DeleteTenantKeysetRequest) String() string { func (*DeleteTenantKeysetRequest) ProtoMessage() {} func (x *DeleteTenantKeysetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[391] + mi := &file_nico_proto_msgTypes[393] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30191,7 +30313,7 @@ func (x *DeleteTenantKeysetRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteTenantKeysetRequest.ProtoReflect.Descriptor instead. func (*DeleteTenantKeysetRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{391} + return file_nico_proto_rawDescGZIP(), []int{393} } func (x *DeleteTenantKeysetRequest) GetKeysetIdentifier() *TenantKeysetIdentifier { @@ -30209,7 +30331,7 @@ type DeleteTenantKeysetResponse struct { func (x *DeleteTenantKeysetResponse) Reset() { *x = DeleteTenantKeysetResponse{} - mi := &file_nico_proto_msgTypes[392] + mi := &file_nico_proto_msgTypes[394] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30221,7 +30343,7 @@ func (x *DeleteTenantKeysetResponse) String() string { func (*DeleteTenantKeysetResponse) ProtoMessage() {} func (x *DeleteTenantKeysetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[392] + mi := &file_nico_proto_msgTypes[394] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30234,7 +30356,7 @@ func (x *DeleteTenantKeysetResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteTenantKeysetResponse.ProtoReflect.Descriptor instead. func (*DeleteTenantKeysetResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{392} + return file_nico_proto_rawDescGZIP(), []int{394} } type TenantKeysetSearchFilter struct { @@ -30246,7 +30368,7 @@ type TenantKeysetSearchFilter struct { func (x *TenantKeysetSearchFilter) Reset() { *x = TenantKeysetSearchFilter{} - mi := &file_nico_proto_msgTypes[393] + mi := &file_nico_proto_msgTypes[395] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30258,7 +30380,7 @@ func (x *TenantKeysetSearchFilter) String() string { func (*TenantKeysetSearchFilter) ProtoMessage() {} func (x *TenantKeysetSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[393] + mi := &file_nico_proto_msgTypes[395] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30271,7 +30393,7 @@ func (x *TenantKeysetSearchFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantKeysetSearchFilter.ProtoReflect.Descriptor instead. func (*TenantKeysetSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{393} + return file_nico_proto_rawDescGZIP(), []int{395} } func (x *TenantKeysetSearchFilter) GetTenantOrgId() string { @@ -30290,7 +30412,7 @@ type TenantKeysetIdList struct { func (x *TenantKeysetIdList) Reset() { *x = TenantKeysetIdList{} - mi := &file_nico_proto_msgTypes[394] + mi := &file_nico_proto_msgTypes[396] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30302,7 +30424,7 @@ func (x *TenantKeysetIdList) String() string { func (*TenantKeysetIdList) ProtoMessage() {} func (x *TenantKeysetIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[394] + mi := &file_nico_proto_msgTypes[396] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30315,7 +30437,7 @@ func (x *TenantKeysetIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantKeysetIdList.ProtoReflect.Descriptor instead. func (*TenantKeysetIdList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{394} + return file_nico_proto_rawDescGZIP(), []int{396} } func (x *TenantKeysetIdList) GetKeysetIds() []*TenantKeysetIdentifier { @@ -30335,7 +30457,7 @@ type TenantKeysetsByIdsRequest struct { func (x *TenantKeysetsByIdsRequest) Reset() { *x = TenantKeysetsByIdsRequest{} - mi := &file_nico_proto_msgTypes[395] + mi := &file_nico_proto_msgTypes[397] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30347,7 +30469,7 @@ func (x *TenantKeysetsByIdsRequest) String() string { func (*TenantKeysetsByIdsRequest) ProtoMessage() {} func (x *TenantKeysetsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[395] + mi := &file_nico_proto_msgTypes[397] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30360,7 +30482,7 @@ func (x *TenantKeysetsByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TenantKeysetsByIdsRequest.ProtoReflect.Descriptor instead. func (*TenantKeysetsByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{395} + return file_nico_proto_rawDescGZIP(), []int{397} } func (x *TenantKeysetsByIdsRequest) GetKeysetIds() []*TenantKeysetIdentifier { @@ -30392,7 +30514,7 @@ type ValidateTenantPublicKeyRequest struct { func (x *ValidateTenantPublicKeyRequest) Reset() { *x = ValidateTenantPublicKeyRequest{} - mi := &file_nico_proto_msgTypes[396] + mi := &file_nico_proto_msgTypes[398] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30404,7 +30526,7 @@ func (x *ValidateTenantPublicKeyRequest) String() string { func (*ValidateTenantPublicKeyRequest) ProtoMessage() {} func (x *ValidateTenantPublicKeyRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[396] + mi := &file_nico_proto_msgTypes[398] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30417,7 +30539,7 @@ func (x *ValidateTenantPublicKeyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ValidateTenantPublicKeyRequest.ProtoReflect.Descriptor instead. func (*ValidateTenantPublicKeyRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{396} + return file_nico_proto_rawDescGZIP(), []int{398} } func (x *ValidateTenantPublicKeyRequest) GetInstanceId() string { @@ -30443,7 +30565,7 @@ type ValidateTenantPublicKeyResponse struct { func (x *ValidateTenantPublicKeyResponse) Reset() { *x = ValidateTenantPublicKeyResponse{} - mi := &file_nico_proto_msgTypes[397] + mi := &file_nico_proto_msgTypes[399] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30455,7 +30577,7 @@ func (x *ValidateTenantPublicKeyResponse) String() string { func (*ValidateTenantPublicKeyResponse) ProtoMessage() {} func (x *ValidateTenantPublicKeyResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[397] + mi := &file_nico_proto_msgTypes[399] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30468,7 +30590,7 @@ func (x *ValidateTenantPublicKeyResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ValidateTenantPublicKeyResponse.ProtoReflect.Descriptor instead. func (*ValidateTenantPublicKeyResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{397} + return file_nico_proto_rawDescGZIP(), []int{399} } type ListResourcePoolsRequest struct { @@ -30480,7 +30602,7 @@ type ListResourcePoolsRequest struct { func (x *ListResourcePoolsRequest) Reset() { *x = ListResourcePoolsRequest{} - mi := &file_nico_proto_msgTypes[398] + mi := &file_nico_proto_msgTypes[400] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30492,7 +30614,7 @@ func (x *ListResourcePoolsRequest) String() string { func (*ListResourcePoolsRequest) ProtoMessage() {} func (x *ListResourcePoolsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[398] + mi := &file_nico_proto_msgTypes[400] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30505,7 +30627,7 @@ func (x *ListResourcePoolsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListResourcePoolsRequest.ProtoReflect.Descriptor instead. func (*ListResourcePoolsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{398} + return file_nico_proto_rawDescGZIP(), []int{400} } func (x *ListResourcePoolsRequest) GetAutoAssignable() bool { @@ -30524,7 +30646,7 @@ type ResourcePools struct { func (x *ResourcePools) Reset() { *x = ResourcePools{} - mi := &file_nico_proto_msgTypes[399] + mi := &file_nico_proto_msgTypes[401] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30536,7 +30658,7 @@ func (x *ResourcePools) String() string { func (*ResourcePools) ProtoMessage() {} func (x *ResourcePools) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[399] + mi := &file_nico_proto_msgTypes[401] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30549,7 +30671,7 @@ func (x *ResourcePools) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourcePools.ProtoReflect.Descriptor instead. func (*ResourcePools) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{399} + return file_nico_proto_rawDescGZIP(), []int{401} } func (x *ResourcePools) GetPools() []*ResourcePool { @@ -30572,7 +30694,7 @@ type ResourcePool struct { func (x *ResourcePool) Reset() { *x = ResourcePool{} - mi := &file_nico_proto_msgTypes[400] + mi := &file_nico_proto_msgTypes[402] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30584,7 +30706,7 @@ func (x *ResourcePool) String() string { func (*ResourcePool) ProtoMessage() {} func (x *ResourcePool) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[400] + mi := &file_nico_proto_msgTypes[402] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30597,7 +30719,7 @@ func (x *ResourcePool) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourcePool.ProtoReflect.Descriptor instead. func (*ResourcePool) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{400} + return file_nico_proto_rawDescGZIP(), []int{402} } func (x *ResourcePool) GetName() string { @@ -30645,7 +30767,7 @@ type GrowResourcePoolRequest struct { func (x *GrowResourcePoolRequest) Reset() { *x = GrowResourcePoolRequest{} - mi := &file_nico_proto_msgTypes[401] + mi := &file_nico_proto_msgTypes[403] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30657,7 +30779,7 @@ func (x *GrowResourcePoolRequest) String() string { func (*GrowResourcePoolRequest) ProtoMessage() {} func (x *GrowResourcePoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[401] + mi := &file_nico_proto_msgTypes[403] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30670,7 +30792,7 @@ func (x *GrowResourcePoolRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GrowResourcePoolRequest.ProtoReflect.Descriptor instead. func (*GrowResourcePoolRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{401} + return file_nico_proto_rawDescGZIP(), []int{403} } func (x *GrowResourcePoolRequest) GetText() string { @@ -30688,7 +30810,7 @@ type GrowResourcePoolResponse struct { func (x *GrowResourcePoolResponse) Reset() { *x = GrowResourcePoolResponse{} - mi := &file_nico_proto_msgTypes[402] + mi := &file_nico_proto_msgTypes[404] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30700,7 +30822,7 @@ func (x *GrowResourcePoolResponse) String() string { func (*GrowResourcePoolResponse) ProtoMessage() {} func (x *GrowResourcePoolResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[402] + mi := &file_nico_proto_msgTypes[404] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30713,7 +30835,7 @@ func (x *GrowResourcePoolResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GrowResourcePoolResponse.ProtoReflect.Descriptor instead. func (*GrowResourcePoolResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{402} + return file_nico_proto_rawDescGZIP(), []int{404} } type Range struct { @@ -30726,7 +30848,7 @@ type Range struct { func (x *Range) Reset() { *x = Range{} - mi := &file_nico_proto_msgTypes[403] + mi := &file_nico_proto_msgTypes[405] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30738,7 +30860,7 @@ func (x *Range) String() string { func (*Range) ProtoMessage() {} func (x *Range) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[403] + mi := &file_nico_proto_msgTypes[405] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30751,7 +30873,7 @@ func (x *Range) ProtoReflect() protoreflect.Message { // Deprecated: Use Range.ProtoReflect.Descriptor instead. func (*Range) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{403} + return file_nico_proto_rawDescGZIP(), []int{405} } func (x *Range) GetStart() string { @@ -30778,7 +30900,7 @@ type MigrateVpcVniResponse struct { func (x *MigrateVpcVniResponse) Reset() { *x = MigrateVpcVniResponse{} - mi := &file_nico_proto_msgTypes[404] + mi := &file_nico_proto_msgTypes[406] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30790,7 +30912,7 @@ func (x *MigrateVpcVniResponse) String() string { func (*MigrateVpcVniResponse) ProtoMessage() {} func (x *MigrateVpcVniResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[404] + mi := &file_nico_proto_msgTypes[406] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30803,7 +30925,7 @@ func (x *MigrateVpcVniResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MigrateVpcVniResponse.ProtoReflect.Descriptor instead. func (*MigrateVpcVniResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{404} + return file_nico_proto_rawDescGZIP(), []int{406} } func (x *MigrateVpcVniResponse) GetUpdatedCount() uint32 { @@ -30833,7 +30955,7 @@ type MaintenanceRequest struct { func (x *MaintenanceRequest) Reset() { *x = MaintenanceRequest{} - mi := &file_nico_proto_msgTypes[405] + mi := &file_nico_proto_msgTypes[407] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30845,7 +30967,7 @@ func (x *MaintenanceRequest) String() string { func (*MaintenanceRequest) ProtoMessage() {} func (x *MaintenanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[405] + mi := &file_nico_proto_msgTypes[407] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30858,7 +30980,7 @@ func (x *MaintenanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MaintenanceRequest.ProtoReflect.Descriptor instead. func (*MaintenanceRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{405} + return file_nico_proto_rawDescGZIP(), []int{407} } func (x *MaintenanceRequest) GetOperation() MaintenanceOperation { @@ -30893,7 +31015,7 @@ type SetDynamicConfigRequest struct { func (x *SetDynamicConfigRequest) Reset() { *x = SetDynamicConfigRequest{} - mi := &file_nico_proto_msgTypes[406] + mi := &file_nico_proto_msgTypes[408] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30905,7 +31027,7 @@ func (x *SetDynamicConfigRequest) String() string { func (*SetDynamicConfigRequest) ProtoMessage() {} func (x *SetDynamicConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[406] + mi := &file_nico_proto_msgTypes[408] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30918,7 +31040,7 @@ func (x *SetDynamicConfigRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetDynamicConfigRequest.ProtoReflect.Descriptor instead. func (*SetDynamicConfigRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{406} + return file_nico_proto_rawDescGZIP(), []int{408} } func (x *SetDynamicConfigRequest) GetSetting() ConfigSetting { @@ -30951,7 +31073,7 @@ type FindIpAddressRequest struct { func (x *FindIpAddressRequest) Reset() { *x = FindIpAddressRequest{} - mi := &file_nico_proto_msgTypes[407] + mi := &file_nico_proto_msgTypes[409] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30963,7 +31085,7 @@ func (x *FindIpAddressRequest) String() string { func (*FindIpAddressRequest) ProtoMessage() {} func (x *FindIpAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[407] + mi := &file_nico_proto_msgTypes[409] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30976,7 +31098,7 @@ func (x *FindIpAddressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FindIpAddressRequest.ProtoReflect.Descriptor instead. func (*FindIpAddressRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{407} + return file_nico_proto_rawDescGZIP(), []int{409} } func (x *FindIpAddressRequest) GetIp() string { @@ -30996,7 +31118,7 @@ type FindIpAddressResponse struct { func (x *FindIpAddressResponse) Reset() { *x = FindIpAddressResponse{} - mi := &file_nico_proto_msgTypes[408] + mi := &file_nico_proto_msgTypes[410] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31008,7 +31130,7 @@ func (x *FindIpAddressResponse) String() string { func (*FindIpAddressResponse) ProtoMessage() {} func (x *FindIpAddressResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[408] + mi := &file_nico_proto_msgTypes[410] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31021,7 +31143,7 @@ func (x *FindIpAddressResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use FindIpAddressResponse.ProtoReflect.Descriptor instead. func (*FindIpAddressResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{408} + return file_nico_proto_rawDescGZIP(), []int{410} } func (x *FindIpAddressResponse) GetMatches() []*IpAddressMatch { @@ -31047,7 +31169,7 @@ type IdentifyUuidRequest struct { func (x *IdentifyUuidRequest) Reset() { *x = IdentifyUuidRequest{} - mi := &file_nico_proto_msgTypes[409] + mi := &file_nico_proto_msgTypes[411] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31059,7 +31181,7 @@ func (x *IdentifyUuidRequest) String() string { func (*IdentifyUuidRequest) ProtoMessage() {} func (x *IdentifyUuidRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[409] + mi := &file_nico_proto_msgTypes[411] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31072,7 +31194,7 @@ func (x *IdentifyUuidRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentifyUuidRequest.ProtoReflect.Descriptor instead. func (*IdentifyUuidRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{409} + return file_nico_proto_rawDescGZIP(), []int{411} } func (x *IdentifyUuidRequest) GetUuid() *UUID { @@ -31092,7 +31214,7 @@ type IdentifyUuidResponse struct { func (x *IdentifyUuidResponse) Reset() { *x = IdentifyUuidResponse{} - mi := &file_nico_proto_msgTypes[410] + mi := &file_nico_proto_msgTypes[412] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31104,7 +31226,7 @@ func (x *IdentifyUuidResponse) String() string { func (*IdentifyUuidResponse) ProtoMessage() {} func (x *IdentifyUuidResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[410] + mi := &file_nico_proto_msgTypes[412] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31117,7 +31239,7 @@ func (x *IdentifyUuidResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentifyUuidResponse.ProtoReflect.Descriptor instead. func (*IdentifyUuidResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{410} + return file_nico_proto_rawDescGZIP(), []int{412} } func (x *IdentifyUuidResponse) GetUuid() *UUID { @@ -31147,7 +31269,7 @@ type FindBmcIpsRequest struct { func (x *FindBmcIpsRequest) Reset() { *x = FindBmcIpsRequest{} - mi := &file_nico_proto_msgTypes[411] + mi := &file_nico_proto_msgTypes[413] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31159,7 +31281,7 @@ func (x *FindBmcIpsRequest) String() string { func (*FindBmcIpsRequest) ProtoMessage() {} func (x *FindBmcIpsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[411] + mi := &file_nico_proto_msgTypes[413] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31172,7 +31294,7 @@ func (x *FindBmcIpsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FindBmcIpsRequest.ProtoReflect.Descriptor instead. func (*FindBmcIpsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{411} + return file_nico_proto_rawDescGZIP(), []int{413} } func (x *FindBmcIpsRequest) GetLookupBy() isFindBmcIpsRequest_LookupBy { @@ -31225,7 +31347,7 @@ type IdentifyMacRequest struct { func (x *IdentifyMacRequest) Reset() { *x = IdentifyMacRequest{} - mi := &file_nico_proto_msgTypes[412] + mi := &file_nico_proto_msgTypes[414] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31237,7 +31359,7 @@ func (x *IdentifyMacRequest) String() string { func (*IdentifyMacRequest) ProtoMessage() {} func (x *IdentifyMacRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[412] + mi := &file_nico_proto_msgTypes[414] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31250,7 +31372,7 @@ func (x *IdentifyMacRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentifyMacRequest.ProtoReflect.Descriptor instead. func (*IdentifyMacRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{412} + return file_nico_proto_rawDescGZIP(), []int{414} } func (x *IdentifyMacRequest) GetMacAddress() string { @@ -31271,7 +31393,7 @@ type IdentifyMacResponse struct { func (x *IdentifyMacResponse) Reset() { *x = IdentifyMacResponse{} - mi := &file_nico_proto_msgTypes[413] + mi := &file_nico_proto_msgTypes[415] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31283,7 +31405,7 @@ func (x *IdentifyMacResponse) String() string { func (*IdentifyMacResponse) ProtoMessage() {} func (x *IdentifyMacResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[413] + mi := &file_nico_proto_msgTypes[415] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31296,7 +31418,7 @@ func (x *IdentifyMacResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentifyMacResponse.ProtoReflect.Descriptor instead. func (*IdentifyMacResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{413} + return file_nico_proto_rawDescGZIP(), []int{415} } func (x *IdentifyMacResponse) GetMacAddress() string { @@ -31331,7 +31453,7 @@ type IdentifySerialRequest struct { func (x *IdentifySerialRequest) Reset() { *x = IdentifySerialRequest{} - mi := &file_nico_proto_msgTypes[414] + mi := &file_nico_proto_msgTypes[416] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31343,7 +31465,7 @@ func (x *IdentifySerialRequest) String() string { func (*IdentifySerialRequest) ProtoMessage() {} func (x *IdentifySerialRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[414] + mi := &file_nico_proto_msgTypes[416] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31356,7 +31478,7 @@ func (x *IdentifySerialRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentifySerialRequest.ProtoReflect.Descriptor instead. func (*IdentifySerialRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{414} + return file_nico_proto_rawDescGZIP(), []int{416} } func (x *IdentifySerialRequest) GetSerialNumber() string { @@ -31383,7 +31505,7 @@ type IdentifySerialResponse struct { func (x *IdentifySerialResponse) Reset() { *x = IdentifySerialResponse{} - mi := &file_nico_proto_msgTypes[415] + mi := &file_nico_proto_msgTypes[417] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31395,7 +31517,7 @@ func (x *IdentifySerialResponse) String() string { func (*IdentifySerialResponse) ProtoMessage() {} func (x *IdentifySerialResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[415] + mi := &file_nico_proto_msgTypes[417] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31408,7 +31530,7 @@ func (x *IdentifySerialResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentifySerialResponse.ProtoReflect.Descriptor instead. func (*IdentifySerialResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{415} + return file_nico_proto_rawDescGZIP(), []int{417} } func (x *IdentifySerialResponse) GetSerialNumber() string { @@ -31439,7 +31561,7 @@ type DpuReprovisioningRequest struct { func (x *DpuReprovisioningRequest) Reset() { *x = DpuReprovisioningRequest{} - mi := &file_nico_proto_msgTypes[416] + mi := &file_nico_proto_msgTypes[418] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31451,7 +31573,7 @@ func (x *DpuReprovisioningRequest) String() string { func (*DpuReprovisioningRequest) ProtoMessage() {} func (x *DpuReprovisioningRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[416] + mi := &file_nico_proto_msgTypes[418] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31464,7 +31586,7 @@ func (x *DpuReprovisioningRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuReprovisioningRequest.ProtoReflect.Descriptor instead. func (*DpuReprovisioningRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{416} + return file_nico_proto_rawDescGZIP(), []int{418} } func (x *DpuReprovisioningRequest) GetDpuId() *MachineId { @@ -31510,7 +31632,7 @@ type DpuReprovisioningListRequest struct { func (x *DpuReprovisioningListRequest) Reset() { *x = DpuReprovisioningListRequest{} - mi := &file_nico_proto_msgTypes[417] + mi := &file_nico_proto_msgTypes[419] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31522,7 +31644,7 @@ func (x *DpuReprovisioningListRequest) String() string { func (*DpuReprovisioningListRequest) ProtoMessage() {} func (x *DpuReprovisioningListRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[417] + mi := &file_nico_proto_msgTypes[419] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31535,7 +31657,7 @@ func (x *DpuReprovisioningListRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuReprovisioningListRequest.ProtoReflect.Descriptor instead. func (*DpuReprovisioningListRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{417} + return file_nico_proto_rawDescGZIP(), []int{419} } type DpuReprovisioningListResponse struct { @@ -31547,7 +31669,7 @@ type DpuReprovisioningListResponse struct { func (x *DpuReprovisioningListResponse) Reset() { *x = DpuReprovisioningListResponse{} - mi := &file_nico_proto_msgTypes[418] + mi := &file_nico_proto_msgTypes[420] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31559,7 +31681,7 @@ func (x *DpuReprovisioningListResponse) String() string { func (*DpuReprovisioningListResponse) ProtoMessage() {} func (x *DpuReprovisioningListResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[418] + mi := &file_nico_proto_msgTypes[420] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31572,7 +31694,7 @@ func (x *DpuReprovisioningListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuReprovisioningListResponse.ProtoReflect.Descriptor instead. func (*DpuReprovisioningListResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{418} + return file_nico_proto_rawDescGZIP(), []int{420} } func (x *DpuReprovisioningListResponse) GetDpus() []*DpuReprovisioningListResponse_DpuReprovisioningListItem { @@ -31593,7 +31715,7 @@ type HostReprovisioningRequest struct { func (x *HostReprovisioningRequest) Reset() { *x = HostReprovisioningRequest{} - mi := &file_nico_proto_msgTypes[419] + mi := &file_nico_proto_msgTypes[421] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31605,7 +31727,7 @@ func (x *HostReprovisioningRequest) String() string { func (*HostReprovisioningRequest) ProtoMessage() {} func (x *HostReprovisioningRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[419] + mi := &file_nico_proto_msgTypes[421] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31618,7 +31740,7 @@ func (x *HostReprovisioningRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use HostReprovisioningRequest.ProtoReflect.Descriptor instead. func (*HostReprovisioningRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{419} + return file_nico_proto_rawDescGZIP(), []int{421} } func (x *HostReprovisioningRequest) GetMachineId() *MachineId { @@ -31650,7 +31772,7 @@ type HostReprovisioningListRequest struct { func (x *HostReprovisioningListRequest) Reset() { *x = HostReprovisioningListRequest{} - mi := &file_nico_proto_msgTypes[420] + mi := &file_nico_proto_msgTypes[422] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31662,7 +31784,7 @@ func (x *HostReprovisioningListRequest) String() string { func (*HostReprovisioningListRequest) ProtoMessage() {} func (x *HostReprovisioningListRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[420] + mi := &file_nico_proto_msgTypes[422] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31675,7 +31797,7 @@ func (x *HostReprovisioningListRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use HostReprovisioningListRequest.ProtoReflect.Descriptor instead. func (*HostReprovisioningListRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{420} + return file_nico_proto_rawDescGZIP(), []int{422} } type HostReprovisioningListResponse struct { @@ -31687,7 +31809,7 @@ type HostReprovisioningListResponse struct { func (x *HostReprovisioningListResponse) Reset() { *x = HostReprovisioningListResponse{} - mi := &file_nico_proto_msgTypes[421] + mi := &file_nico_proto_msgTypes[423] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31699,7 +31821,7 @@ func (x *HostReprovisioningListResponse) String() string { func (*HostReprovisioningListResponse) ProtoMessage() {} func (x *HostReprovisioningListResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[421] + mi := &file_nico_proto_msgTypes[423] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31712,7 +31834,7 @@ func (x *HostReprovisioningListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use HostReprovisioningListResponse.ProtoReflect.Descriptor instead. func (*HostReprovisioningListResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{421} + return file_nico_proto_rawDescGZIP(), []int{423} } func (x *HostReprovisioningListResponse) GetHosts() []*HostReprovisioningListResponse_HostReprovisioningListItem { @@ -31731,7 +31853,7 @@ type DpuOsOperationalState struct { func (x *DpuOsOperationalState) Reset() { *x = DpuOsOperationalState{} - mi := &file_nico_proto_msgTypes[422] + mi := &file_nico_proto_msgTypes[424] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31743,7 +31865,7 @@ func (x *DpuOsOperationalState) String() string { func (*DpuOsOperationalState) ProtoMessage() {} func (x *DpuOsOperationalState) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[422] + mi := &file_nico_proto_msgTypes[424] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31756,7 +31878,7 @@ func (x *DpuOsOperationalState) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuOsOperationalState.ProtoReflect.Descriptor instead. func (*DpuOsOperationalState) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{422} + return file_nico_proto_rawDescGZIP(), []int{424} } func (x *DpuOsOperationalState) GetStateDetail() string { @@ -31777,7 +31899,7 @@ type DpuRepresentorStatus struct { func (x *DpuRepresentorStatus) Reset() { *x = DpuRepresentorStatus{} - mi := &file_nico_proto_msgTypes[423] + mi := &file_nico_proto_msgTypes[425] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31789,7 +31911,7 @@ func (x *DpuRepresentorStatus) String() string { func (*DpuRepresentorStatus) ProtoMessage() {} func (x *DpuRepresentorStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[423] + mi := &file_nico_proto_msgTypes[425] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31802,7 +31924,7 @@ func (x *DpuRepresentorStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuRepresentorStatus.ProtoReflect.Descriptor instead. func (*DpuRepresentorStatus) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{423} + return file_nico_proto_rawDescGZIP(), []int{425} } func (x *DpuRepresentorStatus) GetName() string { @@ -31838,7 +31960,7 @@ type DpuInfoStatusObservation struct { func (x *DpuInfoStatusObservation) Reset() { *x = DpuInfoStatusObservation{} - mi := &file_nico_proto_msgTypes[424] + mi := &file_nico_proto_msgTypes[426] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31850,7 +31972,7 @@ func (x *DpuInfoStatusObservation) String() string { func (*DpuInfoStatusObservation) ProtoMessage() {} func (x *DpuInfoStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[424] + mi := &file_nico_proto_msgTypes[426] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31863,7 +31985,7 @@ func (x *DpuInfoStatusObservation) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuInfoStatusObservation.ProtoReflect.Descriptor instead. func (*DpuInfoStatusObservation) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{424} + return file_nico_proto_rawDescGZIP(), []int{426} } func (x *DpuInfoStatusObservation) GetOsOperationalState() *DpuOsOperationalState { @@ -31905,7 +32027,7 @@ type DpuInfo struct { func (x *DpuInfo) Reset() { *x = DpuInfo{} - mi := &file_nico_proto_msgTypes[425] + mi := &file_nico_proto_msgTypes[427] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31917,7 +32039,7 @@ func (x *DpuInfo) String() string { func (*DpuInfo) ProtoMessage() {} func (x *DpuInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[425] + mi := &file_nico_proto_msgTypes[427] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31930,7 +32052,7 @@ func (x *DpuInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuInfo.ProtoReflect.Descriptor instead. func (*DpuInfo) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{425} + return file_nico_proto_rawDescGZIP(), []int{427} } func (x *DpuInfo) GetId() string { @@ -31962,7 +32084,7 @@ type GetDpuInfoListRequest struct { func (x *GetDpuInfoListRequest) Reset() { *x = GetDpuInfoListRequest{} - mi := &file_nico_proto_msgTypes[426] + mi := &file_nico_proto_msgTypes[428] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31974,7 +32096,7 @@ func (x *GetDpuInfoListRequest) String() string { func (*GetDpuInfoListRequest) ProtoMessage() {} func (x *GetDpuInfoListRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[426] + mi := &file_nico_proto_msgTypes[428] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31987,7 +32109,7 @@ func (x *GetDpuInfoListRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetDpuInfoListRequest.ProtoReflect.Descriptor instead. func (*GetDpuInfoListRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{426} + return file_nico_proto_rawDescGZIP(), []int{428} } type GetDpuInfoListResponse struct { @@ -31999,7 +32121,7 @@ type GetDpuInfoListResponse struct { func (x *GetDpuInfoListResponse) Reset() { *x = GetDpuInfoListResponse{} - mi := &file_nico_proto_msgTypes[427] + mi := &file_nico_proto_msgTypes[429] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32011,7 +32133,7 @@ func (x *GetDpuInfoListResponse) String() string { func (*GetDpuInfoListResponse) ProtoMessage() {} func (x *GetDpuInfoListResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[427] + mi := &file_nico_proto_msgTypes[429] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32024,7 +32146,7 @@ func (x *GetDpuInfoListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetDpuInfoListResponse.ProtoReflect.Descriptor instead. func (*GetDpuInfoListResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{427} + return file_nico_proto_rawDescGZIP(), []int{429} } func (x *GetDpuInfoListResponse) GetDpuList() []*DpuInfo { @@ -32045,7 +32167,7 @@ type IpAddressMatch struct { func (x *IpAddressMatch) Reset() { *x = IpAddressMatch{} - mi := &file_nico_proto_msgTypes[428] + mi := &file_nico_proto_msgTypes[430] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32057,7 +32179,7 @@ func (x *IpAddressMatch) String() string { func (*IpAddressMatch) ProtoMessage() {} func (x *IpAddressMatch) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[428] + mi := &file_nico_proto_msgTypes[430] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32070,7 +32192,7 @@ func (x *IpAddressMatch) ProtoReflect() protoreflect.Message { // Deprecated: Use IpAddressMatch.ProtoReflect.Descriptor instead. func (*IpAddressMatch) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{428} + return file_nico_proto_rawDescGZIP(), []int{430} } func (x *IpAddressMatch) GetIpType() IpType { @@ -32105,7 +32227,7 @@ type MachineBootOverride struct { func (x *MachineBootOverride) Reset() { *x = MachineBootOverride{} - mi := &file_nico_proto_msgTypes[429] + mi := &file_nico_proto_msgTypes[431] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32117,7 +32239,7 @@ func (x *MachineBootOverride) String() string { func (*MachineBootOverride) ProtoMessage() {} func (x *MachineBootOverride) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[429] + mi := &file_nico_proto_msgTypes[431] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32130,7 +32252,7 @@ func (x *MachineBootOverride) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineBootOverride.ProtoReflect.Descriptor instead. func (*MachineBootOverride) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{429} + return file_nico_proto_rawDescGZIP(), []int{431} } func (x *MachineBootOverride) GetMachineInterfaceId() *MachineInterfaceId { @@ -32167,7 +32289,7 @@ type ConnectedDevice struct { func (x *ConnectedDevice) Reset() { *x = ConnectedDevice{} - mi := &file_nico_proto_msgTypes[430] + mi := &file_nico_proto_msgTypes[432] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32179,7 +32301,7 @@ func (x *ConnectedDevice) String() string { func (*ConnectedDevice) ProtoMessage() {} func (x *ConnectedDevice) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[430] + mi := &file_nico_proto_msgTypes[432] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32192,7 +32314,7 @@ func (x *ConnectedDevice) ProtoReflect() protoreflect.Message { // Deprecated: Use ConnectedDevice.ProtoReflect.Descriptor instead. func (*ConnectedDevice) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{430} + return file_nico_proto_rawDescGZIP(), []int{432} } func (x *ConnectedDevice) GetId() *MachineId { @@ -32232,7 +32354,7 @@ type ConnectedDeviceList struct { func (x *ConnectedDeviceList) Reset() { *x = ConnectedDeviceList{} - mi := &file_nico_proto_msgTypes[431] + mi := &file_nico_proto_msgTypes[433] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32244,7 +32366,7 @@ func (x *ConnectedDeviceList) String() string { func (*ConnectedDeviceList) ProtoMessage() {} func (x *ConnectedDeviceList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[431] + mi := &file_nico_proto_msgTypes[433] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32257,7 +32379,7 @@ func (x *ConnectedDeviceList) ProtoReflect() protoreflect.Message { // Deprecated: Use ConnectedDeviceList.ProtoReflect.Descriptor instead. func (*ConnectedDeviceList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{431} + return file_nico_proto_rawDescGZIP(), []int{433} } func (x *ConnectedDeviceList) GetConnectedDevices() []*ConnectedDevice { @@ -32276,7 +32398,7 @@ type BmcIpList struct { func (x *BmcIpList) Reset() { *x = BmcIpList{} - mi := &file_nico_proto_msgTypes[432] + mi := &file_nico_proto_msgTypes[434] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32288,7 +32410,7 @@ func (x *BmcIpList) String() string { func (*BmcIpList) ProtoMessage() {} func (x *BmcIpList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[432] + mi := &file_nico_proto_msgTypes[434] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32301,7 +32423,7 @@ func (x *BmcIpList) ProtoReflect() protoreflect.Message { // Deprecated: Use BmcIpList.ProtoReflect.Descriptor instead. func (*BmcIpList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{432} + return file_nico_proto_rawDescGZIP(), []int{434} } func (x *BmcIpList) GetBmcIps() []string { @@ -32320,7 +32442,7 @@ type BmcIp struct { func (x *BmcIp) Reset() { *x = BmcIp{} - mi := &file_nico_proto_msgTypes[433] + mi := &file_nico_proto_msgTypes[435] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32332,7 +32454,7 @@ func (x *BmcIp) String() string { func (*BmcIp) ProtoMessage() {} func (x *BmcIp) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[433] + mi := &file_nico_proto_msgTypes[435] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32345,7 +32467,7 @@ func (x *BmcIp) ProtoReflect() protoreflect.Message { // Deprecated: Use BmcIp.ProtoReflect.Descriptor instead. func (*BmcIp) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{433} + return file_nico_proto_rawDescGZIP(), []int{435} } func (x *BmcIp) GetBmcIp() string { @@ -32365,7 +32487,7 @@ type MacAddressBmcIp struct { func (x *MacAddressBmcIp) Reset() { *x = MacAddressBmcIp{} - mi := &file_nico_proto_msgTypes[434] + mi := &file_nico_proto_msgTypes[436] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32377,7 +32499,7 @@ func (x *MacAddressBmcIp) String() string { func (*MacAddressBmcIp) ProtoMessage() {} func (x *MacAddressBmcIp) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[434] + mi := &file_nico_proto_msgTypes[436] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32390,7 +32512,7 @@ func (x *MacAddressBmcIp) ProtoReflect() protoreflect.Message { // Deprecated: Use MacAddressBmcIp.ProtoReflect.Descriptor instead. func (*MacAddressBmcIp) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{434} + return file_nico_proto_rawDescGZIP(), []int{436} } func (x *MacAddressBmcIp) GetBmcIp() string { @@ -32416,7 +32538,7 @@ type MachineIdBmcIpPairs struct { func (x *MachineIdBmcIpPairs) Reset() { *x = MachineIdBmcIpPairs{} - mi := &file_nico_proto_msgTypes[435] + mi := &file_nico_proto_msgTypes[437] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32428,7 +32550,7 @@ func (x *MachineIdBmcIpPairs) String() string { func (*MachineIdBmcIpPairs) ProtoMessage() {} func (x *MachineIdBmcIpPairs) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[435] + mi := &file_nico_proto_msgTypes[437] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32441,7 +32563,7 @@ func (x *MachineIdBmcIpPairs) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineIdBmcIpPairs.ProtoReflect.Descriptor instead. func (*MachineIdBmcIpPairs) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{435} + return file_nico_proto_rawDescGZIP(), []int{437} } func (x *MachineIdBmcIpPairs) GetPairs() []*MachineIdBmcIp { @@ -32461,7 +32583,7 @@ type MachineIdBmcIp struct { func (x *MachineIdBmcIp) Reset() { *x = MachineIdBmcIp{} - mi := &file_nico_proto_msgTypes[436] + mi := &file_nico_proto_msgTypes[438] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32473,7 +32595,7 @@ func (x *MachineIdBmcIp) String() string { func (*MachineIdBmcIp) ProtoMessage() {} func (x *MachineIdBmcIp) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[436] + mi := &file_nico_proto_msgTypes[438] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32486,7 +32608,7 @@ func (x *MachineIdBmcIp) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineIdBmcIp.ProtoReflect.Descriptor instead. func (*MachineIdBmcIp) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{436} + return file_nico_proto_rawDescGZIP(), []int{438} } func (x *MachineIdBmcIp) GetMachineId() *MachineId { @@ -32519,7 +32641,7 @@ type NetworkDevice struct { func (x *NetworkDevice) Reset() { *x = NetworkDevice{} - mi := &file_nico_proto_msgTypes[437] + mi := &file_nico_proto_msgTypes[439] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32531,7 +32653,7 @@ func (x *NetworkDevice) String() string { func (*NetworkDevice) ProtoMessage() {} func (x *NetworkDevice) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[437] + mi := &file_nico_proto_msgTypes[439] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32544,7 +32666,7 @@ func (x *NetworkDevice) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkDevice.ProtoReflect.Descriptor instead. func (*NetworkDevice) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{437} + return file_nico_proto_rawDescGZIP(), []int{439} } func (x *NetworkDevice) GetId() string { @@ -32605,7 +32727,7 @@ type NetworkTopologyRequest struct { func (x *NetworkTopologyRequest) Reset() { *x = NetworkTopologyRequest{} - mi := &file_nico_proto_msgTypes[438] + mi := &file_nico_proto_msgTypes[440] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32617,7 +32739,7 @@ func (x *NetworkTopologyRequest) String() string { func (*NetworkTopologyRequest) ProtoMessage() {} func (x *NetworkTopologyRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[438] + mi := &file_nico_proto_msgTypes[440] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32630,7 +32752,7 @@ func (x *NetworkTopologyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkTopologyRequest.ProtoReflect.Descriptor instead. func (*NetworkTopologyRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{438} + return file_nico_proto_rawDescGZIP(), []int{440} } func (x *NetworkTopologyRequest) GetId() string { @@ -32649,7 +32771,7 @@ type NetworkDeviceIdList struct { func (x *NetworkDeviceIdList) Reset() { *x = NetworkDeviceIdList{} - mi := &file_nico_proto_msgTypes[439] + mi := &file_nico_proto_msgTypes[441] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32661,7 +32783,7 @@ func (x *NetworkDeviceIdList) String() string { func (*NetworkDeviceIdList) ProtoMessage() {} func (x *NetworkDeviceIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[439] + mi := &file_nico_proto_msgTypes[441] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32674,7 +32796,7 @@ func (x *NetworkDeviceIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkDeviceIdList.ProtoReflect.Descriptor instead. func (*NetworkDeviceIdList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{439} + return file_nico_proto_rawDescGZIP(), []int{441} } func (x *NetworkDeviceIdList) GetNetworkDeviceIds() []string { @@ -32693,7 +32815,7 @@ type NetworkTopologyData struct { func (x *NetworkTopologyData) Reset() { *x = NetworkTopologyData{} - mi := &file_nico_proto_msgTypes[440] + mi := &file_nico_proto_msgTypes[442] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32705,7 +32827,7 @@ func (x *NetworkTopologyData) String() string { func (*NetworkTopologyData) ProtoMessage() {} func (x *NetworkTopologyData) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[440] + mi := &file_nico_proto_msgTypes[442] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32718,7 +32840,7 @@ func (x *NetworkTopologyData) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkTopologyData.ProtoReflect.Descriptor instead. func (*NetworkTopologyData) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{440} + return file_nico_proto_rawDescGZIP(), []int{442} } func (x *NetworkTopologyData) GetNetworkDevices() []*NetworkDevice { @@ -32752,7 +32874,7 @@ type RouteServers struct { func (x *RouteServers) Reset() { *x = RouteServers{} - mi := &file_nico_proto_msgTypes[441] + mi := &file_nico_proto_msgTypes[443] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32764,7 +32886,7 @@ func (x *RouteServers) String() string { func (*RouteServers) ProtoMessage() {} func (x *RouteServers) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[441] + mi := &file_nico_proto_msgTypes[443] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32777,7 +32899,7 @@ func (x *RouteServers) ProtoReflect() protoreflect.Message { // Deprecated: Use RouteServers.ProtoReflect.Descriptor instead. func (*RouteServers) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{441} + return file_nico_proto_rawDescGZIP(), []int{443} } func (x *RouteServers) GetRouteServers() []string { @@ -32803,7 +32925,7 @@ type RouteServerEntries struct { func (x *RouteServerEntries) Reset() { *x = RouteServerEntries{} - mi := &file_nico_proto_msgTypes[442] + mi := &file_nico_proto_msgTypes[444] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32815,7 +32937,7 @@ func (x *RouteServerEntries) String() string { func (*RouteServerEntries) ProtoMessage() {} func (x *RouteServerEntries) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[442] + mi := &file_nico_proto_msgTypes[444] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32828,7 +32950,7 @@ func (x *RouteServerEntries) ProtoReflect() protoreflect.Message { // Deprecated: Use RouteServerEntries.ProtoReflect.Descriptor instead. func (*RouteServerEntries) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{442} + return file_nico_proto_rawDescGZIP(), []int{444} } func (x *RouteServerEntries) GetRouteServers() []*RouteServer { @@ -32851,7 +32973,7 @@ type RouteServer struct { func (x *RouteServer) Reset() { *x = RouteServer{} - mi := &file_nico_proto_msgTypes[443] + mi := &file_nico_proto_msgTypes[445] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32863,7 +32985,7 @@ func (x *RouteServer) String() string { func (*RouteServer) ProtoMessage() {} func (x *RouteServer) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[443] + mi := &file_nico_proto_msgTypes[445] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32876,7 +32998,7 @@ func (x *RouteServer) ProtoReflect() protoreflect.Message { // Deprecated: Use RouteServer.ProtoReflect.Descriptor instead. func (*RouteServer) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{443} + return file_nico_proto_rawDescGZIP(), []int{445} } func (x *RouteServer) GetAddress() string { @@ -32905,7 +33027,7 @@ type SetHostUefiPasswordRequest struct { func (x *SetHostUefiPasswordRequest) Reset() { *x = SetHostUefiPasswordRequest{} - mi := &file_nico_proto_msgTypes[444] + mi := &file_nico_proto_msgTypes[446] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32917,7 +33039,7 @@ func (x *SetHostUefiPasswordRequest) String() string { func (*SetHostUefiPasswordRequest) ProtoMessage() {} func (x *SetHostUefiPasswordRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[444] + mi := &file_nico_proto_msgTypes[446] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32930,7 +33052,7 @@ func (x *SetHostUefiPasswordRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetHostUefiPasswordRequest.ProtoReflect.Descriptor instead. func (*SetHostUefiPasswordRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{444} + return file_nico_proto_rawDescGZIP(), []int{446} } func (x *SetHostUefiPasswordRequest) GetHostId() *MachineId { @@ -32956,7 +33078,7 @@ type SetHostUefiPasswordResponse struct { func (x *SetHostUefiPasswordResponse) Reset() { *x = SetHostUefiPasswordResponse{} - mi := &file_nico_proto_msgTypes[445] + mi := &file_nico_proto_msgTypes[447] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32968,7 +33090,7 @@ func (x *SetHostUefiPasswordResponse) String() string { func (*SetHostUefiPasswordResponse) ProtoMessage() {} func (x *SetHostUefiPasswordResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[445] + mi := &file_nico_proto_msgTypes[447] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32981,7 +33103,7 @@ func (x *SetHostUefiPasswordResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SetHostUefiPasswordResponse.ProtoReflect.Descriptor instead. func (*SetHostUefiPasswordResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{445} + return file_nico_proto_rawDescGZIP(), []int{447} } func (x *SetHostUefiPasswordResponse) GetJobId() string { @@ -33003,7 +33125,7 @@ type ClearHostUefiPasswordRequest struct { func (x *ClearHostUefiPasswordRequest) Reset() { *x = ClearHostUefiPasswordRequest{} - mi := &file_nico_proto_msgTypes[446] + mi := &file_nico_proto_msgTypes[448] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33015,7 +33137,7 @@ func (x *ClearHostUefiPasswordRequest) String() string { func (*ClearHostUefiPasswordRequest) ProtoMessage() {} func (x *ClearHostUefiPasswordRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[446] + mi := &file_nico_proto_msgTypes[448] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33028,7 +33150,7 @@ func (x *ClearHostUefiPasswordRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ClearHostUefiPasswordRequest.ProtoReflect.Descriptor instead. func (*ClearHostUefiPasswordRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{446} + return file_nico_proto_rawDescGZIP(), []int{448} } func (x *ClearHostUefiPasswordRequest) GetHostId() *MachineId { @@ -33054,7 +33176,7 @@ type ClearHostUefiPasswordResponse struct { func (x *ClearHostUefiPasswordResponse) Reset() { *x = ClearHostUefiPasswordResponse{} - mi := &file_nico_proto_msgTypes[447] + mi := &file_nico_proto_msgTypes[449] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33066,7 +33188,7 @@ func (x *ClearHostUefiPasswordResponse) String() string { func (*ClearHostUefiPasswordResponse) ProtoMessage() {} func (x *ClearHostUefiPasswordResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[447] + mi := &file_nico_proto_msgTypes[449] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33079,7 +33201,7 @@ func (x *ClearHostUefiPasswordResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ClearHostUefiPasswordResponse.ProtoReflect.Descriptor instead. func (*ClearHostUefiPasswordResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{447} + return file_nico_proto_rawDescGZIP(), []int{449} } func (x *ClearHostUefiPasswordResponse) GetJobId() string { @@ -33115,7 +33237,7 @@ type OsImageAttributes struct { func (x *OsImageAttributes) Reset() { *x = OsImageAttributes{} - mi := &file_nico_proto_msgTypes[448] + mi := &file_nico_proto_msgTypes[450] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33127,7 +33249,7 @@ func (x *OsImageAttributes) String() string { func (*OsImageAttributes) ProtoMessage() {} func (x *OsImageAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[448] + mi := &file_nico_proto_msgTypes[450] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33140,7 +33262,7 @@ func (x *OsImageAttributes) ProtoReflect() protoreflect.Message { // Deprecated: Use OsImageAttributes.ProtoReflect.Descriptor instead. func (*OsImageAttributes) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{448} + return file_nico_proto_rawDescGZIP(), []int{450} } func (x *OsImageAttributes) GetId() *UUID { @@ -33261,7 +33383,7 @@ type OsImage struct { func (x *OsImage) Reset() { *x = OsImage{} - mi := &file_nico_proto_msgTypes[449] + mi := &file_nico_proto_msgTypes[451] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33273,7 +33395,7 @@ func (x *OsImage) String() string { func (*OsImage) ProtoMessage() {} func (x *OsImage) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[449] + mi := &file_nico_proto_msgTypes[451] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33286,7 +33408,7 @@ func (x *OsImage) ProtoReflect() protoreflect.Message { // Deprecated: Use OsImage.ProtoReflect.Descriptor instead. func (*OsImage) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{449} + return file_nico_proto_rawDescGZIP(), []int{451} } func (x *OsImage) GetAttributes() *OsImageAttributes { @@ -33333,7 +33455,7 @@ type ListOsImageRequest struct { func (x *ListOsImageRequest) Reset() { *x = ListOsImageRequest{} - mi := &file_nico_proto_msgTypes[450] + mi := &file_nico_proto_msgTypes[452] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33345,7 +33467,7 @@ func (x *ListOsImageRequest) String() string { func (*ListOsImageRequest) ProtoMessage() {} func (x *ListOsImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[450] + mi := &file_nico_proto_msgTypes[452] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33358,7 +33480,7 @@ func (x *ListOsImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListOsImageRequest.ProtoReflect.Descriptor instead. func (*ListOsImageRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{450} + return file_nico_proto_rawDescGZIP(), []int{452} } func (x *ListOsImageRequest) GetTenantOrganizationId() string { @@ -33377,7 +33499,7 @@ type ListOsImageResponse struct { func (x *ListOsImageResponse) Reset() { *x = ListOsImageResponse{} - mi := &file_nico_proto_msgTypes[451] + mi := &file_nico_proto_msgTypes[453] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33389,7 +33511,7 @@ func (x *ListOsImageResponse) String() string { func (*ListOsImageResponse) ProtoMessage() {} func (x *ListOsImageResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[451] + mi := &file_nico_proto_msgTypes[453] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33402,7 +33524,7 @@ func (x *ListOsImageResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListOsImageResponse.ProtoReflect.Descriptor instead. func (*ListOsImageResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{451} + return file_nico_proto_rawDescGZIP(), []int{453} } func (x *ListOsImageResponse) GetImages() []*OsImage { @@ -33422,7 +33544,7 @@ type DeleteOsImageRequest struct { func (x *DeleteOsImageRequest) Reset() { *x = DeleteOsImageRequest{} - mi := &file_nico_proto_msgTypes[452] + mi := &file_nico_proto_msgTypes[454] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33434,7 +33556,7 @@ func (x *DeleteOsImageRequest) String() string { func (*DeleteOsImageRequest) ProtoMessage() {} func (x *DeleteOsImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[452] + mi := &file_nico_proto_msgTypes[454] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33447,7 +33569,7 @@ func (x *DeleteOsImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteOsImageRequest.ProtoReflect.Descriptor instead. func (*DeleteOsImageRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{452} + return file_nico_proto_rawDescGZIP(), []int{454} } func (x *DeleteOsImageRequest) GetId() *UUID { @@ -33472,7 +33594,7 @@ type DeleteOsImageResponse struct { func (x *DeleteOsImageResponse) Reset() { *x = DeleteOsImageResponse{} - mi := &file_nico_proto_msgTypes[453] + mi := &file_nico_proto_msgTypes[455] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33484,7 +33606,7 @@ func (x *DeleteOsImageResponse) String() string { func (*DeleteOsImageResponse) ProtoMessage() {} func (x *DeleteOsImageResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[453] + mi := &file_nico_proto_msgTypes[455] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33497,7 +33619,7 @@ func (x *DeleteOsImageResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteOsImageResponse.ProtoReflect.Descriptor instead. func (*DeleteOsImageResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{453} + return file_nico_proto_rawDescGZIP(), []int{455} } // Request/Response messages for iPXE Script Template management @@ -33510,7 +33632,7 @@ type GetIpxeTemplateRequest struct { func (x *GetIpxeTemplateRequest) Reset() { *x = GetIpxeTemplateRequest{} - mi := &file_nico_proto_msgTypes[454] + mi := &file_nico_proto_msgTypes[456] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33522,7 +33644,7 @@ func (x *GetIpxeTemplateRequest) String() string { func (*GetIpxeTemplateRequest) ProtoMessage() {} func (x *GetIpxeTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[454] + mi := &file_nico_proto_msgTypes[456] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33535,7 +33657,7 @@ func (x *GetIpxeTemplateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIpxeTemplateRequest.ProtoReflect.Descriptor instead. func (*GetIpxeTemplateRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{454} + return file_nico_proto_rawDescGZIP(), []int{456} } func (x *GetIpxeTemplateRequest) GetId() *IpxeTemplateId { @@ -33553,7 +33675,7 @@ type ListIpxeTemplatesRequest struct { func (x *ListIpxeTemplatesRequest) Reset() { *x = ListIpxeTemplatesRequest{} - mi := &file_nico_proto_msgTypes[455] + mi := &file_nico_proto_msgTypes[457] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33565,7 +33687,7 @@ func (x *ListIpxeTemplatesRequest) String() string { func (*ListIpxeTemplatesRequest) ProtoMessage() {} func (x *ListIpxeTemplatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[455] + mi := &file_nico_proto_msgTypes[457] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33578,7 +33700,7 @@ func (x *ListIpxeTemplatesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListIpxeTemplatesRequest.ProtoReflect.Descriptor instead. func (*ListIpxeTemplatesRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{455} + return file_nico_proto_rawDescGZIP(), []int{457} } type IpxeTemplateList struct { @@ -33590,7 +33712,7 @@ type IpxeTemplateList struct { func (x *IpxeTemplateList) Reset() { *x = IpxeTemplateList{} - mi := &file_nico_proto_msgTypes[456] + mi := &file_nico_proto_msgTypes[458] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33602,7 +33724,7 @@ func (x *IpxeTemplateList) String() string { func (*IpxeTemplateList) ProtoMessage() {} func (x *IpxeTemplateList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[456] + mi := &file_nico_proto_msgTypes[458] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33615,7 +33737,7 @@ func (x *IpxeTemplateList) ProtoReflect() protoreflect.Message { // Deprecated: Use IpxeTemplateList.ProtoReflect.Descriptor instead. func (*IpxeTemplateList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{456} + return file_nico_proto_rawDescGZIP(), []int{458} } func (x *IpxeTemplateList) GetTemplates() []*IpxeTemplate { @@ -33656,7 +33778,7 @@ type ExpectedHostNic struct { func (x *ExpectedHostNic) Reset() { *x = ExpectedHostNic{} - mi := &file_nico_proto_msgTypes[457] + mi := &file_nico_proto_msgTypes[459] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33668,7 +33790,7 @@ func (x *ExpectedHostNic) String() string { func (*ExpectedHostNic) ProtoMessage() {} func (x *ExpectedHostNic) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[457] + mi := &file_nico_proto_msgTypes[459] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33681,7 +33803,7 @@ func (x *ExpectedHostNic) ProtoReflect() protoreflect.Message { // Deprecated: Use ExpectedHostNic.ProtoReflect.Descriptor instead. func (*ExpectedHostNic) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{457} + return file_nico_proto_rawDescGZIP(), []int{459} } func (x *ExpectedHostNic) GetMacAddress() string { @@ -33747,7 +33869,7 @@ type HostLifecycleProfile struct { func (x *HostLifecycleProfile) Reset() { *x = HostLifecycleProfile{} - mi := &file_nico_proto_msgTypes[458] + mi := &file_nico_proto_msgTypes[460] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33759,7 +33881,7 @@ func (x *HostLifecycleProfile) String() string { func (*HostLifecycleProfile) ProtoMessage() {} func (x *HostLifecycleProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[458] + mi := &file_nico_proto_msgTypes[460] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33772,7 +33894,7 @@ func (x *HostLifecycleProfile) ProtoReflect() protoreflect.Message { // Deprecated: Use HostLifecycleProfile.ProtoReflect.Descriptor instead. func (*HostLifecycleProfile) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{458} + return file_nico_proto_rawDescGZIP(), []int{460} } func (x *HostLifecycleProfile) GetDisableLockdown() bool { @@ -33821,7 +33943,7 @@ type ExpectedMachine struct { func (x *ExpectedMachine) Reset() { *x = ExpectedMachine{} - mi := &file_nico_proto_msgTypes[459] + mi := &file_nico_proto_msgTypes[461] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33833,7 +33955,7 @@ func (x *ExpectedMachine) String() string { func (*ExpectedMachine) ProtoMessage() {} func (x *ExpectedMachine) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[459] + mi := &file_nico_proto_msgTypes[461] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33846,7 +33968,7 @@ func (x *ExpectedMachine) ProtoReflect() protoreflect.Message { // Deprecated: Use ExpectedMachine.ProtoReflect.Descriptor instead. func (*ExpectedMachine) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{459} + return file_nico_proto_rawDescGZIP(), []int{461} } func (x *ExpectedMachine) GetBmcMacAddress() string { @@ -33981,7 +34103,7 @@ type ExpectedMachineRequest struct { func (x *ExpectedMachineRequest) Reset() { *x = ExpectedMachineRequest{} - mi := &file_nico_proto_msgTypes[460] + mi := &file_nico_proto_msgTypes[462] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33993,7 +34115,7 @@ func (x *ExpectedMachineRequest) String() string { func (*ExpectedMachineRequest) ProtoMessage() {} func (x *ExpectedMachineRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[460] + mi := &file_nico_proto_msgTypes[462] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34006,7 +34128,7 @@ func (x *ExpectedMachineRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ExpectedMachineRequest.ProtoReflect.Descriptor instead. func (*ExpectedMachineRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{460} + return file_nico_proto_rawDescGZIP(), []int{462} } func (x *ExpectedMachineRequest) GetBmcMacAddress() string { @@ -34032,7 +34154,7 @@ type ExpectedMachineList struct { func (x *ExpectedMachineList) Reset() { *x = ExpectedMachineList{} - mi := &file_nico_proto_msgTypes[461] + mi := &file_nico_proto_msgTypes[463] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34044,7 +34166,7 @@ func (x *ExpectedMachineList) String() string { func (*ExpectedMachineList) ProtoMessage() {} func (x *ExpectedMachineList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[461] + mi := &file_nico_proto_msgTypes[463] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34057,7 +34179,7 @@ func (x *ExpectedMachineList) ProtoReflect() protoreflect.Message { // Deprecated: Use ExpectedMachineList.ProtoReflect.Descriptor instead. func (*ExpectedMachineList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{461} + return file_nico_proto_rawDescGZIP(), []int{463} } func (x *ExpectedMachineList) GetExpectedMachines() []*ExpectedMachine { @@ -34076,7 +34198,7 @@ type LinkedExpectedMachineList struct { func (x *LinkedExpectedMachineList) Reset() { *x = LinkedExpectedMachineList{} - mi := &file_nico_proto_msgTypes[462] + mi := &file_nico_proto_msgTypes[464] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34088,7 +34210,7 @@ func (x *LinkedExpectedMachineList) String() string { func (*LinkedExpectedMachineList) ProtoMessage() {} func (x *LinkedExpectedMachineList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[462] + mi := &file_nico_proto_msgTypes[464] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34101,7 +34223,7 @@ func (x *LinkedExpectedMachineList) ProtoReflect() protoreflect.Message { // Deprecated: Use LinkedExpectedMachineList.ProtoReflect.Descriptor instead. func (*LinkedExpectedMachineList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{462} + return file_nico_proto_rawDescGZIP(), []int{464} } func (x *LinkedExpectedMachineList) GetExpectedMachines() []*LinkedExpectedMachine { @@ -34125,7 +34247,7 @@ type LinkedExpectedMachine struct { func (x *LinkedExpectedMachine) Reset() { *x = LinkedExpectedMachine{} - mi := &file_nico_proto_msgTypes[463] + mi := &file_nico_proto_msgTypes[465] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34137,7 +34259,7 @@ func (x *LinkedExpectedMachine) String() string { func (*LinkedExpectedMachine) ProtoMessage() {} func (x *LinkedExpectedMachine) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[463] + mi := &file_nico_proto_msgTypes[465] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34150,7 +34272,7 @@ func (x *LinkedExpectedMachine) ProtoReflect() protoreflect.Message { // Deprecated: Use LinkedExpectedMachine.ProtoReflect.Descriptor instead. func (*LinkedExpectedMachine) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{463} + return file_nico_proto_rawDescGZIP(), []int{465} } func (x *LinkedExpectedMachine) GetChassisSerialNumber() string { @@ -34204,7 +34326,7 @@ type UnexpectedMachineList struct { func (x *UnexpectedMachineList) Reset() { *x = UnexpectedMachineList{} - mi := &file_nico_proto_msgTypes[464] + mi := &file_nico_proto_msgTypes[466] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34216,7 +34338,7 @@ func (x *UnexpectedMachineList) String() string { func (*UnexpectedMachineList) ProtoMessage() {} func (x *UnexpectedMachineList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[464] + mi := &file_nico_proto_msgTypes[466] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34229,7 +34351,7 @@ func (x *UnexpectedMachineList) ProtoReflect() protoreflect.Message { // Deprecated: Use UnexpectedMachineList.ProtoReflect.Descriptor instead. func (*UnexpectedMachineList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{464} + return file_nico_proto_rawDescGZIP(), []int{466} } func (x *UnexpectedMachineList) GetUnexpectedMachines() []*UnexpectedMachine { @@ -34250,7 +34372,7 @@ type UnexpectedMachine struct { func (x *UnexpectedMachine) Reset() { *x = UnexpectedMachine{} - mi := &file_nico_proto_msgTypes[465] + mi := &file_nico_proto_msgTypes[467] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34262,7 +34384,7 @@ func (x *UnexpectedMachine) String() string { func (*UnexpectedMachine) ProtoMessage() {} func (x *UnexpectedMachine) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[465] + mi := &file_nico_proto_msgTypes[467] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34275,7 +34397,7 @@ func (x *UnexpectedMachine) ProtoReflect() protoreflect.Message { // Deprecated: Use UnexpectedMachine.ProtoReflect.Descriptor instead. func (*UnexpectedMachine) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{465} + return file_nico_proto_rawDescGZIP(), []int{467} } func (x *UnexpectedMachine) GetAddress() string { @@ -34311,7 +34433,7 @@ type BatchExpectedMachineOperationRequest struct { func (x *BatchExpectedMachineOperationRequest) Reset() { *x = BatchExpectedMachineOperationRequest{} - mi := &file_nico_proto_msgTypes[466] + mi := &file_nico_proto_msgTypes[468] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34323,7 +34445,7 @@ func (x *BatchExpectedMachineOperationRequest) String() string { func (*BatchExpectedMachineOperationRequest) ProtoMessage() {} func (x *BatchExpectedMachineOperationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[466] + mi := &file_nico_proto_msgTypes[468] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34336,7 +34458,7 @@ func (x *BatchExpectedMachineOperationRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use BatchExpectedMachineOperationRequest.ProtoReflect.Descriptor instead. func (*BatchExpectedMachineOperationRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{466} + return file_nico_proto_rawDescGZIP(), []int{468} } func (x *BatchExpectedMachineOperationRequest) GetExpectedMachines() *ExpectedMachineList { @@ -34369,7 +34491,7 @@ type ExpectedMachineOperationResult struct { func (x *ExpectedMachineOperationResult) Reset() { *x = ExpectedMachineOperationResult{} - mi := &file_nico_proto_msgTypes[467] + mi := &file_nico_proto_msgTypes[469] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34381,7 +34503,7 @@ func (x *ExpectedMachineOperationResult) String() string { func (*ExpectedMachineOperationResult) ProtoMessage() {} func (x *ExpectedMachineOperationResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[467] + mi := &file_nico_proto_msgTypes[469] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34394,7 +34516,7 @@ func (x *ExpectedMachineOperationResult) ProtoReflect() protoreflect.Message { // Deprecated: Use ExpectedMachineOperationResult.ProtoReflect.Descriptor instead. func (*ExpectedMachineOperationResult) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{467} + return file_nico_proto_rawDescGZIP(), []int{469} } func (x *ExpectedMachineOperationResult) GetId() *UUID { @@ -34435,7 +34557,7 @@ type BatchExpectedMachineOperationResponse struct { func (x *BatchExpectedMachineOperationResponse) Reset() { *x = BatchExpectedMachineOperationResponse{} - mi := &file_nico_proto_msgTypes[468] + mi := &file_nico_proto_msgTypes[470] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34447,7 +34569,7 @@ func (x *BatchExpectedMachineOperationResponse) String() string { func (*BatchExpectedMachineOperationResponse) ProtoMessage() {} func (x *BatchExpectedMachineOperationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[468] + mi := &file_nico_proto_msgTypes[470] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34460,7 +34582,7 @@ func (x *BatchExpectedMachineOperationResponse) ProtoReflect() protoreflect.Mess // Deprecated: Use BatchExpectedMachineOperationResponse.ProtoReflect.Descriptor instead. func (*BatchExpectedMachineOperationResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{468} + return file_nico_proto_rawDescGZIP(), []int{470} } func (x *BatchExpectedMachineOperationResponse) GetResults() []*ExpectedMachineOperationResult { @@ -34478,7 +34600,7 @@ type MachineRebootCompletedResponse struct { func (x *MachineRebootCompletedResponse) Reset() { *x = MachineRebootCompletedResponse{} - mi := &file_nico_proto_msgTypes[469] + mi := &file_nico_proto_msgTypes[471] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34490,7 +34612,7 @@ func (x *MachineRebootCompletedResponse) String() string { func (*MachineRebootCompletedResponse) ProtoMessage() {} func (x *MachineRebootCompletedResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[469] + mi := &file_nico_proto_msgTypes[471] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34503,7 +34625,7 @@ func (x *MachineRebootCompletedResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineRebootCompletedResponse.ProtoReflect.Descriptor instead. func (*MachineRebootCompletedResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{469} + return file_nico_proto_rawDescGZIP(), []int{471} } type MachineRebootCompletedRequest struct { @@ -34515,7 +34637,7 @@ type MachineRebootCompletedRequest struct { func (x *MachineRebootCompletedRequest) Reset() { *x = MachineRebootCompletedRequest{} - mi := &file_nico_proto_msgTypes[470] + mi := &file_nico_proto_msgTypes[472] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34527,7 +34649,7 @@ func (x *MachineRebootCompletedRequest) String() string { func (*MachineRebootCompletedRequest) ProtoMessage() {} func (x *MachineRebootCompletedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[470] + mi := &file_nico_proto_msgTypes[472] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34540,7 +34662,7 @@ func (x *MachineRebootCompletedRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineRebootCompletedRequest.ProtoReflect.Descriptor instead. func (*MachineRebootCompletedRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{470} + return file_nico_proto_rawDescGZIP(), []int{472} } func (x *MachineRebootCompletedRequest) GetMachineId() *MachineId { @@ -34565,7 +34687,7 @@ type ScoutFirmwareUpgradeStatusRequest struct { func (x *ScoutFirmwareUpgradeStatusRequest) Reset() { *x = ScoutFirmwareUpgradeStatusRequest{} - mi := &file_nico_proto_msgTypes[471] + mi := &file_nico_proto_msgTypes[473] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34577,7 +34699,7 @@ func (x *ScoutFirmwareUpgradeStatusRequest) String() string { func (*ScoutFirmwareUpgradeStatusRequest) ProtoMessage() {} func (x *ScoutFirmwareUpgradeStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[471] + mi := &file_nico_proto_msgTypes[473] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34590,7 +34712,7 @@ func (x *ScoutFirmwareUpgradeStatusRequest) ProtoReflect() protoreflect.Message // Deprecated: Use ScoutFirmwareUpgradeStatusRequest.ProtoReflect.Descriptor instead. func (*ScoutFirmwareUpgradeStatusRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{471} + return file_nico_proto_rawDescGZIP(), []int{473} } func (x *ScoutFirmwareUpgradeStatusRequest) GetMachineId() *MachineId { @@ -34653,7 +34775,7 @@ type MachineValidationCompletedRequest struct { func (x *MachineValidationCompletedRequest) Reset() { *x = MachineValidationCompletedRequest{} - mi := &file_nico_proto_msgTypes[472] + mi := &file_nico_proto_msgTypes[474] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34665,7 +34787,7 @@ func (x *MachineValidationCompletedRequest) String() string { func (*MachineValidationCompletedRequest) ProtoMessage() {} func (x *MachineValidationCompletedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[472] + mi := &file_nico_proto_msgTypes[474] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34678,7 +34800,7 @@ func (x *MachineValidationCompletedRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationCompletedRequest.ProtoReflect.Descriptor instead. func (*MachineValidationCompletedRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{472} + return file_nico_proto_rawDescGZIP(), []int{474} } func (x *MachineValidationCompletedRequest) GetMachineId() *MachineId { @@ -34710,7 +34832,7 @@ type MachineValidationCompletedResponse struct { func (x *MachineValidationCompletedResponse) Reset() { *x = MachineValidationCompletedResponse{} - mi := &file_nico_proto_msgTypes[473] + mi := &file_nico_proto_msgTypes[475] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34722,7 +34844,7 @@ func (x *MachineValidationCompletedResponse) String() string { func (*MachineValidationCompletedResponse) ProtoMessage() {} func (x *MachineValidationCompletedResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[473] + mi := &file_nico_proto_msgTypes[475] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34735,7 +34857,7 @@ func (x *MachineValidationCompletedResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationCompletedResponse.ProtoReflect.Descriptor instead. func (*MachineValidationCompletedResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{473} + return file_nico_proto_rawDescGZIP(), []int{475} } type MachineValidationResult struct { @@ -34758,7 +34880,7 @@ type MachineValidationResult struct { func (x *MachineValidationResult) Reset() { *x = MachineValidationResult{} - mi := &file_nico_proto_msgTypes[474] + mi := &file_nico_proto_msgTypes[476] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34770,7 +34892,7 @@ func (x *MachineValidationResult) String() string { func (*MachineValidationResult) ProtoMessage() {} func (x *MachineValidationResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[474] + mi := &file_nico_proto_msgTypes[476] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34783,7 +34905,7 @@ func (x *MachineValidationResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationResult.ProtoReflect.Descriptor instead. func (*MachineValidationResult) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{474} + return file_nico_proto_rawDescGZIP(), []int{476} } func (x *MachineValidationResult) GetName() string { @@ -34879,7 +35001,7 @@ type MachineValidationResultPostRequest struct { func (x *MachineValidationResultPostRequest) Reset() { *x = MachineValidationResultPostRequest{} - mi := &file_nico_proto_msgTypes[475] + mi := &file_nico_proto_msgTypes[477] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34891,7 +35013,7 @@ func (x *MachineValidationResultPostRequest) String() string { func (*MachineValidationResultPostRequest) ProtoMessage() {} func (x *MachineValidationResultPostRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[475] + mi := &file_nico_proto_msgTypes[477] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34904,7 +35026,7 @@ func (x *MachineValidationResultPostRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationResultPostRequest.ProtoReflect.Descriptor instead. func (*MachineValidationResultPostRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{475} + return file_nico_proto_rawDescGZIP(), []int{477} } func (x *MachineValidationResultPostRequest) GetResult() *MachineValidationResult { @@ -34923,7 +35045,7 @@ type MachineValidationResultList struct { func (x *MachineValidationResultList) Reset() { *x = MachineValidationResultList{} - mi := &file_nico_proto_msgTypes[476] + mi := &file_nico_proto_msgTypes[478] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34935,7 +35057,7 @@ func (x *MachineValidationResultList) String() string { func (*MachineValidationResultList) ProtoMessage() {} func (x *MachineValidationResultList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[476] + mi := &file_nico_proto_msgTypes[478] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34948,7 +35070,7 @@ func (x *MachineValidationResultList) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationResultList.ProtoReflect.Descriptor instead. func (*MachineValidationResultList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{476} + return file_nico_proto_rawDescGZIP(), []int{478} } func (x *MachineValidationResultList) GetResults() []*MachineValidationResult { @@ -34969,7 +35091,7 @@ type MachineValidationGetRequest struct { func (x *MachineValidationGetRequest) Reset() { *x = MachineValidationGetRequest{} - mi := &file_nico_proto_msgTypes[477] + mi := &file_nico_proto_msgTypes[479] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34981,7 +35103,7 @@ func (x *MachineValidationGetRequest) String() string { func (*MachineValidationGetRequest) ProtoMessage() {} func (x *MachineValidationGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[477] + mi := &file_nico_proto_msgTypes[479] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34994,7 +35116,7 @@ func (x *MachineValidationGetRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationGetRequest.ProtoReflect.Descriptor instead. func (*MachineValidationGetRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{477} + return file_nico_proto_rawDescGZIP(), []int{479} } func (x *MachineValidationGetRequest) GetMachineId() *MachineId { @@ -35034,7 +35156,7 @@ type MachineValidationStatus struct { func (x *MachineValidationStatus) Reset() { *x = MachineValidationStatus{} - mi := &file_nico_proto_msgTypes[478] + mi := &file_nico_proto_msgTypes[480] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35046,7 +35168,7 @@ func (x *MachineValidationStatus) String() string { func (*MachineValidationStatus) ProtoMessage() {} func (x *MachineValidationStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[478] + mi := &file_nico_proto_msgTypes[480] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35059,7 +35181,7 @@ func (x *MachineValidationStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationStatus.ProtoReflect.Descriptor instead. func (*MachineValidationStatus) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{478} + return file_nico_proto_rawDescGZIP(), []int{480} } func (x *MachineValidationStatus) GetMachineValidationState() isMachineValidationStatus_MachineValidationState { @@ -35149,7 +35271,7 @@ type MachineValidationRun struct { func (x *MachineValidationRun) Reset() { *x = MachineValidationRun{} - mi := &file_nico_proto_msgTypes[479] + mi := &file_nico_proto_msgTypes[481] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35161,7 +35283,7 @@ func (x *MachineValidationRun) String() string { func (*MachineValidationRun) ProtoMessage() {} func (x *MachineValidationRun) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[479] + mi := &file_nico_proto_msgTypes[481] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35174,7 +35296,7 @@ func (x *MachineValidationRun) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationRun.ProtoReflect.Descriptor instead. func (*MachineValidationRun) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{479} + return file_nico_proto_rawDescGZIP(), []int{481} } func (x *MachineValidationRun) GetValidationId() *MachineValidationId { @@ -35250,7 +35372,7 @@ type MachineSetAutoUpdateRequest struct { func (x *MachineSetAutoUpdateRequest) Reset() { *x = MachineSetAutoUpdateRequest{} - mi := &file_nico_proto_msgTypes[480] + mi := &file_nico_proto_msgTypes[482] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35262,7 +35384,7 @@ func (x *MachineSetAutoUpdateRequest) String() string { func (*MachineSetAutoUpdateRequest) ProtoMessage() {} func (x *MachineSetAutoUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[480] + mi := &file_nico_proto_msgTypes[482] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35275,7 +35397,7 @@ func (x *MachineSetAutoUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineSetAutoUpdateRequest.ProtoReflect.Descriptor instead. func (*MachineSetAutoUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{480} + return file_nico_proto_rawDescGZIP(), []int{482} } func (x *MachineSetAutoUpdateRequest) GetMachineId() *MachineId { @@ -35300,7 +35422,7 @@ type MachineSetAutoUpdateResponse struct { func (x *MachineSetAutoUpdateResponse) Reset() { *x = MachineSetAutoUpdateResponse{} - mi := &file_nico_proto_msgTypes[481] + mi := &file_nico_proto_msgTypes[483] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35312,7 +35434,7 @@ func (x *MachineSetAutoUpdateResponse) String() string { func (*MachineSetAutoUpdateResponse) ProtoMessage() {} func (x *MachineSetAutoUpdateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[481] + mi := &file_nico_proto_msgTypes[483] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35325,7 +35447,7 @@ func (x *MachineSetAutoUpdateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineSetAutoUpdateResponse.ProtoReflect.Descriptor instead. func (*MachineSetAutoUpdateResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{481} + return file_nico_proto_rawDescGZIP(), []int{483} } type GetMachineValidationExternalConfigRequest struct { @@ -35337,7 +35459,7 @@ type GetMachineValidationExternalConfigRequest struct { func (x *GetMachineValidationExternalConfigRequest) Reset() { *x = GetMachineValidationExternalConfigRequest{} - mi := &file_nico_proto_msgTypes[482] + mi := &file_nico_proto_msgTypes[484] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35349,7 +35471,7 @@ func (x *GetMachineValidationExternalConfigRequest) String() string { func (*GetMachineValidationExternalConfigRequest) ProtoMessage() {} func (x *GetMachineValidationExternalConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[482] + mi := &file_nico_proto_msgTypes[484] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35362,7 +35484,7 @@ func (x *GetMachineValidationExternalConfigRequest) ProtoReflect() protoreflect. // Deprecated: Use GetMachineValidationExternalConfigRequest.ProtoReflect.Descriptor instead. func (*GetMachineValidationExternalConfigRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{482} + return file_nico_proto_rawDescGZIP(), []int{484} } func (x *GetMachineValidationExternalConfigRequest) GetName() string { @@ -35385,7 +35507,7 @@ type MachineValidationExternalConfig struct { func (x *MachineValidationExternalConfig) Reset() { *x = MachineValidationExternalConfig{} - mi := &file_nico_proto_msgTypes[483] + mi := &file_nico_proto_msgTypes[485] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35397,7 +35519,7 @@ func (x *MachineValidationExternalConfig) String() string { func (*MachineValidationExternalConfig) ProtoMessage() {} func (x *MachineValidationExternalConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[483] + mi := &file_nico_proto_msgTypes[485] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35410,7 +35532,7 @@ func (x *MachineValidationExternalConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationExternalConfig.ProtoReflect.Descriptor instead. func (*MachineValidationExternalConfig) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{483} + return file_nico_proto_rawDescGZIP(), []int{485} } func (x *MachineValidationExternalConfig) GetName() string { @@ -35457,7 +35579,7 @@ type GetMachineValidationExternalConfigResponse struct { func (x *GetMachineValidationExternalConfigResponse) Reset() { *x = GetMachineValidationExternalConfigResponse{} - mi := &file_nico_proto_msgTypes[484] + mi := &file_nico_proto_msgTypes[486] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35469,7 +35591,7 @@ func (x *GetMachineValidationExternalConfigResponse) String() string { func (*GetMachineValidationExternalConfigResponse) ProtoMessage() {} func (x *GetMachineValidationExternalConfigResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[484] + mi := &file_nico_proto_msgTypes[486] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35482,7 +35604,7 @@ func (x *GetMachineValidationExternalConfigResponse) ProtoReflect() protoreflect // Deprecated: Use GetMachineValidationExternalConfigResponse.ProtoReflect.Descriptor instead. func (*GetMachineValidationExternalConfigResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{484} + return file_nico_proto_rawDescGZIP(), []int{486} } func (x *GetMachineValidationExternalConfigResponse) GetConfig() *MachineValidationExternalConfig { @@ -35501,7 +35623,7 @@ type GetMachineValidationExternalConfigsRequest struct { func (x *GetMachineValidationExternalConfigsRequest) Reset() { *x = GetMachineValidationExternalConfigsRequest{} - mi := &file_nico_proto_msgTypes[485] + mi := &file_nico_proto_msgTypes[487] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35513,7 +35635,7 @@ func (x *GetMachineValidationExternalConfigsRequest) String() string { func (*GetMachineValidationExternalConfigsRequest) ProtoMessage() {} func (x *GetMachineValidationExternalConfigsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[485] + mi := &file_nico_proto_msgTypes[487] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35526,7 +35648,7 @@ func (x *GetMachineValidationExternalConfigsRequest) ProtoReflect() protoreflect // Deprecated: Use GetMachineValidationExternalConfigsRequest.ProtoReflect.Descriptor instead. func (*GetMachineValidationExternalConfigsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{485} + return file_nico_proto_rawDescGZIP(), []int{487} } func (x *GetMachineValidationExternalConfigsRequest) GetNames() []string { @@ -35545,7 +35667,7 @@ type GetMachineValidationExternalConfigsResponse struct { func (x *GetMachineValidationExternalConfigsResponse) Reset() { *x = GetMachineValidationExternalConfigsResponse{} - mi := &file_nico_proto_msgTypes[486] + mi := &file_nico_proto_msgTypes[488] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35557,7 +35679,7 @@ func (x *GetMachineValidationExternalConfigsResponse) String() string { func (*GetMachineValidationExternalConfigsResponse) ProtoMessage() {} func (x *GetMachineValidationExternalConfigsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[486] + mi := &file_nico_proto_msgTypes[488] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35570,7 +35692,7 @@ func (x *GetMachineValidationExternalConfigsResponse) ProtoReflect() protoreflec // Deprecated: Use GetMachineValidationExternalConfigsResponse.ProtoReflect.Descriptor instead. func (*GetMachineValidationExternalConfigsResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{486} + return file_nico_proto_rawDescGZIP(), []int{488} } func (x *GetMachineValidationExternalConfigsResponse) GetConfigs() []*MachineValidationExternalConfig { @@ -35591,7 +35713,7 @@ type AddUpdateMachineValidationExternalConfigRequest struct { func (x *AddUpdateMachineValidationExternalConfigRequest) Reset() { *x = AddUpdateMachineValidationExternalConfigRequest{} - mi := &file_nico_proto_msgTypes[487] + mi := &file_nico_proto_msgTypes[489] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35603,7 +35725,7 @@ func (x *AddUpdateMachineValidationExternalConfigRequest) String() string { func (*AddUpdateMachineValidationExternalConfigRequest) ProtoMessage() {} func (x *AddUpdateMachineValidationExternalConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[487] + mi := &file_nico_proto_msgTypes[489] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35616,7 +35738,7 @@ func (x *AddUpdateMachineValidationExternalConfigRequest) ProtoReflect() protore // Deprecated: Use AddUpdateMachineValidationExternalConfigRequest.ProtoReflect.Descriptor instead. func (*AddUpdateMachineValidationExternalConfigRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{487} + return file_nico_proto_rawDescGZIP(), []int{489} } func (x *AddUpdateMachineValidationExternalConfigRequest) GetName() string { @@ -35649,7 +35771,7 @@ type RemoveMachineValidationExternalConfigRequest struct { func (x *RemoveMachineValidationExternalConfigRequest) Reset() { *x = RemoveMachineValidationExternalConfigRequest{} - mi := &file_nico_proto_msgTypes[488] + mi := &file_nico_proto_msgTypes[490] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35661,7 +35783,7 @@ func (x *RemoveMachineValidationExternalConfigRequest) String() string { func (*RemoveMachineValidationExternalConfigRequest) ProtoMessage() {} func (x *RemoveMachineValidationExternalConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[488] + mi := &file_nico_proto_msgTypes[490] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35674,7 +35796,7 @@ func (x *RemoveMachineValidationExternalConfigRequest) ProtoReflect() protorefle // Deprecated: Use RemoveMachineValidationExternalConfigRequest.ProtoReflect.Descriptor instead. func (*RemoveMachineValidationExternalConfigRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{488} + return file_nico_proto_rawDescGZIP(), []int{490} } func (x *RemoveMachineValidationExternalConfigRequest) GetName() string { @@ -35698,7 +35820,7 @@ type MachineValidationOnDemandRequest struct { func (x *MachineValidationOnDemandRequest) Reset() { *x = MachineValidationOnDemandRequest{} - mi := &file_nico_proto_msgTypes[489] + mi := &file_nico_proto_msgTypes[491] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35710,7 +35832,7 @@ func (x *MachineValidationOnDemandRequest) String() string { func (*MachineValidationOnDemandRequest) ProtoMessage() {} func (x *MachineValidationOnDemandRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[489] + mi := &file_nico_proto_msgTypes[491] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35723,7 +35845,7 @@ func (x *MachineValidationOnDemandRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationOnDemandRequest.ProtoReflect.Descriptor instead. func (*MachineValidationOnDemandRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{489} + return file_nico_proto_rawDescGZIP(), []int{491} } func (x *MachineValidationOnDemandRequest) GetMachineId() *MachineId { @@ -35777,7 +35899,7 @@ type MachineValidationOnDemandResponse struct { func (x *MachineValidationOnDemandResponse) Reset() { *x = MachineValidationOnDemandResponse{} - mi := &file_nico_proto_msgTypes[490] + mi := &file_nico_proto_msgTypes[492] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35789,7 +35911,7 @@ func (x *MachineValidationOnDemandResponse) String() string { func (*MachineValidationOnDemandResponse) ProtoMessage() {} func (x *MachineValidationOnDemandResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[490] + mi := &file_nico_proto_msgTypes[492] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35802,7 +35924,7 @@ func (x *MachineValidationOnDemandResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationOnDemandResponse.ProtoReflect.Descriptor instead. func (*MachineValidationOnDemandResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{490} + return file_nico_proto_rawDescGZIP(), []int{492} } func (x *MachineValidationOnDemandResponse) GetValidationId() *MachineValidationId { @@ -35832,7 +35954,7 @@ type FirmwareUpgradeActivity struct { func (x *FirmwareUpgradeActivity) Reset() { *x = FirmwareUpgradeActivity{} - mi := &file_nico_proto_msgTypes[491] + mi := &file_nico_proto_msgTypes[493] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35844,7 +35966,7 @@ func (x *FirmwareUpgradeActivity) String() string { func (*FirmwareUpgradeActivity) ProtoMessage() {} func (x *FirmwareUpgradeActivity) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[491] + mi := &file_nico_proto_msgTypes[493] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35857,7 +35979,7 @@ func (x *FirmwareUpgradeActivity) ProtoReflect() protoreflect.Message { // Deprecated: Use FirmwareUpgradeActivity.ProtoReflect.Descriptor instead. func (*FirmwareUpgradeActivity) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{491} + return file_nico_proto_rawDescGZIP(), []int{493} } func (x *FirmwareUpgradeActivity) GetFirmwareVersion() string { @@ -35903,7 +36025,7 @@ type NvosUpdateActivity struct { func (x *NvosUpdateActivity) Reset() { *x = NvosUpdateActivity{} - mi := &file_nico_proto_msgTypes[492] + mi := &file_nico_proto_msgTypes[494] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35915,7 +36037,7 @@ func (x *NvosUpdateActivity) String() string { func (*NvosUpdateActivity) ProtoMessage() {} func (x *NvosUpdateActivity) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[492] + mi := &file_nico_proto_msgTypes[494] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35928,7 +36050,7 @@ func (x *NvosUpdateActivity) ProtoReflect() protoreflect.Message { // Deprecated: Use NvosUpdateActivity.ProtoReflect.Descriptor instead. func (*NvosUpdateActivity) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{492} + return file_nico_proto_rawDescGZIP(), []int{494} } func (x *NvosUpdateActivity) GetConfigJson() string { @@ -35953,7 +36075,7 @@ type ConfigureNmxClusterActivity struct { func (x *ConfigureNmxClusterActivity) Reset() { *x = ConfigureNmxClusterActivity{} - mi := &file_nico_proto_msgTypes[493] + mi := &file_nico_proto_msgTypes[495] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35965,7 +36087,7 @@ func (x *ConfigureNmxClusterActivity) String() string { func (*ConfigureNmxClusterActivity) ProtoMessage() {} func (x *ConfigureNmxClusterActivity) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[493] + mi := &file_nico_proto_msgTypes[495] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35978,7 +36100,7 @@ func (x *ConfigureNmxClusterActivity) ProtoReflect() protoreflect.Message { // Deprecated: Use ConfigureNmxClusterActivity.ProtoReflect.Descriptor instead. func (*ConfigureNmxClusterActivity) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{493} + return file_nico_proto_rawDescGZIP(), []int{495} } type PowerSequenceActivity struct { @@ -35989,7 +36111,7 @@ type PowerSequenceActivity struct { func (x *PowerSequenceActivity) Reset() { *x = PowerSequenceActivity{} - mi := &file_nico_proto_msgTypes[494] + mi := &file_nico_proto_msgTypes[496] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36001,7 +36123,7 @@ func (x *PowerSequenceActivity) String() string { func (*PowerSequenceActivity) ProtoMessage() {} func (x *PowerSequenceActivity) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[494] + mi := &file_nico_proto_msgTypes[496] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36014,7 +36136,7 @@ func (x *PowerSequenceActivity) ProtoReflect() protoreflect.Message { // Deprecated: Use PowerSequenceActivity.ProtoReflect.Descriptor instead. func (*PowerSequenceActivity) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{494} + return file_nico_proto_rawDescGZIP(), []int{496} } // A single maintenance activity with its per-activity configuration. @@ -36034,7 +36156,7 @@ type MaintenanceActivityConfig struct { func (x *MaintenanceActivityConfig) Reset() { *x = MaintenanceActivityConfig{} - mi := &file_nico_proto_msgTypes[495] + mi := &file_nico_proto_msgTypes[497] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36046,7 +36168,7 @@ func (x *MaintenanceActivityConfig) String() string { func (*MaintenanceActivityConfig) ProtoMessage() {} func (x *MaintenanceActivityConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[495] + mi := &file_nico_proto_msgTypes[497] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36059,7 +36181,7 @@ func (x *MaintenanceActivityConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use MaintenanceActivityConfig.ProtoReflect.Descriptor instead. func (*MaintenanceActivityConfig) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{495} + return file_nico_proto_rawDescGZIP(), []int{497} } func (x *MaintenanceActivityConfig) GetActivity() isMaintenanceActivityConfig_Activity { @@ -36150,7 +36272,7 @@ type RackMaintenanceScope struct { func (x *RackMaintenanceScope) Reset() { *x = RackMaintenanceScope{} - mi := &file_nico_proto_msgTypes[496] + mi := &file_nico_proto_msgTypes[498] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36162,7 +36284,7 @@ func (x *RackMaintenanceScope) String() string { func (*RackMaintenanceScope) ProtoMessage() {} func (x *RackMaintenanceScope) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[496] + mi := &file_nico_proto_msgTypes[498] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36175,7 +36297,7 @@ func (x *RackMaintenanceScope) ProtoReflect() protoreflect.Message { // Deprecated: Use RackMaintenanceScope.ProtoReflect.Descriptor instead. func (*RackMaintenanceScope) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{496} + return file_nico_proto_rawDescGZIP(), []int{498} } func (x *RackMaintenanceScope) GetMachineIds() []string { @@ -36219,7 +36341,7 @@ type RackMaintenanceOnDemandRequest struct { func (x *RackMaintenanceOnDemandRequest) Reset() { *x = RackMaintenanceOnDemandRequest{} - mi := &file_nico_proto_msgTypes[497] + mi := &file_nico_proto_msgTypes[499] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36231,7 +36353,7 @@ func (x *RackMaintenanceOnDemandRequest) String() string { func (*RackMaintenanceOnDemandRequest) ProtoMessage() {} func (x *RackMaintenanceOnDemandRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[497] + mi := &file_nico_proto_msgTypes[499] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36244,7 +36366,7 @@ func (x *RackMaintenanceOnDemandRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RackMaintenanceOnDemandRequest.ProtoReflect.Descriptor instead. func (*RackMaintenanceOnDemandRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{497} + return file_nico_proto_rawDescGZIP(), []int{499} } func (x *RackMaintenanceOnDemandRequest) GetRackId() *RackId { @@ -36269,7 +36391,7 @@ type RackMaintenanceOnDemandResponse struct { func (x *RackMaintenanceOnDemandResponse) Reset() { *x = RackMaintenanceOnDemandResponse{} - mi := &file_nico_proto_msgTypes[498] + mi := &file_nico_proto_msgTypes[500] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36281,7 +36403,7 @@ func (x *RackMaintenanceOnDemandResponse) String() string { func (*RackMaintenanceOnDemandResponse) ProtoMessage() {} func (x *RackMaintenanceOnDemandResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[498] + mi := &file_nico_proto_msgTypes[500] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36294,7 +36416,7 @@ func (x *RackMaintenanceOnDemandResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RackMaintenanceOnDemandResponse.ProtoReflect.Descriptor instead. func (*RackMaintenanceOnDemandResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{498} + return file_nico_proto_rawDescGZIP(), []int{500} } type AdminPowerControlRequest struct { @@ -36308,7 +36430,7 @@ type AdminPowerControlRequest struct { func (x *AdminPowerControlRequest) Reset() { *x = AdminPowerControlRequest{} - mi := &file_nico_proto_msgTypes[499] + mi := &file_nico_proto_msgTypes[501] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36320,7 +36442,7 @@ func (x *AdminPowerControlRequest) String() string { func (*AdminPowerControlRequest) ProtoMessage() {} func (x *AdminPowerControlRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[499] + mi := &file_nico_proto_msgTypes[501] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36333,7 +36455,7 @@ func (x *AdminPowerControlRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminPowerControlRequest.ProtoReflect.Descriptor instead. func (*AdminPowerControlRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{499} + return file_nico_proto_rawDescGZIP(), []int{501} } func (x *AdminPowerControlRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -36366,7 +36488,7 @@ type AdminPowerControlResponse struct { func (x *AdminPowerControlResponse) Reset() { *x = AdminPowerControlResponse{} - mi := &file_nico_proto_msgTypes[500] + mi := &file_nico_proto_msgTypes[502] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36378,7 +36500,7 @@ func (x *AdminPowerControlResponse) String() string { func (*AdminPowerControlResponse) ProtoMessage() {} func (x *AdminPowerControlResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[500] + mi := &file_nico_proto_msgTypes[502] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36391,7 +36513,7 @@ func (x *AdminPowerControlResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminPowerControlResponse.ProtoReflect.Descriptor instead. func (*AdminPowerControlResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{500} + return file_nico_proto_rawDescGZIP(), []int{502} } func (x *AdminPowerControlResponse) GetMsg() string { @@ -36411,7 +36533,7 @@ type GetRedfishJobStateRequest struct { func (x *GetRedfishJobStateRequest) Reset() { *x = GetRedfishJobStateRequest{} - mi := &file_nico_proto_msgTypes[501] + mi := &file_nico_proto_msgTypes[503] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36423,7 +36545,7 @@ func (x *GetRedfishJobStateRequest) String() string { func (*GetRedfishJobStateRequest) ProtoMessage() {} func (x *GetRedfishJobStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[501] + mi := &file_nico_proto_msgTypes[503] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36436,7 +36558,7 @@ func (x *GetRedfishJobStateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRedfishJobStateRequest.ProtoReflect.Descriptor instead. func (*GetRedfishJobStateRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{501} + return file_nico_proto_rawDescGZIP(), []int{503} } func (x *GetRedfishJobStateRequest) GetMachineId() *MachineId { @@ -36462,7 +36584,7 @@ type GetRedfishJobStateResponse struct { func (x *GetRedfishJobStateResponse) Reset() { *x = GetRedfishJobStateResponse{} - mi := &file_nico_proto_msgTypes[502] + mi := &file_nico_proto_msgTypes[504] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36474,7 +36596,7 @@ func (x *GetRedfishJobStateResponse) String() string { func (*GetRedfishJobStateResponse) ProtoMessage() {} func (x *GetRedfishJobStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[502] + mi := &file_nico_proto_msgTypes[504] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36487,7 +36609,7 @@ func (x *GetRedfishJobStateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRedfishJobStateResponse.ProtoReflect.Descriptor instead. func (*GetRedfishJobStateResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{502} + return file_nico_proto_rawDescGZIP(), []int{504} } func (x *GetRedfishJobStateResponse) GetJobState() GetRedfishJobStateResponse_RedfishJobState { @@ -36506,7 +36628,7 @@ type MachineValidationRunList struct { func (x *MachineValidationRunList) Reset() { *x = MachineValidationRunList{} - mi := &file_nico_proto_msgTypes[503] + mi := &file_nico_proto_msgTypes[505] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36518,7 +36640,7 @@ func (x *MachineValidationRunList) String() string { func (*MachineValidationRunList) ProtoMessage() {} func (x *MachineValidationRunList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[503] + mi := &file_nico_proto_msgTypes[505] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36531,7 +36653,7 @@ func (x *MachineValidationRunList) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationRunList.ProtoReflect.Descriptor instead. func (*MachineValidationRunList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{503} + return file_nico_proto_rawDescGZIP(), []int{505} } func (x *MachineValidationRunList) GetRuns() []*MachineValidationRun { @@ -36551,7 +36673,7 @@ type MachineValidationRunListGetRequest struct { func (x *MachineValidationRunListGetRequest) Reset() { *x = MachineValidationRunListGetRequest{} - mi := &file_nico_proto_msgTypes[504] + mi := &file_nico_proto_msgTypes[506] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36563,7 +36685,7 @@ func (x *MachineValidationRunListGetRequest) String() string { func (*MachineValidationRunListGetRequest) ProtoMessage() {} func (x *MachineValidationRunListGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[504] + mi := &file_nico_proto_msgTypes[506] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36576,7 +36698,7 @@ func (x *MachineValidationRunListGetRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationRunListGetRequest.ProtoReflect.Descriptor instead. func (*MachineValidationRunListGetRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{504} + return file_nico_proto_rawDescGZIP(), []int{506} } func (x *MachineValidationRunListGetRequest) GetMachineId() *MachineId { @@ -36602,7 +36724,7 @@ type MachineValidationRunItemSearchFilter struct { func (x *MachineValidationRunItemSearchFilter) Reset() { *x = MachineValidationRunItemSearchFilter{} - mi := &file_nico_proto_msgTypes[505] + mi := &file_nico_proto_msgTypes[507] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36614,7 +36736,7 @@ func (x *MachineValidationRunItemSearchFilter) String() string { func (*MachineValidationRunItemSearchFilter) ProtoMessage() {} func (x *MachineValidationRunItemSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[505] + mi := &file_nico_proto_msgTypes[507] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36627,7 +36749,7 @@ func (x *MachineValidationRunItemSearchFilter) ProtoReflect() protoreflect.Messa // Deprecated: Use MachineValidationRunItemSearchFilter.ProtoReflect.Descriptor instead. func (*MachineValidationRunItemSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{505} + return file_nico_proto_rawDescGZIP(), []int{507} } func (x *MachineValidationRunItemSearchFilter) GetValidationId() *MachineValidationId { @@ -36646,7 +36768,7 @@ type MachineValidationRunItemIdList struct { func (x *MachineValidationRunItemIdList) Reset() { *x = MachineValidationRunItemIdList{} - mi := &file_nico_proto_msgTypes[506] + mi := &file_nico_proto_msgTypes[508] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36658,7 +36780,7 @@ func (x *MachineValidationRunItemIdList) String() string { func (*MachineValidationRunItemIdList) ProtoMessage() {} func (x *MachineValidationRunItemIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[506] + mi := &file_nico_proto_msgTypes[508] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36671,7 +36793,7 @@ func (x *MachineValidationRunItemIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationRunItemIdList.ProtoReflect.Descriptor instead. func (*MachineValidationRunItemIdList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{506} + return file_nico_proto_rawDescGZIP(), []int{508} } func (x *MachineValidationRunItemIdList) GetRunItemIds() []*UUID { @@ -36690,7 +36812,7 @@ type MachineValidationRunItemsByIdsRequest struct { func (x *MachineValidationRunItemsByIdsRequest) Reset() { *x = MachineValidationRunItemsByIdsRequest{} - mi := &file_nico_proto_msgTypes[507] + mi := &file_nico_proto_msgTypes[509] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36702,7 +36824,7 @@ func (x *MachineValidationRunItemsByIdsRequest) String() string { func (*MachineValidationRunItemsByIdsRequest) ProtoMessage() {} func (x *MachineValidationRunItemsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[507] + mi := &file_nico_proto_msgTypes[509] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36715,7 +36837,7 @@ func (x *MachineValidationRunItemsByIdsRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use MachineValidationRunItemsByIdsRequest.ProtoReflect.Descriptor instead. func (*MachineValidationRunItemsByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{507} + return file_nico_proto_rawDescGZIP(), []int{509} } func (x *MachineValidationRunItemsByIdsRequest) GetRunItemIds() []*UUID { @@ -36734,7 +36856,7 @@ type MachineValidationRunItemList struct { func (x *MachineValidationRunItemList) Reset() { *x = MachineValidationRunItemList{} - mi := &file_nico_proto_msgTypes[508] + mi := &file_nico_proto_msgTypes[510] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36746,7 +36868,7 @@ func (x *MachineValidationRunItemList) String() string { func (*MachineValidationRunItemList) ProtoMessage() {} func (x *MachineValidationRunItemList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[508] + mi := &file_nico_proto_msgTypes[510] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36759,7 +36881,7 @@ func (x *MachineValidationRunItemList) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationRunItemList.ProtoReflect.Descriptor instead. func (*MachineValidationRunItemList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{508} + return file_nico_proto_rawDescGZIP(), []int{510} } func (x *MachineValidationRunItemList) GetRunItems() []*MachineValidationRunItem { @@ -36795,7 +36917,7 @@ type MachineValidationRunItem struct { func (x *MachineValidationRunItem) Reset() { *x = MachineValidationRunItem{} - mi := &file_nico_proto_msgTypes[509] + mi := &file_nico_proto_msgTypes[511] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36807,7 +36929,7 @@ func (x *MachineValidationRunItem) String() string { func (*MachineValidationRunItem) ProtoMessage() {} func (x *MachineValidationRunItem) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[509] + mi := &file_nico_proto_msgTypes[511] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36820,7 +36942,7 @@ func (x *MachineValidationRunItem) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationRunItem.ProtoReflect.Descriptor instead. func (*MachineValidationRunItem) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{509} + return file_nico_proto_rawDescGZIP(), []int{511} } func (x *MachineValidationRunItem) GetRunItemId() *UUID { @@ -36958,7 +37080,7 @@ type MachineValidationAttemptGetRequest struct { func (x *MachineValidationAttemptGetRequest) Reset() { *x = MachineValidationAttemptGetRequest{} - mi := &file_nico_proto_msgTypes[510] + mi := &file_nico_proto_msgTypes[512] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36970,7 +37092,7 @@ func (x *MachineValidationAttemptGetRequest) String() string { func (*MachineValidationAttemptGetRequest) ProtoMessage() {} func (x *MachineValidationAttemptGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[510] + mi := &file_nico_proto_msgTypes[512] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36983,7 +37105,7 @@ func (x *MachineValidationAttemptGetRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationAttemptGetRequest.ProtoReflect.Descriptor instead. func (*MachineValidationAttemptGetRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{510} + return file_nico_proto_rawDescGZIP(), []int{512} } func (x *MachineValidationAttemptGetRequest) GetAttemptId() *UUID { @@ -37016,7 +37138,7 @@ type MachineValidationAttempt struct { func (x *MachineValidationAttempt) Reset() { *x = MachineValidationAttempt{} - mi := &file_nico_proto_msgTypes[511] + mi := &file_nico_proto_msgTypes[513] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37028,7 +37150,7 @@ func (x *MachineValidationAttempt) String() string { func (*MachineValidationAttempt) ProtoMessage() {} func (x *MachineValidationAttempt) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[511] + mi := &file_nico_proto_msgTypes[513] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37041,7 +37163,7 @@ func (x *MachineValidationAttempt) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationAttempt.ProtoReflect.Descriptor instead. func (*MachineValidationAttempt) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{511} + return file_nico_proto_rawDescGZIP(), []int{513} } func (x *MachineValidationAttempt) GetAttemptId() *UUID { @@ -37164,7 +37286,7 @@ type MachineValidationHeartbeatRequest struct { func (x *MachineValidationHeartbeatRequest) Reset() { *x = MachineValidationHeartbeatRequest{} - mi := &file_nico_proto_msgTypes[512] + mi := &file_nico_proto_msgTypes[514] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37176,7 +37298,7 @@ func (x *MachineValidationHeartbeatRequest) String() string { func (*MachineValidationHeartbeatRequest) ProtoMessage() {} func (x *MachineValidationHeartbeatRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[512] + mi := &file_nico_proto_msgTypes[514] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37189,7 +37311,7 @@ func (x *MachineValidationHeartbeatRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationHeartbeatRequest.ProtoReflect.Descriptor instead. func (*MachineValidationHeartbeatRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{512} + return file_nico_proto_rawDescGZIP(), []int{514} } func (x *MachineValidationHeartbeatRequest) GetValidationId() *MachineValidationId { @@ -37264,7 +37386,7 @@ type MachineValidationHeartbeatResponse struct { func (x *MachineValidationHeartbeatResponse) Reset() { *x = MachineValidationHeartbeatResponse{} - mi := &file_nico_proto_msgTypes[513] + mi := &file_nico_proto_msgTypes[515] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37276,7 +37398,7 @@ func (x *MachineValidationHeartbeatResponse) String() string { func (*MachineValidationHeartbeatResponse) ProtoMessage() {} func (x *MachineValidationHeartbeatResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[513] + mi := &file_nico_proto_msgTypes[515] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37289,7 +37411,7 @@ func (x *MachineValidationHeartbeatResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationHeartbeatResponse.ProtoReflect.Descriptor instead. func (*MachineValidationHeartbeatResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{513} + return file_nico_proto_rawDescGZIP(), []int{515} } func (x *MachineValidationHeartbeatResponse) GetAccepted() bool { @@ -37308,7 +37430,7 @@ type IsBmcInManagedHostResponse struct { func (x *IsBmcInManagedHostResponse) Reset() { *x = IsBmcInManagedHostResponse{} - mi := &file_nico_proto_msgTypes[514] + mi := &file_nico_proto_msgTypes[516] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37320,7 +37442,7 @@ func (x *IsBmcInManagedHostResponse) String() string { func (*IsBmcInManagedHostResponse) ProtoMessage() {} func (x *IsBmcInManagedHostResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[514] + mi := &file_nico_proto_msgTypes[516] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37333,7 +37455,7 @@ func (x *IsBmcInManagedHostResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use IsBmcInManagedHostResponse.ProtoReflect.Descriptor instead. func (*IsBmcInManagedHostResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{514} + return file_nico_proto_rawDescGZIP(), []int{516} } func (x *IsBmcInManagedHostResponse) GetInManagedHost() bool { @@ -37352,7 +37474,7 @@ type BmcCredentialStatusResponse struct { func (x *BmcCredentialStatusResponse) Reset() { *x = BmcCredentialStatusResponse{} - mi := &file_nico_proto_msgTypes[515] + mi := &file_nico_proto_msgTypes[517] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37364,7 +37486,7 @@ func (x *BmcCredentialStatusResponse) String() string { func (*BmcCredentialStatusResponse) ProtoMessage() {} func (x *BmcCredentialStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[515] + mi := &file_nico_proto_msgTypes[517] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37377,7 +37499,7 @@ func (x *BmcCredentialStatusResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use BmcCredentialStatusResponse.ProtoReflect.Descriptor instead. func (*BmcCredentialStatusResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{515} + return file_nico_proto_rawDescGZIP(), []int{517} } func (x *BmcCredentialStatusResponse) GetHaveCredentials() bool { @@ -37403,7 +37525,7 @@ type MachineValidationTestsGetRequest struct { func (x *MachineValidationTestsGetRequest) Reset() { *x = MachineValidationTestsGetRequest{} - mi := &file_nico_proto_msgTypes[516] + mi := &file_nico_proto_msgTypes[518] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37415,7 +37537,7 @@ func (x *MachineValidationTestsGetRequest) String() string { func (*MachineValidationTestsGetRequest) ProtoMessage() {} func (x *MachineValidationTestsGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[516] + mi := &file_nico_proto_msgTypes[518] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37428,7 +37550,7 @@ func (x *MachineValidationTestsGetRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationTestsGetRequest.ProtoReflect.Descriptor instead. func (*MachineValidationTestsGetRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{516} + return file_nico_proto_rawDescGZIP(), []int{518} } func (x *MachineValidationTestsGetRequest) GetSupportedPlatforms() []string { @@ -37498,7 +37620,7 @@ type MachineValidationTestUpdateRequest struct { func (x *MachineValidationTestUpdateRequest) Reset() { *x = MachineValidationTestUpdateRequest{} - mi := &file_nico_proto_msgTypes[517] + mi := &file_nico_proto_msgTypes[519] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37510,7 +37632,7 @@ func (x *MachineValidationTestUpdateRequest) String() string { func (*MachineValidationTestUpdateRequest) ProtoMessage() {} func (x *MachineValidationTestUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[517] + mi := &file_nico_proto_msgTypes[519] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37523,7 +37645,7 @@ func (x *MachineValidationTestUpdateRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationTestUpdateRequest.ProtoReflect.Descriptor instead. func (*MachineValidationTestUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{517} + return file_nico_proto_rawDescGZIP(), []int{519} } func (x *MachineValidationTestUpdateRequest) GetTestId() string { @@ -37573,7 +37695,7 @@ type MachineValidationTestAddRequest struct { func (x *MachineValidationTestAddRequest) Reset() { *x = MachineValidationTestAddRequest{} - mi := &file_nico_proto_msgTypes[518] + mi := &file_nico_proto_msgTypes[520] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37585,7 +37707,7 @@ func (x *MachineValidationTestAddRequest) String() string { func (*MachineValidationTestAddRequest) ProtoMessage() {} func (x *MachineValidationTestAddRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[518] + mi := &file_nico_proto_msgTypes[520] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37598,7 +37720,7 @@ func (x *MachineValidationTestAddRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationTestAddRequest.ProtoReflect.Descriptor instead. func (*MachineValidationTestAddRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{518} + return file_nico_proto_rawDescGZIP(), []int{520} } func (x *MachineValidationTestAddRequest) GetName() string { @@ -37737,7 +37859,7 @@ type MachineValidationTestAddUpdateResponse struct { func (x *MachineValidationTestAddUpdateResponse) Reset() { *x = MachineValidationTestAddUpdateResponse{} - mi := &file_nico_proto_msgTypes[519] + mi := &file_nico_proto_msgTypes[521] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37749,7 +37871,7 @@ func (x *MachineValidationTestAddUpdateResponse) String() string { func (*MachineValidationTestAddUpdateResponse) ProtoMessage() {} func (x *MachineValidationTestAddUpdateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[519] + mi := &file_nico_proto_msgTypes[521] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37762,7 +37884,7 @@ func (x *MachineValidationTestAddUpdateResponse) ProtoReflect() protoreflect.Mes // Deprecated: Use MachineValidationTestAddUpdateResponse.ProtoReflect.Descriptor instead. func (*MachineValidationTestAddUpdateResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{519} + return file_nico_proto_rawDescGZIP(), []int{521} } func (x *MachineValidationTestAddUpdateResponse) GetTestId() string { @@ -37788,7 +37910,7 @@ type MachineValidationTestsGetResponse struct { func (x *MachineValidationTestsGetResponse) Reset() { *x = MachineValidationTestsGetResponse{} - mi := &file_nico_proto_msgTypes[520] + mi := &file_nico_proto_msgTypes[522] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37800,7 +37922,7 @@ func (x *MachineValidationTestsGetResponse) String() string { func (*MachineValidationTestsGetResponse) ProtoMessage() {} func (x *MachineValidationTestsGetResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[520] + mi := &file_nico_proto_msgTypes[522] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37813,7 +37935,7 @@ func (x *MachineValidationTestsGetResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MachineValidationTestsGetResponse.ProtoReflect.Descriptor instead. func (*MachineValidationTestsGetResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{520} + return file_nico_proto_rawDescGZIP(), []int{522} } func (x *MachineValidationTestsGetResponse) GetTests() []*MachineValidationTest { @@ -37833,7 +37955,7 @@ type MachineValidationTestVerfiedRequest struct { func (x *MachineValidationTestVerfiedRequest) Reset() { *x = MachineValidationTestVerfiedRequest{} - mi := &file_nico_proto_msgTypes[521] + mi := &file_nico_proto_msgTypes[523] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37845,7 +37967,7 @@ func (x *MachineValidationTestVerfiedRequest) String() string { func (*MachineValidationTestVerfiedRequest) ProtoMessage() {} func (x *MachineValidationTestVerfiedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[521] + mi := &file_nico_proto_msgTypes[523] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37858,7 +37980,7 @@ func (x *MachineValidationTestVerfiedRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use MachineValidationTestVerfiedRequest.ProtoReflect.Descriptor instead. func (*MachineValidationTestVerfiedRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{521} + return file_nico_proto_rawDescGZIP(), []int{523} } func (x *MachineValidationTestVerfiedRequest) GetTestId() string { @@ -37884,7 +38006,7 @@ type MachineValidationTestVerfiedResponse struct { func (x *MachineValidationTestVerfiedResponse) Reset() { *x = MachineValidationTestVerfiedResponse{} - mi := &file_nico_proto_msgTypes[522] + mi := &file_nico_proto_msgTypes[524] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37896,7 +38018,7 @@ func (x *MachineValidationTestVerfiedResponse) String() string { func (*MachineValidationTestVerfiedResponse) ProtoMessage() {} func (x *MachineValidationTestVerfiedResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[522] + mi := &file_nico_proto_msgTypes[524] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37909,7 +38031,7 @@ func (x *MachineValidationTestVerfiedResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use MachineValidationTestVerfiedResponse.ProtoReflect.Descriptor instead. func (*MachineValidationTestVerfiedResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{522} + return file_nico_proto_rawDescGZIP(), []int{524} } func (x *MachineValidationTestVerfiedResponse) GetMessage() string { @@ -37950,7 +38072,7 @@ type MachineValidationTest struct { func (x *MachineValidationTest) Reset() { *x = MachineValidationTest{} - mi := &file_nico_proto_msgTypes[523] + mi := &file_nico_proto_msgTypes[525] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37962,7 +38084,7 @@ func (x *MachineValidationTest) String() string { func (*MachineValidationTest) ProtoMessage() {} func (x *MachineValidationTest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[523] + mi := &file_nico_proto_msgTypes[525] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37975,7 +38097,7 @@ func (x *MachineValidationTest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationTest.ProtoReflect.Descriptor instead. func (*MachineValidationTest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{523} + return file_nico_proto_rawDescGZIP(), []int{525} } func (x *MachineValidationTest) GetTestId() string { @@ -38149,7 +38271,7 @@ type MachineValidationTestNextVersionResponse struct { func (x *MachineValidationTestNextVersionResponse) Reset() { *x = MachineValidationTestNextVersionResponse{} - mi := &file_nico_proto_msgTypes[524] + mi := &file_nico_proto_msgTypes[526] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38161,7 +38283,7 @@ func (x *MachineValidationTestNextVersionResponse) String() string { func (*MachineValidationTestNextVersionResponse) ProtoMessage() {} func (x *MachineValidationTestNextVersionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[524] + mi := &file_nico_proto_msgTypes[526] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38174,7 +38296,7 @@ func (x *MachineValidationTestNextVersionResponse) ProtoReflect() protoreflect.M // Deprecated: Use MachineValidationTestNextVersionResponse.ProtoReflect.Descriptor instead. func (*MachineValidationTestNextVersionResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{524} + return file_nico_proto_rawDescGZIP(), []int{526} } func (x *MachineValidationTestNextVersionResponse) GetTestId() string { @@ -38200,7 +38322,7 @@ type MachineValidationTestNextVersionRequest struct { func (x *MachineValidationTestNextVersionRequest) Reset() { *x = MachineValidationTestNextVersionRequest{} - mi := &file_nico_proto_msgTypes[525] + mi := &file_nico_proto_msgTypes[527] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38212,7 +38334,7 @@ func (x *MachineValidationTestNextVersionRequest) String() string { func (*MachineValidationTestNextVersionRequest) ProtoMessage() {} func (x *MachineValidationTestNextVersionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[525] + mi := &file_nico_proto_msgTypes[527] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38225,7 +38347,7 @@ func (x *MachineValidationTestNextVersionRequest) ProtoReflect() protoreflect.Me // Deprecated: Use MachineValidationTestNextVersionRequest.ProtoReflect.Descriptor instead. func (*MachineValidationTestNextVersionRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{525} + return file_nico_proto_rawDescGZIP(), []int{527} } func (x *MachineValidationTestNextVersionRequest) GetTestId() string { @@ -38246,7 +38368,7 @@ type MachineValidationTestEnableDisableTestRequest struct { func (x *MachineValidationTestEnableDisableTestRequest) Reset() { *x = MachineValidationTestEnableDisableTestRequest{} - mi := &file_nico_proto_msgTypes[526] + mi := &file_nico_proto_msgTypes[528] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38258,7 +38380,7 @@ func (x *MachineValidationTestEnableDisableTestRequest) String() string { func (*MachineValidationTestEnableDisableTestRequest) ProtoMessage() {} func (x *MachineValidationTestEnableDisableTestRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[526] + mi := &file_nico_proto_msgTypes[528] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38271,7 +38393,7 @@ func (x *MachineValidationTestEnableDisableTestRequest) ProtoReflect() protorefl // Deprecated: Use MachineValidationTestEnableDisableTestRequest.ProtoReflect.Descriptor instead. func (*MachineValidationTestEnableDisableTestRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{526} + return file_nico_proto_rawDescGZIP(), []int{528} } func (x *MachineValidationTestEnableDisableTestRequest) GetTestId() string { @@ -38304,7 +38426,7 @@ type MachineValidationTestEnableDisableTestResponse struct { func (x *MachineValidationTestEnableDisableTestResponse) Reset() { *x = MachineValidationTestEnableDisableTestResponse{} - mi := &file_nico_proto_msgTypes[527] + mi := &file_nico_proto_msgTypes[529] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38316,7 +38438,7 @@ func (x *MachineValidationTestEnableDisableTestResponse) String() string { func (*MachineValidationTestEnableDisableTestResponse) ProtoMessage() {} func (x *MachineValidationTestEnableDisableTestResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[527] + mi := &file_nico_proto_msgTypes[529] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38329,7 +38451,7 @@ func (x *MachineValidationTestEnableDisableTestResponse) ProtoReflect() protoref // Deprecated: Use MachineValidationTestEnableDisableTestResponse.ProtoReflect.Descriptor instead. func (*MachineValidationTestEnableDisableTestResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{527} + return file_nico_proto_rawDescGZIP(), []int{529} } func (x *MachineValidationTestEnableDisableTestResponse) GetMessage() string { @@ -38351,7 +38473,7 @@ type MachineValidationRunRequest struct { func (x *MachineValidationRunRequest) Reset() { *x = MachineValidationRunRequest{} - mi := &file_nico_proto_msgTypes[528] + mi := &file_nico_proto_msgTypes[530] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38363,7 +38485,7 @@ func (x *MachineValidationRunRequest) String() string { func (*MachineValidationRunRequest) ProtoMessage() {} func (x *MachineValidationRunRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[528] + mi := &file_nico_proto_msgTypes[530] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38376,7 +38498,7 @@ func (x *MachineValidationRunRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationRunRequest.ProtoReflect.Descriptor instead. func (*MachineValidationRunRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{528} + return file_nico_proto_rawDescGZIP(), []int{530} } func (x *MachineValidationRunRequest) GetValidationId() *MachineValidationId { @@ -38416,7 +38538,7 @@ type MachineValidationRunResponse struct { func (x *MachineValidationRunResponse) Reset() { *x = MachineValidationRunResponse{} - mi := &file_nico_proto_msgTypes[529] + mi := &file_nico_proto_msgTypes[531] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38428,7 +38550,7 @@ func (x *MachineValidationRunResponse) String() string { func (*MachineValidationRunResponse) ProtoMessage() {} func (x *MachineValidationRunResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[529] + mi := &file_nico_proto_msgTypes[531] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38441,7 +38563,7 @@ func (x *MachineValidationRunResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineValidationRunResponse.ProtoReflect.Descriptor instead. func (*MachineValidationRunResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{529} + return file_nico_proto_rawDescGZIP(), []int{531} } func (x *MachineValidationRunResponse) GetMessage() string { @@ -38464,7 +38586,7 @@ type MachineCapabilityAttributesCpu struct { func (x *MachineCapabilityAttributesCpu) Reset() { *x = MachineCapabilityAttributesCpu{} - mi := &file_nico_proto_msgTypes[530] + mi := &file_nico_proto_msgTypes[532] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38476,7 +38598,7 @@ func (x *MachineCapabilityAttributesCpu) String() string { func (*MachineCapabilityAttributesCpu) ProtoMessage() {} func (x *MachineCapabilityAttributesCpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[530] + mi := &file_nico_proto_msgTypes[532] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38489,7 +38611,7 @@ func (x *MachineCapabilityAttributesCpu) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCapabilityAttributesCpu.ProtoReflect.Descriptor instead. func (*MachineCapabilityAttributesCpu) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{530} + return file_nico_proto_rawDescGZIP(), []int{532} } func (x *MachineCapabilityAttributesCpu) GetName() string { @@ -38543,7 +38665,7 @@ type MachineCapabilityAttributesGpu struct { func (x *MachineCapabilityAttributesGpu) Reset() { *x = MachineCapabilityAttributesGpu{} - mi := &file_nico_proto_msgTypes[531] + mi := &file_nico_proto_msgTypes[533] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38555,7 +38677,7 @@ func (x *MachineCapabilityAttributesGpu) String() string { func (*MachineCapabilityAttributesGpu) ProtoMessage() {} func (x *MachineCapabilityAttributesGpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[531] + mi := &file_nico_proto_msgTypes[533] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38568,7 +38690,7 @@ func (x *MachineCapabilityAttributesGpu) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCapabilityAttributesGpu.ProtoReflect.Descriptor instead. func (*MachineCapabilityAttributesGpu) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{531} + return file_nico_proto_rawDescGZIP(), []int{533} } func (x *MachineCapabilityAttributesGpu) GetName() string { @@ -38639,7 +38761,7 @@ type MachineCapabilityAttributesMemory struct { func (x *MachineCapabilityAttributesMemory) Reset() { *x = MachineCapabilityAttributesMemory{} - mi := &file_nico_proto_msgTypes[532] + mi := &file_nico_proto_msgTypes[534] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38651,7 +38773,7 @@ func (x *MachineCapabilityAttributesMemory) String() string { func (*MachineCapabilityAttributesMemory) ProtoMessage() {} func (x *MachineCapabilityAttributesMemory) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[532] + mi := &file_nico_proto_msgTypes[534] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38664,7 +38786,7 @@ func (x *MachineCapabilityAttributesMemory) ProtoReflect() protoreflect.Message // Deprecated: Use MachineCapabilityAttributesMemory.ProtoReflect.Descriptor instead. func (*MachineCapabilityAttributesMemory) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{532} + return file_nico_proto_rawDescGZIP(), []int{534} } func (x *MachineCapabilityAttributesMemory) GetName() string { @@ -38707,7 +38829,7 @@ type MachineCapabilityAttributesStorage struct { func (x *MachineCapabilityAttributesStorage) Reset() { *x = MachineCapabilityAttributesStorage{} - mi := &file_nico_proto_msgTypes[533] + mi := &file_nico_proto_msgTypes[535] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38719,7 +38841,7 @@ func (x *MachineCapabilityAttributesStorage) String() string { func (*MachineCapabilityAttributesStorage) ProtoMessage() {} func (x *MachineCapabilityAttributesStorage) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[533] + mi := &file_nico_proto_msgTypes[535] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38732,7 +38854,7 @@ func (x *MachineCapabilityAttributesStorage) ProtoReflect() protoreflect.Message // Deprecated: Use MachineCapabilityAttributesStorage.ProtoReflect.Descriptor instead. func (*MachineCapabilityAttributesStorage) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{533} + return file_nico_proto_rawDescGZIP(), []int{535} } func (x *MachineCapabilityAttributesStorage) GetName() string { @@ -38775,7 +38897,7 @@ type MachineCapabilityAttributesNetwork struct { func (x *MachineCapabilityAttributesNetwork) Reset() { *x = MachineCapabilityAttributesNetwork{} - mi := &file_nico_proto_msgTypes[534] + mi := &file_nico_proto_msgTypes[536] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38787,7 +38909,7 @@ func (x *MachineCapabilityAttributesNetwork) String() string { func (*MachineCapabilityAttributesNetwork) ProtoMessage() {} func (x *MachineCapabilityAttributesNetwork) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[534] + mi := &file_nico_proto_msgTypes[536] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38800,7 +38922,7 @@ func (x *MachineCapabilityAttributesNetwork) ProtoReflect() protoreflect.Message // Deprecated: Use MachineCapabilityAttributesNetwork.ProtoReflect.Descriptor instead. func (*MachineCapabilityAttributesNetwork) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{534} + return file_nico_proto_rawDescGZIP(), []int{536} } func (x *MachineCapabilityAttributesNetwork) GetName() string { @@ -38850,7 +38972,7 @@ type MachineCapabilityAttributesInfiniband struct { func (x *MachineCapabilityAttributesInfiniband) Reset() { *x = MachineCapabilityAttributesInfiniband{} - mi := &file_nico_proto_msgTypes[535] + mi := &file_nico_proto_msgTypes[537] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38862,7 +38984,7 @@ func (x *MachineCapabilityAttributesInfiniband) String() string { func (*MachineCapabilityAttributesInfiniband) ProtoMessage() {} func (x *MachineCapabilityAttributesInfiniband) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[535] + mi := &file_nico_proto_msgTypes[537] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38875,7 +38997,7 @@ func (x *MachineCapabilityAttributesInfiniband) ProtoReflect() protoreflect.Mess // Deprecated: Use MachineCapabilityAttributesInfiniband.ProtoReflect.Descriptor instead. func (*MachineCapabilityAttributesInfiniband) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{535} + return file_nico_proto_rawDescGZIP(), []int{537} } func (x *MachineCapabilityAttributesInfiniband) GetName() string { @@ -38917,7 +39039,7 @@ type MachineCapabilityAttributesDpu struct { func (x *MachineCapabilityAttributesDpu) Reset() { *x = MachineCapabilityAttributesDpu{} - mi := &file_nico_proto_msgTypes[536] + mi := &file_nico_proto_msgTypes[538] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38929,7 +39051,7 @@ func (x *MachineCapabilityAttributesDpu) String() string { func (*MachineCapabilityAttributesDpu) ProtoMessage() {} func (x *MachineCapabilityAttributesDpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[536] + mi := &file_nico_proto_msgTypes[538] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38942,7 +39064,7 @@ func (x *MachineCapabilityAttributesDpu) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCapabilityAttributesDpu.ProtoReflect.Descriptor instead. func (*MachineCapabilityAttributesDpu) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{536} + return file_nico_proto_rawDescGZIP(), []int{538} } func (x *MachineCapabilityAttributesDpu) GetName() string { @@ -38981,7 +39103,7 @@ type MachineCapabilitiesSet struct { func (x *MachineCapabilitiesSet) Reset() { *x = MachineCapabilitiesSet{} - mi := &file_nico_proto_msgTypes[537] + mi := &file_nico_proto_msgTypes[539] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38993,7 +39115,7 @@ func (x *MachineCapabilitiesSet) String() string { func (*MachineCapabilitiesSet) ProtoMessage() {} func (x *MachineCapabilitiesSet) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[537] + mi := &file_nico_proto_msgTypes[539] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39006,7 +39128,7 @@ func (x *MachineCapabilitiesSet) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineCapabilitiesSet.ProtoReflect.Descriptor instead. func (*MachineCapabilitiesSet) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{537} + return file_nico_proto_rawDescGZIP(), []int{539} } func (x *MachineCapabilitiesSet) GetCpu() []*MachineCapabilityAttributesCpu { @@ -39070,7 +39192,7 @@ type InstanceTypeAttributes struct { func (x *InstanceTypeAttributes) Reset() { *x = InstanceTypeAttributes{} - mi := &file_nico_proto_msgTypes[538] + mi := &file_nico_proto_msgTypes[540] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39082,7 +39204,7 @@ func (x *InstanceTypeAttributes) String() string { func (*InstanceTypeAttributes) ProtoMessage() {} func (x *InstanceTypeAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[538] + mi := &file_nico_proto_msgTypes[540] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39095,7 +39217,7 @@ func (x *InstanceTypeAttributes) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceTypeAttributes.ProtoReflect.Descriptor instead. func (*InstanceTypeAttributes) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{538} + return file_nico_proto_rawDescGZIP(), []int{540} } func (x *InstanceTypeAttributes) GetDesiredCapabilities() []*InstanceTypeMachineCapabilityFilterAttributes { @@ -39124,7 +39246,7 @@ type InstanceType struct { func (x *InstanceType) Reset() { *x = InstanceType{} - mi := &file_nico_proto_msgTypes[539] + mi := &file_nico_proto_msgTypes[541] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39136,7 +39258,7 @@ func (x *InstanceType) String() string { func (*InstanceType) ProtoMessage() {} func (x *InstanceType) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[539] + mi := &file_nico_proto_msgTypes[541] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39149,7 +39271,7 @@ func (x *InstanceType) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceType.ProtoReflect.Descriptor instead. func (*InstanceType) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{539} + return file_nico_proto_rawDescGZIP(), []int{541} } func (x *InstanceType) GetId() string { @@ -39220,7 +39342,7 @@ type InstanceTypeMachineCapabilityFilterAttributes struct { func (x *InstanceTypeMachineCapabilityFilterAttributes) Reset() { *x = InstanceTypeMachineCapabilityFilterAttributes{} - mi := &file_nico_proto_msgTypes[540] + mi := &file_nico_proto_msgTypes[542] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39232,7 +39354,7 @@ func (x *InstanceTypeMachineCapabilityFilterAttributes) String() string { func (*InstanceTypeMachineCapabilityFilterAttributes) ProtoMessage() {} func (x *InstanceTypeMachineCapabilityFilterAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[540] + mi := &file_nico_proto_msgTypes[542] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39245,7 +39367,7 @@ func (x *InstanceTypeMachineCapabilityFilterAttributes) ProtoReflect() protorefl // Deprecated: Use InstanceTypeMachineCapabilityFilterAttributes.ProtoReflect.Descriptor instead. func (*InstanceTypeMachineCapabilityFilterAttributes) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{540} + return file_nico_proto_rawDescGZIP(), []int{542} } func (x *InstanceTypeMachineCapabilityFilterAttributes) GetCapabilityType() MachineCapabilityType { @@ -39336,7 +39458,7 @@ type CreateInstanceTypeRequest struct { func (x *CreateInstanceTypeRequest) Reset() { *x = CreateInstanceTypeRequest{} - mi := &file_nico_proto_msgTypes[541] + mi := &file_nico_proto_msgTypes[543] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39348,7 +39470,7 @@ func (x *CreateInstanceTypeRequest) String() string { func (*CreateInstanceTypeRequest) ProtoMessage() {} func (x *CreateInstanceTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[541] + mi := &file_nico_proto_msgTypes[543] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39361,7 +39483,7 @@ func (x *CreateInstanceTypeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateInstanceTypeRequest.ProtoReflect.Descriptor instead. func (*CreateInstanceTypeRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{541} + return file_nico_proto_rawDescGZIP(), []int{543} } func (x *CreateInstanceTypeRequest) GetId() string { @@ -39394,7 +39516,7 @@ type CreateInstanceTypeResponse struct { func (x *CreateInstanceTypeResponse) Reset() { *x = CreateInstanceTypeResponse{} - mi := &file_nico_proto_msgTypes[542] + mi := &file_nico_proto_msgTypes[544] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39406,7 +39528,7 @@ func (x *CreateInstanceTypeResponse) String() string { func (*CreateInstanceTypeResponse) ProtoMessage() {} func (x *CreateInstanceTypeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[542] + mi := &file_nico_proto_msgTypes[544] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39419,7 +39541,7 @@ func (x *CreateInstanceTypeResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateInstanceTypeResponse.ProtoReflect.Descriptor instead. func (*CreateInstanceTypeResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{542} + return file_nico_proto_rawDescGZIP(), []int{544} } func (x *CreateInstanceTypeResponse) GetInstanceType() *InstanceType { @@ -39437,7 +39559,7 @@ type FindInstanceTypeIdsRequest struct { func (x *FindInstanceTypeIdsRequest) Reset() { *x = FindInstanceTypeIdsRequest{} - mi := &file_nico_proto_msgTypes[543] + mi := &file_nico_proto_msgTypes[545] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39449,7 +39571,7 @@ func (x *FindInstanceTypeIdsRequest) String() string { func (*FindInstanceTypeIdsRequest) ProtoMessage() {} func (x *FindInstanceTypeIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[543] + mi := &file_nico_proto_msgTypes[545] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39462,7 +39584,7 @@ func (x *FindInstanceTypeIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FindInstanceTypeIdsRequest.ProtoReflect.Descriptor instead. func (*FindInstanceTypeIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{543} + return file_nico_proto_rawDescGZIP(), []int{545} } type FindInstanceTypeIdsResponse struct { @@ -39474,7 +39596,7 @@ type FindInstanceTypeIdsResponse struct { func (x *FindInstanceTypeIdsResponse) Reset() { *x = FindInstanceTypeIdsResponse{} - mi := &file_nico_proto_msgTypes[544] + mi := &file_nico_proto_msgTypes[546] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39486,7 +39608,7 @@ func (x *FindInstanceTypeIdsResponse) String() string { func (*FindInstanceTypeIdsResponse) ProtoMessage() {} func (x *FindInstanceTypeIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[544] + mi := &file_nico_proto_msgTypes[546] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39499,7 +39621,7 @@ func (x *FindInstanceTypeIdsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use FindInstanceTypeIdsResponse.ProtoReflect.Descriptor instead. func (*FindInstanceTypeIdsResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{544} + return file_nico_proto_rawDescGZIP(), []int{546} } func (x *FindInstanceTypeIdsResponse) GetInstanceTypeIds() []string { @@ -39522,7 +39644,7 @@ type FindInstanceTypesByIdsRequest struct { func (x *FindInstanceTypesByIdsRequest) Reset() { *x = FindInstanceTypesByIdsRequest{} - mi := &file_nico_proto_msgTypes[545] + mi := &file_nico_proto_msgTypes[547] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39534,7 +39656,7 @@ func (x *FindInstanceTypesByIdsRequest) String() string { func (*FindInstanceTypesByIdsRequest) ProtoMessage() {} func (x *FindInstanceTypesByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[545] + mi := &file_nico_proto_msgTypes[547] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39547,7 +39669,7 @@ func (x *FindInstanceTypesByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FindInstanceTypesByIdsRequest.ProtoReflect.Descriptor instead. func (*FindInstanceTypesByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{545} + return file_nico_proto_rawDescGZIP(), []int{547} } func (x *FindInstanceTypesByIdsRequest) GetInstanceTypeIds() []string { @@ -39580,7 +39702,7 @@ type FindInstanceTypesByIdsResponse struct { func (x *FindInstanceTypesByIdsResponse) Reset() { *x = FindInstanceTypesByIdsResponse{} - mi := &file_nico_proto_msgTypes[546] + mi := &file_nico_proto_msgTypes[548] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39592,7 +39714,7 @@ func (x *FindInstanceTypesByIdsResponse) String() string { func (*FindInstanceTypesByIdsResponse) ProtoMessage() {} func (x *FindInstanceTypesByIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[546] + mi := &file_nico_proto_msgTypes[548] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39605,7 +39727,7 @@ func (x *FindInstanceTypesByIdsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use FindInstanceTypesByIdsResponse.ProtoReflect.Descriptor instead. func (*FindInstanceTypesByIdsResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{546} + return file_nico_proto_rawDescGZIP(), []int{548} } func (x *FindInstanceTypesByIdsResponse) GetInstanceTypes() []*InstanceType { @@ -39624,7 +39746,7 @@ type DeleteInstanceTypeRequest struct { func (x *DeleteInstanceTypeRequest) Reset() { *x = DeleteInstanceTypeRequest{} - mi := &file_nico_proto_msgTypes[547] + mi := &file_nico_proto_msgTypes[549] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39636,7 +39758,7 @@ func (x *DeleteInstanceTypeRequest) String() string { func (*DeleteInstanceTypeRequest) ProtoMessage() {} func (x *DeleteInstanceTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[547] + mi := &file_nico_proto_msgTypes[549] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39649,7 +39771,7 @@ func (x *DeleteInstanceTypeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteInstanceTypeRequest.ProtoReflect.Descriptor instead. func (*DeleteInstanceTypeRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{547} + return file_nico_proto_rawDescGZIP(), []int{549} } func (x *DeleteInstanceTypeRequest) GetId() string { @@ -39667,7 +39789,7 @@ type DeleteInstanceTypeResponse struct { func (x *DeleteInstanceTypeResponse) Reset() { *x = DeleteInstanceTypeResponse{} - mi := &file_nico_proto_msgTypes[548] + mi := &file_nico_proto_msgTypes[550] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39679,7 +39801,7 @@ func (x *DeleteInstanceTypeResponse) String() string { func (*DeleteInstanceTypeResponse) ProtoMessage() {} func (x *DeleteInstanceTypeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[548] + mi := &file_nico_proto_msgTypes[550] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39692,7 +39814,7 @@ func (x *DeleteInstanceTypeResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteInstanceTypeResponse.ProtoReflect.Descriptor instead. func (*DeleteInstanceTypeResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{548} + return file_nico_proto_rawDescGZIP(), []int{550} } type UpdateInstanceTypeResponse struct { @@ -39704,7 +39826,7 @@ type UpdateInstanceTypeResponse struct { func (x *UpdateInstanceTypeResponse) Reset() { *x = UpdateInstanceTypeResponse{} - mi := &file_nico_proto_msgTypes[549] + mi := &file_nico_proto_msgTypes[551] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39716,7 +39838,7 @@ func (x *UpdateInstanceTypeResponse) String() string { func (*UpdateInstanceTypeResponse) ProtoMessage() {} func (x *UpdateInstanceTypeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[549] + mi := &file_nico_proto_msgTypes[551] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39729,7 +39851,7 @@ func (x *UpdateInstanceTypeResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateInstanceTypeResponse.ProtoReflect.Descriptor instead. func (*UpdateInstanceTypeResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{549} + return file_nico_proto_rawDescGZIP(), []int{551} } func (x *UpdateInstanceTypeResponse) GetInstanceType() *InstanceType { @@ -39751,7 +39873,7 @@ type UpdateInstanceTypeRequest struct { func (x *UpdateInstanceTypeRequest) Reset() { *x = UpdateInstanceTypeRequest{} - mi := &file_nico_proto_msgTypes[550] + mi := &file_nico_proto_msgTypes[552] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39763,7 +39885,7 @@ func (x *UpdateInstanceTypeRequest) String() string { func (*UpdateInstanceTypeRequest) ProtoMessage() {} func (x *UpdateInstanceTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[550] + mi := &file_nico_proto_msgTypes[552] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39776,7 +39898,7 @@ func (x *UpdateInstanceTypeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateInstanceTypeRequest.ProtoReflect.Descriptor instead. func (*UpdateInstanceTypeRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{550} + return file_nico_proto_rawDescGZIP(), []int{552} } func (x *UpdateInstanceTypeRequest) GetId() string { @@ -39817,7 +39939,7 @@ type AssociateMachinesWithInstanceTypeRequest struct { func (x *AssociateMachinesWithInstanceTypeRequest) Reset() { *x = AssociateMachinesWithInstanceTypeRequest{} - mi := &file_nico_proto_msgTypes[551] + mi := &file_nico_proto_msgTypes[553] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39829,7 +39951,7 @@ func (x *AssociateMachinesWithInstanceTypeRequest) String() string { func (*AssociateMachinesWithInstanceTypeRequest) ProtoMessage() {} func (x *AssociateMachinesWithInstanceTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[551] + mi := &file_nico_proto_msgTypes[553] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39842,7 +39964,7 @@ func (x *AssociateMachinesWithInstanceTypeRequest) ProtoReflect() protoreflect.M // Deprecated: Use AssociateMachinesWithInstanceTypeRequest.ProtoReflect.Descriptor instead. func (*AssociateMachinesWithInstanceTypeRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{551} + return file_nico_proto_rawDescGZIP(), []int{553} } func (x *AssociateMachinesWithInstanceTypeRequest) GetInstanceTypeId() string { @@ -39867,7 +39989,7 @@ type AssociateMachinesWithInstanceTypeResponse struct { func (x *AssociateMachinesWithInstanceTypeResponse) Reset() { *x = AssociateMachinesWithInstanceTypeResponse{} - mi := &file_nico_proto_msgTypes[552] + mi := &file_nico_proto_msgTypes[554] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39879,7 +40001,7 @@ func (x *AssociateMachinesWithInstanceTypeResponse) String() string { func (*AssociateMachinesWithInstanceTypeResponse) ProtoMessage() {} func (x *AssociateMachinesWithInstanceTypeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[552] + mi := &file_nico_proto_msgTypes[554] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39892,7 +40014,7 @@ func (x *AssociateMachinesWithInstanceTypeResponse) ProtoReflect() protoreflect. // Deprecated: Use AssociateMachinesWithInstanceTypeResponse.ProtoReflect.Descriptor instead. func (*AssociateMachinesWithInstanceTypeResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{552} + return file_nico_proto_rawDescGZIP(), []int{554} } type RemoveMachineInstanceTypeAssociationRequest struct { @@ -39904,7 +40026,7 @@ type RemoveMachineInstanceTypeAssociationRequest struct { func (x *RemoveMachineInstanceTypeAssociationRequest) Reset() { *x = RemoveMachineInstanceTypeAssociationRequest{} - mi := &file_nico_proto_msgTypes[553] + mi := &file_nico_proto_msgTypes[555] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39916,7 +40038,7 @@ func (x *RemoveMachineInstanceTypeAssociationRequest) String() string { func (*RemoveMachineInstanceTypeAssociationRequest) ProtoMessage() {} func (x *RemoveMachineInstanceTypeAssociationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[553] + mi := &file_nico_proto_msgTypes[555] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39929,7 +40051,7 @@ func (x *RemoveMachineInstanceTypeAssociationRequest) ProtoReflect() protoreflec // Deprecated: Use RemoveMachineInstanceTypeAssociationRequest.ProtoReflect.Descriptor instead. func (*RemoveMachineInstanceTypeAssociationRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{553} + return file_nico_proto_rawDescGZIP(), []int{555} } func (x *RemoveMachineInstanceTypeAssociationRequest) GetMachineId() string { @@ -39947,7 +40069,7 @@ type RemoveMachineInstanceTypeAssociationResponse struct { func (x *RemoveMachineInstanceTypeAssociationResponse) Reset() { *x = RemoveMachineInstanceTypeAssociationResponse{} - mi := &file_nico_proto_msgTypes[554] + mi := &file_nico_proto_msgTypes[556] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39959,7 +40081,7 @@ func (x *RemoveMachineInstanceTypeAssociationResponse) String() string { func (*RemoveMachineInstanceTypeAssociationResponse) ProtoMessage() {} func (x *RemoveMachineInstanceTypeAssociationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[554] + mi := &file_nico_proto_msgTypes[556] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39972,7 +40094,7 @@ func (x *RemoveMachineInstanceTypeAssociationResponse) ProtoReflect() protorefle // Deprecated: Use RemoveMachineInstanceTypeAssociationResponse.ProtoReflect.Descriptor instead. func (*RemoveMachineInstanceTypeAssociationResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{554} + return file_nico_proto_rawDescGZIP(), []int{556} } type RedfishBrowseRequest struct { @@ -39984,7 +40106,7 @@ type RedfishBrowseRequest struct { func (x *RedfishBrowseRequest) Reset() { *x = RedfishBrowseRequest{} - mi := &file_nico_proto_msgTypes[555] + mi := &file_nico_proto_msgTypes[557] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39996,7 +40118,7 @@ func (x *RedfishBrowseRequest) String() string { func (*RedfishBrowseRequest) ProtoMessage() {} func (x *RedfishBrowseRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[555] + mi := &file_nico_proto_msgTypes[557] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40009,7 +40131,7 @@ func (x *RedfishBrowseRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishBrowseRequest.ProtoReflect.Descriptor instead. func (*RedfishBrowseRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{555} + return file_nico_proto_rawDescGZIP(), []int{557} } func (x *RedfishBrowseRequest) GetUri() string { @@ -40030,7 +40152,7 @@ type RedfishBrowseResponse struct { func (x *RedfishBrowseResponse) Reset() { *x = RedfishBrowseResponse{} - mi := &file_nico_proto_msgTypes[556] + mi := &file_nico_proto_msgTypes[558] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40042,7 +40164,7 @@ func (x *RedfishBrowseResponse) String() string { func (*RedfishBrowseResponse) ProtoMessage() {} func (x *RedfishBrowseResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[556] + mi := &file_nico_proto_msgTypes[558] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40055,7 +40177,7 @@ func (x *RedfishBrowseResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishBrowseResponse.ProtoReflect.Descriptor instead. func (*RedfishBrowseResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{556} + return file_nico_proto_rawDescGZIP(), []int{558} } func (x *RedfishBrowseResponse) GetText() string { @@ -40081,7 +40203,7 @@ type RedfishListActionsRequest struct { func (x *RedfishListActionsRequest) Reset() { *x = RedfishListActionsRequest{} - mi := &file_nico_proto_msgTypes[557] + mi := &file_nico_proto_msgTypes[559] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40093,7 +40215,7 @@ func (x *RedfishListActionsRequest) String() string { func (*RedfishListActionsRequest) ProtoMessage() {} func (x *RedfishListActionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[557] + mi := &file_nico_proto_msgTypes[559] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40106,7 +40228,7 @@ func (x *RedfishListActionsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishListActionsRequest.ProtoReflect.Descriptor instead. func (*RedfishListActionsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{557} + return file_nico_proto_rawDescGZIP(), []int{559} } func (x *RedfishListActionsRequest) GetMachineIp() string { @@ -40125,7 +40247,7 @@ type RedfishListActionsResponse struct { func (x *RedfishListActionsResponse) Reset() { *x = RedfishListActionsResponse{} - mi := &file_nico_proto_msgTypes[558] + mi := &file_nico_proto_msgTypes[560] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40137,7 +40259,7 @@ func (x *RedfishListActionsResponse) String() string { func (*RedfishListActionsResponse) ProtoMessage() {} func (x *RedfishListActionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[558] + mi := &file_nico_proto_msgTypes[560] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40150,7 +40272,7 @@ func (x *RedfishListActionsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishListActionsResponse.ProtoReflect.Descriptor instead. func (*RedfishListActionsResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{558} + return file_nico_proto_rawDescGZIP(), []int{560} } func (x *RedfishListActionsResponse) GetActions() []*RedfishAction { @@ -40183,7 +40305,7 @@ type RedfishAction struct { func (x *RedfishAction) Reset() { *x = RedfishAction{} - mi := &file_nico_proto_msgTypes[559] + mi := &file_nico_proto_msgTypes[561] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40195,7 +40317,7 @@ func (x *RedfishAction) String() string { func (*RedfishAction) ProtoMessage() {} func (x *RedfishAction) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[559] + mi := &file_nico_proto_msgTypes[561] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40208,7 +40330,7 @@ func (x *RedfishAction) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishAction.ProtoReflect.Descriptor instead. func (*RedfishAction) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{559} + return file_nico_proto_rawDescGZIP(), []int{561} } func (x *RedfishAction) GetRequestId() int64 { @@ -40304,7 +40426,7 @@ type OptionalRedfishActionResult struct { func (x *OptionalRedfishActionResult) Reset() { *x = OptionalRedfishActionResult{} - mi := &file_nico_proto_msgTypes[560] + mi := &file_nico_proto_msgTypes[562] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40316,7 +40438,7 @@ func (x *OptionalRedfishActionResult) String() string { func (*OptionalRedfishActionResult) ProtoMessage() {} func (x *OptionalRedfishActionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[560] + mi := &file_nico_proto_msgTypes[562] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40329,7 +40451,7 @@ func (x *OptionalRedfishActionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use OptionalRedfishActionResult.ProtoReflect.Descriptor instead. func (*OptionalRedfishActionResult) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{560} + return file_nico_proto_rawDescGZIP(), []int{562} } func (x *OptionalRedfishActionResult) GetResult() *RedfishActionResult { @@ -40351,7 +40473,7 @@ type RedfishActionResult struct { func (x *RedfishActionResult) Reset() { *x = RedfishActionResult{} - mi := &file_nico_proto_msgTypes[561] + mi := &file_nico_proto_msgTypes[563] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40363,7 +40485,7 @@ func (x *RedfishActionResult) String() string { func (*RedfishActionResult) ProtoMessage() {} func (x *RedfishActionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[561] + mi := &file_nico_proto_msgTypes[563] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40376,7 +40498,7 @@ func (x *RedfishActionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishActionResult.ProtoReflect.Descriptor instead. func (*RedfishActionResult) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{561} + return file_nico_proto_rawDescGZIP(), []int{563} } func (x *RedfishActionResult) GetHeaders() map[string]string { @@ -40419,7 +40541,7 @@ type RedfishCreateActionRequest struct { func (x *RedfishCreateActionRequest) Reset() { *x = RedfishCreateActionRequest{} - mi := &file_nico_proto_msgTypes[562] + mi := &file_nico_proto_msgTypes[564] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40431,7 +40553,7 @@ func (x *RedfishCreateActionRequest) String() string { func (*RedfishCreateActionRequest) ProtoMessage() {} func (x *RedfishCreateActionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[562] + mi := &file_nico_proto_msgTypes[564] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40444,7 +40566,7 @@ func (x *RedfishCreateActionRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishCreateActionRequest.ProtoReflect.Descriptor instead. func (*RedfishCreateActionRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{562} + return file_nico_proto_rawDescGZIP(), []int{564} } func (x *RedfishCreateActionRequest) GetIps() []string { @@ -40484,7 +40606,7 @@ type RedfishCreateActionResponse struct { func (x *RedfishCreateActionResponse) Reset() { *x = RedfishCreateActionResponse{} - mi := &file_nico_proto_msgTypes[563] + mi := &file_nico_proto_msgTypes[565] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40496,7 +40618,7 @@ func (x *RedfishCreateActionResponse) String() string { func (*RedfishCreateActionResponse) ProtoMessage() {} func (x *RedfishCreateActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[563] + mi := &file_nico_proto_msgTypes[565] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40509,7 +40631,7 @@ func (x *RedfishCreateActionResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishCreateActionResponse.ProtoReflect.Descriptor instead. func (*RedfishCreateActionResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{563} + return file_nico_proto_rawDescGZIP(), []int{565} } func (x *RedfishCreateActionResponse) GetRequestId() int64 { @@ -40528,7 +40650,7 @@ type RedfishActionID struct { func (x *RedfishActionID) Reset() { *x = RedfishActionID{} - mi := &file_nico_proto_msgTypes[564] + mi := &file_nico_proto_msgTypes[566] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40540,7 +40662,7 @@ func (x *RedfishActionID) String() string { func (*RedfishActionID) ProtoMessage() {} func (x *RedfishActionID) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[564] + mi := &file_nico_proto_msgTypes[566] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40553,7 +40675,7 @@ func (x *RedfishActionID) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishActionID.ProtoReflect.Descriptor instead. func (*RedfishActionID) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{564} + return file_nico_proto_rawDescGZIP(), []int{566} } func (x *RedfishActionID) GetRequestId() int64 { @@ -40571,7 +40693,7 @@ type RedfishApproveActionResponse struct { func (x *RedfishApproveActionResponse) Reset() { *x = RedfishApproveActionResponse{} - mi := &file_nico_proto_msgTypes[565] + mi := &file_nico_proto_msgTypes[567] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40583,7 +40705,7 @@ func (x *RedfishApproveActionResponse) String() string { func (*RedfishApproveActionResponse) ProtoMessage() {} func (x *RedfishApproveActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[565] + mi := &file_nico_proto_msgTypes[567] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40596,7 +40718,7 @@ func (x *RedfishApproveActionResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishApproveActionResponse.ProtoReflect.Descriptor instead. func (*RedfishApproveActionResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{565} + return file_nico_proto_rawDescGZIP(), []int{567} } type RedfishApplyActionResponse struct { @@ -40607,7 +40729,7 @@ type RedfishApplyActionResponse struct { func (x *RedfishApplyActionResponse) Reset() { *x = RedfishApplyActionResponse{} - mi := &file_nico_proto_msgTypes[566] + mi := &file_nico_proto_msgTypes[568] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40619,7 +40741,7 @@ func (x *RedfishApplyActionResponse) String() string { func (*RedfishApplyActionResponse) ProtoMessage() {} func (x *RedfishApplyActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[566] + mi := &file_nico_proto_msgTypes[568] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40632,7 +40754,7 @@ func (x *RedfishApplyActionResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishApplyActionResponse.ProtoReflect.Descriptor instead. func (*RedfishApplyActionResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{566} + return file_nico_proto_rawDescGZIP(), []int{568} } type RedfishCancelActionResponse struct { @@ -40643,7 +40765,7 @@ type RedfishCancelActionResponse struct { func (x *RedfishCancelActionResponse) Reset() { *x = RedfishCancelActionResponse{} - mi := &file_nico_proto_msgTypes[567] + mi := &file_nico_proto_msgTypes[569] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40655,7 +40777,7 @@ func (x *RedfishCancelActionResponse) String() string { func (*RedfishCancelActionResponse) ProtoMessage() {} func (x *RedfishCancelActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[567] + mi := &file_nico_proto_msgTypes[569] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40668,7 +40790,7 @@ func (x *RedfishCancelActionResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RedfishCancelActionResponse.ProtoReflect.Descriptor instead. func (*RedfishCancelActionResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{567} + return file_nico_proto_rawDescGZIP(), []int{569} } type UfmBrowseRequest struct { @@ -40683,7 +40805,7 @@ type UfmBrowseRequest struct { func (x *UfmBrowseRequest) Reset() { *x = UfmBrowseRequest{} - mi := &file_nico_proto_msgTypes[568] + mi := &file_nico_proto_msgTypes[570] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40695,7 +40817,7 @@ func (x *UfmBrowseRequest) String() string { func (*UfmBrowseRequest) ProtoMessage() {} func (x *UfmBrowseRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[568] + mi := &file_nico_proto_msgTypes[570] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40708,7 +40830,7 @@ func (x *UfmBrowseRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UfmBrowseRequest.ProtoReflect.Descriptor instead. func (*UfmBrowseRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{568} + return file_nico_proto_rawDescGZIP(), []int{570} } func (x *UfmBrowseRequest) GetFabricId() string { @@ -40739,7 +40861,7 @@ type UfmBrowseResponse struct { func (x *UfmBrowseResponse) Reset() { *x = UfmBrowseResponse{} - mi := &file_nico_proto_msgTypes[569] + mi := &file_nico_proto_msgTypes[571] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40751,7 +40873,7 @@ func (x *UfmBrowseResponse) String() string { func (*UfmBrowseResponse) ProtoMessage() {} func (x *UfmBrowseResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[569] + mi := &file_nico_proto_msgTypes[571] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40764,7 +40886,7 @@ func (x *UfmBrowseResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UfmBrowseResponse.ProtoReflect.Descriptor instead. func (*UfmBrowseResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{569} + return file_nico_proto_rawDescGZIP(), []int{571} } func (x *UfmBrowseResponse) GetBody() string { @@ -40799,7 +40921,7 @@ type NetworkSecurityGroupAttributes struct { func (x *NetworkSecurityGroupAttributes) Reset() { *x = NetworkSecurityGroupAttributes{} - mi := &file_nico_proto_msgTypes[570] + mi := &file_nico_proto_msgTypes[572] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40811,7 +40933,7 @@ func (x *NetworkSecurityGroupAttributes) String() string { func (*NetworkSecurityGroupAttributes) ProtoMessage() {} func (x *NetworkSecurityGroupAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[570] + mi := &file_nico_proto_msgTypes[572] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40824,7 +40946,7 @@ func (x *NetworkSecurityGroupAttributes) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkSecurityGroupAttributes.ProtoReflect.Descriptor instead. func (*NetworkSecurityGroupAttributes) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{570} + return file_nico_proto_rawDescGZIP(), []int{572} } func (x *NetworkSecurityGroupAttributes) GetRules() []*NetworkSecurityGroupRuleAttributes { @@ -40857,7 +40979,7 @@ type NetworkSecurityGroup struct { func (x *NetworkSecurityGroup) Reset() { *x = NetworkSecurityGroup{} - mi := &file_nico_proto_msgTypes[571] + mi := &file_nico_proto_msgTypes[573] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40869,7 +40991,7 @@ func (x *NetworkSecurityGroup) String() string { func (*NetworkSecurityGroup) ProtoMessage() {} func (x *NetworkSecurityGroup) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[571] + mi := &file_nico_proto_msgTypes[573] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40882,7 +41004,7 @@ func (x *NetworkSecurityGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkSecurityGroup.ProtoReflect.Descriptor instead. func (*NetworkSecurityGroup) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{571} + return file_nico_proto_rawDescGZIP(), []int{573} } func (x *NetworkSecurityGroup) GetId() string { @@ -40953,7 +41075,7 @@ type CreateNetworkSecurityGroupRequest struct { func (x *CreateNetworkSecurityGroupRequest) Reset() { *x = CreateNetworkSecurityGroupRequest{} - mi := &file_nico_proto_msgTypes[572] + mi := &file_nico_proto_msgTypes[574] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40965,7 +41087,7 @@ func (x *CreateNetworkSecurityGroupRequest) String() string { func (*CreateNetworkSecurityGroupRequest) ProtoMessage() {} func (x *CreateNetworkSecurityGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[572] + mi := &file_nico_proto_msgTypes[574] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40978,7 +41100,7 @@ func (x *CreateNetworkSecurityGroupRequest) ProtoReflect() protoreflect.Message // Deprecated: Use CreateNetworkSecurityGroupRequest.ProtoReflect.Descriptor instead. func (*CreateNetworkSecurityGroupRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{572} + return file_nico_proto_rawDescGZIP(), []int{574} } func (x *CreateNetworkSecurityGroupRequest) GetId() string { @@ -41018,7 +41140,7 @@ type CreateNetworkSecurityGroupResponse struct { func (x *CreateNetworkSecurityGroupResponse) Reset() { *x = CreateNetworkSecurityGroupResponse{} - mi := &file_nico_proto_msgTypes[573] + mi := &file_nico_proto_msgTypes[575] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41030,7 +41152,7 @@ func (x *CreateNetworkSecurityGroupResponse) String() string { func (*CreateNetworkSecurityGroupResponse) ProtoMessage() {} func (x *CreateNetworkSecurityGroupResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[573] + mi := &file_nico_proto_msgTypes[575] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41043,7 +41165,7 @@ func (x *CreateNetworkSecurityGroupResponse) ProtoReflect() protoreflect.Message // Deprecated: Use CreateNetworkSecurityGroupResponse.ProtoReflect.Descriptor instead. func (*CreateNetworkSecurityGroupResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{573} + return file_nico_proto_rawDescGZIP(), []int{575} } func (x *CreateNetworkSecurityGroupResponse) GetNetworkSecurityGroup() *NetworkSecurityGroup { @@ -41063,7 +41185,7 @@ type FindNetworkSecurityGroupIdsRequest struct { func (x *FindNetworkSecurityGroupIdsRequest) Reset() { *x = FindNetworkSecurityGroupIdsRequest{} - mi := &file_nico_proto_msgTypes[574] + mi := &file_nico_proto_msgTypes[576] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41075,7 +41197,7 @@ func (x *FindNetworkSecurityGroupIdsRequest) String() string { func (*FindNetworkSecurityGroupIdsRequest) ProtoMessage() {} func (x *FindNetworkSecurityGroupIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[574] + mi := &file_nico_proto_msgTypes[576] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41088,7 +41210,7 @@ func (x *FindNetworkSecurityGroupIdsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use FindNetworkSecurityGroupIdsRequest.ProtoReflect.Descriptor instead. func (*FindNetworkSecurityGroupIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{574} + return file_nico_proto_rawDescGZIP(), []int{576} } func (x *FindNetworkSecurityGroupIdsRequest) GetName() string { @@ -41114,7 +41236,7 @@ type FindNetworkSecurityGroupIdsResponse struct { func (x *FindNetworkSecurityGroupIdsResponse) Reset() { *x = FindNetworkSecurityGroupIdsResponse{} - mi := &file_nico_proto_msgTypes[575] + mi := &file_nico_proto_msgTypes[577] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41126,7 +41248,7 @@ func (x *FindNetworkSecurityGroupIdsResponse) String() string { func (*FindNetworkSecurityGroupIdsResponse) ProtoMessage() {} func (x *FindNetworkSecurityGroupIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[575] + mi := &file_nico_proto_msgTypes[577] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41139,7 +41261,7 @@ func (x *FindNetworkSecurityGroupIdsResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use FindNetworkSecurityGroupIdsResponse.ProtoReflect.Descriptor instead. func (*FindNetworkSecurityGroupIdsResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{575} + return file_nico_proto_rawDescGZIP(), []int{577} } func (x *FindNetworkSecurityGroupIdsResponse) GetNetworkSecurityGroupIds() []string { @@ -41159,7 +41281,7 @@ type FindNetworkSecurityGroupsByIdsRequest struct { func (x *FindNetworkSecurityGroupsByIdsRequest) Reset() { *x = FindNetworkSecurityGroupsByIdsRequest{} - mi := &file_nico_proto_msgTypes[576] + mi := &file_nico_proto_msgTypes[578] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41171,7 +41293,7 @@ func (x *FindNetworkSecurityGroupsByIdsRequest) String() string { func (*FindNetworkSecurityGroupsByIdsRequest) ProtoMessage() {} func (x *FindNetworkSecurityGroupsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[576] + mi := &file_nico_proto_msgTypes[578] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41184,7 +41306,7 @@ func (x *FindNetworkSecurityGroupsByIdsRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use FindNetworkSecurityGroupsByIdsRequest.ProtoReflect.Descriptor instead. func (*FindNetworkSecurityGroupsByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{576} + return file_nico_proto_rawDescGZIP(), []int{578} } func (x *FindNetworkSecurityGroupsByIdsRequest) GetNetworkSecurityGroupIds() []string { @@ -41210,7 +41332,7 @@ type FindNetworkSecurityGroupsByIdsResponse struct { func (x *FindNetworkSecurityGroupsByIdsResponse) Reset() { *x = FindNetworkSecurityGroupsByIdsResponse{} - mi := &file_nico_proto_msgTypes[577] + mi := &file_nico_proto_msgTypes[579] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41222,7 +41344,7 @@ func (x *FindNetworkSecurityGroupsByIdsResponse) String() string { func (*FindNetworkSecurityGroupsByIdsResponse) ProtoMessage() {} func (x *FindNetworkSecurityGroupsByIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[577] + mi := &file_nico_proto_msgTypes[579] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41235,7 +41357,7 @@ func (x *FindNetworkSecurityGroupsByIdsResponse) ProtoReflect() protoreflect.Mes // Deprecated: Use FindNetworkSecurityGroupsByIdsResponse.ProtoReflect.Descriptor instead. func (*FindNetworkSecurityGroupsByIdsResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{577} + return file_nico_proto_rawDescGZIP(), []int{579} } func (x *FindNetworkSecurityGroupsByIdsResponse) GetNetworkSecurityGroups() []*NetworkSecurityGroup { @@ -41254,7 +41376,7 @@ type UpdateNetworkSecurityGroupResponse struct { func (x *UpdateNetworkSecurityGroupResponse) Reset() { *x = UpdateNetworkSecurityGroupResponse{} - mi := &file_nico_proto_msgTypes[578] + mi := &file_nico_proto_msgTypes[580] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41266,7 +41388,7 @@ func (x *UpdateNetworkSecurityGroupResponse) String() string { func (*UpdateNetworkSecurityGroupResponse) ProtoMessage() {} func (x *UpdateNetworkSecurityGroupResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[578] + mi := &file_nico_proto_msgTypes[580] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41279,7 +41401,7 @@ func (x *UpdateNetworkSecurityGroupResponse) ProtoReflect() protoreflect.Message // Deprecated: Use UpdateNetworkSecurityGroupResponse.ProtoReflect.Descriptor instead. func (*UpdateNetworkSecurityGroupResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{578} + return file_nico_proto_rawDescGZIP(), []int{580} } func (x *UpdateNetworkSecurityGroupResponse) GetNetworkSecurityGroup() *NetworkSecurityGroup { @@ -41302,7 +41424,7 @@ type UpdateNetworkSecurityGroupRequest struct { func (x *UpdateNetworkSecurityGroupRequest) Reset() { *x = UpdateNetworkSecurityGroupRequest{} - mi := &file_nico_proto_msgTypes[579] + mi := &file_nico_proto_msgTypes[581] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41314,7 +41436,7 @@ func (x *UpdateNetworkSecurityGroupRequest) String() string { func (*UpdateNetworkSecurityGroupRequest) ProtoMessage() {} func (x *UpdateNetworkSecurityGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[579] + mi := &file_nico_proto_msgTypes[581] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41327,7 +41449,7 @@ func (x *UpdateNetworkSecurityGroupRequest) ProtoReflect() protoreflect.Message // Deprecated: Use UpdateNetworkSecurityGroupRequest.ProtoReflect.Descriptor instead. func (*UpdateNetworkSecurityGroupRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{579} + return file_nico_proto_rawDescGZIP(), []int{581} } func (x *UpdateNetworkSecurityGroupRequest) GetId() string { @@ -41375,7 +41497,7 @@ type DeleteNetworkSecurityGroupRequest struct { func (x *DeleteNetworkSecurityGroupRequest) Reset() { *x = DeleteNetworkSecurityGroupRequest{} - mi := &file_nico_proto_msgTypes[580] + mi := &file_nico_proto_msgTypes[582] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41387,7 +41509,7 @@ func (x *DeleteNetworkSecurityGroupRequest) String() string { func (*DeleteNetworkSecurityGroupRequest) ProtoMessage() {} func (x *DeleteNetworkSecurityGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[580] + mi := &file_nico_proto_msgTypes[582] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41400,7 +41522,7 @@ func (x *DeleteNetworkSecurityGroupRequest) ProtoReflect() protoreflect.Message // Deprecated: Use DeleteNetworkSecurityGroupRequest.ProtoReflect.Descriptor instead. func (*DeleteNetworkSecurityGroupRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{580} + return file_nico_proto_rawDescGZIP(), []int{582} } func (x *DeleteNetworkSecurityGroupRequest) GetId() string { @@ -41425,7 +41547,7 @@ type DeleteNetworkSecurityGroupResponse struct { func (x *DeleteNetworkSecurityGroupResponse) Reset() { *x = DeleteNetworkSecurityGroupResponse{} - mi := &file_nico_proto_msgTypes[581] + mi := &file_nico_proto_msgTypes[583] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41437,7 +41559,7 @@ func (x *DeleteNetworkSecurityGroupResponse) String() string { func (*DeleteNetworkSecurityGroupResponse) ProtoMessage() {} func (x *DeleteNetworkSecurityGroupResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[581] + mi := &file_nico_proto_msgTypes[583] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41450,7 +41572,7 @@ func (x *DeleteNetworkSecurityGroupResponse) ProtoReflect() protoreflect.Message // Deprecated: Use DeleteNetworkSecurityGroupResponse.ProtoReflect.Descriptor instead. func (*DeleteNetworkSecurityGroupResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{581} + return file_nico_proto_rawDescGZIP(), []int{583} } type NetworkSecurityGroupStatus struct { @@ -41464,7 +41586,7 @@ type NetworkSecurityGroupStatus struct { func (x *NetworkSecurityGroupStatus) Reset() { *x = NetworkSecurityGroupStatus{} - mi := &file_nico_proto_msgTypes[582] + mi := &file_nico_proto_msgTypes[584] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41476,7 +41598,7 @@ func (x *NetworkSecurityGroupStatus) String() string { func (*NetworkSecurityGroupStatus) ProtoMessage() {} func (x *NetworkSecurityGroupStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[582] + mi := &file_nico_proto_msgTypes[584] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41489,7 +41611,7 @@ func (x *NetworkSecurityGroupStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkSecurityGroupStatus.ProtoReflect.Descriptor instead. func (*NetworkSecurityGroupStatus) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{582} + return file_nico_proto_rawDescGZIP(), []int{584} } func (x *NetworkSecurityGroupStatus) GetSource() NetworkSecurityGroupSource { @@ -41542,7 +41664,7 @@ type NetworkSecurityGroupPropagationObjectStatus struct { func (x *NetworkSecurityGroupPropagationObjectStatus) Reset() { *x = NetworkSecurityGroupPropagationObjectStatus{} - mi := &file_nico_proto_msgTypes[583] + mi := &file_nico_proto_msgTypes[585] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41554,7 +41676,7 @@ func (x *NetworkSecurityGroupPropagationObjectStatus) String() string { func (*NetworkSecurityGroupPropagationObjectStatus) ProtoMessage() {} func (x *NetworkSecurityGroupPropagationObjectStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[583] + mi := &file_nico_proto_msgTypes[585] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41567,7 +41689,7 @@ func (x *NetworkSecurityGroupPropagationObjectStatus) ProtoReflect() protoreflec // Deprecated: Use NetworkSecurityGroupPropagationObjectStatus.ProtoReflect.Descriptor instead. func (*NetworkSecurityGroupPropagationObjectStatus) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{583} + return file_nico_proto_rawDescGZIP(), []int{585} } func (x *NetworkSecurityGroupPropagationObjectStatus) GetId() string { @@ -41615,7 +41737,7 @@ type GetNetworkSecurityGroupPropagationStatusResponse struct { func (x *GetNetworkSecurityGroupPropagationStatusResponse) Reset() { *x = GetNetworkSecurityGroupPropagationStatusResponse{} - mi := &file_nico_proto_msgTypes[584] + mi := &file_nico_proto_msgTypes[586] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41627,7 +41749,7 @@ func (x *GetNetworkSecurityGroupPropagationStatusResponse) String() string { func (*GetNetworkSecurityGroupPropagationStatusResponse) ProtoMessage() {} func (x *GetNetworkSecurityGroupPropagationStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[584] + mi := &file_nico_proto_msgTypes[586] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41640,7 +41762,7 @@ func (x *GetNetworkSecurityGroupPropagationStatusResponse) ProtoReflect() protor // Deprecated: Use GetNetworkSecurityGroupPropagationStatusResponse.ProtoReflect.Descriptor instead. func (*GetNetworkSecurityGroupPropagationStatusResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{584} + return file_nico_proto_rawDescGZIP(), []int{586} } func (x *GetNetworkSecurityGroupPropagationStatusResponse) GetVpcs() []*NetworkSecurityGroupPropagationObjectStatus { @@ -41666,7 +41788,7 @@ type NetworkSecurityGroupIdList struct { func (x *NetworkSecurityGroupIdList) Reset() { *x = NetworkSecurityGroupIdList{} - mi := &file_nico_proto_msgTypes[585] + mi := &file_nico_proto_msgTypes[587] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41678,7 +41800,7 @@ func (x *NetworkSecurityGroupIdList) String() string { func (*NetworkSecurityGroupIdList) ProtoMessage() {} func (x *NetworkSecurityGroupIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[585] + mi := &file_nico_proto_msgTypes[587] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41691,7 +41813,7 @@ func (x *NetworkSecurityGroupIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkSecurityGroupIdList.ProtoReflect.Descriptor instead. func (*NetworkSecurityGroupIdList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{585} + return file_nico_proto_rawDescGZIP(), []int{587} } func (x *NetworkSecurityGroupIdList) GetIds() []string { @@ -41723,7 +41845,7 @@ type GetNetworkSecurityGroupPropagationStatusRequest struct { func (x *GetNetworkSecurityGroupPropagationStatusRequest) Reset() { *x = GetNetworkSecurityGroupPropagationStatusRequest{} - mi := &file_nico_proto_msgTypes[586] + mi := &file_nico_proto_msgTypes[588] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41735,7 +41857,7 @@ func (x *GetNetworkSecurityGroupPropagationStatusRequest) String() string { func (*GetNetworkSecurityGroupPropagationStatusRequest) ProtoMessage() {} func (x *GetNetworkSecurityGroupPropagationStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[586] + mi := &file_nico_proto_msgTypes[588] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41748,7 +41870,7 @@ func (x *GetNetworkSecurityGroupPropagationStatusRequest) ProtoReflect() protore // Deprecated: Use GetNetworkSecurityGroupPropagationStatusRequest.ProtoReflect.Descriptor instead. func (*GetNetworkSecurityGroupPropagationStatusRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{586} + return file_nico_proto_rawDescGZIP(), []int{588} } func (x *GetNetworkSecurityGroupPropagationStatusRequest) GetVpcIds() []string { @@ -41800,7 +41922,7 @@ type NetworkSecurityGroupRuleAttributes struct { func (x *NetworkSecurityGroupRuleAttributes) Reset() { *x = NetworkSecurityGroupRuleAttributes{} - mi := &file_nico_proto_msgTypes[587] + mi := &file_nico_proto_msgTypes[589] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41812,7 +41934,7 @@ func (x *NetworkSecurityGroupRuleAttributes) String() string { func (*NetworkSecurityGroupRuleAttributes) ProtoMessage() {} func (x *NetworkSecurityGroupRuleAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[587] + mi := &file_nico_proto_msgTypes[589] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41825,7 +41947,7 @@ func (x *NetworkSecurityGroupRuleAttributes) ProtoReflect() protoreflect.Message // Deprecated: Use NetworkSecurityGroupRuleAttributes.ProtoReflect.Descriptor instead. func (*NetworkSecurityGroupRuleAttributes) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{587} + return file_nico_proto_rawDescGZIP(), []int{589} } func (x *NetworkSecurityGroupRuleAttributes) GetId() string { @@ -41969,7 +42091,7 @@ type ResolvedNetworkSecurityGroupRule struct { func (x *ResolvedNetworkSecurityGroupRule) Reset() { *x = ResolvedNetworkSecurityGroupRule{} - mi := &file_nico_proto_msgTypes[588] + mi := &file_nico_proto_msgTypes[590] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41981,7 +42103,7 @@ func (x *ResolvedNetworkSecurityGroupRule) String() string { func (*ResolvedNetworkSecurityGroupRule) ProtoMessage() {} func (x *ResolvedNetworkSecurityGroupRule) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[588] + mi := &file_nico_proto_msgTypes[590] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41994,7 +42116,7 @@ func (x *ResolvedNetworkSecurityGroupRule) ProtoReflect() protoreflect.Message { // Deprecated: Use ResolvedNetworkSecurityGroupRule.ProtoReflect.Descriptor instead. func (*ResolvedNetworkSecurityGroupRule) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{588} + return file_nico_proto_rawDescGZIP(), []int{590} } func (x *ResolvedNetworkSecurityGroupRule) GetRule() *NetworkSecurityGroupRuleAttributes { @@ -42027,7 +42149,7 @@ type GetNetworkSecurityGroupAttachmentsRequest struct { func (x *GetNetworkSecurityGroupAttachmentsRequest) Reset() { *x = GetNetworkSecurityGroupAttachmentsRequest{} - mi := &file_nico_proto_msgTypes[589] + mi := &file_nico_proto_msgTypes[591] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42039,7 +42161,7 @@ func (x *GetNetworkSecurityGroupAttachmentsRequest) String() string { func (*GetNetworkSecurityGroupAttachmentsRequest) ProtoMessage() {} func (x *GetNetworkSecurityGroupAttachmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[589] + mi := &file_nico_proto_msgTypes[591] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42052,7 +42174,7 @@ func (x *GetNetworkSecurityGroupAttachmentsRequest) ProtoReflect() protoreflect. // Deprecated: Use GetNetworkSecurityGroupAttachmentsRequest.ProtoReflect.Descriptor instead. func (*GetNetworkSecurityGroupAttachmentsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{589} + return file_nico_proto_rawDescGZIP(), []int{591} } func (x *GetNetworkSecurityGroupAttachmentsRequest) GetNetworkSecurityGroupIds() []string { @@ -42073,7 +42195,7 @@ type NetworkSecurityGroupAttachments struct { func (x *NetworkSecurityGroupAttachments) Reset() { *x = NetworkSecurityGroupAttachments{} - mi := &file_nico_proto_msgTypes[590] + mi := &file_nico_proto_msgTypes[592] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42085,7 +42207,7 @@ func (x *NetworkSecurityGroupAttachments) String() string { func (*NetworkSecurityGroupAttachments) ProtoMessage() {} func (x *NetworkSecurityGroupAttachments) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[590] + mi := &file_nico_proto_msgTypes[592] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42098,7 +42220,7 @@ func (x *NetworkSecurityGroupAttachments) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkSecurityGroupAttachments.ProtoReflect.Descriptor instead. func (*NetworkSecurityGroupAttachments) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{590} + return file_nico_proto_rawDescGZIP(), []int{592} } func (x *NetworkSecurityGroupAttachments) GetNetworkSecurityGroupId() string { @@ -42131,7 +42253,7 @@ type GetNetworkSecurityGroupAttachmentsResponse struct { func (x *GetNetworkSecurityGroupAttachmentsResponse) Reset() { *x = GetNetworkSecurityGroupAttachmentsResponse{} - mi := &file_nico_proto_msgTypes[591] + mi := &file_nico_proto_msgTypes[593] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42143,7 +42265,7 @@ func (x *GetNetworkSecurityGroupAttachmentsResponse) String() string { func (*GetNetworkSecurityGroupAttachmentsResponse) ProtoMessage() {} func (x *GetNetworkSecurityGroupAttachmentsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[591] + mi := &file_nico_proto_msgTypes[593] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42156,7 +42278,7 @@ func (x *GetNetworkSecurityGroupAttachmentsResponse) ProtoReflect() protoreflect // Deprecated: Use GetNetworkSecurityGroupAttachmentsResponse.ProtoReflect.Descriptor instead. func (*GetNetworkSecurityGroupAttachmentsResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{591} + return file_nico_proto_rawDescGZIP(), []int{593} } func (x *GetNetworkSecurityGroupAttachmentsResponse) GetAttachments() []*NetworkSecurityGroupAttachments { @@ -42174,7 +42296,7 @@ type GetDesiredFirmwareVersionsRequest struct { func (x *GetDesiredFirmwareVersionsRequest) Reset() { *x = GetDesiredFirmwareVersionsRequest{} - mi := &file_nico_proto_msgTypes[592] + mi := &file_nico_proto_msgTypes[594] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42186,7 +42308,7 @@ func (x *GetDesiredFirmwareVersionsRequest) String() string { func (*GetDesiredFirmwareVersionsRequest) ProtoMessage() {} func (x *GetDesiredFirmwareVersionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[592] + mi := &file_nico_proto_msgTypes[594] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42199,7 +42321,7 @@ func (x *GetDesiredFirmwareVersionsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use GetDesiredFirmwareVersionsRequest.ProtoReflect.Descriptor instead. func (*GetDesiredFirmwareVersionsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{592} + return file_nico_proto_rawDescGZIP(), []int{594} } type GetDesiredFirmwareVersionsResponse struct { @@ -42211,7 +42333,7 @@ type GetDesiredFirmwareVersionsResponse struct { func (x *GetDesiredFirmwareVersionsResponse) Reset() { *x = GetDesiredFirmwareVersionsResponse{} - mi := &file_nico_proto_msgTypes[593] + mi := &file_nico_proto_msgTypes[595] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42223,7 +42345,7 @@ func (x *GetDesiredFirmwareVersionsResponse) String() string { func (*GetDesiredFirmwareVersionsResponse) ProtoMessage() {} func (x *GetDesiredFirmwareVersionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[593] + mi := &file_nico_proto_msgTypes[595] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42236,7 +42358,7 @@ func (x *GetDesiredFirmwareVersionsResponse) ProtoReflect() protoreflect.Message // Deprecated: Use GetDesiredFirmwareVersionsResponse.ProtoReflect.Descriptor instead. func (*GetDesiredFirmwareVersionsResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{593} + return file_nico_proto_rawDescGZIP(), []int{595} } func (x *GetDesiredFirmwareVersionsResponse) GetEntries() []*DesiredFirmwareVersionEntry { @@ -42257,7 +42379,7 @@ type DesiredFirmwareVersionEntry struct { func (x *DesiredFirmwareVersionEntry) Reset() { *x = DesiredFirmwareVersionEntry{} - mi := &file_nico_proto_msgTypes[594] + mi := &file_nico_proto_msgTypes[596] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42269,7 +42391,7 @@ func (x *DesiredFirmwareVersionEntry) String() string { func (*DesiredFirmwareVersionEntry) ProtoMessage() {} func (x *DesiredFirmwareVersionEntry) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[594] + mi := &file_nico_proto_msgTypes[596] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42282,7 +42404,7 @@ func (x *DesiredFirmwareVersionEntry) ProtoReflect() protoreflect.Message { // Deprecated: Use DesiredFirmwareVersionEntry.ProtoReflect.Descriptor instead. func (*DesiredFirmwareVersionEntry) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{594} + return file_nico_proto_rawDescGZIP(), []int{596} } func (x *DesiredFirmwareVersionEntry) GetVendor() string { @@ -42317,7 +42439,7 @@ type SkuComponentChassis struct { func (x *SkuComponentChassis) Reset() { *x = SkuComponentChassis{} - mi := &file_nico_proto_msgTypes[595] + mi := &file_nico_proto_msgTypes[597] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42329,7 +42451,7 @@ func (x *SkuComponentChassis) String() string { func (*SkuComponentChassis) ProtoMessage() {} func (x *SkuComponentChassis) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[595] + mi := &file_nico_proto_msgTypes[597] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42342,7 +42464,7 @@ func (x *SkuComponentChassis) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponentChassis.ProtoReflect.Descriptor instead. func (*SkuComponentChassis) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{595} + return file_nico_proto_rawDescGZIP(), []int{597} } func (x *SkuComponentChassis) GetVendor() string { @@ -42378,7 +42500,7 @@ type SkuComponentCpu struct { func (x *SkuComponentCpu) Reset() { *x = SkuComponentCpu{} - mi := &file_nico_proto_msgTypes[596] + mi := &file_nico_proto_msgTypes[598] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42390,7 +42512,7 @@ func (x *SkuComponentCpu) String() string { func (*SkuComponentCpu) ProtoMessage() {} func (x *SkuComponentCpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[596] + mi := &file_nico_proto_msgTypes[598] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42403,7 +42525,7 @@ func (x *SkuComponentCpu) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponentCpu.ProtoReflect.Descriptor instead. func (*SkuComponentCpu) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{596} + return file_nico_proto_rawDescGZIP(), []int{598} } func (x *SkuComponentCpu) GetVendor() string { @@ -42446,7 +42568,7 @@ type SkuComponentGpu struct { func (x *SkuComponentGpu) Reset() { *x = SkuComponentGpu{} - mi := &file_nico_proto_msgTypes[597] + mi := &file_nico_proto_msgTypes[599] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42458,7 +42580,7 @@ func (x *SkuComponentGpu) String() string { func (*SkuComponentGpu) ProtoMessage() {} func (x *SkuComponentGpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[597] + mi := &file_nico_proto_msgTypes[599] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42471,7 +42593,7 @@ func (x *SkuComponentGpu) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponentGpu.ProtoReflect.Descriptor instead. func (*SkuComponentGpu) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{597} + return file_nico_proto_rawDescGZIP(), []int{599} } func (x *SkuComponentGpu) GetVendor() string { @@ -42514,7 +42636,7 @@ type SkuComponentEthernetDevices struct { func (x *SkuComponentEthernetDevices) Reset() { *x = SkuComponentEthernetDevices{} - mi := &file_nico_proto_msgTypes[598] + mi := &file_nico_proto_msgTypes[600] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42526,7 +42648,7 @@ func (x *SkuComponentEthernetDevices) String() string { func (*SkuComponentEthernetDevices) ProtoMessage() {} func (x *SkuComponentEthernetDevices) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[598] + mi := &file_nico_proto_msgTypes[600] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42539,7 +42661,7 @@ func (x *SkuComponentEthernetDevices) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponentEthernetDevices.ProtoReflect.Descriptor instead. func (*SkuComponentEthernetDevices) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{598} + return file_nico_proto_rawDescGZIP(), []int{600} } func (x *SkuComponentEthernetDevices) GetVendor() string { @@ -42593,7 +42715,7 @@ type SkuComponentInfinibandDevices struct { func (x *SkuComponentInfinibandDevices) Reset() { *x = SkuComponentInfinibandDevices{} - mi := &file_nico_proto_msgTypes[599] + mi := &file_nico_proto_msgTypes[601] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42605,7 +42727,7 @@ func (x *SkuComponentInfinibandDevices) String() string { func (*SkuComponentInfinibandDevices) ProtoMessage() {} func (x *SkuComponentInfinibandDevices) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[599] + mi := &file_nico_proto_msgTypes[601] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42618,7 +42740,7 @@ func (x *SkuComponentInfinibandDevices) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponentInfinibandDevices.ProtoReflect.Descriptor instead. func (*SkuComponentInfinibandDevices) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{599} + return file_nico_proto_rawDescGZIP(), []int{601} } func (x *SkuComponentInfinibandDevices) GetVendor() string { @@ -42661,7 +42783,7 @@ type SkuComponentStorage struct { func (x *SkuComponentStorage) Reset() { *x = SkuComponentStorage{} - mi := &file_nico_proto_msgTypes[600] + mi := &file_nico_proto_msgTypes[602] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42673,7 +42795,7 @@ func (x *SkuComponentStorage) String() string { func (*SkuComponentStorage) ProtoMessage() {} func (x *SkuComponentStorage) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[600] + mi := &file_nico_proto_msgTypes[602] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42686,7 +42808,7 @@ func (x *SkuComponentStorage) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponentStorage.ProtoReflect.Descriptor instead. func (*SkuComponentStorage) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{600} + return file_nico_proto_rawDescGZIP(), []int{602} } func (x *SkuComponentStorage) GetVendor() string { @@ -42728,7 +42850,7 @@ type SkuComponentStorageController struct { func (x *SkuComponentStorageController) Reset() { *x = SkuComponentStorageController{} - mi := &file_nico_proto_msgTypes[601] + mi := &file_nico_proto_msgTypes[603] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42740,7 +42862,7 @@ func (x *SkuComponentStorageController) String() string { func (*SkuComponentStorageController) ProtoMessage() {} func (x *SkuComponentStorageController) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[601] + mi := &file_nico_proto_msgTypes[603] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42753,7 +42875,7 @@ func (x *SkuComponentStorageController) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponentStorageController.ProtoReflect.Descriptor instead. func (*SkuComponentStorageController) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{601} + return file_nico_proto_rawDescGZIP(), []int{603} } func (x *SkuComponentStorageController) GetVendor() string { @@ -42788,7 +42910,7 @@ type SkuComponentMemory struct { func (x *SkuComponentMemory) Reset() { *x = SkuComponentMemory{} - mi := &file_nico_proto_msgTypes[602] + mi := &file_nico_proto_msgTypes[604] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42800,7 +42922,7 @@ func (x *SkuComponentMemory) String() string { func (*SkuComponentMemory) ProtoMessage() {} func (x *SkuComponentMemory) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[602] + mi := &file_nico_proto_msgTypes[604] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42813,7 +42935,7 @@ func (x *SkuComponentMemory) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponentMemory.ProtoReflect.Descriptor instead. func (*SkuComponentMemory) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{602} + return file_nico_proto_rawDescGZIP(), []int{604} } func (x *SkuComponentMemory) GetMemoryType() string { @@ -42847,7 +42969,7 @@ type SkuComponentTpm struct { func (x *SkuComponentTpm) Reset() { *x = SkuComponentTpm{} - mi := &file_nico_proto_msgTypes[603] + mi := &file_nico_proto_msgTypes[605] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42859,7 +42981,7 @@ func (x *SkuComponentTpm) String() string { func (*SkuComponentTpm) ProtoMessage() {} func (x *SkuComponentTpm) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[603] + mi := &file_nico_proto_msgTypes[605] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42872,7 +42994,7 @@ func (x *SkuComponentTpm) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponentTpm.ProtoReflect.Descriptor instead. func (*SkuComponentTpm) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{603} + return file_nico_proto_rawDescGZIP(), []int{605} } func (x *SkuComponentTpm) GetVendor() string { @@ -42905,7 +43027,7 @@ type SkuComponents struct { func (x *SkuComponents) Reset() { *x = SkuComponents{} - mi := &file_nico_proto_msgTypes[604] + mi := &file_nico_proto_msgTypes[606] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42917,7 +43039,7 @@ func (x *SkuComponents) String() string { func (*SkuComponents) ProtoMessage() {} func (x *SkuComponents) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[604] + mi := &file_nico_proto_msgTypes[606] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42930,7 +43052,7 @@ func (x *SkuComponents) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuComponents.ProtoReflect.Descriptor instead. func (*SkuComponents) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{604} + return file_nico_proto_rawDescGZIP(), []int{606} } func (x *SkuComponents) GetChassis() *SkuComponentChassis { @@ -43004,7 +43126,7 @@ type Sku struct { func (x *Sku) Reset() { *x = Sku{} - mi := &file_nico_proto_msgTypes[605] + mi := &file_nico_proto_msgTypes[607] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43016,7 +43138,7 @@ func (x *Sku) String() string { func (*Sku) ProtoMessage() {} func (x *Sku) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[605] + mi := &file_nico_proto_msgTypes[607] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43029,7 +43151,7 @@ func (x *Sku) ProtoReflect() protoreflect.Message { // Deprecated: Use Sku.ProtoReflect.Descriptor instead. func (*Sku) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{605} + return file_nico_proto_rawDescGZIP(), []int{607} } func (x *Sku) GetId() string { @@ -43092,7 +43214,7 @@ type SkuMachinePair struct { func (x *SkuMachinePair) Reset() { *x = SkuMachinePair{} - mi := &file_nico_proto_msgTypes[606] + mi := &file_nico_proto_msgTypes[608] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43104,7 +43226,7 @@ func (x *SkuMachinePair) String() string { func (*SkuMachinePair) ProtoMessage() {} func (x *SkuMachinePair) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[606] + mi := &file_nico_proto_msgTypes[608] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43117,7 +43239,7 @@ func (x *SkuMachinePair) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuMachinePair.ProtoReflect.Descriptor instead. func (*SkuMachinePair) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{606} + return file_nico_proto_rawDescGZIP(), []int{608} } func (x *SkuMachinePair) GetSkuId() string { @@ -43151,7 +43273,7 @@ type RemoveSkuRequest struct { func (x *RemoveSkuRequest) Reset() { *x = RemoveSkuRequest{} - mi := &file_nico_proto_msgTypes[607] + mi := &file_nico_proto_msgTypes[609] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43163,7 +43285,7 @@ func (x *RemoveSkuRequest) String() string { func (*RemoveSkuRequest) ProtoMessage() {} func (x *RemoveSkuRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[607] + mi := &file_nico_proto_msgTypes[609] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43176,7 +43298,7 @@ func (x *RemoveSkuRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveSkuRequest.ProtoReflect.Descriptor instead. func (*RemoveSkuRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{607} + return file_nico_proto_rawDescGZIP(), []int{609} } func (x *RemoveSkuRequest) GetMachineId() *MachineId { @@ -43202,7 +43324,7 @@ type SkuList struct { func (x *SkuList) Reset() { *x = SkuList{} - mi := &file_nico_proto_msgTypes[608] + mi := &file_nico_proto_msgTypes[610] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43214,7 +43336,7 @@ func (x *SkuList) String() string { func (*SkuList) ProtoMessage() {} func (x *SkuList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[608] + mi := &file_nico_proto_msgTypes[610] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43227,7 +43349,7 @@ func (x *SkuList) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuList.ProtoReflect.Descriptor instead. func (*SkuList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{608} + return file_nico_proto_rawDescGZIP(), []int{610} } func (x *SkuList) GetSkus() []*Sku { @@ -43246,7 +43368,7 @@ type SkuIdList struct { func (x *SkuIdList) Reset() { *x = SkuIdList{} - mi := &file_nico_proto_msgTypes[609] + mi := &file_nico_proto_msgTypes[611] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43258,7 +43380,7 @@ func (x *SkuIdList) String() string { func (*SkuIdList) ProtoMessage() {} func (x *SkuIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[609] + mi := &file_nico_proto_msgTypes[611] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43271,7 +43393,7 @@ func (x *SkuIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuIdList.ProtoReflect.Descriptor instead. func (*SkuIdList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{609} + return file_nico_proto_rawDescGZIP(), []int{611} } func (x *SkuIdList) GetIds() []string { @@ -43292,7 +43414,7 @@ type SkuStatus struct { func (x *SkuStatus) Reset() { *x = SkuStatus{} - mi := &file_nico_proto_msgTypes[610] + mi := &file_nico_proto_msgTypes[612] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43304,7 +43426,7 @@ func (x *SkuStatus) String() string { func (*SkuStatus) ProtoMessage() {} func (x *SkuStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[610] + mi := &file_nico_proto_msgTypes[612] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43317,7 +43439,7 @@ func (x *SkuStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuStatus.ProtoReflect.Descriptor instead. func (*SkuStatus) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{610} + return file_nico_proto_rawDescGZIP(), []int{612} } func (x *SkuStatus) GetVerifyRequestTime() *timestamppb.Timestamp { @@ -43350,7 +43472,7 @@ type SkusByIdsRequest struct { func (x *SkusByIdsRequest) Reset() { *x = SkusByIdsRequest{} - mi := &file_nico_proto_msgTypes[611] + mi := &file_nico_proto_msgTypes[613] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43362,7 +43484,7 @@ func (x *SkusByIdsRequest) String() string { func (*SkusByIdsRequest) ProtoMessage() {} func (x *SkusByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[611] + mi := &file_nico_proto_msgTypes[613] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43375,7 +43497,7 @@ func (x *SkusByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SkusByIdsRequest.ProtoReflect.Descriptor instead. func (*SkusByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{611} + return file_nico_proto_rawDescGZIP(), []int{613} } func (x *SkusByIdsRequest) GetIds() []string { @@ -43393,7 +43515,7 @@ type SkuSearchFilter struct { func (x *SkuSearchFilter) Reset() { *x = SkuSearchFilter{} - mi := &file_nico_proto_msgTypes[612] + mi := &file_nico_proto_msgTypes[614] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43405,7 +43527,7 @@ func (x *SkuSearchFilter) String() string { func (*SkuSearchFilter) ProtoMessage() {} func (x *SkuSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[612] + mi := &file_nico_proto_msgTypes[614] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43418,7 +43540,7 @@ func (x *SkuSearchFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuSearchFilter.ProtoReflect.Descriptor instead. func (*SkuSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{612} + return file_nico_proto_rawDescGZIP(), []int{614} } type DpaInterface struct { @@ -43458,7 +43580,7 @@ type DpaInterface struct { func (x *DpaInterface) Reset() { *x = DpaInterface{} - mi := &file_nico_proto_msgTypes[613] + mi := &file_nico_proto_msgTypes[615] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43470,7 +43592,7 @@ func (x *DpaInterface) String() string { func (*DpaInterface) ProtoMessage() {} func (x *DpaInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[613] + mi := &file_nico_proto_msgTypes[615] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43483,7 +43605,7 @@ func (x *DpaInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use DpaInterface.ProtoReflect.Descriptor instead. func (*DpaInterface) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{613} + return file_nico_proto_rawDescGZIP(), []int{615} } func (x *DpaInterface) GetId() *DpaInterfaceId { @@ -43640,7 +43762,7 @@ type DpaInterfaceCreationRequest struct { func (x *DpaInterfaceCreationRequest) Reset() { *x = DpaInterfaceCreationRequest{} - mi := &file_nico_proto_msgTypes[614] + mi := &file_nico_proto_msgTypes[616] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43652,7 +43774,7 @@ func (x *DpaInterfaceCreationRequest) String() string { func (*DpaInterfaceCreationRequest) ProtoMessage() {} func (x *DpaInterfaceCreationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[614] + mi := &file_nico_proto_msgTypes[616] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43665,7 +43787,7 @@ func (x *DpaInterfaceCreationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DpaInterfaceCreationRequest.ProtoReflect.Descriptor instead. func (*DpaInterfaceCreationRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{614} + return file_nico_proto_rawDescGZIP(), []int{616} } func (x *DpaInterfaceCreationRequest) GetMachineId() *MachineId { @@ -43719,7 +43841,7 @@ type DpaInterfaceIdList struct { func (x *DpaInterfaceIdList) Reset() { *x = DpaInterfaceIdList{} - mi := &file_nico_proto_msgTypes[615] + mi := &file_nico_proto_msgTypes[617] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43731,7 +43853,7 @@ func (x *DpaInterfaceIdList) String() string { func (*DpaInterfaceIdList) ProtoMessage() {} func (x *DpaInterfaceIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[615] + mi := &file_nico_proto_msgTypes[617] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43744,7 +43866,7 @@ func (x *DpaInterfaceIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use DpaInterfaceIdList.ProtoReflect.Descriptor instead. func (*DpaInterfaceIdList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{615} + return file_nico_proto_rawDescGZIP(), []int{617} } func (x *DpaInterfaceIdList) GetIds() []*DpaInterfaceId { @@ -43764,7 +43886,7 @@ type DpaInterfacesByIdsRequest struct { func (x *DpaInterfacesByIdsRequest) Reset() { *x = DpaInterfacesByIdsRequest{} - mi := &file_nico_proto_msgTypes[616] + mi := &file_nico_proto_msgTypes[618] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43776,7 +43898,7 @@ func (x *DpaInterfacesByIdsRequest) String() string { func (*DpaInterfacesByIdsRequest) ProtoMessage() {} func (x *DpaInterfacesByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[616] + mi := &file_nico_proto_msgTypes[618] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43789,7 +43911,7 @@ func (x *DpaInterfacesByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DpaInterfacesByIdsRequest.ProtoReflect.Descriptor instead. func (*DpaInterfacesByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{616} + return file_nico_proto_rawDescGZIP(), []int{618} } func (x *DpaInterfacesByIdsRequest) GetIds() []*DpaInterfaceId { @@ -43815,7 +43937,7 @@ type DpaInterfaceList struct { func (x *DpaInterfaceList) Reset() { *x = DpaInterfaceList{} - mi := &file_nico_proto_msgTypes[617] + mi := &file_nico_proto_msgTypes[619] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43827,7 +43949,7 @@ func (x *DpaInterfaceList) String() string { func (*DpaInterfaceList) ProtoMessage() {} func (x *DpaInterfaceList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[617] + mi := &file_nico_proto_msgTypes[619] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43840,7 +43962,7 @@ func (x *DpaInterfaceList) ProtoReflect() protoreflect.Message { // Deprecated: Use DpaInterfaceList.ProtoReflect.Descriptor instead. func (*DpaInterfaceList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{617} + return file_nico_proto_rawDescGZIP(), []int{619} } func (x *DpaInterfaceList) GetInterfaces() []*DpaInterface { @@ -43859,7 +43981,7 @@ type DpaNetworkObservationSetRequest struct { func (x *DpaNetworkObservationSetRequest) Reset() { *x = DpaNetworkObservationSetRequest{} - mi := &file_nico_proto_msgTypes[618] + mi := &file_nico_proto_msgTypes[620] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43871,7 +43993,7 @@ func (x *DpaNetworkObservationSetRequest) String() string { func (*DpaNetworkObservationSetRequest) ProtoMessage() {} func (x *DpaNetworkObservationSetRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[618] + mi := &file_nico_proto_msgTypes[620] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43884,7 +44006,7 @@ func (x *DpaNetworkObservationSetRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DpaNetworkObservationSetRequest.ProtoReflect.Descriptor instead. func (*DpaNetworkObservationSetRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{618} + return file_nico_proto_rawDescGZIP(), []int{620} } func (x *DpaNetworkObservationSetRequest) GetId() *DpaInterfaceId { @@ -43903,7 +44025,7 @@ type DpaInterfaceDeletionRequest struct { func (x *DpaInterfaceDeletionRequest) Reset() { *x = DpaInterfaceDeletionRequest{} - mi := &file_nico_proto_msgTypes[619] + mi := &file_nico_proto_msgTypes[621] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43915,7 +44037,7 @@ func (x *DpaInterfaceDeletionRequest) String() string { func (*DpaInterfaceDeletionRequest) ProtoMessage() {} func (x *DpaInterfaceDeletionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[619] + mi := &file_nico_proto_msgTypes[621] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43928,7 +44050,7 @@ func (x *DpaInterfaceDeletionRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DpaInterfaceDeletionRequest.ProtoReflect.Descriptor instead. func (*DpaInterfaceDeletionRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{619} + return file_nico_proto_rawDescGZIP(), []int{621} } func (x *DpaInterfaceDeletionRequest) GetId() *DpaInterfaceId { @@ -43946,7 +44068,7 @@ type DpaInterfaceDeletionResult struct { func (x *DpaInterfaceDeletionResult) Reset() { *x = DpaInterfaceDeletionResult{} - mi := &file_nico_proto_msgTypes[620] + mi := &file_nico_proto_msgTypes[622] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43958,7 +44080,7 @@ func (x *DpaInterfaceDeletionResult) String() string { func (*DpaInterfaceDeletionResult) ProtoMessage() {} func (x *DpaInterfaceDeletionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[620] + mi := &file_nico_proto_msgTypes[622] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43971,7 +44093,7 @@ func (x *DpaInterfaceDeletionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use DpaInterfaceDeletionResult.ProtoReflect.Descriptor instead. func (*DpaInterfaceDeletionResult) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{620} + return file_nico_proto_rawDescGZIP(), []int{622} } type SkuUpdateMetadataRequest struct { @@ -43985,7 +44107,7 @@ type SkuUpdateMetadataRequest struct { func (x *SkuUpdateMetadataRequest) Reset() { *x = SkuUpdateMetadataRequest{} - mi := &file_nico_proto_msgTypes[621] + mi := &file_nico_proto_msgTypes[623] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43997,7 +44119,7 @@ func (x *SkuUpdateMetadataRequest) String() string { func (*SkuUpdateMetadataRequest) ProtoMessage() {} func (x *SkuUpdateMetadataRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[621] + mi := &file_nico_proto_msgTypes[623] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44010,7 +44132,7 @@ func (x *SkuUpdateMetadataRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SkuUpdateMetadataRequest.ProtoReflect.Descriptor instead. func (*SkuUpdateMetadataRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{621} + return file_nico_proto_rawDescGZIP(), []int{623} } func (x *SkuUpdateMetadataRequest) GetSkuId() string { @@ -44043,7 +44165,7 @@ type PowerOptionRequest struct { func (x *PowerOptionRequest) Reset() { *x = PowerOptionRequest{} - mi := &file_nico_proto_msgTypes[622] + mi := &file_nico_proto_msgTypes[624] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44055,7 +44177,7 @@ func (x *PowerOptionRequest) String() string { func (*PowerOptionRequest) ProtoMessage() {} func (x *PowerOptionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[622] + mi := &file_nico_proto_msgTypes[624] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44068,7 +44190,7 @@ func (x *PowerOptionRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PowerOptionRequest.ProtoReflect.Descriptor instead. func (*PowerOptionRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{622} + return file_nico_proto_rawDescGZIP(), []int{624} } func (x *PowerOptionRequest) GetMachineId() []*MachineId { @@ -44088,7 +44210,7 @@ type PowerOptionUpdateRequest struct { func (x *PowerOptionUpdateRequest) Reset() { *x = PowerOptionUpdateRequest{} - mi := &file_nico_proto_msgTypes[623] + mi := &file_nico_proto_msgTypes[625] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44100,7 +44222,7 @@ func (x *PowerOptionUpdateRequest) String() string { func (*PowerOptionUpdateRequest) ProtoMessage() {} func (x *PowerOptionUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[623] + mi := &file_nico_proto_msgTypes[625] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44113,7 +44235,7 @@ func (x *PowerOptionUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PowerOptionUpdateRequest.ProtoReflect.Descriptor instead. func (*PowerOptionUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{623} + return file_nico_proto_rawDescGZIP(), []int{625} } func (x *PowerOptionUpdateRequest) GetMachineId() *MachineId { @@ -44149,7 +44271,7 @@ type PowerOptions struct { func (x *PowerOptions) Reset() { *x = PowerOptions{} - mi := &file_nico_proto_msgTypes[624] + mi := &file_nico_proto_msgTypes[626] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44161,7 +44283,7 @@ func (x *PowerOptions) String() string { func (*PowerOptions) ProtoMessage() {} func (x *PowerOptions) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[624] + mi := &file_nico_proto_msgTypes[626] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44174,7 +44296,7 @@ func (x *PowerOptions) ProtoReflect() protoreflect.Message { // Deprecated: Use PowerOptions.ProtoReflect.Descriptor instead. func (*PowerOptions) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{624} + return file_nico_proto_rawDescGZIP(), []int{626} } func (x *PowerOptions) GetDesiredState() PowerState { @@ -44263,7 +44385,7 @@ type PowerOptionResponse struct { func (x *PowerOptionResponse) Reset() { *x = PowerOptionResponse{} - mi := &file_nico_proto_msgTypes[625] + mi := &file_nico_proto_msgTypes[627] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44275,7 +44397,7 @@ func (x *PowerOptionResponse) String() string { func (*PowerOptionResponse) ProtoMessage() {} func (x *PowerOptionResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[625] + mi := &file_nico_proto_msgTypes[627] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44288,7 +44410,7 @@ func (x *PowerOptionResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use PowerOptionResponse.ProtoReflect.Descriptor instead. func (*PowerOptionResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{625} + return file_nico_proto_rawDescGZIP(), []int{627} } func (x *PowerOptionResponse) GetResponse() []*PowerOptions { @@ -44314,7 +44436,7 @@ type ComputeAllocationAttributes struct { func (x *ComputeAllocationAttributes) Reset() { *x = ComputeAllocationAttributes{} - mi := &file_nico_proto_msgTypes[626] + mi := &file_nico_proto_msgTypes[628] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44326,7 +44448,7 @@ func (x *ComputeAllocationAttributes) String() string { func (*ComputeAllocationAttributes) ProtoMessage() {} func (x *ComputeAllocationAttributes) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[626] + mi := &file_nico_proto_msgTypes[628] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44339,7 +44461,7 @@ func (x *ComputeAllocationAttributes) ProtoReflect() protoreflect.Message { // Deprecated: Use ComputeAllocationAttributes.ProtoReflect.Descriptor instead. func (*ComputeAllocationAttributes) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{626} + return file_nico_proto_rawDescGZIP(), []int{628} } func (x *ComputeAllocationAttributes) GetInstanceTypeId() string { @@ -44372,7 +44494,7 @@ type ComputeAllocation struct { func (x *ComputeAllocation) Reset() { *x = ComputeAllocation{} - mi := &file_nico_proto_msgTypes[627] + mi := &file_nico_proto_msgTypes[629] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44384,7 +44506,7 @@ func (x *ComputeAllocation) String() string { func (*ComputeAllocation) ProtoMessage() {} func (x *ComputeAllocation) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[627] + mi := &file_nico_proto_msgTypes[629] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44397,7 +44519,7 @@ func (x *ComputeAllocation) ProtoReflect() protoreflect.Message { // Deprecated: Use ComputeAllocation.ProtoReflect.Descriptor instead. func (*ComputeAllocation) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{627} + return file_nico_proto_rawDescGZIP(), []int{629} } func (x *ComputeAllocation) GetId() *ComputeAllocationId { @@ -44469,7 +44591,7 @@ type CreateComputeAllocationRequest struct { func (x *CreateComputeAllocationRequest) Reset() { *x = CreateComputeAllocationRequest{} - mi := &file_nico_proto_msgTypes[628] + mi := &file_nico_proto_msgTypes[630] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44481,7 +44603,7 @@ func (x *CreateComputeAllocationRequest) String() string { func (*CreateComputeAllocationRequest) ProtoMessage() {} func (x *CreateComputeAllocationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[628] + mi := &file_nico_proto_msgTypes[630] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44494,7 +44616,7 @@ func (x *CreateComputeAllocationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateComputeAllocationRequest.ProtoReflect.Descriptor instead. func (*CreateComputeAllocationRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{628} + return file_nico_proto_rawDescGZIP(), []int{630} } func (x *CreateComputeAllocationRequest) GetId() *ComputeAllocationId { @@ -44541,7 +44663,7 @@ type CreateComputeAllocationResponse struct { func (x *CreateComputeAllocationResponse) Reset() { *x = CreateComputeAllocationResponse{} - mi := &file_nico_proto_msgTypes[629] + mi := &file_nico_proto_msgTypes[631] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44553,7 +44675,7 @@ func (x *CreateComputeAllocationResponse) String() string { func (*CreateComputeAllocationResponse) ProtoMessage() {} func (x *CreateComputeAllocationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[629] + mi := &file_nico_proto_msgTypes[631] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44566,7 +44688,7 @@ func (x *CreateComputeAllocationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateComputeAllocationResponse.ProtoReflect.Descriptor instead. func (*CreateComputeAllocationResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{629} + return file_nico_proto_rawDescGZIP(), []int{631} } func (x *CreateComputeAllocationResponse) GetAllocation() *ComputeAllocation { @@ -44593,7 +44715,7 @@ type FindComputeAllocationIdsRequest struct { func (x *FindComputeAllocationIdsRequest) Reset() { *x = FindComputeAllocationIdsRequest{} - mi := &file_nico_proto_msgTypes[630] + mi := &file_nico_proto_msgTypes[632] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44605,7 +44727,7 @@ func (x *FindComputeAllocationIdsRequest) String() string { func (*FindComputeAllocationIdsRequest) ProtoMessage() {} func (x *FindComputeAllocationIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[630] + mi := &file_nico_proto_msgTypes[632] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44618,7 +44740,7 @@ func (x *FindComputeAllocationIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FindComputeAllocationIdsRequest.ProtoReflect.Descriptor instead. func (*FindComputeAllocationIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{630} + return file_nico_proto_rawDescGZIP(), []int{632} } func (x *FindComputeAllocationIdsRequest) GetName() string { @@ -44651,7 +44773,7 @@ type FindComputeAllocationIdsResponse struct { func (x *FindComputeAllocationIdsResponse) Reset() { *x = FindComputeAllocationIdsResponse{} - mi := &file_nico_proto_msgTypes[631] + mi := &file_nico_proto_msgTypes[633] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44663,7 +44785,7 @@ func (x *FindComputeAllocationIdsResponse) String() string { func (*FindComputeAllocationIdsResponse) ProtoMessage() {} func (x *FindComputeAllocationIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[631] + mi := &file_nico_proto_msgTypes[633] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44676,7 +44798,7 @@ func (x *FindComputeAllocationIdsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use FindComputeAllocationIdsResponse.ProtoReflect.Descriptor instead. func (*FindComputeAllocationIdsResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{631} + return file_nico_proto_rawDescGZIP(), []int{633} } func (x *FindComputeAllocationIdsResponse) GetIds() []*ComputeAllocationId { @@ -44698,7 +44820,7 @@ type FindComputeAllocationsByIdsRequest struct { func (x *FindComputeAllocationsByIdsRequest) Reset() { *x = FindComputeAllocationsByIdsRequest{} - mi := &file_nico_proto_msgTypes[632] + mi := &file_nico_proto_msgTypes[634] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44710,7 +44832,7 @@ func (x *FindComputeAllocationsByIdsRequest) String() string { func (*FindComputeAllocationsByIdsRequest) ProtoMessage() {} func (x *FindComputeAllocationsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[632] + mi := &file_nico_proto_msgTypes[634] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44723,7 +44845,7 @@ func (x *FindComputeAllocationsByIdsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use FindComputeAllocationsByIdsRequest.ProtoReflect.Descriptor instead. func (*FindComputeAllocationsByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{632} + return file_nico_proto_rawDescGZIP(), []int{634} } func (x *FindComputeAllocationsByIdsRequest) GetIds() []*ComputeAllocationId { @@ -44742,7 +44864,7 @@ type FindComputeAllocationsByIdsResponse struct { func (x *FindComputeAllocationsByIdsResponse) Reset() { *x = FindComputeAllocationsByIdsResponse{} - mi := &file_nico_proto_msgTypes[633] + mi := &file_nico_proto_msgTypes[635] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44754,7 +44876,7 @@ func (x *FindComputeAllocationsByIdsResponse) String() string { func (*FindComputeAllocationsByIdsResponse) ProtoMessage() {} func (x *FindComputeAllocationsByIdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[633] + mi := &file_nico_proto_msgTypes[635] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44767,7 +44889,7 @@ func (x *FindComputeAllocationsByIdsResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use FindComputeAllocationsByIdsResponse.ProtoReflect.Descriptor instead. func (*FindComputeAllocationsByIdsResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{633} + return file_nico_proto_rawDescGZIP(), []int{635} } func (x *FindComputeAllocationsByIdsResponse) GetAllocations() []*ComputeAllocation { @@ -44786,7 +44908,7 @@ type UpdateComputeAllocationResponse struct { func (x *UpdateComputeAllocationResponse) Reset() { *x = UpdateComputeAllocationResponse{} - mi := &file_nico_proto_msgTypes[634] + mi := &file_nico_proto_msgTypes[636] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44798,7 +44920,7 @@ func (x *UpdateComputeAllocationResponse) String() string { func (*UpdateComputeAllocationResponse) ProtoMessage() {} func (x *UpdateComputeAllocationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[634] + mi := &file_nico_proto_msgTypes[636] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44811,7 +44933,7 @@ func (x *UpdateComputeAllocationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateComputeAllocationResponse.ProtoReflect.Descriptor instead. func (*UpdateComputeAllocationResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{634} + return file_nico_proto_rawDescGZIP(), []int{636} } func (x *UpdateComputeAllocationResponse) GetAllocation() *ComputeAllocation { @@ -44835,7 +44957,7 @@ type UpdateComputeAllocationRequest struct { func (x *UpdateComputeAllocationRequest) Reset() { *x = UpdateComputeAllocationRequest{} - mi := &file_nico_proto_msgTypes[635] + mi := &file_nico_proto_msgTypes[637] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44847,7 +44969,7 @@ func (x *UpdateComputeAllocationRequest) String() string { func (*UpdateComputeAllocationRequest) ProtoMessage() {} func (x *UpdateComputeAllocationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[635] + mi := &file_nico_proto_msgTypes[637] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44860,7 +44982,7 @@ func (x *UpdateComputeAllocationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateComputeAllocationRequest.ProtoReflect.Descriptor instead. func (*UpdateComputeAllocationRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{635} + return file_nico_proto_rawDescGZIP(), []int{637} } func (x *UpdateComputeAllocationRequest) GetId() *ComputeAllocationId { @@ -44915,7 +45037,7 @@ type DeleteComputeAllocationRequest struct { func (x *DeleteComputeAllocationRequest) Reset() { *x = DeleteComputeAllocationRequest{} - mi := &file_nico_proto_msgTypes[636] + mi := &file_nico_proto_msgTypes[638] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44927,7 +45049,7 @@ func (x *DeleteComputeAllocationRequest) String() string { func (*DeleteComputeAllocationRequest) ProtoMessage() {} func (x *DeleteComputeAllocationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[636] + mi := &file_nico_proto_msgTypes[638] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44940,7 +45062,7 @@ func (x *DeleteComputeAllocationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteComputeAllocationRequest.ProtoReflect.Descriptor instead. func (*DeleteComputeAllocationRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{636} + return file_nico_proto_rawDescGZIP(), []int{638} } func (x *DeleteComputeAllocationRequest) GetId() *ComputeAllocationId { @@ -44965,7 +45087,7 @@ type DeleteComputeAllocationResponse struct { func (x *DeleteComputeAllocationResponse) Reset() { *x = DeleteComputeAllocationResponse{} - mi := &file_nico_proto_msgTypes[637] + mi := &file_nico_proto_msgTypes[639] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44977,7 +45099,7 @@ func (x *DeleteComputeAllocationResponse) String() string { func (*DeleteComputeAllocationResponse) ProtoMessage() {} func (x *DeleteComputeAllocationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[637] + mi := &file_nico_proto_msgTypes[639] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44990,7 +45112,7 @@ func (x *DeleteComputeAllocationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteComputeAllocationResponse.ProtoReflect.Descriptor instead. func (*DeleteComputeAllocationResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{637} + return file_nico_proto_rawDescGZIP(), []int{639} } // For use with the existing InstanceType message @@ -45015,7 +45137,7 @@ type InstanceTypeAllocationStats struct { func (x *InstanceTypeAllocationStats) Reset() { *x = InstanceTypeAllocationStats{} - mi := &file_nico_proto_msgTypes[638] + mi := &file_nico_proto_msgTypes[640] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45027,7 +45149,7 @@ func (x *InstanceTypeAllocationStats) String() string { func (*InstanceTypeAllocationStats) ProtoMessage() {} func (x *InstanceTypeAllocationStats) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[638] + mi := &file_nico_proto_msgTypes[640] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45040,7 +45162,7 @@ func (x *InstanceTypeAllocationStats) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceTypeAllocationStats.ProtoReflect.Descriptor instead. func (*InstanceTypeAllocationStats) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{638} + return file_nico_proto_rawDescGZIP(), []int{640} } func (x *InstanceTypeAllocationStats) GetMaxAllocatable() uint32 { @@ -45080,7 +45202,7 @@ type GetRackRequest struct { func (x *GetRackRequest) Reset() { *x = GetRackRequest{} - mi := &file_nico_proto_msgTypes[639] + mi := &file_nico_proto_msgTypes[641] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45092,7 +45214,7 @@ func (x *GetRackRequest) String() string { func (*GetRackRequest) ProtoMessage() {} func (x *GetRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[639] + mi := &file_nico_proto_msgTypes[641] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45105,7 +45227,7 @@ func (x *GetRackRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRackRequest.ProtoReflect.Descriptor instead. func (*GetRackRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{639} + return file_nico_proto_rawDescGZIP(), []int{641} } func (x *GetRackRequest) GetId() string { @@ -45124,7 +45246,7 @@ type GetRackResponse struct { func (x *GetRackResponse) Reset() { *x = GetRackResponse{} - mi := &file_nico_proto_msgTypes[640] + mi := &file_nico_proto_msgTypes[642] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45136,7 +45258,7 @@ func (x *GetRackResponse) String() string { func (*GetRackResponse) ProtoMessage() {} func (x *GetRackResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[640] + mi := &file_nico_proto_msgTypes[642] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45149,7 +45271,7 @@ func (x *GetRackResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRackResponse.ProtoReflect.Descriptor instead. func (*GetRackResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{640} + return file_nico_proto_rawDescGZIP(), []int{642} } func (x *GetRackResponse) GetRack() []*Rack { @@ -45168,7 +45290,7 @@ type RackList struct { func (x *RackList) Reset() { *x = RackList{} - mi := &file_nico_proto_msgTypes[641] + mi := &file_nico_proto_msgTypes[643] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45180,7 +45302,7 @@ func (x *RackList) String() string { func (*RackList) ProtoMessage() {} func (x *RackList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[641] + mi := &file_nico_proto_msgTypes[643] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45193,7 +45315,7 @@ func (x *RackList) ProtoReflect() protoreflect.Message { // Deprecated: Use RackList.ProtoReflect.Descriptor instead. func (*RackList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{641} + return file_nico_proto_rawDescGZIP(), []int{643} } func (x *RackList) GetRacks() []*Rack { @@ -45213,7 +45335,7 @@ type RackSearchFilter struct { func (x *RackSearchFilter) Reset() { *x = RackSearchFilter{} - mi := &file_nico_proto_msgTypes[642] + mi := &file_nico_proto_msgTypes[644] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45225,7 +45347,7 @@ func (x *RackSearchFilter) String() string { func (*RackSearchFilter) ProtoMessage() {} func (x *RackSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[642] + mi := &file_nico_proto_msgTypes[644] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45238,7 +45360,7 @@ func (x *RackSearchFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use RackSearchFilter.ProtoReflect.Descriptor instead. func (*RackSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{642} + return file_nico_proto_rawDescGZIP(), []int{644} } func (x *RackSearchFilter) GetLabel() *Label { @@ -45257,7 +45379,7 @@ type RackIdList struct { func (x *RackIdList) Reset() { *x = RackIdList{} - mi := &file_nico_proto_msgTypes[643] + mi := &file_nico_proto_msgTypes[645] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45269,7 +45391,7 @@ func (x *RackIdList) String() string { func (*RackIdList) ProtoMessage() {} func (x *RackIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[643] + mi := &file_nico_proto_msgTypes[645] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45282,7 +45404,7 @@ func (x *RackIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use RackIdList.ProtoReflect.Descriptor instead. func (*RackIdList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{643} + return file_nico_proto_rawDescGZIP(), []int{645} } func (x *RackIdList) GetRackIds() []*RackId { @@ -45301,7 +45423,7 @@ type RacksByIdsRequest struct { func (x *RacksByIdsRequest) Reset() { *x = RacksByIdsRequest{} - mi := &file_nico_proto_msgTypes[644] + mi := &file_nico_proto_msgTypes[646] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45313,7 +45435,7 @@ func (x *RacksByIdsRequest) String() string { func (*RacksByIdsRequest) ProtoMessage() {} func (x *RacksByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[644] + mi := &file_nico_proto_msgTypes[646] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45326,7 +45448,7 @@ func (x *RacksByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RacksByIdsRequest.ProtoReflect.Descriptor instead. func (*RacksByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{644} + return file_nico_proto_rawDescGZIP(), []int{646} } func (x *RacksByIdsRequest) GetRackIds() []*RackId { @@ -45354,7 +45476,7 @@ type Rack struct { func (x *Rack) Reset() { *x = Rack{} - mi := &file_nico_proto_msgTypes[645] + mi := &file_nico_proto_msgTypes[647] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45366,7 +45488,7 @@ func (x *Rack) String() string { func (*Rack) ProtoMessage() {} func (x *Rack) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[645] + mi := &file_nico_proto_msgTypes[647] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45379,7 +45501,7 @@ func (x *Rack) ProtoReflect() protoreflect.Message { // Deprecated: Use Rack.ProtoReflect.Descriptor instead. func (*Rack) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{645} + return file_nico_proto_rawDescGZIP(), []int{647} } func (x *Rack) GetId() *RackId { @@ -45453,7 +45575,7 @@ type RackConfig struct { func (x *RackConfig) Reset() { *x = RackConfig{} - mi := &file_nico_proto_msgTypes[646] + mi := &file_nico_proto_msgTypes[648] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45465,7 +45587,7 @@ func (x *RackConfig) String() string { func (*RackConfig) ProtoMessage() {} func (x *RackConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[646] + mi := &file_nico_proto_msgTypes[648] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45478,7 +45600,7 @@ func (x *RackConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use RackConfig.ProtoReflect.Descriptor instead. func (*RackConfig) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{646} + return file_nico_proto_rawDescGZIP(), []int{648} } type RackStatus struct { @@ -45493,7 +45615,7 @@ type RackStatus struct { func (x *RackStatus) Reset() { *x = RackStatus{} - mi := &file_nico_proto_msgTypes[647] + mi := &file_nico_proto_msgTypes[649] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45505,7 +45627,7 @@ func (x *RackStatus) String() string { func (*RackStatus) ProtoMessage() {} func (x *RackStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[647] + mi := &file_nico_proto_msgTypes[649] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45518,7 +45640,7 @@ func (x *RackStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use RackStatus.ProtoReflect.Descriptor instead. func (*RackStatus) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{647} + return file_nico_proto_rawDescGZIP(), []int{649} } func (x *RackStatus) GetHealth() *HealthReport { @@ -45551,7 +45673,7 @@ type RackStateHistoriesRequest struct { func (x *RackStateHistoriesRequest) Reset() { *x = RackStateHistoriesRequest{} - mi := &file_nico_proto_msgTypes[648] + mi := &file_nico_proto_msgTypes[650] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45563,7 +45685,7 @@ func (x *RackStateHistoriesRequest) String() string { func (*RackStateHistoriesRequest) ProtoMessage() {} func (x *RackStateHistoriesRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[648] + mi := &file_nico_proto_msgTypes[650] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45576,7 +45698,7 @@ func (x *RackStateHistoriesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RackStateHistoriesRequest.ProtoReflect.Descriptor instead. func (*RackStateHistoriesRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{648} + return file_nico_proto_rawDescGZIP(), []int{650} } func (x *RackStateHistoriesRequest) GetRackIds() []*RackId { @@ -45595,7 +45717,7 @@ type DeleteRackRequest struct { func (x *DeleteRackRequest) Reset() { *x = DeleteRackRequest{} - mi := &file_nico_proto_msgTypes[649] + mi := &file_nico_proto_msgTypes[651] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45607,7 +45729,7 @@ func (x *DeleteRackRequest) String() string { func (*DeleteRackRequest) ProtoMessage() {} func (x *DeleteRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[649] + mi := &file_nico_proto_msgTypes[651] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45620,7 +45742,7 @@ func (x *DeleteRackRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteRackRequest.ProtoReflect.Descriptor instead. func (*DeleteRackRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{649} + return file_nico_proto_rawDescGZIP(), []int{651} } func (x *DeleteRackRequest) GetId() string { @@ -45641,7 +45763,7 @@ type AdminForceDeleteRackRequest struct { func (x *AdminForceDeleteRackRequest) Reset() { *x = AdminForceDeleteRackRequest{} - mi := &file_nico_proto_msgTypes[650] + mi := &file_nico_proto_msgTypes[652] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45653,7 +45775,7 @@ func (x *AdminForceDeleteRackRequest) String() string { func (*AdminForceDeleteRackRequest) ProtoMessage() {} func (x *AdminForceDeleteRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[650] + mi := &file_nico_proto_msgTypes[652] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45666,7 +45788,7 @@ func (x *AdminForceDeleteRackRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminForceDeleteRackRequest.ProtoReflect.Descriptor instead. func (*AdminForceDeleteRackRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{650} + return file_nico_proto_rawDescGZIP(), []int{652} } func (x *AdminForceDeleteRackRequest) GetRackId() *RackId { @@ -45686,7 +45808,7 @@ type AdminForceDeleteRackResponse struct { func (x *AdminForceDeleteRackResponse) Reset() { *x = AdminForceDeleteRackResponse{} - mi := &file_nico_proto_msgTypes[651] + mi := &file_nico_proto_msgTypes[653] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45698,7 +45820,7 @@ func (x *AdminForceDeleteRackResponse) String() string { func (*AdminForceDeleteRackResponse) ProtoMessage() {} func (x *AdminForceDeleteRackResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[651] + mi := &file_nico_proto_msgTypes[653] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45711,7 +45833,7 @@ func (x *AdminForceDeleteRackResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminForceDeleteRackResponse.ProtoReflect.Descriptor instead. func (*AdminForceDeleteRackResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{651} + return file_nico_proto_rawDescGZIP(), []int{653} } func (x *AdminForceDeleteRackResponse) GetRackId() string { @@ -45733,7 +45855,7 @@ type RackCapabilityCompute struct { func (x *RackCapabilityCompute) Reset() { *x = RackCapabilityCompute{} - mi := &file_nico_proto_msgTypes[652] + mi := &file_nico_proto_msgTypes[654] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45745,7 +45867,7 @@ func (x *RackCapabilityCompute) String() string { func (*RackCapabilityCompute) ProtoMessage() {} func (x *RackCapabilityCompute) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[652] + mi := &file_nico_proto_msgTypes[654] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45758,7 +45880,7 @@ func (x *RackCapabilityCompute) ProtoReflect() protoreflect.Message { // Deprecated: Use RackCapabilityCompute.ProtoReflect.Descriptor instead. func (*RackCapabilityCompute) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{652} + return file_nico_proto_rawDescGZIP(), []int{654} } func (x *RackCapabilityCompute) GetName() string { @@ -45801,7 +45923,7 @@ type RackCapabilitySwitch struct { func (x *RackCapabilitySwitch) Reset() { *x = RackCapabilitySwitch{} - mi := &file_nico_proto_msgTypes[653] + mi := &file_nico_proto_msgTypes[655] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45813,7 +45935,7 @@ func (x *RackCapabilitySwitch) String() string { func (*RackCapabilitySwitch) ProtoMessage() {} func (x *RackCapabilitySwitch) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[653] + mi := &file_nico_proto_msgTypes[655] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45826,7 +45948,7 @@ func (x *RackCapabilitySwitch) ProtoReflect() protoreflect.Message { // Deprecated: Use RackCapabilitySwitch.ProtoReflect.Descriptor instead. func (*RackCapabilitySwitch) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{653} + return file_nico_proto_rawDescGZIP(), []int{655} } func (x *RackCapabilitySwitch) GetName() string { @@ -45869,7 +45991,7 @@ type RackCapabilityPowerShelf struct { func (x *RackCapabilityPowerShelf) Reset() { *x = RackCapabilityPowerShelf{} - mi := &file_nico_proto_msgTypes[654] + mi := &file_nico_proto_msgTypes[656] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45881,7 +46003,7 @@ func (x *RackCapabilityPowerShelf) String() string { func (*RackCapabilityPowerShelf) ProtoMessage() {} func (x *RackCapabilityPowerShelf) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[654] + mi := &file_nico_proto_msgTypes[656] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45894,7 +46016,7 @@ func (x *RackCapabilityPowerShelf) ProtoReflect() protoreflect.Message { // Deprecated: Use RackCapabilityPowerShelf.ProtoReflect.Descriptor instead. func (*RackCapabilityPowerShelf) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{654} + return file_nico_proto_rawDescGZIP(), []int{656} } func (x *RackCapabilityPowerShelf) GetName() string { @@ -45936,7 +46058,7 @@ type RackCapabilitiesSet struct { func (x *RackCapabilitiesSet) Reset() { *x = RackCapabilitiesSet{} - mi := &file_nico_proto_msgTypes[655] + mi := &file_nico_proto_msgTypes[657] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45948,7 +46070,7 @@ func (x *RackCapabilitiesSet) String() string { func (*RackCapabilitiesSet) ProtoMessage() {} func (x *RackCapabilitiesSet) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[655] + mi := &file_nico_proto_msgTypes[657] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45961,7 +46083,7 @@ func (x *RackCapabilitiesSet) ProtoReflect() protoreflect.Message { // Deprecated: Use RackCapabilitiesSet.ProtoReflect.Descriptor instead. func (*RackCapabilitiesSet) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{655} + return file_nico_proto_rawDescGZIP(), []int{657} } func (x *RackCapabilitiesSet) GetCompute() *RackCapabilityCompute { @@ -45998,7 +46120,7 @@ type RackProfile struct { func (x *RackProfile) Reset() { *x = RackProfile{} - mi := &file_nico_proto_msgTypes[656] + mi := &file_nico_proto_msgTypes[658] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46010,7 +46132,7 @@ func (x *RackProfile) String() string { func (*RackProfile) ProtoMessage() {} func (x *RackProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[656] + mi := &file_nico_proto_msgTypes[658] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46023,7 +46145,7 @@ func (x *RackProfile) ProtoReflect() protoreflect.Message { // Deprecated: Use RackProfile.ProtoReflect.Descriptor instead. func (*RackProfile) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{656} + return file_nico_proto_rawDescGZIP(), []int{658} } func (x *RackProfile) GetRackHardwareType() *RackHardwareType { @@ -46070,7 +46192,7 @@ type GetRackProfileRequest struct { func (x *GetRackProfileRequest) Reset() { *x = GetRackProfileRequest{} - mi := &file_nico_proto_msgTypes[657] + mi := &file_nico_proto_msgTypes[659] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46082,7 +46204,7 @@ func (x *GetRackProfileRequest) String() string { func (*GetRackProfileRequest) ProtoMessage() {} func (x *GetRackProfileRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[657] + mi := &file_nico_proto_msgTypes[659] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46095,7 +46217,7 @@ func (x *GetRackProfileRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRackProfileRequest.ProtoReflect.Descriptor instead. func (*GetRackProfileRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{657} + return file_nico_proto_rawDescGZIP(), []int{659} } func (x *GetRackProfileRequest) GetRackId() *RackId { @@ -46116,7 +46238,7 @@ type GetRackProfileResponse struct { func (x *GetRackProfileResponse) Reset() { *x = GetRackProfileResponse{} - mi := &file_nico_proto_msgTypes[658] + mi := &file_nico_proto_msgTypes[660] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46128,7 +46250,7 @@ func (x *GetRackProfileResponse) String() string { func (*GetRackProfileResponse) ProtoMessage() {} func (x *GetRackProfileResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[658] + mi := &file_nico_proto_msgTypes[660] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46141,7 +46263,7 @@ func (x *GetRackProfileResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRackProfileResponse.ProtoReflect.Descriptor instead. func (*GetRackProfileResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{658} + return file_nico_proto_rawDescGZIP(), []int{660} } func (x *GetRackProfileResponse) GetRackId() *RackId { @@ -46175,7 +46297,7 @@ type RackManagerForgeRequest struct { func (x *RackManagerForgeRequest) Reset() { *x = RackManagerForgeRequest{} - mi := &file_nico_proto_msgTypes[659] + mi := &file_nico_proto_msgTypes[661] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46187,7 +46309,7 @@ func (x *RackManagerForgeRequest) String() string { func (*RackManagerForgeRequest) ProtoMessage() {} func (x *RackManagerForgeRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[659] + mi := &file_nico_proto_msgTypes[661] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46200,7 +46322,7 @@ func (x *RackManagerForgeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RackManagerForgeRequest.ProtoReflect.Descriptor instead. func (*RackManagerForgeRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{659} + return file_nico_proto_rawDescGZIP(), []int{661} } func (x *RackManagerForgeRequest) GetCmd() RackManagerForgeCmd { @@ -46226,7 +46348,7 @@ type RackManagerForgeResponse struct { func (x *RackManagerForgeResponse) Reset() { *x = RackManagerForgeResponse{} - mi := &file_nico_proto_msgTypes[660] + mi := &file_nico_proto_msgTypes[662] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46238,7 +46360,7 @@ func (x *RackManagerForgeResponse) String() string { func (*RackManagerForgeResponse) ProtoMessage() {} func (x *RackManagerForgeResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[660] + mi := &file_nico_proto_msgTypes[662] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46251,7 +46373,7 @@ func (x *RackManagerForgeResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RackManagerForgeResponse.ProtoReflect.Descriptor instead. func (*RackManagerForgeResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{660} + return file_nico_proto_rawDescGZIP(), []int{662} } func (x *RackManagerForgeResponse) GetJsonResult() string { @@ -46272,7 +46394,7 @@ type MachineNVLinkInfo struct { func (x *MachineNVLinkInfo) Reset() { *x = MachineNVLinkInfo{} - mi := &file_nico_proto_msgTypes[661] + mi := &file_nico_proto_msgTypes[663] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46284,7 +46406,7 @@ func (x *MachineNVLinkInfo) String() string { func (*MachineNVLinkInfo) ProtoMessage() {} func (x *MachineNVLinkInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[661] + mi := &file_nico_proto_msgTypes[663] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46297,7 +46419,7 @@ func (x *MachineNVLinkInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineNVLinkInfo.ProtoReflect.Descriptor instead. func (*MachineNVLinkInfo) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{661} + return file_nico_proto_rawDescGZIP(), []int{663} } func (x *MachineNVLinkInfo) GetDomainUuid() *NVLinkDomainId { @@ -46331,7 +46453,7 @@ type UpdateMachineNvLinkInfoRequest struct { func (x *UpdateMachineNvLinkInfoRequest) Reset() { *x = UpdateMachineNvLinkInfoRequest{} - mi := &file_nico_proto_msgTypes[662] + mi := &file_nico_proto_msgTypes[664] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46343,7 +46465,7 @@ func (x *UpdateMachineNvLinkInfoRequest) String() string { func (*UpdateMachineNvLinkInfoRequest) ProtoMessage() {} func (x *UpdateMachineNvLinkInfoRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[662] + mi := &file_nico_proto_msgTypes[664] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46356,7 +46478,7 @@ func (x *UpdateMachineNvLinkInfoRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateMachineNvLinkInfoRequest.ProtoReflect.Descriptor instead. func (*UpdateMachineNvLinkInfoRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{662} + return file_nico_proto_rawDescGZIP(), []int{664} } func (x *UpdateMachineNvLinkInfoRequest) GetMachineId() *MachineId { @@ -46383,7 +46505,7 @@ type MachineSpxStatusObservation struct { func (x *MachineSpxStatusObservation) Reset() { *x = MachineSpxStatusObservation{} - mi := &file_nico_proto_msgTypes[663] + mi := &file_nico_proto_msgTypes[665] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46395,7 +46517,7 @@ func (x *MachineSpxStatusObservation) String() string { func (*MachineSpxStatusObservation) ProtoMessage() {} func (x *MachineSpxStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[663] + mi := &file_nico_proto_msgTypes[665] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46408,7 +46530,7 @@ func (x *MachineSpxStatusObservation) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineSpxStatusObservation.ProtoReflect.Descriptor instead. func (*MachineSpxStatusObservation) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{663} + return file_nico_proto_rawDescGZIP(), []int{665} } func (x *MachineSpxStatusObservation) GetAttachmentStatus() []*MachineSpxAttachmentStatusObservation { @@ -46438,7 +46560,7 @@ type MachineSpxAttachmentStatusObservation struct { func (x *MachineSpxAttachmentStatusObservation) Reset() { *x = MachineSpxAttachmentStatusObservation{} - mi := &file_nico_proto_msgTypes[664] + mi := &file_nico_proto_msgTypes[666] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46450,7 +46572,7 @@ func (x *MachineSpxAttachmentStatusObservation) String() string { func (*MachineSpxAttachmentStatusObservation) ProtoMessage() {} func (x *MachineSpxAttachmentStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[664] + mi := &file_nico_proto_msgTypes[666] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46463,7 +46585,7 @@ func (x *MachineSpxAttachmentStatusObservation) ProtoReflect() protoreflect.Mess // Deprecated: Use MachineSpxAttachmentStatusObservation.ProtoReflect.Descriptor instead. func (*MachineSpxAttachmentStatusObservation) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{664} + return file_nico_proto_rawDescGZIP(), []int{666} } func (x *MachineSpxAttachmentStatusObservation) GetMacAddress() string { @@ -46513,7 +46635,7 @@ type NVLinkGpu struct { func (x *NVLinkGpu) Reset() { *x = NVLinkGpu{} - mi := &file_nico_proto_msgTypes[665] + mi := &file_nico_proto_msgTypes[667] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46525,7 +46647,7 @@ func (x *NVLinkGpu) String() string { func (*NVLinkGpu) ProtoMessage() {} func (x *NVLinkGpu) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[665] + mi := &file_nico_proto_msgTypes[667] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46538,7 +46660,7 @@ func (x *NVLinkGpu) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkGpu.ProtoReflect.Descriptor instead. func (*NVLinkGpu) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{665} + return file_nico_proto_rawDescGZIP(), []int{667} } func (x *NVLinkGpu) GetTrayIndex() int32 { @@ -46578,7 +46700,7 @@ type MachineNVLinkStatusObservation struct { func (x *MachineNVLinkStatusObservation) Reset() { *x = MachineNVLinkStatusObservation{} - mi := &file_nico_proto_msgTypes[666] + mi := &file_nico_proto_msgTypes[668] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46590,7 +46712,7 @@ func (x *MachineNVLinkStatusObservation) String() string { func (*MachineNVLinkStatusObservation) ProtoMessage() {} func (x *MachineNVLinkStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[666] + mi := &file_nico_proto_msgTypes[668] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46603,7 +46725,7 @@ func (x *MachineNVLinkStatusObservation) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineNVLinkStatusObservation.ProtoReflect.Descriptor instead. func (*MachineNVLinkStatusObservation) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{666} + return file_nico_proto_rawDescGZIP(), []int{668} } func (x *MachineNVLinkStatusObservation) GetGpuStatus() []*MachineNVLinkGpuStatusObservation { @@ -46627,7 +46749,7 @@ type MachineNVLinkGpuStatusObservation struct { func (x *MachineNVLinkGpuStatusObservation) Reset() { *x = MachineNVLinkGpuStatusObservation{} - mi := &file_nico_proto_msgTypes[667] + mi := &file_nico_proto_msgTypes[669] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46639,7 +46761,7 @@ func (x *MachineNVLinkGpuStatusObservation) String() string { func (*MachineNVLinkGpuStatusObservation) ProtoMessage() {} func (x *MachineNVLinkGpuStatusObservation) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[667] + mi := &file_nico_proto_msgTypes[669] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46652,7 +46774,7 @@ func (x *MachineNVLinkGpuStatusObservation) ProtoReflect() protoreflect.Message // Deprecated: Use MachineNVLinkGpuStatusObservation.ProtoReflect.Descriptor instead. func (*MachineNVLinkGpuStatusObservation) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{667} + return file_nico_proto_rawDescGZIP(), []int{669} } func (x *MachineNVLinkGpuStatusObservation) GetGpuId() string { @@ -46710,7 +46832,7 @@ type NmxcBrowseRequest struct { func (x *NmxcBrowseRequest) Reset() { *x = NmxcBrowseRequest{} - mi := &file_nico_proto_msgTypes[668] + mi := &file_nico_proto_msgTypes[670] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46722,7 +46844,7 @@ func (x *NmxcBrowseRequest) String() string { func (*NmxcBrowseRequest) ProtoMessage() {} func (x *NmxcBrowseRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[668] + mi := &file_nico_proto_msgTypes[670] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46735,7 +46857,7 @@ func (x *NmxcBrowseRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use NmxcBrowseRequest.ProtoReflect.Descriptor instead. func (*NmxcBrowseRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{668} + return file_nico_proto_rawDescGZIP(), []int{670} } func (x *NmxcBrowseRequest) GetChassisSerial() string { @@ -46773,7 +46895,7 @@ type NmxcBrowseResponse struct { func (x *NmxcBrowseResponse) Reset() { *x = NmxcBrowseResponse{} - mi := &file_nico_proto_msgTypes[669] + mi := &file_nico_proto_msgTypes[671] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46785,7 +46907,7 @@ func (x *NmxcBrowseResponse) String() string { func (*NmxcBrowseResponse) ProtoMessage() {} func (x *NmxcBrowseResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[669] + mi := &file_nico_proto_msgTypes[671] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46798,7 +46920,7 @@ func (x *NmxcBrowseResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use NmxcBrowseResponse.ProtoReflect.Descriptor instead. func (*NmxcBrowseResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{669} + return file_nico_proto_rawDescGZIP(), []int{671} } func (x *NmxcBrowseResponse) GetBody() string { @@ -46836,7 +46958,7 @@ type NVLinkPartition struct { func (x *NVLinkPartition) Reset() { *x = NVLinkPartition{} - mi := &file_nico_proto_msgTypes[670] + mi := &file_nico_proto_msgTypes[672] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46848,7 +46970,7 @@ func (x *NVLinkPartition) String() string { func (*NVLinkPartition) ProtoMessage() {} func (x *NVLinkPartition) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[670] + mi := &file_nico_proto_msgTypes[672] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46861,7 +46983,7 @@ func (x *NVLinkPartition) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkPartition.ProtoReflect.Descriptor instead. func (*NVLinkPartition) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{670} + return file_nico_proto_rawDescGZIP(), []int{672} } func (x *NVLinkPartition) GetId() *NVLinkPartitionId { @@ -46908,7 +47030,7 @@ type NVLinkPartitionList struct { func (x *NVLinkPartitionList) Reset() { *x = NVLinkPartitionList{} - mi := &file_nico_proto_msgTypes[671] + mi := &file_nico_proto_msgTypes[673] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46920,7 +47042,7 @@ func (x *NVLinkPartitionList) String() string { func (*NVLinkPartitionList) ProtoMessage() {} func (x *NVLinkPartitionList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[671] + mi := &file_nico_proto_msgTypes[673] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46933,7 +47055,7 @@ func (x *NVLinkPartitionList) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkPartitionList.ProtoReflect.Descriptor instead. func (*NVLinkPartitionList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{671} + return file_nico_proto_rawDescGZIP(), []int{673} } func (x *NVLinkPartitionList) GetPartitions() []*NVLinkPartition { @@ -46952,7 +47074,7 @@ type NVLinkPartitionSearchConfig struct { func (x *NVLinkPartitionSearchConfig) Reset() { *x = NVLinkPartitionSearchConfig{} - mi := &file_nico_proto_msgTypes[672] + mi := &file_nico_proto_msgTypes[674] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46964,7 +47086,7 @@ func (x *NVLinkPartitionSearchConfig) String() string { func (*NVLinkPartitionSearchConfig) ProtoMessage() {} func (x *NVLinkPartitionSearchConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[672] + mi := &file_nico_proto_msgTypes[674] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46977,7 +47099,7 @@ func (x *NVLinkPartitionSearchConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkPartitionSearchConfig.ProtoReflect.Descriptor instead. func (*NVLinkPartitionSearchConfig) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{672} + return file_nico_proto_rawDescGZIP(), []int{674} } func (x *NVLinkPartitionSearchConfig) GetIncludeHistory() bool { @@ -46997,7 +47119,7 @@ type NVLinkPartitionQuery struct { func (x *NVLinkPartitionQuery) Reset() { *x = NVLinkPartitionQuery{} - mi := &file_nico_proto_msgTypes[673] + mi := &file_nico_proto_msgTypes[675] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47009,7 +47131,7 @@ func (x *NVLinkPartitionQuery) String() string { func (*NVLinkPartitionQuery) ProtoMessage() {} func (x *NVLinkPartitionQuery) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[673] + mi := &file_nico_proto_msgTypes[675] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47022,7 +47144,7 @@ func (x *NVLinkPartitionQuery) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkPartitionQuery.ProtoReflect.Descriptor instead. func (*NVLinkPartitionQuery) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{673} + return file_nico_proto_rawDescGZIP(), []int{675} } func (x *NVLinkPartitionQuery) GetId() *UUID { @@ -47049,7 +47171,7 @@ type NVLinkPartitionSearchFilter struct { func (x *NVLinkPartitionSearchFilter) Reset() { *x = NVLinkPartitionSearchFilter{} - mi := &file_nico_proto_msgTypes[674] + mi := &file_nico_proto_msgTypes[676] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47061,7 +47183,7 @@ func (x *NVLinkPartitionSearchFilter) String() string { func (*NVLinkPartitionSearchFilter) ProtoMessage() {} func (x *NVLinkPartitionSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[674] + mi := &file_nico_proto_msgTypes[676] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47074,7 +47196,7 @@ func (x *NVLinkPartitionSearchFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkPartitionSearchFilter.ProtoReflect.Descriptor instead. func (*NVLinkPartitionSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{674} + return file_nico_proto_rawDescGZIP(), []int{676} } func (x *NVLinkPartitionSearchFilter) GetTenantOrganizationId() string { @@ -47101,7 +47223,7 @@ type NVLinkPartitionsByIdsRequest struct { func (x *NVLinkPartitionsByIdsRequest) Reset() { *x = NVLinkPartitionsByIdsRequest{} - mi := &file_nico_proto_msgTypes[675] + mi := &file_nico_proto_msgTypes[677] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47113,7 +47235,7 @@ func (x *NVLinkPartitionsByIdsRequest) String() string { func (*NVLinkPartitionsByIdsRequest) ProtoMessage() {} func (x *NVLinkPartitionsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[675] + mi := &file_nico_proto_msgTypes[677] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47126,7 +47248,7 @@ func (x *NVLinkPartitionsByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkPartitionsByIdsRequest.ProtoReflect.Descriptor instead. func (*NVLinkPartitionsByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{675} + return file_nico_proto_rawDescGZIP(), []int{677} } func (x *NVLinkPartitionsByIdsRequest) GetPartitionIds() []*NVLinkPartitionId { @@ -47152,7 +47274,7 @@ type NVLinkPartitionIdList struct { func (x *NVLinkPartitionIdList) Reset() { *x = NVLinkPartitionIdList{} - mi := &file_nico_proto_msgTypes[676] + mi := &file_nico_proto_msgTypes[678] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47164,7 +47286,7 @@ func (x *NVLinkPartitionIdList) String() string { func (*NVLinkPartitionIdList) ProtoMessage() {} func (x *NVLinkPartitionIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[676] + mi := &file_nico_proto_msgTypes[678] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47177,7 +47299,7 @@ func (x *NVLinkPartitionIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkPartitionIdList.ProtoReflect.Descriptor instead. func (*NVLinkPartitionIdList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{676} + return file_nico_proto_rawDescGZIP(), []int{678} } func (x *NVLinkPartitionIdList) GetPartitionIds() []*NVLinkPartitionId { @@ -47195,7 +47317,7 @@ type NVLinkFabricSearchFilter struct { func (x *NVLinkFabricSearchFilter) Reset() { *x = NVLinkFabricSearchFilter{} - mi := &file_nico_proto_msgTypes[677] + mi := &file_nico_proto_msgTypes[679] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47207,7 +47329,7 @@ func (x *NVLinkFabricSearchFilter) String() string { func (*NVLinkFabricSearchFilter) ProtoMessage() {} func (x *NVLinkFabricSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[677] + mi := &file_nico_proto_msgTypes[679] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47220,7 +47342,7 @@ func (x *NVLinkFabricSearchFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkFabricSearchFilter.ProtoReflect.Descriptor instead. func (*NVLinkFabricSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{677} + return file_nico_proto_rawDescGZIP(), []int{679} } // Describe the desired configuration of an Logical Partition @@ -47235,7 +47357,7 @@ type NVLinkLogicalPartitionConfig struct { func (x *NVLinkLogicalPartitionConfig) Reset() { *x = NVLinkLogicalPartitionConfig{} - mi := &file_nico_proto_msgTypes[678] + mi := &file_nico_proto_msgTypes[680] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47247,7 +47369,7 @@ func (x *NVLinkLogicalPartitionConfig) String() string { func (*NVLinkLogicalPartitionConfig) ProtoMessage() {} func (x *NVLinkLogicalPartitionConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[678] + mi := &file_nico_proto_msgTypes[680] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47260,7 +47382,7 @@ func (x *NVLinkLogicalPartitionConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkLogicalPartitionConfig.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionConfig) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{678} + return file_nico_proto_rawDescGZIP(), []int{680} } func (x *NVLinkLogicalPartitionConfig) GetMetadata() *Metadata { @@ -47288,7 +47410,7 @@ type NVLinkLogicalPartitionStatus struct { func (x *NVLinkLogicalPartitionStatus) Reset() { *x = NVLinkLogicalPartitionStatus{} - mi := &file_nico_proto_msgTypes[679] + mi := &file_nico_proto_msgTypes[681] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47300,7 +47422,7 @@ func (x *NVLinkLogicalPartitionStatus) String() string { func (*NVLinkLogicalPartitionStatus) ProtoMessage() {} func (x *NVLinkLogicalPartitionStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[679] + mi := &file_nico_proto_msgTypes[681] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47313,7 +47435,7 @@ func (x *NVLinkLogicalPartitionStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkLogicalPartitionStatus.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionStatus) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{679} + return file_nico_proto_rawDescGZIP(), []int{681} } func (x *NVLinkLogicalPartitionStatus) GetState() TenantState { @@ -47337,7 +47459,7 @@ type NVLinkLogicalPartition struct { func (x *NVLinkLogicalPartition) Reset() { *x = NVLinkLogicalPartition{} - mi := &file_nico_proto_msgTypes[680] + mi := &file_nico_proto_msgTypes[682] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47349,7 +47471,7 @@ func (x *NVLinkLogicalPartition) String() string { func (*NVLinkLogicalPartition) ProtoMessage() {} func (x *NVLinkLogicalPartition) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[680] + mi := &file_nico_proto_msgTypes[682] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47362,7 +47484,7 @@ func (x *NVLinkLogicalPartition) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkLogicalPartition.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartition) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{680} + return file_nico_proto_rawDescGZIP(), []int{682} } func (x *NVLinkLogicalPartition) GetId() *NVLinkLogicalPartitionId { @@ -47409,7 +47531,7 @@ type NVLinkLogicalPartitionList struct { func (x *NVLinkLogicalPartitionList) Reset() { *x = NVLinkLogicalPartitionList{} - mi := &file_nico_proto_msgTypes[681] + mi := &file_nico_proto_msgTypes[683] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47421,7 +47543,7 @@ func (x *NVLinkLogicalPartitionList) String() string { func (*NVLinkLogicalPartitionList) ProtoMessage() {} func (x *NVLinkLogicalPartitionList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[681] + mi := &file_nico_proto_msgTypes[683] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47434,7 +47556,7 @@ func (x *NVLinkLogicalPartitionList) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkLogicalPartitionList.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{681} + return file_nico_proto_rawDescGZIP(), []int{683} } func (x *NVLinkLogicalPartitionList) GetPartitions() []*NVLinkLogicalPartition { @@ -47457,7 +47579,7 @@ type NVLinkLogicalPartitionCreationRequest struct { func (x *NVLinkLogicalPartitionCreationRequest) Reset() { *x = NVLinkLogicalPartitionCreationRequest{} - mi := &file_nico_proto_msgTypes[682] + mi := &file_nico_proto_msgTypes[684] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47469,7 +47591,7 @@ func (x *NVLinkLogicalPartitionCreationRequest) String() string { func (*NVLinkLogicalPartitionCreationRequest) ProtoMessage() {} func (x *NVLinkLogicalPartitionCreationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[682] + mi := &file_nico_proto_msgTypes[684] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47482,7 +47604,7 @@ func (x *NVLinkLogicalPartitionCreationRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use NVLinkLogicalPartitionCreationRequest.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionCreationRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{682} + return file_nico_proto_rawDescGZIP(), []int{684} } func (x *NVLinkLogicalPartitionCreationRequest) GetConfig() *NVLinkLogicalPartitionConfig { @@ -47508,7 +47630,7 @@ type NVLinkLogicalPartitionDeletionRequest struct { func (x *NVLinkLogicalPartitionDeletionRequest) Reset() { *x = NVLinkLogicalPartitionDeletionRequest{} - mi := &file_nico_proto_msgTypes[683] + mi := &file_nico_proto_msgTypes[685] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47520,7 +47642,7 @@ func (x *NVLinkLogicalPartitionDeletionRequest) String() string { func (*NVLinkLogicalPartitionDeletionRequest) ProtoMessage() {} func (x *NVLinkLogicalPartitionDeletionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[683] + mi := &file_nico_proto_msgTypes[685] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47533,7 +47655,7 @@ func (x *NVLinkLogicalPartitionDeletionRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use NVLinkLogicalPartitionDeletionRequest.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionDeletionRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{683} + return file_nico_proto_rawDescGZIP(), []int{685} } func (x *NVLinkLogicalPartitionDeletionRequest) GetId() *NVLinkLogicalPartitionId { @@ -47551,7 +47673,7 @@ type NVLinkLogicalPartitionDeletionResult struct { func (x *NVLinkLogicalPartitionDeletionResult) Reset() { *x = NVLinkLogicalPartitionDeletionResult{} - mi := &file_nico_proto_msgTypes[684] + mi := &file_nico_proto_msgTypes[686] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47563,7 +47685,7 @@ func (x *NVLinkLogicalPartitionDeletionResult) String() string { func (*NVLinkLogicalPartitionDeletionResult) ProtoMessage() {} func (x *NVLinkLogicalPartitionDeletionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[684] + mi := &file_nico_proto_msgTypes[686] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47576,7 +47698,7 @@ func (x *NVLinkLogicalPartitionDeletionResult) ProtoReflect() protoreflect.Messa // Deprecated: Use NVLinkLogicalPartitionDeletionResult.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionDeletionResult) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{684} + return file_nico_proto_rawDescGZIP(), []int{686} } type NVLinkLogicalPartitionSearchFilter struct { @@ -47588,7 +47710,7 @@ type NVLinkLogicalPartitionSearchFilter struct { func (x *NVLinkLogicalPartitionSearchFilter) Reset() { *x = NVLinkLogicalPartitionSearchFilter{} - mi := &file_nico_proto_msgTypes[685] + mi := &file_nico_proto_msgTypes[687] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47600,7 +47722,7 @@ func (x *NVLinkLogicalPartitionSearchFilter) String() string { func (*NVLinkLogicalPartitionSearchFilter) ProtoMessage() {} func (x *NVLinkLogicalPartitionSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[685] + mi := &file_nico_proto_msgTypes[687] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47613,7 +47735,7 @@ func (x *NVLinkLogicalPartitionSearchFilter) ProtoReflect() protoreflect.Message // Deprecated: Use NVLinkLogicalPartitionSearchFilter.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{685} + return file_nico_proto_rawDescGZIP(), []int{687} } func (x *NVLinkLogicalPartitionSearchFilter) GetName() string { @@ -47633,7 +47755,7 @@ type NVLinkLogicalPartitionsByIdsRequest struct { func (x *NVLinkLogicalPartitionsByIdsRequest) Reset() { *x = NVLinkLogicalPartitionsByIdsRequest{} - mi := &file_nico_proto_msgTypes[686] + mi := &file_nico_proto_msgTypes[688] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47645,7 +47767,7 @@ func (x *NVLinkLogicalPartitionsByIdsRequest) String() string { func (*NVLinkLogicalPartitionsByIdsRequest) ProtoMessage() {} func (x *NVLinkLogicalPartitionsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[686] + mi := &file_nico_proto_msgTypes[688] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47658,7 +47780,7 @@ func (x *NVLinkLogicalPartitionsByIdsRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use NVLinkLogicalPartitionsByIdsRequest.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionsByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{686} + return file_nico_proto_rawDescGZIP(), []int{688} } func (x *NVLinkLogicalPartitionsByIdsRequest) GetPartitionIds() []*NVLinkLogicalPartitionId { @@ -47684,7 +47806,7 @@ type NVLinkLogicalPartitionIdList struct { func (x *NVLinkLogicalPartitionIdList) Reset() { *x = NVLinkLogicalPartitionIdList{} - mi := &file_nico_proto_msgTypes[687] + mi := &file_nico_proto_msgTypes[689] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47696,7 +47818,7 @@ func (x *NVLinkLogicalPartitionIdList) String() string { func (*NVLinkLogicalPartitionIdList) ProtoMessage() {} func (x *NVLinkLogicalPartitionIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[687] + mi := &file_nico_proto_msgTypes[689] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47709,7 +47831,7 @@ func (x *NVLinkLogicalPartitionIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLinkLogicalPartitionIdList.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionIdList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{687} + return file_nico_proto_rawDescGZIP(), []int{689} } func (x *NVLinkLogicalPartitionIdList) GetPartitionIds() []*NVLinkLogicalPartitionId { @@ -47730,7 +47852,7 @@ type NVLinkLogicalPartitionUpdateRequest struct { func (x *NVLinkLogicalPartitionUpdateRequest) Reset() { *x = NVLinkLogicalPartitionUpdateRequest{} - mi := &file_nico_proto_msgTypes[688] + mi := &file_nico_proto_msgTypes[690] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47742,7 +47864,7 @@ func (x *NVLinkLogicalPartitionUpdateRequest) String() string { func (*NVLinkLogicalPartitionUpdateRequest) ProtoMessage() {} func (x *NVLinkLogicalPartitionUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[688] + mi := &file_nico_proto_msgTypes[690] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47755,7 +47877,7 @@ func (x *NVLinkLogicalPartitionUpdateRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use NVLinkLogicalPartitionUpdateRequest.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{688} + return file_nico_proto_rawDescGZIP(), []int{690} } func (x *NVLinkLogicalPartitionUpdateRequest) GetId() *NVLinkLogicalPartitionId { @@ -47787,7 +47909,7 @@ type NVLinkLogicalPartitionUpdateResult struct { func (x *NVLinkLogicalPartitionUpdateResult) Reset() { *x = NVLinkLogicalPartitionUpdateResult{} - mi := &file_nico_proto_msgTypes[689] + mi := &file_nico_proto_msgTypes[691] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47799,7 +47921,7 @@ func (x *NVLinkLogicalPartitionUpdateResult) String() string { func (*NVLinkLogicalPartitionUpdateResult) ProtoMessage() {} func (x *NVLinkLogicalPartitionUpdateResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[689] + mi := &file_nico_proto_msgTypes[691] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47812,7 +47934,7 @@ func (x *NVLinkLogicalPartitionUpdateResult) ProtoReflect() protoreflect.Message // Deprecated: Use NVLinkLogicalPartitionUpdateResult.ProtoReflect.Descriptor instead. func (*NVLinkLogicalPartitionUpdateResult) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{689} + return file_nico_proto_rawDescGZIP(), []int{691} } // Must provide either machine_id or ip/mac pair @@ -47829,7 +47951,7 @@ type CreateBmcUserRequest struct { func (x *CreateBmcUserRequest) Reset() { *x = CreateBmcUserRequest{} - mi := &file_nico_proto_msgTypes[690] + mi := &file_nico_proto_msgTypes[692] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47841,7 +47963,7 @@ func (x *CreateBmcUserRequest) String() string { func (*CreateBmcUserRequest) ProtoMessage() {} func (x *CreateBmcUserRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[690] + mi := &file_nico_proto_msgTypes[692] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47854,7 +47976,7 @@ func (x *CreateBmcUserRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateBmcUserRequest.ProtoReflect.Descriptor instead. func (*CreateBmcUserRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{690} + return file_nico_proto_rawDescGZIP(), []int{692} } func (x *CreateBmcUserRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -47900,7 +48022,7 @@ type CreateBmcUserResponse struct { func (x *CreateBmcUserResponse) Reset() { *x = CreateBmcUserResponse{} - mi := &file_nico_proto_msgTypes[691] + mi := &file_nico_proto_msgTypes[693] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47912,7 +48034,7 @@ func (x *CreateBmcUserResponse) String() string { func (*CreateBmcUserResponse) ProtoMessage() {} func (x *CreateBmcUserResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[691] + mi := &file_nico_proto_msgTypes[693] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47925,7 +48047,7 @@ func (x *CreateBmcUserResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateBmcUserResponse.ProtoReflect.Descriptor instead. func (*CreateBmcUserResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{691} + return file_nico_proto_rawDescGZIP(), []int{693} } type DeleteBmcUserRequest struct { @@ -47939,7 +48061,7 @@ type DeleteBmcUserRequest struct { func (x *DeleteBmcUserRequest) Reset() { *x = DeleteBmcUserRequest{} - mi := &file_nico_proto_msgTypes[692] + mi := &file_nico_proto_msgTypes[694] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47951,7 +48073,7 @@ func (x *DeleteBmcUserRequest) String() string { func (*DeleteBmcUserRequest) ProtoMessage() {} func (x *DeleteBmcUserRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[692] + mi := &file_nico_proto_msgTypes[694] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47964,7 +48086,7 @@ func (x *DeleteBmcUserRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteBmcUserRequest.ProtoReflect.Descriptor instead. func (*DeleteBmcUserRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{692} + return file_nico_proto_rawDescGZIP(), []int{694} } func (x *DeleteBmcUserRequest) GetBmcEndpointRequest() *BmcEndpointRequest { @@ -47996,7 +48118,7 @@ type DeleteBmcUserResponse struct { func (x *DeleteBmcUserResponse) Reset() { *x = DeleteBmcUserResponse{} - mi := &file_nico_proto_msgTypes[693] + mi := &file_nico_proto_msgTypes[695] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48008,7 +48130,7 @@ func (x *DeleteBmcUserResponse) String() string { func (*DeleteBmcUserResponse) ProtoMessage() {} func (x *DeleteBmcUserResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[693] + mi := &file_nico_proto_msgTypes[695] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48021,7 +48143,7 @@ func (x *DeleteBmcUserResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteBmcUserResponse.ProtoReflect.Descriptor instead. func (*DeleteBmcUserResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{693} + return file_nico_proto_rawDescGZIP(), []int{695} } type SetFirmwareUpdateTimeWindowRequest struct { @@ -48035,7 +48157,7 @@ type SetFirmwareUpdateTimeWindowRequest struct { func (x *SetFirmwareUpdateTimeWindowRequest) Reset() { *x = SetFirmwareUpdateTimeWindowRequest{} - mi := &file_nico_proto_msgTypes[694] + mi := &file_nico_proto_msgTypes[696] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48047,7 +48169,7 @@ func (x *SetFirmwareUpdateTimeWindowRequest) String() string { func (*SetFirmwareUpdateTimeWindowRequest) ProtoMessage() {} func (x *SetFirmwareUpdateTimeWindowRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[694] + mi := &file_nico_proto_msgTypes[696] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48060,7 +48182,7 @@ func (x *SetFirmwareUpdateTimeWindowRequest) ProtoReflect() protoreflect.Message // Deprecated: Use SetFirmwareUpdateTimeWindowRequest.ProtoReflect.Descriptor instead. func (*SetFirmwareUpdateTimeWindowRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{694} + return file_nico_proto_rawDescGZIP(), []int{696} } func (x *SetFirmwareUpdateTimeWindowRequest) GetMachineIds() []*MachineId { @@ -48092,7 +48214,7 @@ type SetFirmwareUpdateTimeWindowResponse struct { func (x *SetFirmwareUpdateTimeWindowResponse) Reset() { *x = SetFirmwareUpdateTimeWindowResponse{} - mi := &file_nico_proto_msgTypes[695] + mi := &file_nico_proto_msgTypes[697] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48104,7 +48226,7 @@ func (x *SetFirmwareUpdateTimeWindowResponse) String() string { func (*SetFirmwareUpdateTimeWindowResponse) ProtoMessage() {} func (x *SetFirmwareUpdateTimeWindowResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[695] + mi := &file_nico_proto_msgTypes[697] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48117,7 +48239,7 @@ func (x *SetFirmwareUpdateTimeWindowResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use SetFirmwareUpdateTimeWindowResponse.ProtoReflect.Descriptor instead. func (*SetFirmwareUpdateTimeWindowResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{695} + return file_nico_proto_rawDescGZIP(), []int{697} } type ListHostFirmwareRequest struct { @@ -48128,7 +48250,7 @@ type ListHostFirmwareRequest struct { func (x *ListHostFirmwareRequest) Reset() { *x = ListHostFirmwareRequest{} - mi := &file_nico_proto_msgTypes[696] + mi := &file_nico_proto_msgTypes[698] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48140,7 +48262,7 @@ func (x *ListHostFirmwareRequest) String() string { func (*ListHostFirmwareRequest) ProtoMessage() {} func (x *ListHostFirmwareRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[696] + mi := &file_nico_proto_msgTypes[698] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48153,7 +48275,7 @@ func (x *ListHostFirmwareRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListHostFirmwareRequest.ProtoReflect.Descriptor instead. func (*ListHostFirmwareRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{696} + return file_nico_proto_rawDescGZIP(), []int{698} } type ListHostFirmwareResponse struct { @@ -48165,7 +48287,7 @@ type ListHostFirmwareResponse struct { func (x *ListHostFirmwareResponse) Reset() { *x = ListHostFirmwareResponse{} - mi := &file_nico_proto_msgTypes[697] + mi := &file_nico_proto_msgTypes[699] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48177,7 +48299,7 @@ func (x *ListHostFirmwareResponse) String() string { func (*ListHostFirmwareResponse) ProtoMessage() {} func (x *ListHostFirmwareResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[697] + mi := &file_nico_proto_msgTypes[699] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48190,7 +48312,7 @@ func (x *ListHostFirmwareResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListHostFirmwareResponse.ProtoReflect.Descriptor instead. func (*ListHostFirmwareResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{697} + return file_nico_proto_rawDescGZIP(), []int{699} } func (x *ListHostFirmwareResponse) GetAvailable() []*AvailableHostFirmware { @@ -48214,7 +48336,7 @@ type AvailableHostFirmware struct { func (x *AvailableHostFirmware) Reset() { *x = AvailableHostFirmware{} - mi := &file_nico_proto_msgTypes[698] + mi := &file_nico_proto_msgTypes[700] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48226,7 +48348,7 @@ func (x *AvailableHostFirmware) String() string { func (*AvailableHostFirmware) ProtoMessage() {} func (x *AvailableHostFirmware) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[698] + mi := &file_nico_proto_msgTypes[700] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48239,7 +48361,7 @@ func (x *AvailableHostFirmware) ProtoReflect() protoreflect.Message { // Deprecated: Use AvailableHostFirmware.ProtoReflect.Descriptor instead. func (*AvailableHostFirmware) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{698} + return file_nico_proto_rawDescGZIP(), []int{700} } func (x *AvailableHostFirmware) GetVendor() string { @@ -48294,7 +48416,7 @@ type TrimTableRequest struct { func (x *TrimTableRequest) Reset() { *x = TrimTableRequest{} - mi := &file_nico_proto_msgTypes[699] + mi := &file_nico_proto_msgTypes[701] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48306,7 +48428,7 @@ func (x *TrimTableRequest) String() string { func (*TrimTableRequest) ProtoMessage() {} func (x *TrimTableRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[699] + mi := &file_nico_proto_msgTypes[701] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48319,7 +48441,7 @@ func (x *TrimTableRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TrimTableRequest.ProtoReflect.Descriptor instead. func (*TrimTableRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{699} + return file_nico_proto_rawDescGZIP(), []int{701} } func (x *TrimTableRequest) GetTarget() TrimTableTarget { @@ -48345,7 +48467,7 @@ type TrimTableResponse struct { func (x *TrimTableResponse) Reset() { *x = TrimTableResponse{} - mi := &file_nico_proto_msgTypes[700] + mi := &file_nico_proto_msgTypes[702] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48357,7 +48479,7 @@ func (x *TrimTableResponse) String() string { func (*TrimTableResponse) ProtoMessage() {} func (x *TrimTableResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[700] + mi := &file_nico_proto_msgTypes[702] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48370,7 +48492,7 @@ func (x *TrimTableResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use TrimTableResponse.ProtoReflect.Descriptor instead. func (*TrimTableResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{700} + return file_nico_proto_rawDescGZIP(), []int{702} } func (x *TrimTableResponse) GetTotalDeleted() string { @@ -48390,7 +48512,7 @@ type NvlinkNmxcEndpoint struct { func (x *NvlinkNmxcEndpoint) Reset() { *x = NvlinkNmxcEndpoint{} - mi := &file_nico_proto_msgTypes[701] + mi := &file_nico_proto_msgTypes[703] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48402,7 +48524,7 @@ func (x *NvlinkNmxcEndpoint) String() string { func (*NvlinkNmxcEndpoint) ProtoMessage() {} func (x *NvlinkNmxcEndpoint) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[701] + mi := &file_nico_proto_msgTypes[703] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48415,7 +48537,7 @@ func (x *NvlinkNmxcEndpoint) ProtoReflect() protoreflect.Message { // Deprecated: Use NvlinkNmxcEndpoint.ProtoReflect.Descriptor instead. func (*NvlinkNmxcEndpoint) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{701} + return file_nico_proto_rawDescGZIP(), []int{703} } func (x *NvlinkNmxcEndpoint) GetChassisSerial() string { @@ -48441,7 +48563,7 @@ type NvlinkNmxcEndpointList struct { func (x *NvlinkNmxcEndpointList) Reset() { *x = NvlinkNmxcEndpointList{} - mi := &file_nico_proto_msgTypes[702] + mi := &file_nico_proto_msgTypes[704] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48453,7 +48575,7 @@ func (x *NvlinkNmxcEndpointList) String() string { func (*NvlinkNmxcEndpointList) ProtoMessage() {} func (x *NvlinkNmxcEndpointList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[702] + mi := &file_nico_proto_msgTypes[704] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48466,7 +48588,7 @@ func (x *NvlinkNmxcEndpointList) ProtoReflect() protoreflect.Message { // Deprecated: Use NvlinkNmxcEndpointList.ProtoReflect.Descriptor instead. func (*NvlinkNmxcEndpointList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{702} + return file_nico_proto_rawDescGZIP(), []int{704} } func (x *NvlinkNmxcEndpointList) GetEntries() []*NvlinkNmxcEndpoint { @@ -48485,7 +48607,7 @@ type DeleteNvlinkNmxcEndpointRequest struct { func (x *DeleteNvlinkNmxcEndpointRequest) Reset() { *x = DeleteNvlinkNmxcEndpointRequest{} - mi := &file_nico_proto_msgTypes[703] + mi := &file_nico_proto_msgTypes[705] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48497,7 +48619,7 @@ func (x *DeleteNvlinkNmxcEndpointRequest) String() string { func (*DeleteNvlinkNmxcEndpointRequest) ProtoMessage() {} func (x *DeleteNvlinkNmxcEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[703] + mi := &file_nico_proto_msgTypes[705] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48510,7 +48632,7 @@ func (x *DeleteNvlinkNmxcEndpointRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteNvlinkNmxcEndpointRequest.ProtoReflect.Descriptor instead. func (*DeleteNvlinkNmxcEndpointRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{703} + return file_nico_proto_rawDescGZIP(), []int{705} } func (x *DeleteNvlinkNmxcEndpointRequest) GetChassisSerial() string { @@ -48532,7 +48654,7 @@ type CreateRemediationRequest struct { func (x *CreateRemediationRequest) Reset() { *x = CreateRemediationRequest{} - mi := &file_nico_proto_msgTypes[704] + mi := &file_nico_proto_msgTypes[706] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48544,7 +48666,7 @@ func (x *CreateRemediationRequest) String() string { func (*CreateRemediationRequest) ProtoMessage() {} func (x *CreateRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[704] + mi := &file_nico_proto_msgTypes[706] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48557,7 +48679,7 @@ func (x *CreateRemediationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateRemediationRequest.ProtoReflect.Descriptor instead. func (*CreateRemediationRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{704} + return file_nico_proto_rawDescGZIP(), []int{706} } func (x *CreateRemediationRequest) GetScript() string { @@ -48590,7 +48712,7 @@ type CreateRemediationResponse struct { func (x *CreateRemediationResponse) Reset() { *x = CreateRemediationResponse{} - mi := &file_nico_proto_msgTypes[705] + mi := &file_nico_proto_msgTypes[707] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48602,7 +48724,7 @@ func (x *CreateRemediationResponse) String() string { func (*CreateRemediationResponse) ProtoMessage() {} func (x *CreateRemediationResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[705] + mi := &file_nico_proto_msgTypes[707] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48615,7 +48737,7 @@ func (x *CreateRemediationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateRemediationResponse.ProtoReflect.Descriptor instead. func (*CreateRemediationResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{705} + return file_nico_proto_rawDescGZIP(), []int{707} } func (x *CreateRemediationResponse) GetRemediationId() *RemediationId { @@ -48634,7 +48756,7 @@ type RemediationIdList struct { func (x *RemediationIdList) Reset() { *x = RemediationIdList{} - mi := &file_nico_proto_msgTypes[706] + mi := &file_nico_proto_msgTypes[708] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48646,7 +48768,7 @@ func (x *RemediationIdList) String() string { func (*RemediationIdList) ProtoMessage() {} func (x *RemediationIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[706] + mi := &file_nico_proto_msgTypes[708] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48659,7 +48781,7 @@ func (x *RemediationIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use RemediationIdList.ProtoReflect.Descriptor instead. func (*RemediationIdList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{706} + return file_nico_proto_rawDescGZIP(), []int{708} } func (x *RemediationIdList) GetRemediationIds() []*RemediationId { @@ -48678,7 +48800,7 @@ type RemediationList struct { func (x *RemediationList) Reset() { *x = RemediationList{} - mi := &file_nico_proto_msgTypes[707] + mi := &file_nico_proto_msgTypes[709] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48690,7 +48812,7 @@ func (x *RemediationList) String() string { func (*RemediationList) ProtoMessage() {} func (x *RemediationList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[707] + mi := &file_nico_proto_msgTypes[709] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48703,7 +48825,7 @@ func (x *RemediationList) ProtoReflect() protoreflect.Message { // Deprecated: Use RemediationList.ProtoReflect.Descriptor instead. func (*RemediationList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{707} + return file_nico_proto_rawDescGZIP(), []int{709} } func (x *RemediationList) GetRemediations() []*Remediation { @@ -48729,7 +48851,7 @@ type Remediation struct { func (x *Remediation) Reset() { *x = Remediation{} - mi := &file_nico_proto_msgTypes[708] + mi := &file_nico_proto_msgTypes[710] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48741,7 +48863,7 @@ func (x *Remediation) String() string { func (*Remediation) ProtoMessage() {} func (x *Remediation) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[708] + mi := &file_nico_proto_msgTypes[710] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48754,7 +48876,7 @@ func (x *Remediation) ProtoReflect() protoreflect.Message { // Deprecated: Use Remediation.ProtoReflect.Descriptor instead. func (*Remediation) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{708} + return file_nico_proto_rawDescGZIP(), []int{710} } func (x *Remediation) GetId() *RemediationId { @@ -48822,7 +48944,7 @@ type ApproveRemediationRequest struct { func (x *ApproveRemediationRequest) Reset() { *x = ApproveRemediationRequest{} - mi := &file_nico_proto_msgTypes[709] + mi := &file_nico_proto_msgTypes[711] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48834,7 +48956,7 @@ func (x *ApproveRemediationRequest) String() string { func (*ApproveRemediationRequest) ProtoMessage() {} func (x *ApproveRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[709] + mi := &file_nico_proto_msgTypes[711] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48847,7 +48969,7 @@ func (x *ApproveRemediationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ApproveRemediationRequest.ProtoReflect.Descriptor instead. func (*ApproveRemediationRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{709} + return file_nico_proto_rawDescGZIP(), []int{711} } func (x *ApproveRemediationRequest) GetRemediationId() *RemediationId { @@ -48866,7 +48988,7 @@ type RevokeRemediationRequest struct { func (x *RevokeRemediationRequest) Reset() { *x = RevokeRemediationRequest{} - mi := &file_nico_proto_msgTypes[710] + mi := &file_nico_proto_msgTypes[712] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48878,7 +49000,7 @@ func (x *RevokeRemediationRequest) String() string { func (*RevokeRemediationRequest) ProtoMessage() {} func (x *RevokeRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[710] + mi := &file_nico_proto_msgTypes[712] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48891,7 +49013,7 @@ func (x *RevokeRemediationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RevokeRemediationRequest.ProtoReflect.Descriptor instead. func (*RevokeRemediationRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{710} + return file_nico_proto_rawDescGZIP(), []int{712} } func (x *RevokeRemediationRequest) GetRemediationId() *RemediationId { @@ -48910,7 +49032,7 @@ type EnableRemediationRequest struct { func (x *EnableRemediationRequest) Reset() { *x = EnableRemediationRequest{} - mi := &file_nico_proto_msgTypes[711] + mi := &file_nico_proto_msgTypes[713] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48922,7 +49044,7 @@ func (x *EnableRemediationRequest) String() string { func (*EnableRemediationRequest) ProtoMessage() {} func (x *EnableRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[711] + mi := &file_nico_proto_msgTypes[713] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48935,7 +49057,7 @@ func (x *EnableRemediationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use EnableRemediationRequest.ProtoReflect.Descriptor instead. func (*EnableRemediationRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{711} + return file_nico_proto_rawDescGZIP(), []int{713} } func (x *EnableRemediationRequest) GetRemediationId() *RemediationId { @@ -48954,7 +49076,7 @@ type DisableRemediationRequest struct { func (x *DisableRemediationRequest) Reset() { *x = DisableRemediationRequest{} - mi := &file_nico_proto_msgTypes[712] + mi := &file_nico_proto_msgTypes[714] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48966,7 +49088,7 @@ func (x *DisableRemediationRequest) String() string { func (*DisableRemediationRequest) ProtoMessage() {} func (x *DisableRemediationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[712] + mi := &file_nico_proto_msgTypes[714] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48979,7 +49101,7 @@ func (x *DisableRemediationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DisableRemediationRequest.ProtoReflect.Descriptor instead. func (*DisableRemediationRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{712} + return file_nico_proto_rawDescGZIP(), []int{714} } func (x *DisableRemediationRequest) GetRemediationId() *RemediationId { @@ -49001,7 +49123,7 @@ type FindAppliedRemediationIdsRequest struct { func (x *FindAppliedRemediationIdsRequest) Reset() { *x = FindAppliedRemediationIdsRequest{} - mi := &file_nico_proto_msgTypes[713] + mi := &file_nico_proto_msgTypes[715] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49013,7 +49135,7 @@ func (x *FindAppliedRemediationIdsRequest) String() string { func (*FindAppliedRemediationIdsRequest) ProtoMessage() {} func (x *FindAppliedRemediationIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[713] + mi := &file_nico_proto_msgTypes[715] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49026,7 +49148,7 @@ func (x *FindAppliedRemediationIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FindAppliedRemediationIdsRequest.ProtoReflect.Descriptor instead. func (*FindAppliedRemediationIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{713} + return file_nico_proto_rawDescGZIP(), []int{715} } func (x *FindAppliedRemediationIdsRequest) GetRemediationId() *RemediationId { @@ -49053,7 +49175,7 @@ type AppliedRemediationIdList struct { func (x *AppliedRemediationIdList) Reset() { *x = AppliedRemediationIdList{} - mi := &file_nico_proto_msgTypes[714] + mi := &file_nico_proto_msgTypes[716] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49065,7 +49187,7 @@ func (x *AppliedRemediationIdList) String() string { func (*AppliedRemediationIdList) ProtoMessage() {} func (x *AppliedRemediationIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[714] + mi := &file_nico_proto_msgTypes[716] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49078,7 +49200,7 @@ func (x *AppliedRemediationIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use AppliedRemediationIdList.ProtoReflect.Descriptor instead. func (*AppliedRemediationIdList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{714} + return file_nico_proto_rawDescGZIP(), []int{716} } func (x *AppliedRemediationIdList) GetRemediationIds() []*RemediationId { @@ -49105,7 +49227,7 @@ type FindAppliedRemediationsRequest struct { func (x *FindAppliedRemediationsRequest) Reset() { *x = FindAppliedRemediationsRequest{} - mi := &file_nico_proto_msgTypes[715] + mi := &file_nico_proto_msgTypes[717] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49117,7 +49239,7 @@ func (x *FindAppliedRemediationsRequest) String() string { func (*FindAppliedRemediationsRequest) ProtoMessage() {} func (x *FindAppliedRemediationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[715] + mi := &file_nico_proto_msgTypes[717] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49130,7 +49252,7 @@ func (x *FindAppliedRemediationsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FindAppliedRemediationsRequest.ProtoReflect.Descriptor instead. func (*FindAppliedRemediationsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{715} + return file_nico_proto_rawDescGZIP(), []int{717} } func (x *FindAppliedRemediationsRequest) GetRemediationId() *RemediationId { @@ -49161,7 +49283,7 @@ type AppliedRemediation struct { func (x *AppliedRemediation) Reset() { *x = AppliedRemediation{} - mi := &file_nico_proto_msgTypes[716] + mi := &file_nico_proto_msgTypes[718] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49173,7 +49295,7 @@ func (x *AppliedRemediation) String() string { func (*AppliedRemediation) ProtoMessage() {} func (x *AppliedRemediation) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[716] + mi := &file_nico_proto_msgTypes[718] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49186,7 +49308,7 @@ func (x *AppliedRemediation) ProtoReflect() protoreflect.Message { // Deprecated: Use AppliedRemediation.ProtoReflect.Descriptor instead. func (*AppliedRemediation) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{716} + return file_nico_proto_rawDescGZIP(), []int{718} } func (x *AppliedRemediation) GetRemediationId() *RemediationId { @@ -49240,7 +49362,7 @@ type AppliedRemediationList struct { func (x *AppliedRemediationList) Reset() { *x = AppliedRemediationList{} - mi := &file_nico_proto_msgTypes[717] + mi := &file_nico_proto_msgTypes[719] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49252,7 +49374,7 @@ func (x *AppliedRemediationList) String() string { func (*AppliedRemediationList) ProtoMessage() {} func (x *AppliedRemediationList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[717] + mi := &file_nico_proto_msgTypes[719] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49265,7 +49387,7 @@ func (x *AppliedRemediationList) ProtoReflect() protoreflect.Message { // Deprecated: Use AppliedRemediationList.ProtoReflect.Descriptor instead. func (*AppliedRemediationList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{717} + return file_nico_proto_rawDescGZIP(), []int{719} } func (x *AppliedRemediationList) GetAppliedRemediations() []*AppliedRemediation { @@ -49284,7 +49406,7 @@ type GetNextRemediationForMachineRequest struct { func (x *GetNextRemediationForMachineRequest) Reset() { *x = GetNextRemediationForMachineRequest{} - mi := &file_nico_proto_msgTypes[718] + mi := &file_nico_proto_msgTypes[720] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49296,7 +49418,7 @@ func (x *GetNextRemediationForMachineRequest) String() string { func (*GetNextRemediationForMachineRequest) ProtoMessage() {} func (x *GetNextRemediationForMachineRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[718] + mi := &file_nico_proto_msgTypes[720] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49309,7 +49431,7 @@ func (x *GetNextRemediationForMachineRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use GetNextRemediationForMachineRequest.ProtoReflect.Descriptor instead. func (*GetNextRemediationForMachineRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{718} + return file_nico_proto_rawDescGZIP(), []int{720} } func (x *GetNextRemediationForMachineRequest) GetDpuMachineId() *MachineId { @@ -49329,7 +49451,7 @@ type GetNextRemediationForMachineResponse struct { func (x *GetNextRemediationForMachineResponse) Reset() { *x = GetNextRemediationForMachineResponse{} - mi := &file_nico_proto_msgTypes[719] + mi := &file_nico_proto_msgTypes[721] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49341,7 +49463,7 @@ func (x *GetNextRemediationForMachineResponse) String() string { func (*GetNextRemediationForMachineResponse) ProtoMessage() {} func (x *GetNextRemediationForMachineResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[719] + mi := &file_nico_proto_msgTypes[721] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49354,7 +49476,7 @@ func (x *GetNextRemediationForMachineResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use GetNextRemediationForMachineResponse.ProtoReflect.Descriptor instead. func (*GetNextRemediationForMachineResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{719} + return file_nico_proto_rawDescGZIP(), []int{721} } func (x *GetNextRemediationForMachineResponse) GetRemediationId() *RemediationId { @@ -49382,7 +49504,7 @@ type RemediationAppliedRequest struct { func (x *RemediationAppliedRequest) Reset() { *x = RemediationAppliedRequest{} - mi := &file_nico_proto_msgTypes[720] + mi := &file_nico_proto_msgTypes[722] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49394,7 +49516,7 @@ func (x *RemediationAppliedRequest) String() string { func (*RemediationAppliedRequest) ProtoMessage() {} func (x *RemediationAppliedRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[720] + mi := &file_nico_proto_msgTypes[722] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49407,7 +49529,7 @@ func (x *RemediationAppliedRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemediationAppliedRequest.ProtoReflect.Descriptor instead. func (*RemediationAppliedRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{720} + return file_nico_proto_rawDescGZIP(), []int{722} } func (x *RemediationAppliedRequest) GetRemediationId() *RemediationId { @@ -49441,7 +49563,7 @@ type RemediationApplicationStatus struct { func (x *RemediationApplicationStatus) Reset() { *x = RemediationApplicationStatus{} - mi := &file_nico_proto_msgTypes[721] + mi := &file_nico_proto_msgTypes[723] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49453,7 +49575,7 @@ func (x *RemediationApplicationStatus) String() string { func (*RemediationApplicationStatus) ProtoMessage() {} func (x *RemediationApplicationStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[721] + mi := &file_nico_proto_msgTypes[723] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49466,7 +49588,7 @@ func (x *RemediationApplicationStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use RemediationApplicationStatus.ProtoReflect.Descriptor instead. func (*RemediationApplicationStatus) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{721} + return file_nico_proto_rawDescGZIP(), []int{723} } func (x *RemediationApplicationStatus) GetSucceeded() bool { @@ -49494,7 +49616,7 @@ type SetPrimaryDpuRequest struct { func (x *SetPrimaryDpuRequest) Reset() { *x = SetPrimaryDpuRequest{} - mi := &file_nico_proto_msgTypes[722] + mi := &file_nico_proto_msgTypes[724] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49506,7 +49628,7 @@ func (x *SetPrimaryDpuRequest) String() string { func (*SetPrimaryDpuRequest) ProtoMessage() {} func (x *SetPrimaryDpuRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[722] + mi := &file_nico_proto_msgTypes[724] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49519,7 +49641,7 @@ func (x *SetPrimaryDpuRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetPrimaryDpuRequest.ProtoReflect.Descriptor instead. func (*SetPrimaryDpuRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{722} + return file_nico_proto_rawDescGZIP(), []int{724} } func (x *SetPrimaryDpuRequest) GetHostMachineId() *MachineId { @@ -49554,7 +49676,7 @@ type SetPrimaryInterfaceRequest struct { func (x *SetPrimaryInterfaceRequest) Reset() { *x = SetPrimaryInterfaceRequest{} - mi := &file_nico_proto_msgTypes[723] + mi := &file_nico_proto_msgTypes[725] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49566,7 +49688,7 @@ func (x *SetPrimaryInterfaceRequest) String() string { func (*SetPrimaryInterfaceRequest) ProtoMessage() {} func (x *SetPrimaryInterfaceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[723] + mi := &file_nico_proto_msgTypes[725] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49579,7 +49701,7 @@ func (x *SetPrimaryInterfaceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetPrimaryInterfaceRequest.ProtoReflect.Descriptor instead. func (*SetPrimaryInterfaceRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{723} + return file_nico_proto_rawDescGZIP(), []int{725} } func (x *SetPrimaryInterfaceRequest) GetHostMachineId() *MachineId { @@ -49613,7 +49735,7 @@ type UsernamePassword struct { func (x *UsernamePassword) Reset() { *x = UsernamePassword{} - mi := &file_nico_proto_msgTypes[724] + mi := &file_nico_proto_msgTypes[726] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49625,7 +49747,7 @@ func (x *UsernamePassword) String() string { func (*UsernamePassword) ProtoMessage() {} func (x *UsernamePassword) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[724] + mi := &file_nico_proto_msgTypes[726] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49638,7 +49760,7 @@ func (x *UsernamePassword) ProtoReflect() protoreflect.Message { // Deprecated: Use UsernamePassword.ProtoReflect.Descriptor instead. func (*UsernamePassword) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{724} + return file_nico_proto_rawDescGZIP(), []int{726} } func (x *UsernamePassword) GetUsername() string { @@ -49664,7 +49786,7 @@ type SessionToken struct { func (x *SessionToken) Reset() { *x = SessionToken{} - mi := &file_nico_proto_msgTypes[725] + mi := &file_nico_proto_msgTypes[727] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49676,7 +49798,7 @@ func (x *SessionToken) String() string { func (*SessionToken) ProtoMessage() {} func (x *SessionToken) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[725] + mi := &file_nico_proto_msgTypes[727] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49689,7 +49811,7 @@ func (x *SessionToken) ProtoReflect() protoreflect.Message { // Deprecated: Use SessionToken.ProtoReflect.Descriptor instead. func (*SessionToken) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{725} + return file_nico_proto_rawDescGZIP(), []int{727} } func (x *SessionToken) GetToken() string { @@ -49712,7 +49834,7 @@ type DpuExtensionServiceCredential struct { func (x *DpuExtensionServiceCredential) Reset() { *x = DpuExtensionServiceCredential{} - mi := &file_nico_proto_msgTypes[726] + mi := &file_nico_proto_msgTypes[728] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49724,7 +49846,7 @@ func (x *DpuExtensionServiceCredential) String() string { func (*DpuExtensionServiceCredential) ProtoMessage() {} func (x *DpuExtensionServiceCredential) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[726] + mi := &file_nico_proto_msgTypes[728] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49737,7 +49859,7 @@ func (x *DpuExtensionServiceCredential) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuExtensionServiceCredential.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceCredential) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{726} + return file_nico_proto_rawDescGZIP(), []int{728} } func (x *DpuExtensionServiceCredential) GetRegistryUrl() string { @@ -49786,7 +49908,7 @@ type DpuExtensionServiceVersionInfo struct { func (x *DpuExtensionServiceVersionInfo) Reset() { *x = DpuExtensionServiceVersionInfo{} - mi := &file_nico_proto_msgTypes[727] + mi := &file_nico_proto_msgTypes[729] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49798,7 +49920,7 @@ func (x *DpuExtensionServiceVersionInfo) String() string { func (*DpuExtensionServiceVersionInfo) ProtoMessage() {} func (x *DpuExtensionServiceVersionInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[727] + mi := &file_nico_proto_msgTypes[729] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49811,7 +49933,7 @@ func (x *DpuExtensionServiceVersionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuExtensionServiceVersionInfo.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceVersionInfo) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{727} + return file_nico_proto_rawDescGZIP(), []int{729} } func (x *DpuExtensionServiceVersionInfo) GetVersion() string { @@ -49872,7 +49994,7 @@ type DpuExtensionService struct { func (x *DpuExtensionService) Reset() { *x = DpuExtensionService{} - mi := &file_nico_proto_msgTypes[728] + mi := &file_nico_proto_msgTypes[730] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49884,7 +50006,7 @@ func (x *DpuExtensionService) String() string { func (*DpuExtensionService) ProtoMessage() {} func (x *DpuExtensionService) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[728] + mi := &file_nico_proto_msgTypes[730] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49897,7 +50019,7 @@ func (x *DpuExtensionService) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuExtensionService.ProtoReflect.Descriptor instead. func (*DpuExtensionService) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{728} + return file_nico_proto_rawDescGZIP(), []int{730} } func (x *DpuExtensionService) GetServiceId() string { @@ -49990,7 +50112,7 @@ type CreateDpuExtensionServiceRequest struct { func (x *CreateDpuExtensionServiceRequest) Reset() { *x = CreateDpuExtensionServiceRequest{} - mi := &file_nico_proto_msgTypes[729] + mi := &file_nico_proto_msgTypes[731] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50002,7 +50124,7 @@ func (x *CreateDpuExtensionServiceRequest) String() string { func (*CreateDpuExtensionServiceRequest) ProtoMessage() {} func (x *CreateDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[729] + mi := &file_nico_proto_msgTypes[731] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50015,7 +50137,7 @@ func (x *CreateDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateDpuExtensionServiceRequest.ProtoReflect.Descriptor instead. func (*CreateDpuExtensionServiceRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{729} + return file_nico_proto_rawDescGZIP(), []int{731} } func (x *CreateDpuExtensionServiceRequest) GetServiceId() string { @@ -50097,7 +50219,7 @@ type UpdateDpuExtensionServiceRequest struct { func (x *UpdateDpuExtensionServiceRequest) Reset() { *x = UpdateDpuExtensionServiceRequest{} - mi := &file_nico_proto_msgTypes[730] + mi := &file_nico_proto_msgTypes[732] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50109,7 +50231,7 @@ func (x *UpdateDpuExtensionServiceRequest) String() string { func (*UpdateDpuExtensionServiceRequest) ProtoMessage() {} func (x *UpdateDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[730] + mi := &file_nico_proto_msgTypes[732] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50122,7 +50244,7 @@ func (x *UpdateDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateDpuExtensionServiceRequest.ProtoReflect.Descriptor instead. func (*UpdateDpuExtensionServiceRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{730} + return file_nico_proto_rawDescGZIP(), []int{732} } func (x *UpdateDpuExtensionServiceRequest) GetServiceId() string { @@ -50187,7 +50309,7 @@ type DeleteDpuExtensionServiceRequest struct { func (x *DeleteDpuExtensionServiceRequest) Reset() { *x = DeleteDpuExtensionServiceRequest{} - mi := &file_nico_proto_msgTypes[731] + mi := &file_nico_proto_msgTypes[733] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50199,7 +50321,7 @@ func (x *DeleteDpuExtensionServiceRequest) String() string { func (*DeleteDpuExtensionServiceRequest) ProtoMessage() {} func (x *DeleteDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[731] + mi := &file_nico_proto_msgTypes[733] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50212,7 +50334,7 @@ func (x *DeleteDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteDpuExtensionServiceRequest.ProtoReflect.Descriptor instead. func (*DeleteDpuExtensionServiceRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{731} + return file_nico_proto_rawDescGZIP(), []int{733} } func (x *DeleteDpuExtensionServiceRequest) GetServiceId() string { @@ -50237,7 +50359,7 @@ type DeleteDpuExtensionServiceResponse struct { func (x *DeleteDpuExtensionServiceResponse) Reset() { *x = DeleteDpuExtensionServiceResponse{} - mi := &file_nico_proto_msgTypes[732] + mi := &file_nico_proto_msgTypes[734] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50249,7 +50371,7 @@ func (x *DeleteDpuExtensionServiceResponse) String() string { func (*DeleteDpuExtensionServiceResponse) ProtoMessage() {} func (x *DeleteDpuExtensionServiceResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[732] + mi := &file_nico_proto_msgTypes[734] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50262,7 +50384,7 @@ func (x *DeleteDpuExtensionServiceResponse) ProtoReflect() protoreflect.Message // Deprecated: Use DeleteDpuExtensionServiceResponse.ProtoReflect.Descriptor instead. func (*DeleteDpuExtensionServiceResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{732} + return file_nico_proto_rawDescGZIP(), []int{734} } type DpuExtensionServiceSearchFilter struct { @@ -50276,7 +50398,7 @@ type DpuExtensionServiceSearchFilter struct { func (x *DpuExtensionServiceSearchFilter) Reset() { *x = DpuExtensionServiceSearchFilter{} - mi := &file_nico_proto_msgTypes[733] + mi := &file_nico_proto_msgTypes[735] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50288,7 +50410,7 @@ func (x *DpuExtensionServiceSearchFilter) String() string { func (*DpuExtensionServiceSearchFilter) ProtoMessage() {} func (x *DpuExtensionServiceSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[733] + mi := &file_nico_proto_msgTypes[735] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50301,7 +50423,7 @@ func (x *DpuExtensionServiceSearchFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuExtensionServiceSearchFilter.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{733} + return file_nico_proto_rawDescGZIP(), []int{735} } func (x *DpuExtensionServiceSearchFilter) GetServiceType() DpuExtensionServiceType { @@ -50334,7 +50456,7 @@ type DpuExtensionServiceIdList struct { func (x *DpuExtensionServiceIdList) Reset() { *x = DpuExtensionServiceIdList{} - mi := &file_nico_proto_msgTypes[734] + mi := &file_nico_proto_msgTypes[736] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50346,7 +50468,7 @@ func (x *DpuExtensionServiceIdList) String() string { func (*DpuExtensionServiceIdList) ProtoMessage() {} func (x *DpuExtensionServiceIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[734] + mi := &file_nico_proto_msgTypes[736] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50359,7 +50481,7 @@ func (x *DpuExtensionServiceIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuExtensionServiceIdList.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceIdList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{734} + return file_nico_proto_rawDescGZIP(), []int{736} } func (x *DpuExtensionServiceIdList) GetServiceIds() []string { @@ -50378,7 +50500,7 @@ type DpuExtensionServicesByIdsRequest struct { func (x *DpuExtensionServicesByIdsRequest) Reset() { *x = DpuExtensionServicesByIdsRequest{} - mi := &file_nico_proto_msgTypes[735] + mi := &file_nico_proto_msgTypes[737] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50390,7 +50512,7 @@ func (x *DpuExtensionServicesByIdsRequest) String() string { func (*DpuExtensionServicesByIdsRequest) ProtoMessage() {} func (x *DpuExtensionServicesByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[735] + mi := &file_nico_proto_msgTypes[737] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50403,7 +50525,7 @@ func (x *DpuExtensionServicesByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuExtensionServicesByIdsRequest.ProtoReflect.Descriptor instead. func (*DpuExtensionServicesByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{735} + return file_nico_proto_rawDescGZIP(), []int{737} } func (x *DpuExtensionServicesByIdsRequest) GetServiceIds() []string { @@ -50422,7 +50544,7 @@ type DpuExtensionServiceList struct { func (x *DpuExtensionServiceList) Reset() { *x = DpuExtensionServiceList{} - mi := &file_nico_proto_msgTypes[736] + mi := &file_nico_proto_msgTypes[738] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50434,7 +50556,7 @@ func (x *DpuExtensionServiceList) String() string { func (*DpuExtensionServiceList) ProtoMessage() {} func (x *DpuExtensionServiceList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[736] + mi := &file_nico_proto_msgTypes[738] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50447,7 +50569,7 @@ func (x *DpuExtensionServiceList) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuExtensionServiceList.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{736} + return file_nico_proto_rawDescGZIP(), []int{738} } func (x *DpuExtensionServiceList) GetServices() []*DpuExtensionService { @@ -50468,7 +50590,7 @@ type GetDpuExtensionServiceVersionsInfoRequest struct { func (x *GetDpuExtensionServiceVersionsInfoRequest) Reset() { *x = GetDpuExtensionServiceVersionsInfoRequest{} - mi := &file_nico_proto_msgTypes[737] + mi := &file_nico_proto_msgTypes[739] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50480,7 +50602,7 @@ func (x *GetDpuExtensionServiceVersionsInfoRequest) String() string { func (*GetDpuExtensionServiceVersionsInfoRequest) ProtoMessage() {} func (x *GetDpuExtensionServiceVersionsInfoRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[737] + mi := &file_nico_proto_msgTypes[739] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50493,7 +50615,7 @@ func (x *GetDpuExtensionServiceVersionsInfoRequest) ProtoReflect() protoreflect. // Deprecated: Use GetDpuExtensionServiceVersionsInfoRequest.ProtoReflect.Descriptor instead. func (*GetDpuExtensionServiceVersionsInfoRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{737} + return file_nico_proto_rawDescGZIP(), []int{739} } func (x *GetDpuExtensionServiceVersionsInfoRequest) GetServiceId() string { @@ -50519,7 +50641,7 @@ type DpuExtensionServiceVersionInfoList struct { func (x *DpuExtensionServiceVersionInfoList) Reset() { *x = DpuExtensionServiceVersionInfoList{} - mi := &file_nico_proto_msgTypes[738] + mi := &file_nico_proto_msgTypes[740] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50531,7 +50653,7 @@ func (x *DpuExtensionServiceVersionInfoList) String() string { func (*DpuExtensionServiceVersionInfoList) ProtoMessage() {} func (x *DpuExtensionServiceVersionInfoList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[738] + mi := &file_nico_proto_msgTypes[740] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50544,7 +50666,7 @@ func (x *DpuExtensionServiceVersionInfoList) ProtoReflect() protoreflect.Message // Deprecated: Use DpuExtensionServiceVersionInfoList.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceVersionInfoList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{738} + return file_nico_proto_rawDescGZIP(), []int{740} } func (x *DpuExtensionServiceVersionInfoList) GetVersionInfos() []*DpuExtensionServiceVersionInfo { @@ -50564,7 +50686,7 @@ type FindInstancesByDpuExtensionServiceRequest struct { func (x *FindInstancesByDpuExtensionServiceRequest) Reset() { *x = FindInstancesByDpuExtensionServiceRequest{} - mi := &file_nico_proto_msgTypes[739] + mi := &file_nico_proto_msgTypes[741] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50576,7 +50698,7 @@ func (x *FindInstancesByDpuExtensionServiceRequest) String() string { func (*FindInstancesByDpuExtensionServiceRequest) ProtoMessage() {} func (x *FindInstancesByDpuExtensionServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[739] + mi := &file_nico_proto_msgTypes[741] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50589,7 +50711,7 @@ func (x *FindInstancesByDpuExtensionServiceRequest) ProtoReflect() protoreflect. // Deprecated: Use FindInstancesByDpuExtensionServiceRequest.ProtoReflect.Descriptor instead. func (*FindInstancesByDpuExtensionServiceRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{739} + return file_nico_proto_rawDescGZIP(), []int{741} } func (x *FindInstancesByDpuExtensionServiceRequest) GetServiceId() string { @@ -50615,7 +50737,7 @@ type FindInstancesByDpuExtensionServiceResponse struct { func (x *FindInstancesByDpuExtensionServiceResponse) Reset() { *x = FindInstancesByDpuExtensionServiceResponse{} - mi := &file_nico_proto_msgTypes[740] + mi := &file_nico_proto_msgTypes[742] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50627,7 +50749,7 @@ func (x *FindInstancesByDpuExtensionServiceResponse) String() string { func (*FindInstancesByDpuExtensionServiceResponse) ProtoMessage() {} func (x *FindInstancesByDpuExtensionServiceResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[740] + mi := &file_nico_proto_msgTypes[742] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50640,7 +50762,7 @@ func (x *FindInstancesByDpuExtensionServiceResponse) ProtoReflect() protoreflect // Deprecated: Use FindInstancesByDpuExtensionServiceResponse.ProtoReflect.Descriptor instead. func (*FindInstancesByDpuExtensionServiceResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{740} + return file_nico_proto_rawDescGZIP(), []int{742} } func (x *FindInstancesByDpuExtensionServiceResponse) GetInstances() []*InstanceDpuExtensionServiceInfo { @@ -50662,7 +50784,7 @@ type InstanceDpuExtensionServiceInfo struct { func (x *InstanceDpuExtensionServiceInfo) Reset() { *x = InstanceDpuExtensionServiceInfo{} - mi := &file_nico_proto_msgTypes[741] + mi := &file_nico_proto_msgTypes[743] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50674,7 +50796,7 @@ func (x *InstanceDpuExtensionServiceInfo) String() string { func (*InstanceDpuExtensionServiceInfo) ProtoMessage() {} func (x *InstanceDpuExtensionServiceInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[741] + mi := &file_nico_proto_msgTypes[743] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50687,7 +50809,7 @@ func (x *InstanceDpuExtensionServiceInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceDpuExtensionServiceInfo.ProtoReflect.Descriptor instead. func (*InstanceDpuExtensionServiceInfo) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{741} + return file_nico_proto_rawDescGZIP(), []int{743} } func (x *InstanceDpuExtensionServiceInfo) GetInstanceId() string { @@ -50728,7 +50850,7 @@ type DpuExtensionServiceObservabilityConfigPrometheus struct { func (x *DpuExtensionServiceObservabilityConfigPrometheus) Reset() { *x = DpuExtensionServiceObservabilityConfigPrometheus{} - mi := &file_nico_proto_msgTypes[742] + mi := &file_nico_proto_msgTypes[744] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50740,7 +50862,7 @@ func (x *DpuExtensionServiceObservabilityConfigPrometheus) String() string { func (*DpuExtensionServiceObservabilityConfigPrometheus) ProtoMessage() {} func (x *DpuExtensionServiceObservabilityConfigPrometheus) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[742] + mi := &file_nico_proto_msgTypes[744] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50753,7 +50875,7 @@ func (x *DpuExtensionServiceObservabilityConfigPrometheus) ProtoReflect() protor // Deprecated: Use DpuExtensionServiceObservabilityConfigPrometheus.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceObservabilityConfigPrometheus) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{742} + return file_nico_proto_rawDescGZIP(), []int{744} } func (x *DpuExtensionServiceObservabilityConfigPrometheus) GetScrapeIntervalSeconds() uint32 { @@ -50779,7 +50901,7 @@ type DpuExtensionServiceObservabilityConfigLogging struct { func (x *DpuExtensionServiceObservabilityConfigLogging) Reset() { *x = DpuExtensionServiceObservabilityConfigLogging{} - mi := &file_nico_proto_msgTypes[743] + mi := &file_nico_proto_msgTypes[745] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50791,7 +50913,7 @@ func (x *DpuExtensionServiceObservabilityConfigLogging) String() string { func (*DpuExtensionServiceObservabilityConfigLogging) ProtoMessage() {} func (x *DpuExtensionServiceObservabilityConfigLogging) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[743] + mi := &file_nico_proto_msgTypes[745] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50804,7 +50926,7 @@ func (x *DpuExtensionServiceObservabilityConfigLogging) ProtoReflect() protorefl // Deprecated: Use DpuExtensionServiceObservabilityConfigLogging.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceObservabilityConfigLogging) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{743} + return file_nico_proto_rawDescGZIP(), []int{745} } func (x *DpuExtensionServiceObservabilityConfigLogging) GetPath() string { @@ -50831,7 +50953,7 @@ type DpuExtensionServiceObservabilityConfig struct { func (x *DpuExtensionServiceObservabilityConfig) Reset() { *x = DpuExtensionServiceObservabilityConfig{} - mi := &file_nico_proto_msgTypes[744] + mi := &file_nico_proto_msgTypes[746] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50843,7 +50965,7 @@ func (x *DpuExtensionServiceObservabilityConfig) String() string { func (*DpuExtensionServiceObservabilityConfig) ProtoMessage() {} func (x *DpuExtensionServiceObservabilityConfig) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[744] + mi := &file_nico_proto_msgTypes[746] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50856,7 +50978,7 @@ func (x *DpuExtensionServiceObservabilityConfig) ProtoReflect() protoreflect.Mes // Deprecated: Use DpuExtensionServiceObservabilityConfig.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceObservabilityConfig) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{744} + return file_nico_proto_rawDescGZIP(), []int{746} } func (x *DpuExtensionServiceObservabilityConfig) GetName() string { @@ -50918,7 +51040,7 @@ type DpuExtensionServiceObservability struct { func (x *DpuExtensionServiceObservability) Reset() { *x = DpuExtensionServiceObservability{} - mi := &file_nico_proto_msgTypes[745] + mi := &file_nico_proto_msgTypes[747] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50930,7 +51052,7 @@ func (x *DpuExtensionServiceObservability) String() string { func (*DpuExtensionServiceObservability) ProtoMessage() {} func (x *DpuExtensionServiceObservability) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[745] + mi := &file_nico_proto_msgTypes[747] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50943,7 +51065,7 @@ func (x *DpuExtensionServiceObservability) ProtoReflect() protoreflect.Message { // Deprecated: Use DpuExtensionServiceObservability.ProtoReflect.Descriptor instead. func (*DpuExtensionServiceObservability) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{745} + return file_nico_proto_rawDescGZIP(), []int{747} } func (x *DpuExtensionServiceObservability) GetConfigs() []*DpuExtensionServiceObservabilityConfig { @@ -50988,7 +51110,7 @@ type ScoutStreamApiBoundMessage struct { func (x *ScoutStreamApiBoundMessage) Reset() { *x = ScoutStreamApiBoundMessage{} - mi := &file_nico_proto_msgTypes[746] + mi := &file_nico_proto_msgTypes[748] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51000,7 +51122,7 @@ func (x *ScoutStreamApiBoundMessage) String() string { func (*ScoutStreamApiBoundMessage) ProtoMessage() {} func (x *ScoutStreamApiBoundMessage) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[746] + mi := &file_nico_proto_msgTypes[748] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51013,7 +51135,7 @@ func (x *ScoutStreamApiBoundMessage) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamApiBoundMessage.ProtoReflect.Descriptor instead. func (*ScoutStreamApiBoundMessage) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{746} + return file_nico_proto_rawDescGZIP(), []int{748} } func (x *ScoutStreamApiBoundMessage) GetFlowUuid() *UUID { @@ -51283,7 +51405,7 @@ type ScoutStreamScoutBoundMessage struct { func (x *ScoutStreamScoutBoundMessage) Reset() { *x = ScoutStreamScoutBoundMessage{} - mi := &file_nico_proto_msgTypes[747] + mi := &file_nico_proto_msgTypes[749] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51295,7 +51417,7 @@ func (x *ScoutStreamScoutBoundMessage) String() string { func (*ScoutStreamScoutBoundMessage) ProtoMessage() {} func (x *ScoutStreamScoutBoundMessage) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[747] + mi := &file_nico_proto_msgTypes[749] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51308,7 +51430,7 @@ func (x *ScoutStreamScoutBoundMessage) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamScoutBoundMessage.ProtoReflect.Descriptor instead. func (*ScoutStreamScoutBoundMessage) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{747} + return file_nico_proto_rawDescGZIP(), []int{749} } func (x *ScoutStreamScoutBoundMessage) GetFlowUuid() *UUID { @@ -51564,7 +51686,7 @@ type ScoutStreamInitRequest struct { func (x *ScoutStreamInitRequest) Reset() { *x = ScoutStreamInitRequest{} - mi := &file_nico_proto_msgTypes[748] + mi := &file_nico_proto_msgTypes[750] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51576,7 +51698,7 @@ func (x *ScoutStreamInitRequest) String() string { func (*ScoutStreamInitRequest) ProtoMessage() {} func (x *ScoutStreamInitRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[748] + mi := &file_nico_proto_msgTypes[750] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51589,7 +51711,7 @@ func (x *ScoutStreamInitRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamInitRequest.ProtoReflect.Descriptor instead. func (*ScoutStreamInitRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{748} + return file_nico_proto_rawDescGZIP(), []int{750} } func (x *ScoutStreamInitRequest) GetMachineId() *MachineId { @@ -51609,7 +51731,7 @@ type ScoutStreamShowConnectionsRequest struct { func (x *ScoutStreamShowConnectionsRequest) Reset() { *x = ScoutStreamShowConnectionsRequest{} - mi := &file_nico_proto_msgTypes[749] + mi := &file_nico_proto_msgTypes[751] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51621,7 +51743,7 @@ func (x *ScoutStreamShowConnectionsRequest) String() string { func (*ScoutStreamShowConnectionsRequest) ProtoMessage() {} func (x *ScoutStreamShowConnectionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[749] + mi := &file_nico_proto_msgTypes[751] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51634,7 +51756,7 @@ func (x *ScoutStreamShowConnectionsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use ScoutStreamShowConnectionsRequest.ProtoReflect.Descriptor instead. func (*ScoutStreamShowConnectionsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{749} + return file_nico_proto_rawDescGZIP(), []int{751} } // ShowConnectionsResponse is the response containing active @@ -51648,7 +51770,7 @@ type ScoutStreamShowConnectionsResponse struct { func (x *ScoutStreamShowConnectionsResponse) Reset() { *x = ScoutStreamShowConnectionsResponse{} - mi := &file_nico_proto_msgTypes[750] + mi := &file_nico_proto_msgTypes[752] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51660,7 +51782,7 @@ func (x *ScoutStreamShowConnectionsResponse) String() string { func (*ScoutStreamShowConnectionsResponse) ProtoMessage() {} func (x *ScoutStreamShowConnectionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[750] + mi := &file_nico_proto_msgTypes[752] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51673,7 +51795,7 @@ func (x *ScoutStreamShowConnectionsResponse) ProtoReflect() protoreflect.Message // Deprecated: Use ScoutStreamShowConnectionsResponse.ProtoReflect.Descriptor instead. func (*ScoutStreamShowConnectionsResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{750} + return file_nico_proto_rawDescGZIP(), []int{752} } func (x *ScoutStreamShowConnectionsResponse) GetScoutStreamConnections() []*ScoutStreamConnectionInfo { @@ -51694,7 +51816,7 @@ type ScoutStreamDisconnectRequest struct { func (x *ScoutStreamDisconnectRequest) Reset() { *x = ScoutStreamDisconnectRequest{} - mi := &file_nico_proto_msgTypes[751] + mi := &file_nico_proto_msgTypes[753] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51706,7 +51828,7 @@ func (x *ScoutStreamDisconnectRequest) String() string { func (*ScoutStreamDisconnectRequest) ProtoMessage() {} func (x *ScoutStreamDisconnectRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[751] + mi := &file_nico_proto_msgTypes[753] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51719,7 +51841,7 @@ func (x *ScoutStreamDisconnectRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamDisconnectRequest.ProtoReflect.Descriptor instead. func (*ScoutStreamDisconnectRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{751} + return file_nico_proto_rawDescGZIP(), []int{753} } func (x *ScoutStreamDisconnectRequest) GetMachineId() *MachineId { @@ -51741,7 +51863,7 @@ type ScoutStreamDisconnectResponse struct { func (x *ScoutStreamDisconnectResponse) Reset() { *x = ScoutStreamDisconnectResponse{} - mi := &file_nico_proto_msgTypes[752] + mi := &file_nico_proto_msgTypes[754] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51753,7 +51875,7 @@ func (x *ScoutStreamDisconnectResponse) String() string { func (*ScoutStreamDisconnectResponse) ProtoMessage() {} func (x *ScoutStreamDisconnectResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[752] + mi := &file_nico_proto_msgTypes[754] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51766,7 +51888,7 @@ func (x *ScoutStreamDisconnectResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamDisconnectResponse.ProtoReflect.Descriptor instead. func (*ScoutStreamDisconnectResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{752} + return file_nico_proto_rawDescGZIP(), []int{754} } func (x *ScoutStreamDisconnectResponse) GetMachineId() *MachineId { @@ -51795,7 +51917,7 @@ type ScoutStreamAdminPingRequest struct { func (x *ScoutStreamAdminPingRequest) Reset() { *x = ScoutStreamAdminPingRequest{} - mi := &file_nico_proto_msgTypes[753] + mi := &file_nico_proto_msgTypes[755] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51807,7 +51929,7 @@ func (x *ScoutStreamAdminPingRequest) String() string { func (*ScoutStreamAdminPingRequest) ProtoMessage() {} func (x *ScoutStreamAdminPingRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[753] + mi := &file_nico_proto_msgTypes[755] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51820,7 +51942,7 @@ func (x *ScoutStreamAdminPingRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamAdminPingRequest.ProtoReflect.Descriptor instead. func (*ScoutStreamAdminPingRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{753} + return file_nico_proto_rawDescGZIP(), []int{755} } func (x *ScoutStreamAdminPingRequest) GetMachineId() *MachineId { @@ -51841,7 +51963,7 @@ type ScoutStreamAdminPingResponse struct { func (x *ScoutStreamAdminPingResponse) Reset() { *x = ScoutStreamAdminPingResponse{} - mi := &file_nico_proto_msgTypes[754] + mi := &file_nico_proto_msgTypes[756] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51853,7 +51975,7 @@ func (x *ScoutStreamAdminPingResponse) String() string { func (*ScoutStreamAdminPingResponse) ProtoMessage() {} func (x *ScoutStreamAdminPingResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[754] + mi := &file_nico_proto_msgTypes[756] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51866,7 +51988,7 @@ func (x *ScoutStreamAdminPingResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamAdminPingResponse.ProtoReflect.Descriptor instead. func (*ScoutStreamAdminPingResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{754} + return file_nico_proto_rawDescGZIP(), []int{756} } func (x *ScoutStreamAdminPingResponse) GetPong() string { @@ -51887,7 +52009,7 @@ type ScoutStreamAgentPingRequest struct { func (x *ScoutStreamAgentPingRequest) Reset() { *x = ScoutStreamAgentPingRequest{} - mi := &file_nico_proto_msgTypes[755] + mi := &file_nico_proto_msgTypes[757] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51899,7 +52021,7 @@ func (x *ScoutStreamAgentPingRequest) String() string { func (*ScoutStreamAgentPingRequest) ProtoMessage() {} func (x *ScoutStreamAgentPingRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[755] + mi := &file_nico_proto_msgTypes[757] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51912,7 +52034,7 @@ func (x *ScoutStreamAgentPingRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamAgentPingRequest.ProtoReflect.Descriptor instead. func (*ScoutStreamAgentPingRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{755} + return file_nico_proto_rawDescGZIP(), []int{757} } // ScoutStreamAgentPingResponse is hopefully a response from @@ -51930,7 +52052,7 @@ type ScoutStreamAgentPingResponse struct { func (x *ScoutStreamAgentPingResponse) Reset() { *x = ScoutStreamAgentPingResponse{} - mi := &file_nico_proto_msgTypes[756] + mi := &file_nico_proto_msgTypes[758] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51942,7 +52064,7 @@ func (x *ScoutStreamAgentPingResponse) String() string { func (*ScoutStreamAgentPingResponse) ProtoMessage() {} func (x *ScoutStreamAgentPingResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[756] + mi := &file_nico_proto_msgTypes[758] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51955,7 +52077,7 @@ func (x *ScoutStreamAgentPingResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamAgentPingResponse.ProtoReflect.Descriptor instead. func (*ScoutStreamAgentPingResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{756} + return file_nico_proto_rawDescGZIP(), []int{758} } func (x *ScoutStreamAgentPingResponse) GetReply() isScoutStreamAgentPingResponse_Reply { @@ -52016,7 +52138,7 @@ type ScoutStreamConnectionInfo struct { func (x *ScoutStreamConnectionInfo) Reset() { *x = ScoutStreamConnectionInfo{} - mi := &file_nico_proto_msgTypes[757] + mi := &file_nico_proto_msgTypes[759] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52028,7 +52150,7 @@ func (x *ScoutStreamConnectionInfo) String() string { func (*ScoutStreamConnectionInfo) ProtoMessage() {} func (x *ScoutStreamConnectionInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[757] + mi := &file_nico_proto_msgTypes[759] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52041,7 +52163,7 @@ func (x *ScoutStreamConnectionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamConnectionInfo.ProtoReflect.Descriptor instead. func (*ScoutStreamConnectionInfo) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{757} + return file_nico_proto_rawDescGZIP(), []int{759} } func (x *ScoutStreamConnectionInfo) GetMachineId() *MachineId { @@ -52078,7 +52200,7 @@ type ScoutStreamError struct { func (x *ScoutStreamError) Reset() { *x = ScoutStreamError{} - mi := &file_nico_proto_msgTypes[758] + mi := &file_nico_proto_msgTypes[760] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52090,7 +52212,7 @@ func (x *ScoutStreamError) String() string { func (*ScoutStreamError) ProtoMessage() {} func (x *ScoutStreamError) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[758] + mi := &file_nico_proto_msgTypes[760] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52103,7 +52225,7 @@ func (x *ScoutStreamError) ProtoReflect() protoreflect.Message { // Deprecated: Use ScoutStreamError.ProtoReflect.Descriptor instead. func (*ScoutStreamError) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{758} + return file_nico_proto_rawDescGZIP(), []int{760} } func (x *ScoutStreamError) GetStatus() ScoutStreamErrorStatus { @@ -52133,7 +52255,7 @@ type PrefixFilterPolicyEntry struct { func (x *PrefixFilterPolicyEntry) Reset() { *x = PrefixFilterPolicyEntry{} - mi := &file_nico_proto_msgTypes[759] + mi := &file_nico_proto_msgTypes[761] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52145,7 +52267,7 @@ func (x *PrefixFilterPolicyEntry) String() string { func (*PrefixFilterPolicyEntry) ProtoMessage() {} func (x *PrefixFilterPolicyEntry) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[759] + mi := &file_nico_proto_msgTypes[761] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52158,7 +52280,7 @@ func (x *PrefixFilterPolicyEntry) ProtoReflect() protoreflect.Message { // Deprecated: Use PrefixFilterPolicyEntry.ProtoReflect.Descriptor instead. func (*PrefixFilterPolicyEntry) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{759} + return file_nico_proto_rawDescGZIP(), []int{761} } func (x *PrefixFilterPolicyEntry) GetPrefix() string { @@ -52193,7 +52315,7 @@ type RoutingProfile struct { func (x *RoutingProfile) Reset() { *x = RoutingProfile{} - mi := &file_nico_proto_msgTypes[760] + mi := &file_nico_proto_msgTypes[762] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52205,7 +52327,7 @@ func (x *RoutingProfile) String() string { func (*RoutingProfile) ProtoMessage() {} func (x *RoutingProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[760] + mi := &file_nico_proto_msgTypes[762] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52218,7 +52340,7 @@ func (x *RoutingProfile) ProtoReflect() protoreflect.Message { // Deprecated: Use RoutingProfile.ProtoReflect.Descriptor instead. func (*RoutingProfile) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{760} + return file_nico_proto_rawDescGZIP(), []int{762} } func (x *RoutingProfile) GetRouteTargetImports() []*RouteTarget { @@ -52283,7 +52405,7 @@ type DomainLegacy struct { func (x *DomainLegacy) Reset() { *x = DomainLegacy{} - mi := &file_nico_proto_msgTypes[761] + mi := &file_nico_proto_msgTypes[763] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52295,7 +52417,7 @@ func (x *DomainLegacy) String() string { func (*DomainLegacy) ProtoMessage() {} func (x *DomainLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[761] + mi := &file_nico_proto_msgTypes[763] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52308,7 +52430,7 @@ func (x *DomainLegacy) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainLegacy.ProtoReflect.Descriptor instead. func (*DomainLegacy) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{761} + return file_nico_proto_rawDescGZIP(), []int{763} } func (x *DomainLegacy) GetId() *DomainId { @@ -52355,7 +52477,7 @@ type DomainListLegacy struct { func (x *DomainListLegacy) Reset() { *x = DomainListLegacy{} - mi := &file_nico_proto_msgTypes[762] + mi := &file_nico_proto_msgTypes[764] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52367,7 +52489,7 @@ func (x *DomainListLegacy) String() string { func (*DomainListLegacy) ProtoMessage() {} func (x *DomainListLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[762] + mi := &file_nico_proto_msgTypes[764] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52380,7 +52502,7 @@ func (x *DomainListLegacy) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainListLegacy.ProtoReflect.Descriptor instead. func (*DomainListLegacy) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{762} + return file_nico_proto_rawDescGZIP(), []int{764} } func (x *DomainListLegacy) GetDomains() []*DomainLegacy { @@ -52399,7 +52521,7 @@ type DomainDeletionLegacy struct { func (x *DomainDeletionLegacy) Reset() { *x = DomainDeletionLegacy{} - mi := &file_nico_proto_msgTypes[763] + mi := &file_nico_proto_msgTypes[765] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52411,7 +52533,7 @@ func (x *DomainDeletionLegacy) String() string { func (*DomainDeletionLegacy) ProtoMessage() {} func (x *DomainDeletionLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[763] + mi := &file_nico_proto_msgTypes[765] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52424,7 +52546,7 @@ func (x *DomainDeletionLegacy) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainDeletionLegacy.ProtoReflect.Descriptor instead. func (*DomainDeletionLegacy) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{763} + return file_nico_proto_rawDescGZIP(), []int{765} } func (x *DomainDeletionLegacy) GetId() *DomainId { @@ -52442,7 +52564,7 @@ type DomainDeletionResultLegacy struct { func (x *DomainDeletionResultLegacy) Reset() { *x = DomainDeletionResultLegacy{} - mi := &file_nico_proto_msgTypes[764] + mi := &file_nico_proto_msgTypes[766] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52454,7 +52576,7 @@ func (x *DomainDeletionResultLegacy) String() string { func (*DomainDeletionResultLegacy) ProtoMessage() {} func (x *DomainDeletionResultLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[764] + mi := &file_nico_proto_msgTypes[766] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52467,7 +52589,7 @@ func (x *DomainDeletionResultLegacy) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainDeletionResultLegacy.ProtoReflect.Descriptor instead. func (*DomainDeletionResultLegacy) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{764} + return file_nico_proto_rawDescGZIP(), []int{766} } type DomainSearchQueryLegacy struct { @@ -52480,7 +52602,7 @@ type DomainSearchQueryLegacy struct { func (x *DomainSearchQueryLegacy) Reset() { *x = DomainSearchQueryLegacy{} - mi := &file_nico_proto_msgTypes[765] + mi := &file_nico_proto_msgTypes[767] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52492,7 +52614,7 @@ func (x *DomainSearchQueryLegacy) String() string { func (*DomainSearchQueryLegacy) ProtoMessage() {} func (x *DomainSearchQueryLegacy) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[765] + mi := &file_nico_proto_msgTypes[767] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52505,7 +52627,7 @@ func (x *DomainSearchQueryLegacy) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainSearchQueryLegacy.ProtoReflect.Descriptor instead. func (*DomainSearchQueryLegacy) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{765} + return file_nico_proto_rawDescGZIP(), []int{767} } func (x *DomainSearchQueryLegacy) GetId() *DomainId { @@ -52536,7 +52658,7 @@ type PxeDomain struct { func (x *PxeDomain) Reset() { *x = PxeDomain{} - mi := &file_nico_proto_msgTypes[766] + mi := &file_nico_proto_msgTypes[768] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52548,7 +52670,7 @@ func (x *PxeDomain) String() string { func (*PxeDomain) ProtoMessage() {} func (x *PxeDomain) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[766] + mi := &file_nico_proto_msgTypes[768] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52561,7 +52683,7 @@ func (x *PxeDomain) ProtoReflect() protoreflect.Message { // Deprecated: Use PxeDomain.ProtoReflect.Descriptor instead. func (*PxeDomain) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{766} + return file_nico_proto_rawDescGZIP(), []int{768} } func (x *PxeDomain) GetDomain() isPxeDomain_Domain { @@ -52599,7 +52721,7 @@ type MachinePositionQuery struct { func (x *MachinePositionQuery) Reset() { *x = MachinePositionQuery{} - mi := &file_nico_proto_msgTypes[767] + mi := &file_nico_proto_msgTypes[769] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52611,7 +52733,7 @@ func (x *MachinePositionQuery) String() string { func (*MachinePositionQuery) ProtoMessage() {} func (x *MachinePositionQuery) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[767] + mi := &file_nico_proto_msgTypes[769] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52624,7 +52746,7 @@ func (x *MachinePositionQuery) ProtoReflect() protoreflect.Message { // Deprecated: Use MachinePositionQuery.ProtoReflect.Descriptor instead. func (*MachinePositionQuery) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{767} + return file_nico_proto_rawDescGZIP(), []int{769} } func (x *MachinePositionQuery) GetMachineIds() []*MachineId { @@ -52643,7 +52765,7 @@ type MachinePositionInfoList struct { func (x *MachinePositionInfoList) Reset() { *x = MachinePositionInfoList{} - mi := &file_nico_proto_msgTypes[768] + mi := &file_nico_proto_msgTypes[770] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52655,7 +52777,7 @@ func (x *MachinePositionInfoList) String() string { func (*MachinePositionInfoList) ProtoMessage() {} func (x *MachinePositionInfoList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[768] + mi := &file_nico_proto_msgTypes[770] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52668,7 +52790,7 @@ func (x *MachinePositionInfoList) ProtoReflect() protoreflect.Message { // Deprecated: Use MachinePositionInfoList.ProtoReflect.Descriptor instead. func (*MachinePositionInfoList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{768} + return file_nico_proto_rawDescGZIP(), []int{770} } func (x *MachinePositionInfoList) GetMachinePositionInfo() []*MachinePositionInfo { @@ -52693,7 +52815,7 @@ type MachinePositionInfo struct { func (x *MachinePositionInfo) Reset() { *x = MachinePositionInfo{} - mi := &file_nico_proto_msgTypes[769] + mi := &file_nico_proto_msgTypes[771] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52705,7 +52827,7 @@ func (x *MachinePositionInfo) String() string { func (*MachinePositionInfo) ProtoMessage() {} func (x *MachinePositionInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[769] + mi := &file_nico_proto_msgTypes[771] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52718,7 +52840,7 @@ func (x *MachinePositionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use MachinePositionInfo.ProtoReflect.Descriptor instead. func (*MachinePositionInfo) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{769} + return file_nico_proto_rawDescGZIP(), []int{771} } func (x *MachinePositionInfo) GetMachineId() *MachineId { @@ -52780,7 +52902,7 @@ type ModifyDPFStateRequest struct { func (x *ModifyDPFStateRequest) Reset() { *x = ModifyDPFStateRequest{} - mi := &file_nico_proto_msgTypes[770] + mi := &file_nico_proto_msgTypes[772] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52792,7 +52914,7 @@ func (x *ModifyDPFStateRequest) String() string { func (*ModifyDPFStateRequest) ProtoMessage() {} func (x *ModifyDPFStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[770] + mi := &file_nico_proto_msgTypes[772] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52805,7 +52927,7 @@ func (x *ModifyDPFStateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ModifyDPFStateRequest.ProtoReflect.Descriptor instead. func (*ModifyDPFStateRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{770} + return file_nico_proto_rawDescGZIP(), []int{772} } func (x *ModifyDPFStateRequest) GetMachineId() *MachineId { @@ -52831,7 +52953,7 @@ type DPFStateResponse struct { func (x *DPFStateResponse) Reset() { *x = DPFStateResponse{} - mi := &file_nico_proto_msgTypes[771] + mi := &file_nico_proto_msgTypes[773] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52843,7 +52965,7 @@ func (x *DPFStateResponse) String() string { func (*DPFStateResponse) ProtoMessage() {} func (x *DPFStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[771] + mi := &file_nico_proto_msgTypes[773] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52856,7 +52978,7 @@ func (x *DPFStateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DPFStateResponse.ProtoReflect.Descriptor instead. func (*DPFStateResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{771} + return file_nico_proto_rawDescGZIP(), []int{773} } func (x *DPFStateResponse) GetDpfStates() []*DPFStateResponse_DPFState { @@ -52875,7 +52997,7 @@ type GetDPFStateRequest struct { func (x *GetDPFStateRequest) Reset() { *x = GetDPFStateRequest{} - mi := &file_nico_proto_msgTypes[772] + mi := &file_nico_proto_msgTypes[774] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52887,7 +53009,7 @@ func (x *GetDPFStateRequest) String() string { func (*GetDPFStateRequest) ProtoMessage() {} func (x *GetDPFStateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[772] + mi := &file_nico_proto_msgTypes[774] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52900,7 +53022,7 @@ func (x *GetDPFStateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetDPFStateRequest.ProtoReflect.Descriptor instead. func (*GetDPFStateRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{772} + return file_nico_proto_rawDescGZIP(), []int{774} } func (x *GetDPFStateRequest) GetMachineIds() []*MachineId { @@ -52919,7 +53041,7 @@ type GetDPFHostSnapshotRequest struct { func (x *GetDPFHostSnapshotRequest) Reset() { *x = GetDPFHostSnapshotRequest{} - mi := &file_nico_proto_msgTypes[773] + mi := &file_nico_proto_msgTypes[775] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52931,7 +53053,7 @@ func (x *GetDPFHostSnapshotRequest) String() string { func (*GetDPFHostSnapshotRequest) ProtoMessage() {} func (x *GetDPFHostSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[773] + mi := &file_nico_proto_msgTypes[775] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52944,7 +53066,7 @@ func (x *GetDPFHostSnapshotRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetDPFHostSnapshotRequest.ProtoReflect.Descriptor instead. func (*GetDPFHostSnapshotRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{773} + return file_nico_proto_rawDescGZIP(), []int{775} } func (x *GetDPFHostSnapshotRequest) GetHostMachineId() *MachineId { @@ -52966,7 +53088,7 @@ type DPFHostSnapshotResponse struct { func (x *DPFHostSnapshotResponse) Reset() { *x = DPFHostSnapshotResponse{} - mi := &file_nico_proto_msgTypes[774] + mi := &file_nico_proto_msgTypes[776] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52978,7 +53100,7 @@ func (x *DPFHostSnapshotResponse) String() string { func (*DPFHostSnapshotResponse) ProtoMessage() {} func (x *DPFHostSnapshotResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[774] + mi := &file_nico_proto_msgTypes[776] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52991,7 +53113,7 @@ func (x *DPFHostSnapshotResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DPFHostSnapshotResponse.ProtoReflect.Descriptor instead. func (*DPFHostSnapshotResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{774} + return file_nico_proto_rawDescGZIP(), []int{776} } func (x *DPFHostSnapshotResponse) GetJsonPayload() string { @@ -53009,7 +53131,7 @@ type GetDPFServiceVersionsRequest struct { func (x *GetDPFServiceVersionsRequest) Reset() { *x = GetDPFServiceVersionsRequest{} - mi := &file_nico_proto_msgTypes[775] + mi := &file_nico_proto_msgTypes[777] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53021,7 +53143,7 @@ func (x *GetDPFServiceVersionsRequest) String() string { func (*GetDPFServiceVersionsRequest) ProtoMessage() {} func (x *GetDPFServiceVersionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[775] + mi := &file_nico_proto_msgTypes[777] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53034,7 +53156,7 @@ func (x *GetDPFServiceVersionsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetDPFServiceVersionsRequest.ProtoReflect.Descriptor instead. func (*GetDPFServiceVersionsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{775} + return file_nico_proto_rawDescGZIP(), []int{777} } type DPFServiceVersion struct { @@ -53058,7 +53180,7 @@ type DPFServiceVersion struct { func (x *DPFServiceVersion) Reset() { *x = DPFServiceVersion{} - mi := &file_nico_proto_msgTypes[776] + mi := &file_nico_proto_msgTypes[778] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53070,7 +53192,7 @@ func (x *DPFServiceVersion) String() string { func (*DPFServiceVersion) ProtoMessage() {} func (x *DPFServiceVersion) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[776] + mi := &file_nico_proto_msgTypes[778] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53083,7 +53205,7 @@ func (x *DPFServiceVersion) ProtoReflect() protoreflect.Message { // Deprecated: Use DPFServiceVersion.ProtoReflect.Descriptor instead. func (*DPFServiceVersion) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{776} + return file_nico_proto_rawDescGZIP(), []int{778} } func (x *DPFServiceVersion) GetService() string { @@ -53130,7 +53252,7 @@ type DPFServiceVersionsResponse struct { func (x *DPFServiceVersionsResponse) Reset() { *x = DPFServiceVersionsResponse{} - mi := &file_nico_proto_msgTypes[777] + mi := &file_nico_proto_msgTypes[779] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53142,7 +53264,7 @@ func (x *DPFServiceVersionsResponse) String() string { func (*DPFServiceVersionsResponse) ProtoMessage() {} func (x *DPFServiceVersionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[777] + mi := &file_nico_proto_msgTypes[779] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53155,7 +53277,7 @@ func (x *DPFServiceVersionsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DPFServiceVersionsResponse.ProtoReflect.Descriptor instead. func (*DPFServiceVersionsResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{777} + return file_nico_proto_rawDescGZIP(), []int{779} } func (x *DPFServiceVersionsResponse) GetServices() []*DPFServiceVersion { @@ -53176,7 +53298,7 @@ type ComponentResult struct { func (x *ComponentResult) Reset() { *x = ComponentResult{} - mi := &file_nico_proto_msgTypes[778] + mi := &file_nico_proto_msgTypes[780] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53188,7 +53310,7 @@ func (x *ComponentResult) String() string { func (*ComponentResult) ProtoMessage() {} func (x *ComponentResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[778] + mi := &file_nico_proto_msgTypes[780] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53201,7 +53323,7 @@ func (x *ComponentResult) ProtoReflect() protoreflect.Message { // Deprecated: Use ComponentResult.ProtoReflect.Descriptor instead. func (*ComponentResult) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{778} + return file_nico_proto_rawDescGZIP(), []int{780} } func (x *ComponentResult) GetComponentId() string { @@ -53234,7 +53356,7 @@ type SwitchIdList struct { func (x *SwitchIdList) Reset() { *x = SwitchIdList{} - mi := &file_nico_proto_msgTypes[779] + mi := &file_nico_proto_msgTypes[781] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53246,7 +53368,7 @@ func (x *SwitchIdList) String() string { func (*SwitchIdList) ProtoMessage() {} func (x *SwitchIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[779] + mi := &file_nico_proto_msgTypes[781] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53259,7 +53381,7 @@ func (x *SwitchIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use SwitchIdList.ProtoReflect.Descriptor instead. func (*SwitchIdList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{779} + return file_nico_proto_rawDescGZIP(), []int{781} } func (x *SwitchIdList) GetIds() []*SwitchId { @@ -53278,7 +53400,7 @@ type PowerShelfIdList struct { func (x *PowerShelfIdList) Reset() { *x = PowerShelfIdList{} - mi := &file_nico_proto_msgTypes[780] + mi := &file_nico_proto_msgTypes[782] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53290,7 +53412,7 @@ func (x *PowerShelfIdList) String() string { func (*PowerShelfIdList) ProtoMessage() {} func (x *PowerShelfIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[780] + mi := &file_nico_proto_msgTypes[782] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53303,7 +53425,7 @@ func (x *PowerShelfIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use PowerShelfIdList.ProtoReflect.Descriptor instead. func (*PowerShelfIdList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{780} + return file_nico_proto_rawDescGZIP(), []int{782} } func (x *PowerShelfIdList) GetIds() []*PowerShelfId { @@ -53327,7 +53449,7 @@ type GetComponentInventoryRequest struct { func (x *GetComponentInventoryRequest) Reset() { *x = GetComponentInventoryRequest{} - mi := &file_nico_proto_msgTypes[781] + mi := &file_nico_proto_msgTypes[783] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53339,7 +53461,7 @@ func (x *GetComponentInventoryRequest) String() string { func (*GetComponentInventoryRequest) ProtoMessage() {} func (x *GetComponentInventoryRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[781] + mi := &file_nico_proto_msgTypes[783] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53352,7 +53474,7 @@ func (x *GetComponentInventoryRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetComponentInventoryRequest.ProtoReflect.Descriptor instead. func (*GetComponentInventoryRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{781} + return file_nico_proto_rawDescGZIP(), []int{783} } func (x *GetComponentInventoryRequest) GetTarget() isGetComponentInventoryRequest_Target { @@ -53421,7 +53543,7 @@ type ComponentInventoryEntry struct { func (x *ComponentInventoryEntry) Reset() { *x = ComponentInventoryEntry{} - mi := &file_nico_proto_msgTypes[782] + mi := &file_nico_proto_msgTypes[784] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53433,7 +53555,7 @@ func (x *ComponentInventoryEntry) String() string { func (*ComponentInventoryEntry) ProtoMessage() {} func (x *ComponentInventoryEntry) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[782] + mi := &file_nico_proto_msgTypes[784] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53446,7 +53568,7 @@ func (x *ComponentInventoryEntry) ProtoReflect() protoreflect.Message { // Deprecated: Use ComponentInventoryEntry.ProtoReflect.Descriptor instead. func (*ComponentInventoryEntry) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{782} + return file_nico_proto_rawDescGZIP(), []int{784} } func (x *ComponentInventoryEntry) GetResult() *ComponentResult { @@ -53472,7 +53594,7 @@ type GetComponentInventoryResponse struct { func (x *GetComponentInventoryResponse) Reset() { *x = GetComponentInventoryResponse{} - mi := &file_nico_proto_msgTypes[783] + mi := &file_nico_proto_msgTypes[785] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53484,7 +53606,7 @@ func (x *GetComponentInventoryResponse) String() string { func (*GetComponentInventoryResponse) ProtoMessage() {} func (x *GetComponentInventoryResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[783] + mi := &file_nico_proto_msgTypes[785] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53497,7 +53619,7 @@ func (x *GetComponentInventoryResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetComponentInventoryResponse.ProtoReflect.Descriptor instead. func (*GetComponentInventoryResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{783} + return file_nico_proto_rawDescGZIP(), []int{785} } func (x *GetComponentInventoryResponse) GetEntries() []*ComponentInventoryEntry { @@ -53525,7 +53647,7 @@ type ComponentPowerControlRequest struct { func (x *ComponentPowerControlRequest) Reset() { *x = ComponentPowerControlRequest{} - mi := &file_nico_proto_msgTypes[784] + mi := &file_nico_proto_msgTypes[786] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53537,7 +53659,7 @@ func (x *ComponentPowerControlRequest) String() string { func (*ComponentPowerControlRequest) ProtoMessage() {} func (x *ComponentPowerControlRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[784] + mi := &file_nico_proto_msgTypes[786] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53550,7 +53672,7 @@ func (x *ComponentPowerControlRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ComponentPowerControlRequest.ProtoReflect.Descriptor instead. func (*ComponentPowerControlRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{784} + return file_nico_proto_rawDescGZIP(), []int{786} } func (x *ComponentPowerControlRequest) GetTarget() isComponentPowerControlRequest_Target { @@ -53632,7 +53754,7 @@ type ComponentPowerControlResponse struct { func (x *ComponentPowerControlResponse) Reset() { *x = ComponentPowerControlResponse{} - mi := &file_nico_proto_msgTypes[785] + mi := &file_nico_proto_msgTypes[787] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53644,7 +53766,7 @@ func (x *ComponentPowerControlResponse) String() string { func (*ComponentPowerControlResponse) ProtoMessage() {} func (x *ComponentPowerControlResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[785] + mi := &file_nico_proto_msgTypes[787] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53657,7 +53779,7 @@ func (x *ComponentPowerControlResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ComponentPowerControlResponse.ProtoReflect.Descriptor instead. func (*ComponentPowerControlResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{785} + return file_nico_proto_rawDescGZIP(), []int{787} } func (x *ComponentPowerControlResponse) GetResults() []*ComponentResult { @@ -53679,7 +53801,7 @@ type FirmwareUpdateStatus struct { func (x *FirmwareUpdateStatus) Reset() { *x = FirmwareUpdateStatus{} - mi := &file_nico_proto_msgTypes[786] + mi := &file_nico_proto_msgTypes[788] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53691,7 +53813,7 @@ func (x *FirmwareUpdateStatus) String() string { func (*FirmwareUpdateStatus) ProtoMessage() {} func (x *FirmwareUpdateStatus) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[786] + mi := &file_nico_proto_msgTypes[788] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53704,7 +53826,7 @@ func (x *FirmwareUpdateStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use FirmwareUpdateStatus.ProtoReflect.Descriptor instead. func (*FirmwareUpdateStatus) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{786} + return file_nico_proto_rawDescGZIP(), []int{788} } func (x *FirmwareUpdateStatus) GetResult() *ComponentResult { @@ -53745,7 +53867,7 @@ type UpdateComputeTrayFirmwareTarget struct { func (x *UpdateComputeTrayFirmwareTarget) Reset() { *x = UpdateComputeTrayFirmwareTarget{} - mi := &file_nico_proto_msgTypes[787] + mi := &file_nico_proto_msgTypes[789] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53757,7 +53879,7 @@ func (x *UpdateComputeTrayFirmwareTarget) String() string { func (*UpdateComputeTrayFirmwareTarget) ProtoMessage() {} func (x *UpdateComputeTrayFirmwareTarget) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[787] + mi := &file_nico_proto_msgTypes[789] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53770,7 +53892,7 @@ func (x *UpdateComputeTrayFirmwareTarget) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateComputeTrayFirmwareTarget.ProtoReflect.Descriptor instead. func (*UpdateComputeTrayFirmwareTarget) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{787} + return file_nico_proto_rawDescGZIP(), []int{789} } func (x *UpdateComputeTrayFirmwareTarget) GetMachineIds() *MachineIdList { @@ -53797,7 +53919,7 @@ type UpdateSwitchFirmwareTarget struct { func (x *UpdateSwitchFirmwareTarget) Reset() { *x = UpdateSwitchFirmwareTarget{} - mi := &file_nico_proto_msgTypes[788] + mi := &file_nico_proto_msgTypes[790] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53809,7 +53931,7 @@ func (x *UpdateSwitchFirmwareTarget) String() string { func (*UpdateSwitchFirmwareTarget) ProtoMessage() {} func (x *UpdateSwitchFirmwareTarget) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[788] + mi := &file_nico_proto_msgTypes[790] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53822,7 +53944,7 @@ func (x *UpdateSwitchFirmwareTarget) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateSwitchFirmwareTarget.ProtoReflect.Descriptor instead. func (*UpdateSwitchFirmwareTarget) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{788} + return file_nico_proto_rawDescGZIP(), []int{790} } func (x *UpdateSwitchFirmwareTarget) GetSwitchIds() *SwitchIdList { @@ -53849,7 +53971,7 @@ type UpdatePowerShelfFirmwareTarget struct { func (x *UpdatePowerShelfFirmwareTarget) Reset() { *x = UpdatePowerShelfFirmwareTarget{} - mi := &file_nico_proto_msgTypes[789] + mi := &file_nico_proto_msgTypes[791] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53861,7 +53983,7 @@ func (x *UpdatePowerShelfFirmwareTarget) String() string { func (*UpdatePowerShelfFirmwareTarget) ProtoMessage() {} func (x *UpdatePowerShelfFirmwareTarget) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[789] + mi := &file_nico_proto_msgTypes[791] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53874,7 +53996,7 @@ func (x *UpdatePowerShelfFirmwareTarget) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdatePowerShelfFirmwareTarget.ProtoReflect.Descriptor instead. func (*UpdatePowerShelfFirmwareTarget) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{789} + return file_nico_proto_rawDescGZIP(), []int{791} } func (x *UpdatePowerShelfFirmwareTarget) GetPowerShelfIds() *PowerShelfIdList { @@ -53902,7 +54024,7 @@ type UpdateFirmwareObjectTarget struct { func (x *UpdateFirmwareObjectTarget) Reset() { *x = UpdateFirmwareObjectTarget{} - mi := &file_nico_proto_msgTypes[790] + mi := &file_nico_proto_msgTypes[792] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53914,7 +54036,7 @@ func (x *UpdateFirmwareObjectTarget) String() string { func (*UpdateFirmwareObjectTarget) ProtoMessage() {} func (x *UpdateFirmwareObjectTarget) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[790] + mi := &file_nico_proto_msgTypes[792] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53927,7 +54049,7 @@ func (x *UpdateFirmwareObjectTarget) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateFirmwareObjectTarget.ProtoReflect.Descriptor instead. func (*UpdateFirmwareObjectTarget) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{790} + return file_nico_proto_rawDescGZIP(), []int{792} } func (x *UpdateFirmwareObjectTarget) GetRackIds() *RackIdList { @@ -53964,7 +54086,7 @@ type UpdateComponentFirmwareRequest struct { func (x *UpdateComponentFirmwareRequest) Reset() { *x = UpdateComponentFirmwareRequest{} - mi := &file_nico_proto_msgTypes[791] + mi := &file_nico_proto_msgTypes[793] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53976,7 +54098,7 @@ func (x *UpdateComponentFirmwareRequest) String() string { func (*UpdateComponentFirmwareRequest) ProtoMessage() {} func (x *UpdateComponentFirmwareRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[791] + mi := &file_nico_proto_msgTypes[793] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53989,7 +54111,7 @@ func (x *UpdateComponentFirmwareRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateComponentFirmwareRequest.ProtoReflect.Descriptor instead. func (*UpdateComponentFirmwareRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{791} + return file_nico_proto_rawDescGZIP(), []int{793} } func (x *UpdateComponentFirmwareRequest) GetTarget() isUpdateComponentFirmwareRequest_Target { @@ -54101,7 +54223,7 @@ type UpdateComponentFirmwareResponse struct { func (x *UpdateComponentFirmwareResponse) Reset() { *x = UpdateComponentFirmwareResponse{} - mi := &file_nico_proto_msgTypes[792] + mi := &file_nico_proto_msgTypes[794] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54113,7 +54235,7 @@ func (x *UpdateComponentFirmwareResponse) String() string { func (*UpdateComponentFirmwareResponse) ProtoMessage() {} func (x *UpdateComponentFirmwareResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[792] + mi := &file_nico_proto_msgTypes[794] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54126,7 +54248,7 @@ func (x *UpdateComponentFirmwareResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateComponentFirmwareResponse.ProtoReflect.Descriptor instead. func (*UpdateComponentFirmwareResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{792} + return file_nico_proto_rawDescGZIP(), []int{794} } func (x *UpdateComponentFirmwareResponse) GetResults() []*ComponentResult { @@ -54151,7 +54273,7 @@ type GetComponentFirmwareStatusRequest struct { func (x *GetComponentFirmwareStatusRequest) Reset() { *x = GetComponentFirmwareStatusRequest{} - mi := &file_nico_proto_msgTypes[793] + mi := &file_nico_proto_msgTypes[795] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54163,7 +54285,7 @@ func (x *GetComponentFirmwareStatusRequest) String() string { func (*GetComponentFirmwareStatusRequest) ProtoMessage() {} func (x *GetComponentFirmwareStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[793] + mi := &file_nico_proto_msgTypes[795] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54176,7 +54298,7 @@ func (x *GetComponentFirmwareStatusRequest) ProtoReflect() protoreflect.Message // Deprecated: Use GetComponentFirmwareStatusRequest.ProtoReflect.Descriptor instead. func (*GetComponentFirmwareStatusRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{793} + return file_nico_proto_rawDescGZIP(), []int{795} } func (x *GetComponentFirmwareStatusRequest) GetTarget() isGetComponentFirmwareStatusRequest_Target { @@ -54260,7 +54382,7 @@ type GetComponentFirmwareStatusResponse struct { func (x *GetComponentFirmwareStatusResponse) Reset() { *x = GetComponentFirmwareStatusResponse{} - mi := &file_nico_proto_msgTypes[794] + mi := &file_nico_proto_msgTypes[796] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54272,7 +54394,7 @@ func (x *GetComponentFirmwareStatusResponse) String() string { func (*GetComponentFirmwareStatusResponse) ProtoMessage() {} func (x *GetComponentFirmwareStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[794] + mi := &file_nico_proto_msgTypes[796] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54285,7 +54407,7 @@ func (x *GetComponentFirmwareStatusResponse) ProtoReflect() protoreflect.Message // Deprecated: Use GetComponentFirmwareStatusResponse.ProtoReflect.Descriptor instead. func (*GetComponentFirmwareStatusResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{794} + return file_nico_proto_rawDescGZIP(), []int{796} } func (x *GetComponentFirmwareStatusResponse) GetStatuses() []*FirmwareUpdateStatus { @@ -54310,7 +54432,7 @@ type ListComponentFirmwareVersionsRequest struct { func (x *ListComponentFirmwareVersionsRequest) Reset() { *x = ListComponentFirmwareVersionsRequest{} - mi := &file_nico_proto_msgTypes[795] + mi := &file_nico_proto_msgTypes[797] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54322,7 +54444,7 @@ func (x *ListComponentFirmwareVersionsRequest) String() string { func (*ListComponentFirmwareVersionsRequest) ProtoMessage() {} func (x *ListComponentFirmwareVersionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[795] + mi := &file_nico_proto_msgTypes[797] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54335,7 +54457,7 @@ func (x *ListComponentFirmwareVersionsRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use ListComponentFirmwareVersionsRequest.ProtoReflect.Descriptor instead. func (*ListComponentFirmwareVersionsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{795} + return file_nico_proto_rawDescGZIP(), []int{797} } func (x *ListComponentFirmwareVersionsRequest) GetTarget() isListComponentFirmwareVersionsRequest_Target { @@ -54426,7 +54548,7 @@ type ComputeTrayFirmwareVersions struct { func (x *ComputeTrayFirmwareVersions) Reset() { *x = ComputeTrayFirmwareVersions{} - mi := &file_nico_proto_msgTypes[796] + mi := &file_nico_proto_msgTypes[798] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54438,7 +54560,7 @@ func (x *ComputeTrayFirmwareVersions) String() string { func (*ComputeTrayFirmwareVersions) ProtoMessage() {} func (x *ComputeTrayFirmwareVersions) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[796] + mi := &file_nico_proto_msgTypes[798] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54451,7 +54573,7 @@ func (x *ComputeTrayFirmwareVersions) ProtoReflect() protoreflect.Message { // Deprecated: Use ComputeTrayFirmwareVersions.ProtoReflect.Descriptor instead. func (*ComputeTrayFirmwareVersions) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{796} + return file_nico_proto_rawDescGZIP(), []int{798} } func (x *ComputeTrayFirmwareVersions) GetComponent() ComputeTrayComponent { @@ -54481,7 +54603,7 @@ type DeviceFirmwareVersions struct { func (x *DeviceFirmwareVersions) Reset() { *x = DeviceFirmwareVersions{} - mi := &file_nico_proto_msgTypes[797] + mi := &file_nico_proto_msgTypes[799] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54493,7 +54615,7 @@ func (x *DeviceFirmwareVersions) String() string { func (*DeviceFirmwareVersions) ProtoMessage() {} func (x *DeviceFirmwareVersions) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[797] + mi := &file_nico_proto_msgTypes[799] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54506,7 +54628,7 @@ func (x *DeviceFirmwareVersions) ProtoReflect() protoreflect.Message { // Deprecated: Use DeviceFirmwareVersions.ProtoReflect.Descriptor instead. func (*DeviceFirmwareVersions) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{797} + return file_nico_proto_rawDescGZIP(), []int{799} } func (x *DeviceFirmwareVersions) GetResult() *ComponentResult { @@ -54539,7 +54661,7 @@ type ListComponentFirmwareVersionsResponse struct { func (x *ListComponentFirmwareVersionsResponse) Reset() { *x = ListComponentFirmwareVersionsResponse{} - mi := &file_nico_proto_msgTypes[798] + mi := &file_nico_proto_msgTypes[800] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54551,7 +54673,7 @@ func (x *ListComponentFirmwareVersionsResponse) String() string { func (*ListComponentFirmwareVersionsResponse) ProtoMessage() {} func (x *ListComponentFirmwareVersionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[798] + mi := &file_nico_proto_msgTypes[800] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54564,7 +54686,7 @@ func (x *ListComponentFirmwareVersionsResponse) ProtoReflect() protoreflect.Mess // Deprecated: Use ListComponentFirmwareVersionsResponse.ProtoReflect.Descriptor instead. func (*ListComponentFirmwareVersionsResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{798} + return file_nico_proto_rawDescGZIP(), []int{800} } func (x *ListComponentFirmwareVersionsResponse) GetDevices() []*DeviceFirmwareVersions { @@ -54586,7 +54708,7 @@ type SpxPartitionCreationRequest struct { func (x *SpxPartitionCreationRequest) Reset() { *x = SpxPartitionCreationRequest{} - mi := &file_nico_proto_msgTypes[799] + mi := &file_nico_proto_msgTypes[801] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54598,7 +54720,7 @@ func (x *SpxPartitionCreationRequest) String() string { func (*SpxPartitionCreationRequest) ProtoMessage() {} func (x *SpxPartitionCreationRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[799] + mi := &file_nico_proto_msgTypes[801] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54611,7 +54733,7 @@ func (x *SpxPartitionCreationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SpxPartitionCreationRequest.ProtoReflect.Descriptor instead. func (*SpxPartitionCreationRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{799} + return file_nico_proto_rawDescGZIP(), []int{801} } func (x *SpxPartitionCreationRequest) GetMetadata() *Metadata { @@ -54654,7 +54776,7 @@ type SpxPartition struct { func (x *SpxPartition) Reset() { *x = SpxPartition{} - mi := &file_nico_proto_msgTypes[800] + mi := &file_nico_proto_msgTypes[802] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54666,7 +54788,7 @@ func (x *SpxPartition) String() string { func (*SpxPartition) ProtoMessage() {} func (x *SpxPartition) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[800] + mi := &file_nico_proto_msgTypes[802] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54679,7 +54801,7 @@ func (x *SpxPartition) ProtoReflect() protoreflect.Message { // Deprecated: Use SpxPartition.ProtoReflect.Descriptor instead. func (*SpxPartition) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{800} + return file_nico_proto_rawDescGZIP(), []int{802} } func (x *SpxPartition) GetMetadata() *Metadata { @@ -54719,7 +54841,7 @@ type SpxPartitionIdList struct { func (x *SpxPartitionIdList) Reset() { *x = SpxPartitionIdList{} - mi := &file_nico_proto_msgTypes[801] + mi := &file_nico_proto_msgTypes[803] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54731,7 +54853,7 @@ func (x *SpxPartitionIdList) String() string { func (*SpxPartitionIdList) ProtoMessage() {} func (x *SpxPartitionIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[801] + mi := &file_nico_proto_msgTypes[803] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54744,7 +54866,7 @@ func (x *SpxPartitionIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use SpxPartitionIdList.ProtoReflect.Descriptor instead. func (*SpxPartitionIdList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{801} + return file_nico_proto_rawDescGZIP(), []int{803} } func (x *SpxPartitionIdList) GetSpxPartitionIds() []*SpxPartitionId { @@ -54763,7 +54885,7 @@ type SpxPartitionDeletionRequest struct { func (x *SpxPartitionDeletionRequest) Reset() { *x = SpxPartitionDeletionRequest{} - mi := &file_nico_proto_msgTypes[802] + mi := &file_nico_proto_msgTypes[804] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54775,7 +54897,7 @@ func (x *SpxPartitionDeletionRequest) String() string { func (*SpxPartitionDeletionRequest) ProtoMessage() {} func (x *SpxPartitionDeletionRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[802] + mi := &file_nico_proto_msgTypes[804] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54788,7 +54910,7 @@ func (x *SpxPartitionDeletionRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SpxPartitionDeletionRequest.ProtoReflect.Descriptor instead. func (*SpxPartitionDeletionRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{802} + return file_nico_proto_rawDescGZIP(), []int{804} } func (x *SpxPartitionDeletionRequest) GetId() *SpxPartitionId { @@ -54806,7 +54928,7 @@ type SpxPartitionDeletionResult struct { func (x *SpxPartitionDeletionResult) Reset() { *x = SpxPartitionDeletionResult{} - mi := &file_nico_proto_msgTypes[803] + mi := &file_nico_proto_msgTypes[805] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54818,7 +54940,7 @@ func (x *SpxPartitionDeletionResult) String() string { func (*SpxPartitionDeletionResult) ProtoMessage() {} func (x *SpxPartitionDeletionResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[803] + mi := &file_nico_proto_msgTypes[805] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54831,7 +54953,7 @@ func (x *SpxPartitionDeletionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use SpxPartitionDeletionResult.ProtoReflect.Descriptor instead. func (*SpxPartitionDeletionResult) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{803} + return file_nico_proto_rawDescGZIP(), []int{805} } type SpxPartitionSearchFilter struct { @@ -54845,7 +54967,7 @@ type SpxPartitionSearchFilter struct { func (x *SpxPartitionSearchFilter) Reset() { *x = SpxPartitionSearchFilter{} - mi := &file_nico_proto_msgTypes[804] + mi := &file_nico_proto_msgTypes[806] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54857,7 +54979,7 @@ func (x *SpxPartitionSearchFilter) String() string { func (*SpxPartitionSearchFilter) ProtoMessage() {} func (x *SpxPartitionSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[804] + mi := &file_nico_proto_msgTypes[806] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54870,7 +54992,7 @@ func (x *SpxPartitionSearchFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use SpxPartitionSearchFilter.ProtoReflect.Descriptor instead. func (*SpxPartitionSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{804} + return file_nico_proto_rawDescGZIP(), []int{806} } func (x *SpxPartitionSearchFilter) GetName() string { @@ -54903,7 +55025,7 @@ type SpxPartitionList struct { func (x *SpxPartitionList) Reset() { *x = SpxPartitionList{} - mi := &file_nico_proto_msgTypes[805] + mi := &file_nico_proto_msgTypes[807] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54915,7 +55037,7 @@ func (x *SpxPartitionList) String() string { func (*SpxPartitionList) ProtoMessage() {} func (x *SpxPartitionList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[805] + mi := &file_nico_proto_msgTypes[807] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54928,7 +55050,7 @@ func (x *SpxPartitionList) ProtoReflect() protoreflect.Message { // Deprecated: Use SpxPartitionList.ProtoReflect.Descriptor instead. func (*SpxPartitionList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{805} + return file_nico_proto_rawDescGZIP(), []int{807} } func (x *SpxPartitionList) GetSpxPartitions() []*SpxPartition { @@ -54947,7 +55069,7 @@ type SpxPartitionsByIdsRequest struct { func (x *SpxPartitionsByIdsRequest) Reset() { *x = SpxPartitionsByIdsRequest{} - mi := &file_nico_proto_msgTypes[806] + mi := &file_nico_proto_msgTypes[808] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54959,7 +55081,7 @@ func (x *SpxPartitionsByIdsRequest) String() string { func (*SpxPartitionsByIdsRequest) ProtoMessage() {} func (x *SpxPartitionsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[806] + mi := &file_nico_proto_msgTypes[808] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54972,7 +55094,7 @@ func (x *SpxPartitionsByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SpxPartitionsByIdsRequest.ProtoReflect.Descriptor instead. func (*SpxPartitionsByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{806} + return file_nico_proto_rawDescGZIP(), []int{808} } func (x *SpxPartitionsByIdsRequest) GetSpxPartitionIds() []*SpxPartitionId { @@ -54995,7 +55117,7 @@ type AdminForceDeleteSwitchRequest struct { func (x *AdminForceDeleteSwitchRequest) Reset() { *x = AdminForceDeleteSwitchRequest{} - mi := &file_nico_proto_msgTypes[807] + mi := &file_nico_proto_msgTypes[809] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55007,7 +55129,7 @@ func (x *AdminForceDeleteSwitchRequest) String() string { func (*AdminForceDeleteSwitchRequest) ProtoMessage() {} func (x *AdminForceDeleteSwitchRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[807] + mi := &file_nico_proto_msgTypes[809] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55020,7 +55142,7 @@ func (x *AdminForceDeleteSwitchRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminForceDeleteSwitchRequest.ProtoReflect.Descriptor instead. func (*AdminForceDeleteSwitchRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{807} + return file_nico_proto_rawDescGZIP(), []int{809} } func (x *AdminForceDeleteSwitchRequest) GetSwitchId() *SwitchId { @@ -55049,7 +55171,7 @@ type AdminForceDeleteSwitchResponse struct { func (x *AdminForceDeleteSwitchResponse) Reset() { *x = AdminForceDeleteSwitchResponse{} - mi := &file_nico_proto_msgTypes[808] + mi := &file_nico_proto_msgTypes[810] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55061,7 +55183,7 @@ func (x *AdminForceDeleteSwitchResponse) String() string { func (*AdminForceDeleteSwitchResponse) ProtoMessage() {} func (x *AdminForceDeleteSwitchResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[808] + mi := &file_nico_proto_msgTypes[810] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55074,7 +55196,7 @@ func (x *AdminForceDeleteSwitchResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminForceDeleteSwitchResponse.ProtoReflect.Descriptor instead. func (*AdminForceDeleteSwitchResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{808} + return file_nico_proto_rawDescGZIP(), []int{810} } func (x *AdminForceDeleteSwitchResponse) GetSwitchId() string { @@ -55104,7 +55226,7 @@ type AdminForceDeletePowerShelfRequest struct { func (x *AdminForceDeletePowerShelfRequest) Reset() { *x = AdminForceDeletePowerShelfRequest{} - mi := &file_nico_proto_msgTypes[809] + mi := &file_nico_proto_msgTypes[811] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55116,7 +55238,7 @@ func (x *AdminForceDeletePowerShelfRequest) String() string { func (*AdminForceDeletePowerShelfRequest) ProtoMessage() {} func (x *AdminForceDeletePowerShelfRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[809] + mi := &file_nico_proto_msgTypes[811] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55129,7 +55251,7 @@ func (x *AdminForceDeletePowerShelfRequest) ProtoReflect() protoreflect.Message // Deprecated: Use AdminForceDeletePowerShelfRequest.ProtoReflect.Descriptor instead. func (*AdminForceDeletePowerShelfRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{809} + return file_nico_proto_rawDescGZIP(), []int{811} } func (x *AdminForceDeletePowerShelfRequest) GetPowerShelfId() *PowerShelfId { @@ -55158,7 +55280,7 @@ type AdminForceDeletePowerShelfResponse struct { func (x *AdminForceDeletePowerShelfResponse) Reset() { *x = AdminForceDeletePowerShelfResponse{} - mi := &file_nico_proto_msgTypes[810] + mi := &file_nico_proto_msgTypes[812] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55170,7 +55292,7 @@ func (x *AdminForceDeletePowerShelfResponse) String() string { func (*AdminForceDeletePowerShelfResponse) ProtoMessage() {} func (x *AdminForceDeletePowerShelfResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[810] + mi := &file_nico_proto_msgTypes[812] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55183,7 +55305,7 @@ func (x *AdminForceDeletePowerShelfResponse) ProtoReflect() protoreflect.Message // Deprecated: Use AdminForceDeletePowerShelfResponse.ProtoReflect.Descriptor instead. func (*AdminForceDeletePowerShelfResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{810} + return file_nico_proto_rawDescGZIP(), []int{812} } func (x *AdminForceDeletePowerShelfResponse) GetPowerShelfId() string { @@ -55227,7 +55349,7 @@ type OperatingSystem struct { func (x *OperatingSystem) Reset() { *x = OperatingSystem{} - mi := &file_nico_proto_msgTypes[811] + mi := &file_nico_proto_msgTypes[813] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55239,7 +55361,7 @@ func (x *OperatingSystem) String() string { func (*OperatingSystem) ProtoMessage() {} func (x *OperatingSystem) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[811] + mi := &file_nico_proto_msgTypes[813] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55252,7 +55374,7 @@ func (x *OperatingSystem) ProtoReflect() protoreflect.Message { // Deprecated: Use OperatingSystem.ProtoReflect.Descriptor instead. func (*OperatingSystem) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{811} + return file_nico_proto_rawDescGZIP(), []int{813} } func (x *OperatingSystem) GetId() *OperatingSystemId { @@ -55397,7 +55519,7 @@ type CreateOperatingSystemRequest struct { func (x *CreateOperatingSystemRequest) Reset() { *x = CreateOperatingSystemRequest{} - mi := &file_nico_proto_msgTypes[812] + mi := &file_nico_proto_msgTypes[814] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55409,7 +55531,7 @@ func (x *CreateOperatingSystemRequest) String() string { func (*CreateOperatingSystemRequest) ProtoMessage() {} func (x *CreateOperatingSystemRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[812] + mi := &file_nico_proto_msgTypes[814] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55422,7 +55544,7 @@ func (x *CreateOperatingSystemRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateOperatingSystemRequest.ProtoReflect.Descriptor instead. func (*CreateOperatingSystemRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{812} + return file_nico_proto_rawDescGZIP(), []int{814} } func (x *CreateOperatingSystemRequest) GetName() string { @@ -55520,7 +55642,7 @@ type IpxeTemplateParameters struct { func (x *IpxeTemplateParameters) Reset() { *x = IpxeTemplateParameters{} - mi := &file_nico_proto_msgTypes[813] + mi := &file_nico_proto_msgTypes[815] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55532,7 +55654,7 @@ func (x *IpxeTemplateParameters) String() string { func (*IpxeTemplateParameters) ProtoMessage() {} func (x *IpxeTemplateParameters) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[813] + mi := &file_nico_proto_msgTypes[815] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55545,7 +55667,7 @@ func (x *IpxeTemplateParameters) ProtoReflect() protoreflect.Message { // Deprecated: Use IpxeTemplateParameters.ProtoReflect.Descriptor instead. func (*IpxeTemplateParameters) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{813} + return file_nico_proto_rawDescGZIP(), []int{815} } func (x *IpxeTemplateParameters) GetItems() []*IpxeTemplateParameter { @@ -55565,7 +55687,7 @@ type IpxeTemplateArtifacts struct { func (x *IpxeTemplateArtifacts) Reset() { *x = IpxeTemplateArtifacts{} - mi := &file_nico_proto_msgTypes[814] + mi := &file_nico_proto_msgTypes[816] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55577,7 +55699,7 @@ func (x *IpxeTemplateArtifacts) String() string { func (*IpxeTemplateArtifacts) ProtoMessage() {} func (x *IpxeTemplateArtifacts) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[814] + mi := &file_nico_proto_msgTypes[816] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55590,7 +55712,7 @@ func (x *IpxeTemplateArtifacts) ProtoReflect() protoreflect.Message { // Deprecated: Use IpxeTemplateArtifacts.ProtoReflect.Descriptor instead. func (*IpxeTemplateArtifacts) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{814} + return file_nico_proto_rawDescGZIP(), []int{816} } func (x *IpxeTemplateArtifacts) GetItems() []*IpxeTemplateArtifact { @@ -55620,7 +55742,7 @@ type UpdateOperatingSystemRequest struct { func (x *UpdateOperatingSystemRequest) Reset() { *x = UpdateOperatingSystemRequest{} - mi := &file_nico_proto_msgTypes[815] + mi := &file_nico_proto_msgTypes[817] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55632,7 +55754,7 @@ func (x *UpdateOperatingSystemRequest) String() string { func (*UpdateOperatingSystemRequest) ProtoMessage() {} func (x *UpdateOperatingSystemRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[815] + mi := &file_nico_proto_msgTypes[817] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55645,7 +55767,7 @@ func (x *UpdateOperatingSystemRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateOperatingSystemRequest.ProtoReflect.Descriptor instead. func (*UpdateOperatingSystemRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{815} + return file_nico_proto_rawDescGZIP(), []int{817} } func (x *UpdateOperatingSystemRequest) GetId() *OperatingSystemId { @@ -55741,7 +55863,7 @@ type DeleteOperatingSystemRequest struct { func (x *DeleteOperatingSystemRequest) Reset() { *x = DeleteOperatingSystemRequest{} - mi := &file_nico_proto_msgTypes[816] + mi := &file_nico_proto_msgTypes[818] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55753,7 +55875,7 @@ func (x *DeleteOperatingSystemRequest) String() string { func (*DeleteOperatingSystemRequest) ProtoMessage() {} func (x *DeleteOperatingSystemRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[816] + mi := &file_nico_proto_msgTypes[818] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55766,7 +55888,7 @@ func (x *DeleteOperatingSystemRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteOperatingSystemRequest.ProtoReflect.Descriptor instead. func (*DeleteOperatingSystemRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{816} + return file_nico_proto_rawDescGZIP(), []int{818} } func (x *DeleteOperatingSystemRequest) GetId() *OperatingSystemId { @@ -55784,7 +55906,7 @@ type DeleteOperatingSystemResponse struct { func (x *DeleteOperatingSystemResponse) Reset() { *x = DeleteOperatingSystemResponse{} - mi := &file_nico_proto_msgTypes[817] + mi := &file_nico_proto_msgTypes[819] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55796,7 +55918,7 @@ func (x *DeleteOperatingSystemResponse) String() string { func (*DeleteOperatingSystemResponse) ProtoMessage() {} func (x *DeleteOperatingSystemResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[817] + mi := &file_nico_proto_msgTypes[819] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55809,7 +55931,7 @@ func (x *DeleteOperatingSystemResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteOperatingSystemResponse.ProtoReflect.Descriptor instead. func (*DeleteOperatingSystemResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{817} + return file_nico_proto_rawDescGZIP(), []int{819} } type OperatingSystemSearchFilter struct { @@ -55821,7 +55943,7 @@ type OperatingSystemSearchFilter struct { func (x *OperatingSystemSearchFilter) Reset() { *x = OperatingSystemSearchFilter{} - mi := &file_nico_proto_msgTypes[818] + mi := &file_nico_proto_msgTypes[820] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55833,7 +55955,7 @@ func (x *OperatingSystemSearchFilter) String() string { func (*OperatingSystemSearchFilter) ProtoMessage() {} func (x *OperatingSystemSearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[818] + mi := &file_nico_proto_msgTypes[820] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55846,7 +55968,7 @@ func (x *OperatingSystemSearchFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use OperatingSystemSearchFilter.ProtoReflect.Descriptor instead. func (*OperatingSystemSearchFilter) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{818} + return file_nico_proto_rawDescGZIP(), []int{820} } func (x *OperatingSystemSearchFilter) GetTenantOrganizationId() string { @@ -55865,7 +55987,7 @@ type OperatingSystemIdList struct { func (x *OperatingSystemIdList) Reset() { *x = OperatingSystemIdList{} - mi := &file_nico_proto_msgTypes[819] + mi := &file_nico_proto_msgTypes[821] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55877,7 +55999,7 @@ func (x *OperatingSystemIdList) String() string { func (*OperatingSystemIdList) ProtoMessage() {} func (x *OperatingSystemIdList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[819] + mi := &file_nico_proto_msgTypes[821] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55890,7 +56012,7 @@ func (x *OperatingSystemIdList) ProtoReflect() protoreflect.Message { // Deprecated: Use OperatingSystemIdList.ProtoReflect.Descriptor instead. func (*OperatingSystemIdList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{819} + return file_nico_proto_rawDescGZIP(), []int{821} } func (x *OperatingSystemIdList) GetIds() []*OperatingSystemId { @@ -55909,7 +56031,7 @@ type OperatingSystemsByIdsRequest struct { func (x *OperatingSystemsByIdsRequest) Reset() { *x = OperatingSystemsByIdsRequest{} - mi := &file_nico_proto_msgTypes[820] + mi := &file_nico_proto_msgTypes[822] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55921,7 +56043,7 @@ func (x *OperatingSystemsByIdsRequest) String() string { func (*OperatingSystemsByIdsRequest) ProtoMessage() {} func (x *OperatingSystemsByIdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[820] + mi := &file_nico_proto_msgTypes[822] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55934,7 +56056,7 @@ func (x *OperatingSystemsByIdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use OperatingSystemsByIdsRequest.ProtoReflect.Descriptor instead. func (*OperatingSystemsByIdsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{820} + return file_nico_proto_rawDescGZIP(), []int{822} } func (x *OperatingSystemsByIdsRequest) GetIds() []*OperatingSystemId { @@ -55953,7 +56075,7 @@ type OperatingSystemList struct { func (x *OperatingSystemList) Reset() { *x = OperatingSystemList{} - mi := &file_nico_proto_msgTypes[821] + mi := &file_nico_proto_msgTypes[823] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55965,7 +56087,7 @@ func (x *OperatingSystemList) String() string { func (*OperatingSystemList) ProtoMessage() {} func (x *OperatingSystemList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[821] + mi := &file_nico_proto_msgTypes[823] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55978,7 +56100,7 @@ func (x *OperatingSystemList) ProtoReflect() protoreflect.Message { // Deprecated: Use OperatingSystemList.ProtoReflect.Descriptor instead. func (*OperatingSystemList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{821} + return file_nico_proto_rawDescGZIP(), []int{823} } func (x *OperatingSystemList) GetOperatingSystems() []*OperatingSystem { @@ -55997,7 +56119,7 @@ type GetOperatingSystemCachableIpxeTemplateArtifactsRequest struct { func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) Reset() { *x = GetOperatingSystemCachableIpxeTemplateArtifactsRequest{} - mi := &file_nico_proto_msgTypes[822] + mi := &file_nico_proto_msgTypes[824] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56009,7 +56131,7 @@ func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) String() string func (*GetOperatingSystemCachableIpxeTemplateArtifactsRequest) ProtoMessage() {} func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[822] + mi := &file_nico_proto_msgTypes[824] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56022,7 +56144,7 @@ func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) ProtoReflect() // Deprecated: Use GetOperatingSystemCachableIpxeTemplateArtifactsRequest.ProtoReflect.Descriptor instead. func (*GetOperatingSystemCachableIpxeTemplateArtifactsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{822} + return file_nico_proto_rawDescGZIP(), []int{824} } func (x *GetOperatingSystemCachableIpxeTemplateArtifactsRequest) GetId() *OperatingSystemId { @@ -56041,7 +56163,7 @@ type IpxeTemplateArtifactList struct { func (x *IpxeTemplateArtifactList) Reset() { *x = IpxeTemplateArtifactList{} - mi := &file_nico_proto_msgTypes[823] + mi := &file_nico_proto_msgTypes[825] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56053,7 +56175,7 @@ func (x *IpxeTemplateArtifactList) String() string { func (*IpxeTemplateArtifactList) ProtoMessage() {} func (x *IpxeTemplateArtifactList) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[823] + mi := &file_nico_proto_msgTypes[825] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56066,7 +56188,7 @@ func (x *IpxeTemplateArtifactList) ProtoReflect() protoreflect.Message { // Deprecated: Use IpxeTemplateArtifactList.ProtoReflect.Descriptor instead. func (*IpxeTemplateArtifactList) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{823} + return file_nico_proto_rawDescGZIP(), []int{825} } func (x *IpxeTemplateArtifactList) GetArtifacts() []*IpxeTemplateArtifact { @@ -56088,7 +56210,7 @@ type IpxeTemplateArtifactUpdateRequest struct { func (x *IpxeTemplateArtifactUpdateRequest) Reset() { *x = IpxeTemplateArtifactUpdateRequest{} - mi := &file_nico_proto_msgTypes[824] + mi := &file_nico_proto_msgTypes[826] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56100,7 +56222,7 @@ func (x *IpxeTemplateArtifactUpdateRequest) String() string { func (*IpxeTemplateArtifactUpdateRequest) ProtoMessage() {} func (x *IpxeTemplateArtifactUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[824] + mi := &file_nico_proto_msgTypes[826] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56113,7 +56235,7 @@ func (x *IpxeTemplateArtifactUpdateRequest) ProtoReflect() protoreflect.Message // Deprecated: Use IpxeTemplateArtifactUpdateRequest.ProtoReflect.Descriptor instead. func (*IpxeTemplateArtifactUpdateRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{824} + return file_nico_proto_rawDescGZIP(), []int{826} } func (x *IpxeTemplateArtifactUpdateRequest) GetName() string { @@ -56140,7 +56262,7 @@ type UpdateOperatingSystemIpxeTemplateArtifactRequest struct { func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) Reset() { *x = UpdateOperatingSystemIpxeTemplateArtifactRequest{} - mi := &file_nico_proto_msgTypes[825] + mi := &file_nico_proto_msgTypes[827] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56152,7 +56274,7 @@ func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) String() string { func (*UpdateOperatingSystemIpxeTemplateArtifactRequest) ProtoMessage() {} func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[825] + mi := &file_nico_proto_msgTypes[827] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56165,7 +56287,7 @@ func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) ProtoReflect() protor // Deprecated: Use UpdateOperatingSystemIpxeTemplateArtifactRequest.ProtoReflect.Descriptor instead. func (*UpdateOperatingSystemIpxeTemplateArtifactRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{825} + return file_nico_proto_rawDescGZIP(), []int{827} } func (x *UpdateOperatingSystemIpxeTemplateArtifactRequest) GetId() *OperatingSystemId { @@ -56192,7 +56314,7 @@ type HostRepresentorInterceptBridging struct { func (x *HostRepresentorInterceptBridging) Reset() { *x = HostRepresentorInterceptBridging{} - mi := &file_nico_proto_msgTypes[826] + mi := &file_nico_proto_msgTypes[828] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56204,7 +56326,7 @@ func (x *HostRepresentorInterceptBridging) String() string { func (*HostRepresentorInterceptBridging) ProtoMessage() {} func (x *HostRepresentorInterceptBridging) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[826] + mi := &file_nico_proto_msgTypes[828] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56217,7 +56339,7 @@ func (x *HostRepresentorInterceptBridging) ProtoReflect() protoreflect.Message { // Deprecated: Use HostRepresentorInterceptBridging.ProtoReflect.Descriptor instead. func (*HostRepresentorInterceptBridging) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{826} + return file_nico_proto_rawDescGZIP(), []int{828} } func (x *HostRepresentorInterceptBridging) GetBridge() string { @@ -56248,7 +56370,7 @@ type ReWrapSecretsRequest struct { func (x *ReWrapSecretsRequest) Reset() { *x = ReWrapSecretsRequest{} - mi := &file_nico_proto_msgTypes[827] + mi := &file_nico_proto_msgTypes[829] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56260,7 +56382,7 @@ func (x *ReWrapSecretsRequest) String() string { func (*ReWrapSecretsRequest) ProtoMessage() {} func (x *ReWrapSecretsRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[827] + mi := &file_nico_proto_msgTypes[829] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56273,7 +56395,7 @@ func (x *ReWrapSecretsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ReWrapSecretsRequest.ProtoReflect.Descriptor instead. func (*ReWrapSecretsRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{827} + return file_nico_proto_rawDescGZIP(), []int{829} } func (x *ReWrapSecretsRequest) GetBatchSize() uint32 { @@ -56300,7 +56422,7 @@ type ReWrapSecretsResponse struct { func (x *ReWrapSecretsResponse) Reset() { *x = ReWrapSecretsResponse{} - mi := &file_nico_proto_msgTypes[828] + mi := &file_nico_proto_msgTypes[830] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56312,7 +56434,7 @@ func (x *ReWrapSecretsResponse) String() string { func (*ReWrapSecretsResponse) ProtoMessage() {} func (x *ReWrapSecretsResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[828] + mi := &file_nico_proto_msgTypes[830] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56325,7 +56447,7 @@ func (x *ReWrapSecretsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ReWrapSecretsResponse.ProtoReflect.Descriptor instead. func (*ReWrapSecretsResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{828} + return file_nico_proto_rawDescGZIP(), []int{830} } func (x *ReWrapSecretsResponse) GetReWrapped() uint64 { @@ -56358,7 +56480,7 @@ type GetMachineBootInterfacesRequest struct { func (x *GetMachineBootInterfacesRequest) Reset() { *x = GetMachineBootInterfacesRequest{} - mi := &file_nico_proto_msgTypes[829] + mi := &file_nico_proto_msgTypes[831] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56370,7 +56492,7 @@ func (x *GetMachineBootInterfacesRequest) String() string { func (*GetMachineBootInterfacesRequest) ProtoMessage() {} func (x *GetMachineBootInterfacesRequest) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[829] + mi := &file_nico_proto_msgTypes[831] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56383,7 +56505,7 @@ func (x *GetMachineBootInterfacesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetMachineBootInterfacesRequest.ProtoReflect.Descriptor instead. func (*GetMachineBootInterfacesRequest) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{829} + return file_nico_proto_rawDescGZIP(), []int{831} } func (x *GetMachineBootInterfacesRequest) GetMachineId() *MachineId { @@ -56411,7 +56533,7 @@ type MachineInterfaceBootInterface struct { func (x *MachineInterfaceBootInterface) Reset() { *x = MachineInterfaceBootInterface{} - mi := &file_nico_proto_msgTypes[830] + mi := &file_nico_proto_msgTypes[832] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56423,7 +56545,7 @@ func (x *MachineInterfaceBootInterface) String() string { func (*MachineInterfaceBootInterface) ProtoMessage() {} func (x *MachineInterfaceBootInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[830] + mi := &file_nico_proto_msgTypes[832] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56436,7 +56558,7 @@ func (x *MachineInterfaceBootInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineInterfaceBootInterface.ProtoReflect.Descriptor instead. func (*MachineInterfaceBootInterface) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{830} + return file_nico_proto_rawDescGZIP(), []int{832} } func (x *MachineInterfaceBootInterface) GetMacAddress() string { @@ -56482,7 +56604,7 @@ type PredictedBootInterface struct { func (x *PredictedBootInterface) Reset() { *x = PredictedBootInterface{} - mi := &file_nico_proto_msgTypes[831] + mi := &file_nico_proto_msgTypes[833] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56494,7 +56616,7 @@ func (x *PredictedBootInterface) String() string { func (*PredictedBootInterface) ProtoMessage() {} func (x *PredictedBootInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[831] + mi := &file_nico_proto_msgTypes[833] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56507,7 +56629,7 @@ func (x *PredictedBootInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use PredictedBootInterface.ProtoReflect.Descriptor instead. func (*PredictedBootInterface) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{831} + return file_nico_proto_rawDescGZIP(), []int{833} } func (x *PredictedBootInterface) GetMacAddress() string { @@ -56552,7 +56674,7 @@ type ExploredBootInterface struct { func (x *ExploredBootInterface) Reset() { *x = ExploredBootInterface{} - mi := &file_nico_proto_msgTypes[832] + mi := &file_nico_proto_msgTypes[834] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56564,7 +56686,7 @@ func (x *ExploredBootInterface) String() string { func (*ExploredBootInterface) ProtoMessage() {} func (x *ExploredBootInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[832] + mi := &file_nico_proto_msgTypes[834] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56577,7 +56699,7 @@ func (x *ExploredBootInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use ExploredBootInterface.ProtoReflect.Descriptor instead. func (*ExploredBootInterface) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{832} + return file_nico_proto_rawDescGZIP(), []int{834} } func (x *ExploredBootInterface) GetAddress() string { @@ -56615,7 +56737,7 @@ type RetainedBootInterface struct { func (x *RetainedBootInterface) Reset() { *x = RetainedBootInterface{} - mi := &file_nico_proto_msgTypes[833] + mi := &file_nico_proto_msgTypes[835] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56627,7 +56749,7 @@ func (x *RetainedBootInterface) String() string { func (*RetainedBootInterface) ProtoMessage() {} func (x *RetainedBootInterface) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[833] + mi := &file_nico_proto_msgTypes[835] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56640,7 +56762,7 @@ func (x *RetainedBootInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use RetainedBootInterface.ProtoReflect.Descriptor instead. func (*RetainedBootInterface) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{833} + return file_nico_proto_rawDescGZIP(), []int{835} } func (x *RetainedBootInterface) GetMacAddress() string { @@ -56690,7 +56812,7 @@ type GetMachineBootInterfacesResponse struct { func (x *GetMachineBootInterfacesResponse) Reset() { *x = GetMachineBootInterfacesResponse{} - mi := &file_nico_proto_msgTypes[834] + mi := &file_nico_proto_msgTypes[836] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56702,7 +56824,7 @@ func (x *GetMachineBootInterfacesResponse) String() string { func (*GetMachineBootInterfacesResponse) ProtoMessage() {} func (x *GetMachineBootInterfacesResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[834] + mi := &file_nico_proto_msgTypes[836] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56715,7 +56837,7 @@ func (x *GetMachineBootInterfacesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetMachineBootInterfacesResponse.ProtoReflect.Descriptor instead. func (*GetMachineBootInterfacesResponse) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{834} + return file_nico_proto_rawDescGZIP(), []int{836} } func (x *GetMachineBootInterfacesResponse) GetMachineId() *MachineId { @@ -56785,7 +56907,7 @@ type DNSMessage_DNSQuestion struct { func (x *DNSMessage_DNSQuestion) Reset() { *x = DNSMessage_DNSQuestion{} - mi := &file_nico_proto_msgTypes[836] + mi := &file_nico_proto_msgTypes[838] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56797,7 +56919,7 @@ func (x *DNSMessage_DNSQuestion) String() string { func (*DNSMessage_DNSQuestion) ProtoMessage() {} func (x *DNSMessage_DNSQuestion) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[836] + mi := &file_nico_proto_msgTypes[838] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56843,7 +56965,7 @@ type DNSMessage_DNSResponse struct { func (x *DNSMessage_DNSResponse) Reset() { *x = DNSMessage_DNSResponse{} - mi := &file_nico_proto_msgTypes[837] + mi := &file_nico_proto_msgTypes[839] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56855,7 +56977,7 @@ func (x *DNSMessage_DNSResponse) String() string { func (*DNSMessage_DNSResponse) ProtoMessage() {} func (x *DNSMessage_DNSResponse) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[837] + mi := &file_nico_proto_msgTypes[839] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56887,7 +57009,7 @@ type DNSMessage_DNSResponse_DNSRR struct { func (x *DNSMessage_DNSResponse_DNSRR) Reset() { *x = DNSMessage_DNSResponse_DNSRR{} - mi := &file_nico_proto_msgTypes[838] + mi := &file_nico_proto_msgTypes[840] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56899,7 +57021,7 @@ func (x *DNSMessage_DNSResponse_DNSRR) String() string { func (*DNSMessage_DNSResponse_DNSRR) ProtoMessage() {} func (x *DNSMessage_DNSResponse_DNSRR) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[838] + mi := &file_nico_proto_msgTypes[840] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56933,7 +57055,7 @@ type MachineCredentialsUpdateRequest_Credentials struct { func (x *MachineCredentialsUpdateRequest_Credentials) Reset() { *x = MachineCredentialsUpdateRequest_Credentials{} - mi := &file_nico_proto_msgTypes[844] + mi := &file_nico_proto_msgTypes[846] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56945,7 +57067,7 @@ func (x *MachineCredentialsUpdateRequest_Credentials) String() string { func (*MachineCredentialsUpdateRequest_Credentials) ProtoMessage() {} func (x *MachineCredentialsUpdateRequest_Credentials) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[844] + mi := &file_nico_proto_msgTypes[846] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56958,7 +57080,7 @@ func (x *MachineCredentialsUpdateRequest_Credentials) ProtoReflect() protoreflec // Deprecated: Use MachineCredentialsUpdateRequest_Credentials.ProtoReflect.Descriptor instead. func (*MachineCredentialsUpdateRequest_Credentials) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{330, 0} + return file_nico_proto_rawDescGZIP(), []int{332, 0} } func (x *MachineCredentialsUpdateRequest_Credentials) GetUser() string { @@ -56992,7 +57114,7 @@ type ForgeAgentControlResponse_ForgeAgentControlExtraInfo struct { func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo) Reset() { *x = ForgeAgentControlResponse_ForgeAgentControlExtraInfo{} - mi := &file_nico_proto_msgTypes[845] + mi := &file_nico_proto_msgTypes[847] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57004,7 +57126,7 @@ func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo) String() string { func (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo) ProtoMessage() {} func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[845] + mi := &file_nico_proto_msgTypes[847] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57017,7 +57139,7 @@ func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo) ProtoReflect() pr // Deprecated: Use ForgeAgentControlResponse_ForgeAgentControlExtraInfo.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 0} + return file_nico_proto_rawDescGZIP(), []int{335, 0} } func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo) GetPair() []*ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair { @@ -57035,7 +57157,7 @@ type ForgeAgentControlResponse_Noop struct { func (x *ForgeAgentControlResponse_Noop) Reset() { *x = ForgeAgentControlResponse_Noop{} - mi := &file_nico_proto_msgTypes[846] + mi := &file_nico_proto_msgTypes[848] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57047,7 +57169,7 @@ func (x *ForgeAgentControlResponse_Noop) String() string { func (*ForgeAgentControlResponse_Noop) ProtoMessage() {} func (x *ForgeAgentControlResponse_Noop) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[846] + mi := &file_nico_proto_msgTypes[848] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57060,7 +57182,7 @@ func (x *ForgeAgentControlResponse_Noop) ProtoReflect() protoreflect.Message { // Deprecated: Use ForgeAgentControlResponse_Noop.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_Noop) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 1} + return file_nico_proto_rawDescGZIP(), []int{335, 1} } type ForgeAgentControlResponse_Reset struct { @@ -57071,7 +57193,7 @@ type ForgeAgentControlResponse_Reset struct { func (x *ForgeAgentControlResponse_Reset) Reset() { *x = ForgeAgentControlResponse_Reset{} - mi := &file_nico_proto_msgTypes[847] + mi := &file_nico_proto_msgTypes[849] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57083,7 +57205,7 @@ func (x *ForgeAgentControlResponse_Reset) String() string { func (*ForgeAgentControlResponse_Reset) ProtoMessage() {} func (x *ForgeAgentControlResponse_Reset) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[847] + mi := &file_nico_proto_msgTypes[849] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57096,7 +57218,7 @@ func (x *ForgeAgentControlResponse_Reset) ProtoReflect() protoreflect.Message { // Deprecated: Use ForgeAgentControlResponse_Reset.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_Reset) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 2} + return file_nico_proto_rawDescGZIP(), []int{335, 2} } type ForgeAgentControlResponse_Discovery struct { @@ -57107,7 +57229,7 @@ type ForgeAgentControlResponse_Discovery struct { func (x *ForgeAgentControlResponse_Discovery) Reset() { *x = ForgeAgentControlResponse_Discovery{} - mi := &file_nico_proto_msgTypes[848] + mi := &file_nico_proto_msgTypes[850] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57119,7 +57241,7 @@ func (x *ForgeAgentControlResponse_Discovery) String() string { func (*ForgeAgentControlResponse_Discovery) ProtoMessage() {} func (x *ForgeAgentControlResponse_Discovery) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[848] + mi := &file_nico_proto_msgTypes[850] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57132,7 +57254,7 @@ func (x *ForgeAgentControlResponse_Discovery) ProtoReflect() protoreflect.Messag // Deprecated: Use ForgeAgentControlResponse_Discovery.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_Discovery) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 3} + return file_nico_proto_rawDescGZIP(), []int{335, 3} } type ForgeAgentControlResponse_Rebuild struct { @@ -57143,7 +57265,7 @@ type ForgeAgentControlResponse_Rebuild struct { func (x *ForgeAgentControlResponse_Rebuild) Reset() { *x = ForgeAgentControlResponse_Rebuild{} - mi := &file_nico_proto_msgTypes[849] + mi := &file_nico_proto_msgTypes[851] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57155,7 +57277,7 @@ func (x *ForgeAgentControlResponse_Rebuild) String() string { func (*ForgeAgentControlResponse_Rebuild) ProtoMessage() {} func (x *ForgeAgentControlResponse_Rebuild) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[849] + mi := &file_nico_proto_msgTypes[851] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57168,7 +57290,7 @@ func (x *ForgeAgentControlResponse_Rebuild) ProtoReflect() protoreflect.Message // Deprecated: Use ForgeAgentControlResponse_Rebuild.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_Rebuild) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 4} + return file_nico_proto_rawDescGZIP(), []int{335, 4} } type ForgeAgentControlResponse_Retry struct { @@ -57179,7 +57301,7 @@ type ForgeAgentControlResponse_Retry struct { func (x *ForgeAgentControlResponse_Retry) Reset() { *x = ForgeAgentControlResponse_Retry{} - mi := &file_nico_proto_msgTypes[850] + mi := &file_nico_proto_msgTypes[852] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57191,7 +57313,7 @@ func (x *ForgeAgentControlResponse_Retry) String() string { func (*ForgeAgentControlResponse_Retry) ProtoMessage() {} func (x *ForgeAgentControlResponse_Retry) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[850] + mi := &file_nico_proto_msgTypes[852] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57204,7 +57326,7 @@ func (x *ForgeAgentControlResponse_Retry) ProtoReflect() protoreflect.Message { // Deprecated: Use ForgeAgentControlResponse_Retry.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_Retry) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 5} + return file_nico_proto_rawDescGZIP(), []int{335, 5} } type ForgeAgentControlResponse_Measure struct { @@ -57215,7 +57337,7 @@ type ForgeAgentControlResponse_Measure struct { func (x *ForgeAgentControlResponse_Measure) Reset() { *x = ForgeAgentControlResponse_Measure{} - mi := &file_nico_proto_msgTypes[851] + mi := &file_nico_proto_msgTypes[853] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57227,7 +57349,7 @@ func (x *ForgeAgentControlResponse_Measure) String() string { func (*ForgeAgentControlResponse_Measure) ProtoMessage() {} func (x *ForgeAgentControlResponse_Measure) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[851] + mi := &file_nico_proto_msgTypes[853] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57240,7 +57362,7 @@ func (x *ForgeAgentControlResponse_Measure) ProtoReflect() protoreflect.Message // Deprecated: Use ForgeAgentControlResponse_Measure.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_Measure) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 6} + return file_nico_proto_rawDescGZIP(), []int{335, 6} } type ForgeAgentControlResponse_LogError struct { @@ -57251,7 +57373,7 @@ type ForgeAgentControlResponse_LogError struct { func (x *ForgeAgentControlResponse_LogError) Reset() { *x = ForgeAgentControlResponse_LogError{} - mi := &file_nico_proto_msgTypes[852] + mi := &file_nico_proto_msgTypes[854] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57263,7 +57385,7 @@ func (x *ForgeAgentControlResponse_LogError) String() string { func (*ForgeAgentControlResponse_LogError) ProtoMessage() {} func (x *ForgeAgentControlResponse_LogError) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[852] + mi := &file_nico_proto_msgTypes[854] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57276,7 +57398,7 @@ func (x *ForgeAgentControlResponse_LogError) ProtoReflect() protoreflect.Message // Deprecated: Use ForgeAgentControlResponse_LogError.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_LogError) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 7} + return file_nico_proto_rawDescGZIP(), []int{335, 7} } type ForgeAgentControlResponse_MachineValidation struct { @@ -57291,7 +57413,7 @@ type ForgeAgentControlResponse_MachineValidation struct { func (x *ForgeAgentControlResponse_MachineValidation) Reset() { *x = ForgeAgentControlResponse_MachineValidation{} - mi := &file_nico_proto_msgTypes[853] + mi := &file_nico_proto_msgTypes[855] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57303,7 +57425,7 @@ func (x *ForgeAgentControlResponse_MachineValidation) String() string { func (*ForgeAgentControlResponse_MachineValidation) ProtoMessage() {} func (x *ForgeAgentControlResponse_MachineValidation) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[853] + mi := &file_nico_proto_msgTypes[855] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57316,7 +57438,7 @@ func (x *ForgeAgentControlResponse_MachineValidation) ProtoReflect() protoreflec // Deprecated: Use ForgeAgentControlResponse_MachineValidation.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_MachineValidation) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 8} + return file_nico_proto_rawDescGZIP(), []int{335, 8} } func (x *ForgeAgentControlResponse_MachineValidation) GetIsEnabled() bool { @@ -57359,7 +57481,7 @@ type ForgeAgentControlResponse_MachineValidationFilter struct { func (x *ForgeAgentControlResponse_MachineValidationFilter) Reset() { *x = ForgeAgentControlResponse_MachineValidationFilter{} - mi := &file_nico_proto_msgTypes[854] + mi := &file_nico_proto_msgTypes[856] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57371,7 +57493,7 @@ func (x *ForgeAgentControlResponse_MachineValidationFilter) String() string { func (*ForgeAgentControlResponse_MachineValidationFilter) ProtoMessage() {} func (x *ForgeAgentControlResponse_MachineValidationFilter) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[854] + mi := &file_nico_proto_msgTypes[856] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57384,7 +57506,7 @@ func (x *ForgeAgentControlResponse_MachineValidationFilter) ProtoReflect() proto // Deprecated: Use ForgeAgentControlResponse_MachineValidationFilter.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_MachineValidationFilter) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 9} + return file_nico_proto_rawDescGZIP(), []int{335, 9} } func (x *ForgeAgentControlResponse_MachineValidationFilter) GetTags() []string { @@ -57424,7 +57546,7 @@ type ForgeAgentControlResponse_MlxAction struct { func (x *ForgeAgentControlResponse_MlxAction) Reset() { *x = ForgeAgentControlResponse_MlxAction{} - mi := &file_nico_proto_msgTypes[855] + mi := &file_nico_proto_msgTypes[857] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57436,7 +57558,7 @@ func (x *ForgeAgentControlResponse_MlxAction) String() string { func (*ForgeAgentControlResponse_MlxAction) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxAction) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[855] + mi := &file_nico_proto_msgTypes[857] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57449,7 +57571,7 @@ func (x *ForgeAgentControlResponse_MlxAction) ProtoReflect() protoreflect.Messag // Deprecated: Use ForgeAgentControlResponse_MlxAction.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_MlxAction) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 10} + return file_nico_proto_rawDescGZIP(), []int{335, 10} } func (x *ForgeAgentControlResponse_MlxAction) GetDeviceActions() []*ForgeAgentControlResponse_MlxDeviceAction { @@ -57476,7 +57598,7 @@ type ForgeAgentControlResponse_MlxDeviceAction struct { func (x *ForgeAgentControlResponse_MlxDeviceAction) Reset() { *x = ForgeAgentControlResponse_MlxDeviceAction{} - mi := &file_nico_proto_msgTypes[856] + mi := &file_nico_proto_msgTypes[858] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57488,7 +57610,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceAction) String() string { func (*ForgeAgentControlResponse_MlxDeviceAction) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceAction) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[856] + mi := &file_nico_proto_msgTypes[858] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57501,7 +57623,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceAction) ProtoReflect() protoreflect. // Deprecated: Use ForgeAgentControlResponse_MlxDeviceAction.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_MlxDeviceAction) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 11} + return file_nico_proto_rawDescGZIP(), []int{335, 11} } func (x *ForgeAgentControlResponse_MlxDeviceAction) GetPciName() string { @@ -57610,7 +57732,7 @@ type ForgeAgentControlResponse_MlxDeviceNoop struct { func (x *ForgeAgentControlResponse_MlxDeviceNoop) Reset() { *x = ForgeAgentControlResponse_MlxDeviceNoop{} - mi := &file_nico_proto_msgTypes[857] + mi := &file_nico_proto_msgTypes[859] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57622,7 +57744,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceNoop) String() string { func (*ForgeAgentControlResponse_MlxDeviceNoop) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceNoop) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[857] + mi := &file_nico_proto_msgTypes[859] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57635,7 +57757,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceNoop) ProtoReflect() protoreflect.Me // Deprecated: Use ForgeAgentControlResponse_MlxDeviceNoop.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_MlxDeviceNoop) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 12} + return file_nico_proto_rawDescGZIP(), []int{335, 12} } type ForgeAgentControlResponse_MlxDeviceLock struct { @@ -57647,7 +57769,7 @@ type ForgeAgentControlResponse_MlxDeviceLock struct { func (x *ForgeAgentControlResponse_MlxDeviceLock) Reset() { *x = ForgeAgentControlResponse_MlxDeviceLock{} - mi := &file_nico_proto_msgTypes[858] + mi := &file_nico_proto_msgTypes[860] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57659,7 +57781,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceLock) String() string { func (*ForgeAgentControlResponse_MlxDeviceLock) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceLock) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[858] + mi := &file_nico_proto_msgTypes[860] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57672,7 +57794,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceLock) ProtoReflect() protoreflect.Me // Deprecated: Use ForgeAgentControlResponse_MlxDeviceLock.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_MlxDeviceLock) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 13} + return file_nico_proto_rawDescGZIP(), []int{335, 13} } func (x *ForgeAgentControlResponse_MlxDeviceLock) GetKey() string { @@ -57691,7 +57813,7 @@ type ForgeAgentControlResponse_MlxDeviceUnlock struct { func (x *ForgeAgentControlResponse_MlxDeviceUnlock) Reset() { *x = ForgeAgentControlResponse_MlxDeviceUnlock{} - mi := &file_nico_proto_msgTypes[859] + mi := &file_nico_proto_msgTypes[861] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57703,7 +57825,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceUnlock) String() string { func (*ForgeAgentControlResponse_MlxDeviceUnlock) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceUnlock) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[859] + mi := &file_nico_proto_msgTypes[861] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57716,7 +57838,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceUnlock) ProtoReflect() protoreflect. // Deprecated: Use ForgeAgentControlResponse_MlxDeviceUnlock.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_MlxDeviceUnlock) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 14} + return file_nico_proto_rawDescGZIP(), []int{335, 14} } func (x *ForgeAgentControlResponse_MlxDeviceUnlock) GetKey() string { @@ -57735,7 +57857,7 @@ type ForgeAgentControlResponse_MlxDeviceApplyProfile struct { func (x *ForgeAgentControlResponse_MlxDeviceApplyProfile) Reset() { *x = ForgeAgentControlResponse_MlxDeviceApplyProfile{} - mi := &file_nico_proto_msgTypes[860] + mi := &file_nico_proto_msgTypes[862] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57747,7 +57869,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceApplyProfile) String() string { func (*ForgeAgentControlResponse_MlxDeviceApplyProfile) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceApplyProfile) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[860] + mi := &file_nico_proto_msgTypes[862] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57760,7 +57882,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceApplyProfile) ProtoReflect() protore // Deprecated: Use ForgeAgentControlResponse_MlxDeviceApplyProfile.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_MlxDeviceApplyProfile) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 15} + return file_nico_proto_rawDescGZIP(), []int{335, 15} } func (x *ForgeAgentControlResponse_MlxDeviceApplyProfile) GetSerializedProfile() *SerializableMlxConfigProfile { @@ -57779,7 +57901,7 @@ type ForgeAgentControlResponse_MlxDeviceApplyFirmware struct { func (x *ForgeAgentControlResponse_MlxDeviceApplyFirmware) Reset() { *x = ForgeAgentControlResponse_MlxDeviceApplyFirmware{} - mi := &file_nico_proto_msgTypes[861] + mi := &file_nico_proto_msgTypes[863] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57791,7 +57913,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceApplyFirmware) String() string { func (*ForgeAgentControlResponse_MlxDeviceApplyFirmware) ProtoMessage() {} func (x *ForgeAgentControlResponse_MlxDeviceApplyFirmware) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[861] + mi := &file_nico_proto_msgTypes[863] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57804,7 +57926,7 @@ func (x *ForgeAgentControlResponse_MlxDeviceApplyFirmware) ProtoReflect() protor // Deprecated: Use ForgeAgentControlResponse_MlxDeviceApplyFirmware.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_MlxDeviceApplyFirmware) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 16} + return file_nico_proto_rawDescGZIP(), []int{335, 16} } func (x *ForgeAgentControlResponse_MlxDeviceApplyFirmware) GetProfile() *FirmwareFlasherProfile { @@ -57822,7 +57944,7 @@ type ForgeAgentControlResponse_FirmwareUpgrade struct { func (x *ForgeAgentControlResponse_FirmwareUpgrade) Reset() { *x = ForgeAgentControlResponse_FirmwareUpgrade{} - mi := &file_nico_proto_msgTypes[862] + mi := &file_nico_proto_msgTypes[864] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57834,7 +57956,7 @@ func (x *ForgeAgentControlResponse_FirmwareUpgrade) String() string { func (*ForgeAgentControlResponse_FirmwareUpgrade) ProtoMessage() {} func (x *ForgeAgentControlResponse_FirmwareUpgrade) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[862] + mi := &file_nico_proto_msgTypes[864] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57847,7 +57969,7 @@ func (x *ForgeAgentControlResponse_FirmwareUpgrade) ProtoReflect() protoreflect. // Deprecated: Use ForgeAgentControlResponse_FirmwareUpgrade.ProtoReflect.Descriptor instead. func (*ForgeAgentControlResponse_FirmwareUpgrade) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{333, 17} + return file_nico_proto_rawDescGZIP(), []int{335, 17} } type ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair struct { @@ -57860,7 +57982,7 @@ type ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair struct { func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair) Reset() { *x = ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair{} - mi := &file_nico_proto_msgTypes[863] + mi := &file_nico_proto_msgTypes[865] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57872,7 +57994,7 @@ func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair) Stri func (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair) ProtoMessage() {} func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[863] + mi := &file_nico_proto_msgTypes[865] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57885,7 +58007,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_proto_rawDescGZIP(), []int{333, 0, 0} + return file_nico_proto_rawDescGZIP(), []int{335, 0, 0} } func (x *ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair) GetKey() string { @@ -57913,7 +58035,7 @@ type MachineCleanupInfo_CleanupStepResult struct { func (x *MachineCleanupInfo_CleanupStepResult) Reset() { *x = MachineCleanupInfo_CleanupStepResult{} - mi := &file_nico_proto_msgTypes[864] + mi := &file_nico_proto_msgTypes[866] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57925,7 +58047,7 @@ func (x *MachineCleanupInfo_CleanupStepResult) String() string { func (*MachineCleanupInfo_CleanupStepResult) ProtoMessage() {} func (x *MachineCleanupInfo_CleanupStepResult) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[864] + mi := &file_nico_proto_msgTypes[866] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57938,7 +58060,7 @@ func (x *MachineCleanupInfo_CleanupStepResult) ProtoReflect() protoreflect.Messa // Deprecated: Use MachineCleanupInfo_CleanupStepResult.ProtoReflect.Descriptor instead. func (*MachineCleanupInfo_CleanupStepResult) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{336, 0} + return file_nico_proto_rawDescGZIP(), []int{338, 0} } func (x *MachineCleanupInfo_CleanupStepResult) GetResult() MachineCleanupInfo_CleanupResult { @@ -57970,7 +58092,7 @@ type DpuReprovisioningListResponse_DpuReprovisioningListItem struct { func (x *DpuReprovisioningListResponse_DpuReprovisioningListItem) Reset() { *x = DpuReprovisioningListResponse_DpuReprovisioningListItem{} - mi := &file_nico_proto_msgTypes[865] + mi := &file_nico_proto_msgTypes[867] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57982,7 +58104,7 @@ func (x *DpuReprovisioningListResponse_DpuReprovisioningListItem) String() strin func (*DpuReprovisioningListResponse_DpuReprovisioningListItem) ProtoMessage() {} func (x *DpuReprovisioningListResponse_DpuReprovisioningListItem) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[865] + mi := &file_nico_proto_msgTypes[867] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57995,7 +58117,7 @@ func (x *DpuReprovisioningListResponse_DpuReprovisioningListItem) ProtoReflect() // Deprecated: Use DpuReprovisioningListResponse_DpuReprovisioningListItem.ProtoReflect.Descriptor instead. func (*DpuReprovisioningListResponse_DpuReprovisioningListItem) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{418, 0} + return file_nico_proto_rawDescGZIP(), []int{420, 0} } func (x *DpuReprovisioningListResponse_DpuReprovisioningListItem) GetId() *MachineId { @@ -58061,7 +58183,7 @@ type HostReprovisioningListResponse_HostReprovisioningListItem struct { func (x *HostReprovisioningListResponse_HostReprovisioningListItem) Reset() { *x = HostReprovisioningListResponse_HostReprovisioningListItem{} - mi := &file_nico_proto_msgTypes[866] + mi := &file_nico_proto_msgTypes[868] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58073,7 +58195,7 @@ func (x *HostReprovisioningListResponse_HostReprovisioningListItem) String() str func (*HostReprovisioningListResponse_HostReprovisioningListItem) ProtoMessage() {} func (x *HostReprovisioningListResponse_HostReprovisioningListItem) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[866] + mi := &file_nico_proto_msgTypes[868] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58086,7 +58208,7 @@ func (x *HostReprovisioningListResponse_HostReprovisioningListItem) ProtoReflect // Deprecated: Use HostReprovisioningListResponse_HostReprovisioningListItem.ProtoReflect.Descriptor instead. func (*HostReprovisioningListResponse_HostReprovisioningListItem) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{421, 0} + return file_nico_proto_rawDescGZIP(), []int{423, 0} } func (x *HostReprovisioningListResponse_HostReprovisioningListItem) GetId() *MachineId { @@ -58157,7 +58279,7 @@ type MachineValidationTestUpdateRequest_Payload struct { func (x *MachineValidationTestUpdateRequest_Payload) Reset() { *x = MachineValidationTestUpdateRequest_Payload{} - mi := &file_nico_proto_msgTypes[867] + mi := &file_nico_proto_msgTypes[869] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58169,7 +58291,7 @@ func (x *MachineValidationTestUpdateRequest_Payload) String() string { func (*MachineValidationTestUpdateRequest_Payload) ProtoMessage() {} func (x *MachineValidationTestUpdateRequest_Payload) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[867] + mi := &file_nico_proto_msgTypes[869] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58182,7 +58304,7 @@ func (x *MachineValidationTestUpdateRequest_Payload) ProtoReflect() protoreflect // Deprecated: Use MachineValidationTestUpdateRequest_Payload.ProtoReflect.Descriptor instead. func (*MachineValidationTestUpdateRequest_Payload) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{517, 0} + return file_nico_proto_rawDescGZIP(), []int{519, 0} } func (x *MachineValidationTestUpdateRequest_Payload) GetName() string { @@ -58322,7 +58444,7 @@ type DPFStateResponse_DPFState struct { func (x *DPFStateResponse_DPFState) Reset() { *x = DPFStateResponse_DPFState{} - mi := &file_nico_proto_msgTypes[873] + mi := &file_nico_proto_msgTypes[875] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58334,7 +58456,7 @@ func (x *DPFStateResponse_DPFState) String() string { func (*DPFStateResponse_DPFState) ProtoMessage() {} func (x *DPFStateResponse_DPFState) ProtoReflect() protoreflect.Message { - mi := &file_nico_proto_msgTypes[873] + mi := &file_nico_proto_msgTypes[875] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58347,7 +58469,7 @@ func (x *DPFStateResponse_DPFState) ProtoReflect() protoreflect.Message { // Deprecated: Use DPFStateResponse_DPFState.ProtoReflect.Descriptor instead. func (*DPFStateResponse_DPFState) Descriptor() ([]byte, []int) { - return file_nico_proto_rawDescGZIP(), []int{771, 0} + return file_nico_proto_rawDescGZIP(), []int{773, 0} } func (x *DPFStateResponse_DPFState) GetMachineId() *MachineId { @@ -59613,13 +59735,22 @@ const file_nico_proto_rawDesc = "" + "\x05Issue\x120\n" + "\bcategory\x18\x01 \x01(\x0e2\x14.forge.IssueCategoryR\bcategory\x12\x18\n" + "\asummary\x18\x02 \x01(\tR\asummary\x12\x18\n" + - "\adetails\x18\x03 \x01(\tR\adetails\"\xb3\x01\n" + + "\adetails\x18\x03 \x01(\tR\adetails\"\x85\x01\n" + + "\x11DeleteInitiatedBy\x12\x10\n" + + "\x03org\x18\x01 \x01(\tR\x03org\x12(\n" + + "\x10org_display_name\x18\x02 \x01(\tR\x0eorgDisplayName\x12\x17\n" + + "\auser_id\x18\x03 \x01(\tR\x06userId\x12\x1b\n" + + "\ttenant_id\x18\x04 \x01(\tR\btenantId\"P\n" + + "\x11DeleteAttribution\x12;\n" + + "\finitiated_by\x18\x01 \x01(\v2\x18.forge.DeleteInitiatedByR\vinitiatedBy\"\x98\x02\n" + "\x16InstanceReleaseRequest\x12\"\n" + "\x02id\x18\x01 \x01(\v2\x12.common.InstanceIdR\x02id\x12'\n" + "\x05issue\x18\x02 \x01(\v2\f.forge.IssueH\x00R\x05issue\x88\x01\x01\x12-\n" + - "\x10is_repair_tenant\x18\x03 \x01(\bH\x01R\x0eisRepairTenant\x88\x01\x01B\b\n" + + "\x10is_repair_tenant\x18\x03 \x01(\bH\x01R\x0eisRepairTenant\x88\x01\x01\x12L\n" + + "\x12delete_attribution\x18\x04 \x01(\v2\x18.forge.DeleteAttributionH\x02R\x11deleteAttribution\x88\x01\x01B\b\n" + "\x06_issueB\x13\n" + - "\x11_is_repair_tenant\"\x17\n" + + "\x11_is_repair_tenantB\x15\n" + + "\x13_delete_attribution\"\x17\n" + "\x15InstanceReleaseResult\"s\n" + "\x14MachinesByIdsRequest\x122\n" + "\vmachine_ids\x18\x01 \x03(\v2\x11.common.MachineIdR\n" + @@ -63964,7 +64095,7 @@ func file_nico_proto_rawDescGZIP() []byte { } var file_nico_proto_enumTypes = make([]protoimpl.EnumInfo, 87) -var file_nico_proto_msgTypes = make([]protoimpl.MessageInfo, 874) +var file_nico_proto_msgTypes = make([]protoimpl.MessageInfo, 876) var file_nico_proto_goTypes = []any{ (SpdmAttestationStatus)(0), // 0: forge.SpdmAttestationStatus (SpdmListAttestationMachinesRequestSelector)(0), // 1: forge.SpdmListAttestationMachinesRequestSelector @@ -64268,1083 +64399,1085 @@ var file_nico_proto_goTypes = []any{ (*InstancePhoneHomeLastContactRequest)(nil), // 299: forge.InstancePhoneHomeLastContactRequest (*InstancePhoneHomeLastContactResponse)(nil), // 300: forge.InstancePhoneHomeLastContactResponse (*Issue)(nil), // 301: forge.Issue - (*InstanceReleaseRequest)(nil), // 302: forge.InstanceReleaseRequest - (*InstanceReleaseResult)(nil), // 303: forge.InstanceReleaseResult - (*MachinesByIdsRequest)(nil), // 304: forge.MachinesByIdsRequest - (*MachineSearchConfig)(nil), // 305: forge.MachineSearchConfig - (*MachineStateHistoriesRequest)(nil), // 306: forge.MachineStateHistoriesRequest - (*MachineStateHistories)(nil), // 307: forge.MachineStateHistories - (*MachineStateHistoryRecords)(nil), // 308: forge.MachineStateHistoryRecords - (*MachineHealthHistoriesRequest)(nil), // 309: forge.MachineHealthHistoriesRequest - (*HealthHistories)(nil), // 310: forge.HealthHistories - (*HealthHistoryRecords)(nil), // 311: forge.HealthHistoryRecords - (*HealthHistoryRecord)(nil), // 312: forge.HealthHistoryRecord - (*TenantByOrganizationIdsRequest)(nil), // 313: forge.TenantByOrganizationIdsRequest - (*TenantSearchFilter)(nil), // 314: forge.TenantSearchFilter - (*TenantList)(nil), // 315: forge.TenantList - (*TenantOrganizationIdList)(nil), // 316: forge.TenantOrganizationIdList - (*InterfaceList)(nil), // 317: forge.InterfaceList - (*MachineList)(nil), // 318: forge.MachineList - (*InterfaceDeleteQuery)(nil), // 319: forge.InterfaceDeleteQuery - (*InterfaceSearchQuery)(nil), // 320: forge.InterfaceSearchQuery - (*AssignStaticAddressRequest)(nil), // 321: forge.AssignStaticAddressRequest - (*AssignStaticAddressResponse)(nil), // 322: forge.AssignStaticAddressResponse - (*RemoveStaticAddressRequest)(nil), // 323: forge.RemoveStaticAddressRequest - (*RemoveStaticAddressResponse)(nil), // 324: forge.RemoveStaticAddressResponse - (*FindInterfaceAddressesRequest)(nil), // 325: forge.FindInterfaceAddressesRequest - (*InterfaceAddress)(nil), // 326: forge.InterfaceAddress - (*FindInterfaceAddressesResponse)(nil), // 327: forge.FindInterfaceAddressesResponse - (*BmcInfo)(nil), // 328: forge.BmcInfo - (*SwitchNvosInfo)(nil), // 329: forge.SwitchNvosInfo - (*Machine)(nil), // 330: forge.Machine - (*DpfMachineState)(nil), // 331: forge.DpfMachineState - (*InstanceNetworkRestrictions)(nil), // 332: forge.InstanceNetworkRestrictions - (*MachineMetadataUpdateRequest)(nil), // 333: forge.MachineMetadataUpdateRequest - (*RackMetadataUpdateRequest)(nil), // 334: forge.RackMetadataUpdateRequest - (*SwitchMetadataUpdateRequest)(nil), // 335: forge.SwitchMetadataUpdateRequest - (*PowerShelfMetadataUpdateRequest)(nil), // 336: forge.PowerShelfMetadataUpdateRequest - (*DpuAgentInventoryReport)(nil), // 337: forge.DpuAgentInventoryReport - (*MachineInventory)(nil), // 338: forge.MachineInventory - (*MachineInventorySoftwareComponent)(nil), // 339: forge.MachineInventorySoftwareComponent - (*HealthSourceOrigin)(nil), // 340: forge.HealthSourceOrigin - (*ControllerStateReason)(nil), // 341: forge.ControllerStateReason - (*ControllerStateSourceReference)(nil), // 342: forge.ControllerStateSourceReference - (*StateSla)(nil), // 343: forge.StateSla - (*InstanceTenantStatus)(nil), // 344: forge.InstanceTenantStatus - (*MachineEvent)(nil), // 345: forge.MachineEvent - (*MachineInterface)(nil), // 346: forge.MachineInterface - (*InfinibandStatusObservation)(nil), // 347: forge.InfinibandStatusObservation - (*MachineIbInterface)(nil), // 348: forge.MachineIbInterface - (*DhcpDiscovery)(nil), // 349: forge.DhcpDiscovery - (*ExpireDhcpLeaseRequest)(nil), // 350: forge.ExpireDhcpLeaseRequest - (*ExpireDhcpLeaseResponse)(nil), // 351: forge.ExpireDhcpLeaseResponse - (*DhcpRecord)(nil), // 352: forge.DhcpRecord - (*NetworkSegmentList)(nil), // 353: forge.NetworkSegmentList - (*SSHKeyValidationRequest)(nil), // 354: forge.SSHKeyValidationRequest - (*SSHKeyValidationResponse)(nil), // 355: forge.SSHKeyValidationResponse - (*GetBmcCredentialsRequest)(nil), // 356: forge.GetBmcCredentialsRequest - (*GetSwitchNvosCredentialsRequest)(nil), // 357: forge.GetSwitchNvosCredentialsRequest - (*GetBmcCredentialsResponse)(nil), // 358: forge.GetBmcCredentialsResponse - (*BmcCredentials)(nil), // 359: forge.BmcCredentials - (*GetSiteExplorationRequest)(nil), // 360: forge.GetSiteExplorationRequest - (*ClearSiteExplorationErrorRequest)(nil), // 361: forge.ClearSiteExplorationErrorRequest - (*ReExploreEndpointRequest)(nil), // 362: forge.ReExploreEndpointRequest - (*RefreshEndpointReportRequest)(nil), // 363: forge.RefreshEndpointReportRequest - (*DeleteExploredEndpointRequest)(nil), // 364: forge.DeleteExploredEndpointRequest - (*PauseExploredEndpointRemediationRequest)(nil), // 365: forge.PauseExploredEndpointRemediationRequest - (*DeleteExploredEndpointResponse)(nil), // 366: forge.DeleteExploredEndpointResponse - (*BmcEndpointRequest)(nil), // 367: forge.BmcEndpointRequest - (*SshTimeoutConfig)(nil), // 368: forge.SshTimeoutConfig - (*SshRequest)(nil), // 369: forge.SshRequest - (*CopyBfbToDpuRshimRequest)(nil), // 370: forge.CopyBfbToDpuRshimRequest - (*UpdateMachineHardwareInfoRequest)(nil), // 371: forge.UpdateMachineHardwareInfoRequest - (*MachineHardwareInfo)(nil), // 372: forge.MachineHardwareInfo - (*ManagedHostNetworkConfigRequest)(nil), // 373: forge.ManagedHostNetworkConfigRequest - (*ManagedHostNetworkConfigResponse)(nil), // 374: forge.ManagedHostNetworkConfigResponse - (*TrafficInterceptConfig)(nil), // 375: forge.TrafficInterceptConfig - (*TrafficInterceptBridging)(nil), // 376: forge.TrafficInterceptBridging - (*ManagedHostDpuExtensionServiceConfig)(nil), // 377: forge.ManagedHostDpuExtensionServiceConfig - (*ManagedHostQuarantineState)(nil), // 378: forge.ManagedHostQuarantineState - (*GetManagedHostQuarantineStateRequest)(nil), // 379: forge.GetManagedHostQuarantineStateRequest - (*GetManagedHostQuarantineStateResponse)(nil), // 380: forge.GetManagedHostQuarantineStateResponse - (*SetManagedHostQuarantineStateRequest)(nil), // 381: forge.SetManagedHostQuarantineStateRequest - (*SetManagedHostQuarantineStateResponse)(nil), // 382: forge.SetManagedHostQuarantineStateResponse - (*ClearManagedHostQuarantineStateRequest)(nil), // 383: forge.ClearManagedHostQuarantineStateRequest - (*ClearManagedHostQuarantineStateResponse)(nil), // 384: forge.ClearManagedHostQuarantineStateResponse - (*ManagedHostNetworkConfig)(nil), // 385: forge.ManagedHostNetworkConfig - (*FlatInterfaceConfig)(nil), // 386: forge.FlatInterfaceConfig - (*FlatInterfaceRoutingProfile)(nil), // 387: forge.FlatInterfaceRoutingProfile - (*FlatInterfaceIpv6Config)(nil), // 388: forge.FlatInterfaceIpv6Config - (*FlatInterfaceNetworkSecurityGroupConfig)(nil), // 389: forge.FlatInterfaceNetworkSecurityGroupConfig - (*ManagedHostNetworkStatusRequest)(nil), // 390: forge.ManagedHostNetworkStatusRequest - (*ManagedHostNetworkStatusResponse)(nil), // 391: forge.ManagedHostNetworkStatusResponse - (*DpuAgentUpgradeCheckRequest)(nil), // 392: forge.DpuAgentUpgradeCheckRequest - (*DpuAgentUpgradeCheckResponse)(nil), // 393: forge.DpuAgentUpgradeCheckResponse - (*DpuAgentUpgradePolicyRequest)(nil), // 394: forge.DpuAgentUpgradePolicyRequest - (*DpuAgentUpgradePolicyResponse)(nil), // 395: forge.DpuAgentUpgradePolicyResponse - (*AdminForceDeleteMachineRequest)(nil), // 396: forge.AdminForceDeleteMachineRequest - (*AdminForceDeleteMachineResponse)(nil), // 397: forge.AdminForceDeleteMachineResponse - (*DisableSecureBootResponse)(nil), // 398: forge.DisableSecureBootResponse - (*LockdownRequest)(nil), // 399: forge.LockdownRequest - (*LockdownResponse)(nil), // 400: forge.LockdownResponse - (*LockdownStatusRequest)(nil), // 401: forge.LockdownStatusRequest - (*MachineSetupStatusRequest)(nil), // 402: forge.MachineSetupStatusRequest - (*MachineSetupRequest)(nil), // 403: forge.MachineSetupRequest - (*MachineSetupResponse)(nil), // 404: forge.MachineSetupResponse - (*SetDpuFirstBootOrderRequest)(nil), // 405: forge.SetDpuFirstBootOrderRequest - (*SetDpuFirstBootOrderResponse)(nil), // 406: forge.SetDpuFirstBootOrderResponse - (*AdminRebootRequest)(nil), // 407: forge.AdminRebootRequest - (*AdminRebootResponse)(nil), // 408: forge.AdminRebootResponse - (*AdminBmcResetRequest)(nil), // 409: forge.AdminBmcResetRequest - (*AdminBmcResetResponse)(nil), // 410: forge.AdminBmcResetResponse - (*EnableInfiniteBootRequest)(nil), // 411: forge.EnableInfiniteBootRequest - (*EnableInfiniteBootResponse)(nil), // 412: forge.EnableInfiniteBootResponse - (*IsInfiniteBootEnabledRequest)(nil), // 413: forge.IsInfiniteBootEnabledRequest - (*IsInfiniteBootEnabledResponse)(nil), // 414: forge.IsInfiniteBootEnabledResponse - (*BMCMetaDataGetRequest)(nil), // 415: forge.BMCMetaDataGetRequest - (*BMCMetaDataGetResponse)(nil), // 416: forge.BMCMetaDataGetResponse - (*MachineCredentialsUpdateRequest)(nil), // 417: forge.MachineCredentialsUpdateRequest - (*MachineCredentialsUpdateResponse)(nil), // 418: forge.MachineCredentialsUpdateResponse - (*ForgeAgentControlRequest)(nil), // 419: forge.ForgeAgentControlRequest - (*ForgeAgentControlResponse)(nil), // 420: forge.ForgeAgentControlResponse - (*MachineDiscoveryInfo)(nil), // 421: forge.MachineDiscoveryInfo - (*MachineDiscoveryCompletedRequest)(nil), // 422: forge.MachineDiscoveryCompletedRequest - (*MachineCleanupInfo)(nil), // 423: forge.MachineCleanupInfo - (*MachineCertificate)(nil), // 424: forge.MachineCertificate - (*MachineCertificateRenewRequest)(nil), // 425: forge.MachineCertificateRenewRequest - (*MachineCertificateResult)(nil), // 426: forge.MachineCertificateResult - (*MachineDiscoveryResult)(nil), // 427: forge.MachineDiscoveryResult - (*MachineDiscoveryCompletedResponse)(nil), // 428: forge.MachineDiscoveryCompletedResponse - (*MachineCleanupResult)(nil), // 429: forge.MachineCleanupResult - (*ForgeScoutErrorReport)(nil), // 430: forge.ForgeScoutErrorReport - (*ForgeScoutErrorReportResult)(nil), // 431: forge.ForgeScoutErrorReportResult - (*PxeInstructionRequest)(nil), // 432: forge.PxeInstructionRequest - (*PxeInstructions)(nil), // 433: forge.PxeInstructions - (*CloudInitDiscoveryInstructions)(nil), // 434: forge.CloudInitDiscoveryInstructions - (*CloudInitMetaData)(nil), // 435: forge.CloudInitMetaData - (*CloudInitInstructionsRequest)(nil), // 436: forge.CloudInitInstructionsRequest - (*CloudInitInstructions)(nil), // 437: forge.CloudInitInstructions - (*DpuNetworkStatus)(nil), // 438: forge.DpuNetworkStatus - (*LastDhcpRequest)(nil), // 439: forge.LastDhcpRequest - (*DpuExtensionServiceStatusObservation)(nil), // 440: forge.DpuExtensionServiceStatusObservation - (*DpuExtensionServiceComponent)(nil), // 441: forge.DpuExtensionServiceComponent - (*OptionalHealthReport)(nil), // 442: forge.OptionalHealthReport - (*HealthReportEntry)(nil), // 443: forge.HealthReportEntry - (*InsertMachineHealthReportRequest)(nil), // 444: forge.InsertMachineHealthReportRequest - (*InsertRackHealthReportRequest)(nil), // 445: forge.InsertRackHealthReportRequest - (*RemoveRackHealthReportRequest)(nil), // 446: forge.RemoveRackHealthReportRequest - (*ListRackHealthReportsRequest)(nil), // 447: forge.ListRackHealthReportsRequest - (*InsertSwitchHealthReportRequest)(nil), // 448: forge.InsertSwitchHealthReportRequest - (*RemoveSwitchHealthReportRequest)(nil), // 449: forge.RemoveSwitchHealthReportRequest - (*ListSwitchHealthReportsRequest)(nil), // 450: forge.ListSwitchHealthReportsRequest - (*InsertPowerShelfHealthReportRequest)(nil), // 451: forge.InsertPowerShelfHealthReportRequest - (*RemovePowerShelfHealthReportRequest)(nil), // 452: forge.RemovePowerShelfHealthReportRequest - (*ListPowerShelfHealthReportsRequest)(nil), // 453: forge.ListPowerShelfHealthReportsRequest - (*ListHealthReportResponse)(nil), // 454: forge.ListHealthReportResponse - (*RemoveMachineHealthReportRequest)(nil), // 455: forge.RemoveMachineHealthReportRequest - (*ListNVLinkDomainHealthReportsRequest)(nil), // 456: forge.ListNVLinkDomainHealthReportsRequest - (*InsertNVLinkDomainHealthReportRequest)(nil), // 457: forge.InsertNVLinkDomainHealthReportRequest - (*RemoveNVLinkDomainHealthReportRequest)(nil), // 458: forge.RemoveNVLinkDomainHealthReportRequest - (*InstanceInterfaceStatusObservation)(nil), // 459: forge.InstanceInterfaceStatusObservation - (*FabricInterfaceData)(nil), // 460: forge.FabricInterfaceData - (*LinkData)(nil), // 461: forge.LinkData - (*Tenant)(nil), // 462: forge.Tenant - (*CreateTenantRequest)(nil), // 463: forge.CreateTenantRequest - (*CreateTenantResponse)(nil), // 464: forge.CreateTenantResponse - (*UpdateTenantRequest)(nil), // 465: forge.UpdateTenantRequest - (*UpdateTenantResponse)(nil), // 466: forge.UpdateTenantResponse - (*FindTenantRequest)(nil), // 467: forge.FindTenantRequest - (*FindTenantResponse)(nil), // 468: forge.FindTenantResponse - (*TenantKeysetIdentifier)(nil), // 469: forge.TenantKeysetIdentifier - (*TenantPublicKey)(nil), // 470: forge.TenantPublicKey - (*TenantKeysetContent)(nil), // 471: forge.TenantKeysetContent - (*TenantKeyset)(nil), // 472: forge.TenantKeyset - (*CreateTenantKeysetRequest)(nil), // 473: forge.CreateTenantKeysetRequest - (*CreateTenantKeysetResponse)(nil), // 474: forge.CreateTenantKeysetResponse - (*TenantKeySetList)(nil), // 475: forge.TenantKeySetList - (*UpdateTenantKeysetRequest)(nil), // 476: forge.UpdateTenantKeysetRequest - (*UpdateTenantKeysetResponse)(nil), // 477: forge.UpdateTenantKeysetResponse - (*DeleteTenantKeysetRequest)(nil), // 478: forge.DeleteTenantKeysetRequest - (*DeleteTenantKeysetResponse)(nil), // 479: forge.DeleteTenantKeysetResponse - (*TenantKeysetSearchFilter)(nil), // 480: forge.TenantKeysetSearchFilter - (*TenantKeysetIdList)(nil), // 481: forge.TenantKeysetIdList - (*TenantKeysetsByIdsRequest)(nil), // 482: forge.TenantKeysetsByIdsRequest - (*ValidateTenantPublicKeyRequest)(nil), // 483: forge.ValidateTenantPublicKeyRequest - (*ValidateTenantPublicKeyResponse)(nil), // 484: forge.ValidateTenantPublicKeyResponse - (*ListResourcePoolsRequest)(nil), // 485: forge.ListResourcePoolsRequest - (*ResourcePools)(nil), // 486: forge.ResourcePools - (*ResourcePool)(nil), // 487: forge.ResourcePool - (*GrowResourcePoolRequest)(nil), // 488: forge.GrowResourcePoolRequest - (*GrowResourcePoolResponse)(nil), // 489: forge.GrowResourcePoolResponse - (*Range)(nil), // 490: forge.Range - (*MigrateVpcVniResponse)(nil), // 491: forge.MigrateVpcVniResponse - (*MaintenanceRequest)(nil), // 492: forge.MaintenanceRequest - (*SetDynamicConfigRequest)(nil), // 493: forge.SetDynamicConfigRequest - (*FindIpAddressRequest)(nil), // 494: forge.FindIpAddressRequest - (*FindIpAddressResponse)(nil), // 495: forge.FindIpAddressResponse - (*IdentifyUuidRequest)(nil), // 496: forge.IdentifyUuidRequest - (*IdentifyUuidResponse)(nil), // 497: forge.IdentifyUuidResponse - (*FindBmcIpsRequest)(nil), // 498: forge.FindBmcIpsRequest - (*IdentifyMacRequest)(nil), // 499: forge.IdentifyMacRequest - (*IdentifyMacResponse)(nil), // 500: forge.IdentifyMacResponse - (*IdentifySerialRequest)(nil), // 501: forge.IdentifySerialRequest - (*IdentifySerialResponse)(nil), // 502: forge.IdentifySerialResponse - (*DpuReprovisioningRequest)(nil), // 503: forge.DpuReprovisioningRequest - (*DpuReprovisioningListRequest)(nil), // 504: forge.DpuReprovisioningListRequest - (*DpuReprovisioningListResponse)(nil), // 505: forge.DpuReprovisioningListResponse - (*HostReprovisioningRequest)(nil), // 506: forge.HostReprovisioningRequest - (*HostReprovisioningListRequest)(nil), // 507: forge.HostReprovisioningListRequest - (*HostReprovisioningListResponse)(nil), // 508: forge.HostReprovisioningListResponse - (*DpuOsOperationalState)(nil), // 509: forge.DpuOsOperationalState - (*DpuRepresentorStatus)(nil), // 510: forge.DpuRepresentorStatus - (*DpuInfoStatusObservation)(nil), // 511: forge.DpuInfoStatusObservation - (*DpuInfo)(nil), // 512: forge.DpuInfo - (*GetDpuInfoListRequest)(nil), // 513: forge.GetDpuInfoListRequest - (*GetDpuInfoListResponse)(nil), // 514: forge.GetDpuInfoListResponse - (*IpAddressMatch)(nil), // 515: forge.IpAddressMatch - (*MachineBootOverride)(nil), // 516: forge.MachineBootOverride - (*ConnectedDevice)(nil), // 517: forge.ConnectedDevice - (*ConnectedDeviceList)(nil), // 518: forge.ConnectedDeviceList - (*BmcIpList)(nil), // 519: forge.BmcIpList - (*BmcIp)(nil), // 520: forge.BmcIp - (*MacAddressBmcIp)(nil), // 521: forge.MacAddressBmcIp - (*MachineIdBmcIpPairs)(nil), // 522: forge.MachineIdBmcIpPairs - (*MachineIdBmcIp)(nil), // 523: forge.MachineIdBmcIp - (*NetworkDevice)(nil), // 524: forge.NetworkDevice - (*NetworkTopologyRequest)(nil), // 525: forge.NetworkTopologyRequest - (*NetworkDeviceIdList)(nil), // 526: forge.NetworkDeviceIdList - (*NetworkTopologyData)(nil), // 527: forge.NetworkTopologyData - (*RouteServers)(nil), // 528: forge.RouteServers - (*RouteServerEntries)(nil), // 529: forge.RouteServerEntries - (*RouteServer)(nil), // 530: forge.RouteServer - (*SetHostUefiPasswordRequest)(nil), // 531: forge.SetHostUefiPasswordRequest - (*SetHostUefiPasswordResponse)(nil), // 532: forge.SetHostUefiPasswordResponse - (*ClearHostUefiPasswordRequest)(nil), // 533: forge.ClearHostUefiPasswordRequest - (*ClearHostUefiPasswordResponse)(nil), // 534: forge.ClearHostUefiPasswordResponse - (*OsImageAttributes)(nil), // 535: forge.OsImageAttributes - (*OsImage)(nil), // 536: forge.OsImage - (*ListOsImageRequest)(nil), // 537: forge.ListOsImageRequest - (*ListOsImageResponse)(nil), // 538: forge.ListOsImageResponse - (*DeleteOsImageRequest)(nil), // 539: forge.DeleteOsImageRequest - (*DeleteOsImageResponse)(nil), // 540: forge.DeleteOsImageResponse - (*GetIpxeTemplateRequest)(nil), // 541: forge.GetIpxeTemplateRequest - (*ListIpxeTemplatesRequest)(nil), // 542: forge.ListIpxeTemplatesRequest - (*IpxeTemplateList)(nil), // 543: forge.IpxeTemplateList - (*ExpectedHostNic)(nil), // 544: forge.ExpectedHostNic - (*HostLifecycleProfile)(nil), // 545: forge.HostLifecycleProfile - (*ExpectedMachine)(nil), // 546: forge.ExpectedMachine - (*ExpectedMachineRequest)(nil), // 547: forge.ExpectedMachineRequest - (*ExpectedMachineList)(nil), // 548: forge.ExpectedMachineList - (*LinkedExpectedMachineList)(nil), // 549: forge.LinkedExpectedMachineList - (*LinkedExpectedMachine)(nil), // 550: forge.LinkedExpectedMachine - (*UnexpectedMachineList)(nil), // 551: forge.UnexpectedMachineList - (*UnexpectedMachine)(nil), // 552: forge.UnexpectedMachine - (*BatchExpectedMachineOperationRequest)(nil), // 553: forge.BatchExpectedMachineOperationRequest - (*ExpectedMachineOperationResult)(nil), // 554: forge.ExpectedMachineOperationResult - (*BatchExpectedMachineOperationResponse)(nil), // 555: forge.BatchExpectedMachineOperationResponse - (*MachineRebootCompletedResponse)(nil), // 556: forge.MachineRebootCompletedResponse - (*MachineRebootCompletedRequest)(nil), // 557: forge.MachineRebootCompletedRequest - (*ScoutFirmwareUpgradeStatusRequest)(nil), // 558: forge.ScoutFirmwareUpgradeStatusRequest - (*MachineValidationCompletedRequest)(nil), // 559: forge.MachineValidationCompletedRequest - (*MachineValidationCompletedResponse)(nil), // 560: forge.MachineValidationCompletedResponse - (*MachineValidationResult)(nil), // 561: forge.MachineValidationResult - (*MachineValidationResultPostRequest)(nil), // 562: forge.MachineValidationResultPostRequest - (*MachineValidationResultList)(nil), // 563: forge.MachineValidationResultList - (*MachineValidationGetRequest)(nil), // 564: forge.MachineValidationGetRequest - (*MachineValidationStatus)(nil), // 565: forge.MachineValidationStatus - (*MachineValidationRun)(nil), // 566: forge.MachineValidationRun - (*MachineSetAutoUpdateRequest)(nil), // 567: forge.MachineSetAutoUpdateRequest - (*MachineSetAutoUpdateResponse)(nil), // 568: forge.MachineSetAutoUpdateResponse - (*GetMachineValidationExternalConfigRequest)(nil), // 569: forge.GetMachineValidationExternalConfigRequest - (*MachineValidationExternalConfig)(nil), // 570: forge.MachineValidationExternalConfig - (*GetMachineValidationExternalConfigResponse)(nil), // 571: forge.GetMachineValidationExternalConfigResponse - (*GetMachineValidationExternalConfigsRequest)(nil), // 572: forge.GetMachineValidationExternalConfigsRequest - (*GetMachineValidationExternalConfigsResponse)(nil), // 573: forge.GetMachineValidationExternalConfigsResponse - (*AddUpdateMachineValidationExternalConfigRequest)(nil), // 574: forge.AddUpdateMachineValidationExternalConfigRequest - (*RemoveMachineValidationExternalConfigRequest)(nil), // 575: forge.RemoveMachineValidationExternalConfigRequest - (*MachineValidationOnDemandRequest)(nil), // 576: forge.MachineValidationOnDemandRequest - (*MachineValidationOnDemandResponse)(nil), // 577: forge.MachineValidationOnDemandResponse - (*FirmwareUpgradeActivity)(nil), // 578: forge.FirmwareUpgradeActivity - (*NvosUpdateActivity)(nil), // 579: forge.NvosUpdateActivity - (*ConfigureNmxClusterActivity)(nil), // 580: forge.ConfigureNmxClusterActivity - (*PowerSequenceActivity)(nil), // 581: forge.PowerSequenceActivity - (*MaintenanceActivityConfig)(nil), // 582: forge.MaintenanceActivityConfig - (*RackMaintenanceScope)(nil), // 583: forge.RackMaintenanceScope - (*RackMaintenanceOnDemandRequest)(nil), // 584: forge.RackMaintenanceOnDemandRequest - (*RackMaintenanceOnDemandResponse)(nil), // 585: forge.RackMaintenanceOnDemandResponse - (*AdminPowerControlRequest)(nil), // 586: forge.AdminPowerControlRequest - (*AdminPowerControlResponse)(nil), // 587: forge.AdminPowerControlResponse - (*GetRedfishJobStateRequest)(nil), // 588: forge.GetRedfishJobStateRequest - (*GetRedfishJobStateResponse)(nil), // 589: forge.GetRedfishJobStateResponse - (*MachineValidationRunList)(nil), // 590: forge.MachineValidationRunList - (*MachineValidationRunListGetRequest)(nil), // 591: forge.MachineValidationRunListGetRequest - (*MachineValidationRunItemSearchFilter)(nil), // 592: forge.MachineValidationRunItemSearchFilter - (*MachineValidationRunItemIdList)(nil), // 593: forge.MachineValidationRunItemIdList - (*MachineValidationRunItemsByIdsRequest)(nil), // 594: forge.MachineValidationRunItemsByIdsRequest - (*MachineValidationRunItemList)(nil), // 595: forge.MachineValidationRunItemList - (*MachineValidationRunItem)(nil), // 596: forge.MachineValidationRunItem - (*MachineValidationAttemptGetRequest)(nil), // 597: forge.MachineValidationAttemptGetRequest - (*MachineValidationAttempt)(nil), // 598: forge.MachineValidationAttempt - (*MachineValidationHeartbeatRequest)(nil), // 599: forge.MachineValidationHeartbeatRequest - (*MachineValidationHeartbeatResponse)(nil), // 600: forge.MachineValidationHeartbeatResponse - (*IsBmcInManagedHostResponse)(nil), // 601: forge.IsBmcInManagedHostResponse - (*BmcCredentialStatusResponse)(nil), // 602: forge.BmcCredentialStatusResponse - (*MachineValidationTestsGetRequest)(nil), // 603: forge.MachineValidationTestsGetRequest - (*MachineValidationTestUpdateRequest)(nil), // 604: forge.MachineValidationTestUpdateRequest - (*MachineValidationTestAddRequest)(nil), // 605: forge.MachineValidationTestAddRequest - (*MachineValidationTestAddUpdateResponse)(nil), // 606: forge.MachineValidationTestAddUpdateResponse - (*MachineValidationTestsGetResponse)(nil), // 607: forge.MachineValidationTestsGetResponse - (*MachineValidationTestVerfiedRequest)(nil), // 608: forge.MachineValidationTestVerfiedRequest - (*MachineValidationTestVerfiedResponse)(nil), // 609: forge.MachineValidationTestVerfiedResponse - (*MachineValidationTest)(nil), // 610: forge.MachineValidationTest - (*MachineValidationTestNextVersionResponse)(nil), // 611: forge.MachineValidationTestNextVersionResponse - (*MachineValidationTestNextVersionRequest)(nil), // 612: forge.MachineValidationTestNextVersionRequest - (*MachineValidationTestEnableDisableTestRequest)(nil), // 613: forge.MachineValidationTestEnableDisableTestRequest - (*MachineValidationTestEnableDisableTestResponse)(nil), // 614: forge.MachineValidationTestEnableDisableTestResponse - (*MachineValidationRunRequest)(nil), // 615: forge.MachineValidationRunRequest - (*MachineValidationRunResponse)(nil), // 616: forge.MachineValidationRunResponse - (*MachineCapabilityAttributesCpu)(nil), // 617: forge.MachineCapabilityAttributesCpu - (*MachineCapabilityAttributesGpu)(nil), // 618: forge.MachineCapabilityAttributesGpu - (*MachineCapabilityAttributesMemory)(nil), // 619: forge.MachineCapabilityAttributesMemory - (*MachineCapabilityAttributesStorage)(nil), // 620: forge.MachineCapabilityAttributesStorage - (*MachineCapabilityAttributesNetwork)(nil), // 621: forge.MachineCapabilityAttributesNetwork - (*MachineCapabilityAttributesInfiniband)(nil), // 622: forge.MachineCapabilityAttributesInfiniband - (*MachineCapabilityAttributesDpu)(nil), // 623: forge.MachineCapabilityAttributesDpu - (*MachineCapabilitiesSet)(nil), // 624: forge.MachineCapabilitiesSet - (*InstanceTypeAttributes)(nil), // 625: forge.InstanceTypeAttributes - (*InstanceType)(nil), // 626: forge.InstanceType - (*InstanceTypeMachineCapabilityFilterAttributes)(nil), // 627: forge.InstanceTypeMachineCapabilityFilterAttributes - (*CreateInstanceTypeRequest)(nil), // 628: forge.CreateInstanceTypeRequest - (*CreateInstanceTypeResponse)(nil), // 629: forge.CreateInstanceTypeResponse - (*FindInstanceTypeIdsRequest)(nil), // 630: forge.FindInstanceTypeIdsRequest - (*FindInstanceTypeIdsResponse)(nil), // 631: forge.FindInstanceTypeIdsResponse - (*FindInstanceTypesByIdsRequest)(nil), // 632: forge.FindInstanceTypesByIdsRequest - (*FindInstanceTypesByIdsResponse)(nil), // 633: forge.FindInstanceTypesByIdsResponse - (*DeleteInstanceTypeRequest)(nil), // 634: forge.DeleteInstanceTypeRequest - (*DeleteInstanceTypeResponse)(nil), // 635: forge.DeleteInstanceTypeResponse - (*UpdateInstanceTypeResponse)(nil), // 636: forge.UpdateInstanceTypeResponse - (*UpdateInstanceTypeRequest)(nil), // 637: forge.UpdateInstanceTypeRequest - (*AssociateMachinesWithInstanceTypeRequest)(nil), // 638: forge.AssociateMachinesWithInstanceTypeRequest - (*AssociateMachinesWithInstanceTypeResponse)(nil), // 639: forge.AssociateMachinesWithInstanceTypeResponse - (*RemoveMachineInstanceTypeAssociationRequest)(nil), // 640: forge.RemoveMachineInstanceTypeAssociationRequest - (*RemoveMachineInstanceTypeAssociationResponse)(nil), // 641: forge.RemoveMachineInstanceTypeAssociationResponse - (*RedfishBrowseRequest)(nil), // 642: forge.RedfishBrowseRequest - (*RedfishBrowseResponse)(nil), // 643: forge.RedfishBrowseResponse - (*RedfishListActionsRequest)(nil), // 644: forge.RedfishListActionsRequest - (*RedfishListActionsResponse)(nil), // 645: forge.RedfishListActionsResponse - (*RedfishAction)(nil), // 646: forge.RedfishAction - (*OptionalRedfishActionResult)(nil), // 647: forge.OptionalRedfishActionResult - (*RedfishActionResult)(nil), // 648: forge.RedfishActionResult - (*RedfishCreateActionRequest)(nil), // 649: forge.RedfishCreateActionRequest - (*RedfishCreateActionResponse)(nil), // 650: forge.RedfishCreateActionResponse - (*RedfishActionID)(nil), // 651: forge.RedfishActionID - (*RedfishApproveActionResponse)(nil), // 652: forge.RedfishApproveActionResponse - (*RedfishApplyActionResponse)(nil), // 653: forge.RedfishApplyActionResponse - (*RedfishCancelActionResponse)(nil), // 654: forge.RedfishCancelActionResponse - (*UfmBrowseRequest)(nil), // 655: forge.UfmBrowseRequest - (*UfmBrowseResponse)(nil), // 656: forge.UfmBrowseResponse - (*NetworkSecurityGroupAttributes)(nil), // 657: forge.NetworkSecurityGroupAttributes - (*NetworkSecurityGroup)(nil), // 658: forge.NetworkSecurityGroup - (*CreateNetworkSecurityGroupRequest)(nil), // 659: forge.CreateNetworkSecurityGroupRequest - (*CreateNetworkSecurityGroupResponse)(nil), // 660: forge.CreateNetworkSecurityGroupResponse - (*FindNetworkSecurityGroupIdsRequest)(nil), // 661: forge.FindNetworkSecurityGroupIdsRequest - (*FindNetworkSecurityGroupIdsResponse)(nil), // 662: forge.FindNetworkSecurityGroupIdsResponse - (*FindNetworkSecurityGroupsByIdsRequest)(nil), // 663: forge.FindNetworkSecurityGroupsByIdsRequest - (*FindNetworkSecurityGroupsByIdsResponse)(nil), // 664: forge.FindNetworkSecurityGroupsByIdsResponse - (*UpdateNetworkSecurityGroupResponse)(nil), // 665: forge.UpdateNetworkSecurityGroupResponse - (*UpdateNetworkSecurityGroupRequest)(nil), // 666: forge.UpdateNetworkSecurityGroupRequest - (*DeleteNetworkSecurityGroupRequest)(nil), // 667: forge.DeleteNetworkSecurityGroupRequest - (*DeleteNetworkSecurityGroupResponse)(nil), // 668: forge.DeleteNetworkSecurityGroupResponse - (*NetworkSecurityGroupStatus)(nil), // 669: forge.NetworkSecurityGroupStatus - (*NetworkSecurityGroupPropagationObjectStatus)(nil), // 670: forge.NetworkSecurityGroupPropagationObjectStatus - (*GetNetworkSecurityGroupPropagationStatusResponse)(nil), // 671: forge.GetNetworkSecurityGroupPropagationStatusResponse - (*NetworkSecurityGroupIdList)(nil), // 672: forge.NetworkSecurityGroupIdList - (*GetNetworkSecurityGroupPropagationStatusRequest)(nil), // 673: forge.GetNetworkSecurityGroupPropagationStatusRequest - (*NetworkSecurityGroupRuleAttributes)(nil), // 674: forge.NetworkSecurityGroupRuleAttributes - (*ResolvedNetworkSecurityGroupRule)(nil), // 675: forge.ResolvedNetworkSecurityGroupRule - (*GetNetworkSecurityGroupAttachmentsRequest)(nil), // 676: forge.GetNetworkSecurityGroupAttachmentsRequest - (*NetworkSecurityGroupAttachments)(nil), // 677: forge.NetworkSecurityGroupAttachments - (*GetNetworkSecurityGroupAttachmentsResponse)(nil), // 678: forge.GetNetworkSecurityGroupAttachmentsResponse - (*GetDesiredFirmwareVersionsRequest)(nil), // 679: forge.GetDesiredFirmwareVersionsRequest - (*GetDesiredFirmwareVersionsResponse)(nil), // 680: forge.GetDesiredFirmwareVersionsResponse - (*DesiredFirmwareVersionEntry)(nil), // 681: forge.DesiredFirmwareVersionEntry - (*SkuComponentChassis)(nil), // 682: forge.SkuComponentChassis - (*SkuComponentCpu)(nil), // 683: forge.SkuComponentCpu - (*SkuComponentGpu)(nil), // 684: forge.SkuComponentGpu - (*SkuComponentEthernetDevices)(nil), // 685: forge.SkuComponentEthernetDevices - (*SkuComponentInfinibandDevices)(nil), // 686: forge.SkuComponentInfinibandDevices - (*SkuComponentStorage)(nil), // 687: forge.SkuComponentStorage - (*SkuComponentStorageController)(nil), // 688: forge.SkuComponentStorageController - (*SkuComponentMemory)(nil), // 689: forge.SkuComponentMemory - (*SkuComponentTpm)(nil), // 690: forge.SkuComponentTpm - (*SkuComponents)(nil), // 691: forge.SkuComponents - (*Sku)(nil), // 692: forge.Sku - (*SkuMachinePair)(nil), // 693: forge.SkuMachinePair - (*RemoveSkuRequest)(nil), // 694: forge.RemoveSkuRequest - (*SkuList)(nil), // 695: forge.SkuList - (*SkuIdList)(nil), // 696: forge.SkuIdList - (*SkuStatus)(nil), // 697: forge.SkuStatus - (*SkusByIdsRequest)(nil), // 698: forge.SkusByIdsRequest - (*SkuSearchFilter)(nil), // 699: forge.SkuSearchFilter - (*DpaInterface)(nil), // 700: forge.DpaInterface - (*DpaInterfaceCreationRequest)(nil), // 701: forge.DpaInterfaceCreationRequest - (*DpaInterfaceIdList)(nil), // 702: forge.DpaInterfaceIdList - (*DpaInterfacesByIdsRequest)(nil), // 703: forge.DpaInterfacesByIdsRequest - (*DpaInterfaceList)(nil), // 704: forge.DpaInterfaceList - (*DpaNetworkObservationSetRequest)(nil), // 705: forge.DpaNetworkObservationSetRequest - (*DpaInterfaceDeletionRequest)(nil), // 706: forge.DpaInterfaceDeletionRequest - (*DpaInterfaceDeletionResult)(nil), // 707: forge.DpaInterfaceDeletionResult - (*SkuUpdateMetadataRequest)(nil), // 708: forge.SkuUpdateMetadataRequest - (*PowerOptionRequest)(nil), // 709: forge.PowerOptionRequest - (*PowerOptionUpdateRequest)(nil), // 710: forge.PowerOptionUpdateRequest - (*PowerOptions)(nil), // 711: forge.PowerOptions - (*PowerOptionResponse)(nil), // 712: forge.PowerOptionResponse - (*ComputeAllocationAttributes)(nil), // 713: forge.ComputeAllocationAttributes - (*ComputeAllocation)(nil), // 714: forge.ComputeAllocation - (*CreateComputeAllocationRequest)(nil), // 715: forge.CreateComputeAllocationRequest - (*CreateComputeAllocationResponse)(nil), // 716: forge.CreateComputeAllocationResponse - (*FindComputeAllocationIdsRequest)(nil), // 717: forge.FindComputeAllocationIdsRequest - (*FindComputeAllocationIdsResponse)(nil), // 718: forge.FindComputeAllocationIdsResponse - (*FindComputeAllocationsByIdsRequest)(nil), // 719: forge.FindComputeAllocationsByIdsRequest - (*FindComputeAllocationsByIdsResponse)(nil), // 720: forge.FindComputeAllocationsByIdsResponse - (*UpdateComputeAllocationResponse)(nil), // 721: forge.UpdateComputeAllocationResponse - (*UpdateComputeAllocationRequest)(nil), // 722: forge.UpdateComputeAllocationRequest - (*DeleteComputeAllocationRequest)(nil), // 723: forge.DeleteComputeAllocationRequest - (*DeleteComputeAllocationResponse)(nil), // 724: forge.DeleteComputeAllocationResponse - (*InstanceTypeAllocationStats)(nil), // 725: forge.InstanceTypeAllocationStats - (*GetRackRequest)(nil), // 726: forge.GetRackRequest - (*GetRackResponse)(nil), // 727: forge.GetRackResponse - (*RackList)(nil), // 728: forge.RackList - (*RackSearchFilter)(nil), // 729: forge.RackSearchFilter - (*RackIdList)(nil), // 730: forge.RackIdList - (*RacksByIdsRequest)(nil), // 731: forge.RacksByIdsRequest - (*Rack)(nil), // 732: forge.Rack - (*RackConfig)(nil), // 733: forge.RackConfig - (*RackStatus)(nil), // 734: forge.RackStatus - (*RackStateHistoriesRequest)(nil), // 735: forge.RackStateHistoriesRequest - (*DeleteRackRequest)(nil), // 736: forge.DeleteRackRequest - (*AdminForceDeleteRackRequest)(nil), // 737: forge.AdminForceDeleteRackRequest - (*AdminForceDeleteRackResponse)(nil), // 738: forge.AdminForceDeleteRackResponse - (*RackCapabilityCompute)(nil), // 739: forge.RackCapabilityCompute - (*RackCapabilitySwitch)(nil), // 740: forge.RackCapabilitySwitch - (*RackCapabilityPowerShelf)(nil), // 741: forge.RackCapabilityPowerShelf - (*RackCapabilitiesSet)(nil), // 742: forge.RackCapabilitiesSet - (*RackProfile)(nil), // 743: forge.RackProfile - (*GetRackProfileRequest)(nil), // 744: forge.GetRackProfileRequest - (*GetRackProfileResponse)(nil), // 745: forge.GetRackProfileResponse - (*RackManagerForgeRequest)(nil), // 746: forge.RackManagerForgeRequest - (*RackManagerForgeResponse)(nil), // 747: forge.RackManagerForgeResponse - (*MachineNVLinkInfo)(nil), // 748: forge.MachineNVLinkInfo - (*UpdateMachineNvLinkInfoRequest)(nil), // 749: forge.UpdateMachineNvLinkInfoRequest - (*MachineSpxStatusObservation)(nil), // 750: forge.MachineSpxStatusObservation - (*MachineSpxAttachmentStatusObservation)(nil), // 751: forge.MachineSpxAttachmentStatusObservation - (*NVLinkGpu)(nil), // 752: forge.NVLinkGpu - (*MachineNVLinkStatusObservation)(nil), // 753: forge.MachineNVLinkStatusObservation - (*MachineNVLinkGpuStatusObservation)(nil), // 754: forge.MachineNVLinkGpuStatusObservation - (*NmxcBrowseRequest)(nil), // 755: forge.NmxcBrowseRequest - (*NmxcBrowseResponse)(nil), // 756: forge.NmxcBrowseResponse - (*NVLinkPartition)(nil), // 757: forge.NVLinkPartition - (*NVLinkPartitionList)(nil), // 758: forge.NVLinkPartitionList - (*NVLinkPartitionSearchConfig)(nil), // 759: forge.NVLinkPartitionSearchConfig - (*NVLinkPartitionQuery)(nil), // 760: forge.NVLinkPartitionQuery - (*NVLinkPartitionSearchFilter)(nil), // 761: forge.NVLinkPartitionSearchFilter - (*NVLinkPartitionsByIdsRequest)(nil), // 762: forge.NVLinkPartitionsByIdsRequest - (*NVLinkPartitionIdList)(nil), // 763: forge.NVLinkPartitionIdList - (*NVLinkFabricSearchFilter)(nil), // 764: forge.NVLinkFabricSearchFilter - (*NVLinkLogicalPartitionConfig)(nil), // 765: forge.NVLinkLogicalPartitionConfig - (*NVLinkLogicalPartitionStatus)(nil), // 766: forge.NVLinkLogicalPartitionStatus - (*NVLinkLogicalPartition)(nil), // 767: forge.NVLinkLogicalPartition - (*NVLinkLogicalPartitionList)(nil), // 768: forge.NVLinkLogicalPartitionList - (*NVLinkLogicalPartitionCreationRequest)(nil), // 769: forge.NVLinkLogicalPartitionCreationRequest - (*NVLinkLogicalPartitionDeletionRequest)(nil), // 770: forge.NVLinkLogicalPartitionDeletionRequest - (*NVLinkLogicalPartitionDeletionResult)(nil), // 771: forge.NVLinkLogicalPartitionDeletionResult - (*NVLinkLogicalPartitionSearchFilter)(nil), // 772: forge.NVLinkLogicalPartitionSearchFilter - (*NVLinkLogicalPartitionsByIdsRequest)(nil), // 773: forge.NVLinkLogicalPartitionsByIdsRequest - (*NVLinkLogicalPartitionIdList)(nil), // 774: forge.NVLinkLogicalPartitionIdList - (*NVLinkLogicalPartitionUpdateRequest)(nil), // 775: forge.NVLinkLogicalPartitionUpdateRequest - (*NVLinkLogicalPartitionUpdateResult)(nil), // 776: forge.NVLinkLogicalPartitionUpdateResult - (*CreateBmcUserRequest)(nil), // 777: forge.CreateBmcUserRequest - (*CreateBmcUserResponse)(nil), // 778: forge.CreateBmcUserResponse - (*DeleteBmcUserRequest)(nil), // 779: forge.DeleteBmcUserRequest - (*DeleteBmcUserResponse)(nil), // 780: forge.DeleteBmcUserResponse - (*SetFirmwareUpdateTimeWindowRequest)(nil), // 781: forge.SetFirmwareUpdateTimeWindowRequest - (*SetFirmwareUpdateTimeWindowResponse)(nil), // 782: forge.SetFirmwareUpdateTimeWindowResponse - (*ListHostFirmwareRequest)(nil), // 783: forge.ListHostFirmwareRequest - (*ListHostFirmwareResponse)(nil), // 784: forge.ListHostFirmwareResponse - (*AvailableHostFirmware)(nil), // 785: forge.AvailableHostFirmware - (*TrimTableRequest)(nil), // 786: forge.TrimTableRequest - (*TrimTableResponse)(nil), // 787: forge.TrimTableResponse - (*NvlinkNmxcEndpoint)(nil), // 788: forge.NvlinkNmxcEndpoint - (*NvlinkNmxcEndpointList)(nil), // 789: forge.NvlinkNmxcEndpointList - (*DeleteNvlinkNmxcEndpointRequest)(nil), // 790: forge.DeleteNvlinkNmxcEndpointRequest - (*CreateRemediationRequest)(nil), // 791: forge.CreateRemediationRequest - (*CreateRemediationResponse)(nil), // 792: forge.CreateRemediationResponse - (*RemediationIdList)(nil), // 793: forge.RemediationIdList - (*RemediationList)(nil), // 794: forge.RemediationList - (*Remediation)(nil), // 795: forge.Remediation - (*ApproveRemediationRequest)(nil), // 796: forge.ApproveRemediationRequest - (*RevokeRemediationRequest)(nil), // 797: forge.RevokeRemediationRequest - (*EnableRemediationRequest)(nil), // 798: forge.EnableRemediationRequest - (*DisableRemediationRequest)(nil), // 799: forge.DisableRemediationRequest - (*FindAppliedRemediationIdsRequest)(nil), // 800: forge.FindAppliedRemediationIdsRequest - (*AppliedRemediationIdList)(nil), // 801: forge.AppliedRemediationIdList - (*FindAppliedRemediationsRequest)(nil), // 802: forge.FindAppliedRemediationsRequest - (*AppliedRemediation)(nil), // 803: forge.AppliedRemediation - (*AppliedRemediationList)(nil), // 804: forge.AppliedRemediationList - (*GetNextRemediationForMachineRequest)(nil), // 805: forge.GetNextRemediationForMachineRequest - (*GetNextRemediationForMachineResponse)(nil), // 806: forge.GetNextRemediationForMachineResponse - (*RemediationAppliedRequest)(nil), // 807: forge.RemediationAppliedRequest - (*RemediationApplicationStatus)(nil), // 808: forge.RemediationApplicationStatus - (*SetPrimaryDpuRequest)(nil), // 809: forge.SetPrimaryDpuRequest - (*SetPrimaryInterfaceRequest)(nil), // 810: forge.SetPrimaryInterfaceRequest - (*UsernamePassword)(nil), // 811: forge.UsernamePassword - (*SessionToken)(nil), // 812: forge.SessionToken - (*DpuExtensionServiceCredential)(nil), // 813: forge.DpuExtensionServiceCredential - (*DpuExtensionServiceVersionInfo)(nil), // 814: forge.DpuExtensionServiceVersionInfo - (*DpuExtensionService)(nil), // 815: forge.DpuExtensionService - (*CreateDpuExtensionServiceRequest)(nil), // 816: forge.CreateDpuExtensionServiceRequest - (*UpdateDpuExtensionServiceRequest)(nil), // 817: forge.UpdateDpuExtensionServiceRequest - (*DeleteDpuExtensionServiceRequest)(nil), // 818: forge.DeleteDpuExtensionServiceRequest - (*DeleteDpuExtensionServiceResponse)(nil), // 819: forge.DeleteDpuExtensionServiceResponse - (*DpuExtensionServiceSearchFilter)(nil), // 820: forge.DpuExtensionServiceSearchFilter - (*DpuExtensionServiceIdList)(nil), // 821: forge.DpuExtensionServiceIdList - (*DpuExtensionServicesByIdsRequest)(nil), // 822: forge.DpuExtensionServicesByIdsRequest - (*DpuExtensionServiceList)(nil), // 823: forge.DpuExtensionServiceList - (*GetDpuExtensionServiceVersionsInfoRequest)(nil), // 824: forge.GetDpuExtensionServiceVersionsInfoRequest - (*DpuExtensionServiceVersionInfoList)(nil), // 825: forge.DpuExtensionServiceVersionInfoList - (*FindInstancesByDpuExtensionServiceRequest)(nil), // 826: forge.FindInstancesByDpuExtensionServiceRequest - (*FindInstancesByDpuExtensionServiceResponse)(nil), // 827: forge.FindInstancesByDpuExtensionServiceResponse - (*InstanceDpuExtensionServiceInfo)(nil), // 828: forge.InstanceDpuExtensionServiceInfo - (*DpuExtensionServiceObservabilityConfigPrometheus)(nil), // 829: forge.DpuExtensionServiceObservabilityConfigPrometheus - (*DpuExtensionServiceObservabilityConfigLogging)(nil), // 830: forge.DpuExtensionServiceObservabilityConfigLogging - (*DpuExtensionServiceObservabilityConfig)(nil), // 831: forge.DpuExtensionServiceObservabilityConfig - (*DpuExtensionServiceObservability)(nil), // 832: forge.DpuExtensionServiceObservability - (*ScoutStreamApiBoundMessage)(nil), // 833: forge.ScoutStreamApiBoundMessage - (*ScoutStreamScoutBoundMessage)(nil), // 834: forge.ScoutStreamScoutBoundMessage - (*ScoutStreamInitRequest)(nil), // 835: forge.ScoutStreamInitRequest - (*ScoutStreamShowConnectionsRequest)(nil), // 836: forge.ScoutStreamShowConnectionsRequest - (*ScoutStreamShowConnectionsResponse)(nil), // 837: forge.ScoutStreamShowConnectionsResponse - (*ScoutStreamDisconnectRequest)(nil), // 838: forge.ScoutStreamDisconnectRequest - (*ScoutStreamDisconnectResponse)(nil), // 839: forge.ScoutStreamDisconnectResponse - (*ScoutStreamAdminPingRequest)(nil), // 840: forge.ScoutStreamAdminPingRequest - (*ScoutStreamAdminPingResponse)(nil), // 841: forge.ScoutStreamAdminPingResponse - (*ScoutStreamAgentPingRequest)(nil), // 842: forge.ScoutStreamAgentPingRequest - (*ScoutStreamAgentPingResponse)(nil), // 843: forge.ScoutStreamAgentPingResponse - (*ScoutStreamConnectionInfo)(nil), // 844: forge.ScoutStreamConnectionInfo - (*ScoutStreamError)(nil), // 845: forge.ScoutStreamError - (*PrefixFilterPolicyEntry)(nil), // 846: forge.PrefixFilterPolicyEntry - (*RoutingProfile)(nil), // 847: forge.RoutingProfile - (*DomainLegacy)(nil), // 848: forge.DomainLegacy - (*DomainListLegacy)(nil), // 849: forge.DomainListLegacy - (*DomainDeletionLegacy)(nil), // 850: forge.DomainDeletionLegacy - (*DomainDeletionResultLegacy)(nil), // 851: forge.DomainDeletionResultLegacy - (*DomainSearchQueryLegacy)(nil), // 852: forge.DomainSearchQueryLegacy - (*PxeDomain)(nil), // 853: forge.PxeDomain - (*MachinePositionQuery)(nil), // 854: forge.MachinePositionQuery - (*MachinePositionInfoList)(nil), // 855: forge.MachinePositionInfoList - (*MachinePositionInfo)(nil), // 856: forge.MachinePositionInfo - (*ModifyDPFStateRequest)(nil), // 857: forge.ModifyDPFStateRequest - (*DPFStateResponse)(nil), // 858: forge.DPFStateResponse - (*GetDPFStateRequest)(nil), // 859: forge.GetDPFStateRequest - (*GetDPFHostSnapshotRequest)(nil), // 860: forge.GetDPFHostSnapshotRequest - (*DPFHostSnapshotResponse)(nil), // 861: forge.DPFHostSnapshotResponse - (*GetDPFServiceVersionsRequest)(nil), // 862: forge.GetDPFServiceVersionsRequest - (*DPFServiceVersion)(nil), // 863: forge.DPFServiceVersion - (*DPFServiceVersionsResponse)(nil), // 864: forge.DPFServiceVersionsResponse - (*ComponentResult)(nil), // 865: forge.ComponentResult - (*SwitchIdList)(nil), // 866: forge.SwitchIdList - (*PowerShelfIdList)(nil), // 867: forge.PowerShelfIdList - (*GetComponentInventoryRequest)(nil), // 868: forge.GetComponentInventoryRequest - (*ComponentInventoryEntry)(nil), // 869: forge.ComponentInventoryEntry - (*GetComponentInventoryResponse)(nil), // 870: forge.GetComponentInventoryResponse - (*ComponentPowerControlRequest)(nil), // 871: forge.ComponentPowerControlRequest - (*ComponentPowerControlResponse)(nil), // 872: forge.ComponentPowerControlResponse - (*FirmwareUpdateStatus)(nil), // 873: forge.FirmwareUpdateStatus - (*UpdateComputeTrayFirmwareTarget)(nil), // 874: forge.UpdateComputeTrayFirmwareTarget - (*UpdateSwitchFirmwareTarget)(nil), // 875: forge.UpdateSwitchFirmwareTarget - (*UpdatePowerShelfFirmwareTarget)(nil), // 876: forge.UpdatePowerShelfFirmwareTarget - (*UpdateFirmwareObjectTarget)(nil), // 877: forge.UpdateFirmwareObjectTarget - (*UpdateComponentFirmwareRequest)(nil), // 878: forge.UpdateComponentFirmwareRequest - (*UpdateComponentFirmwareResponse)(nil), // 879: forge.UpdateComponentFirmwareResponse - (*GetComponentFirmwareStatusRequest)(nil), // 880: forge.GetComponentFirmwareStatusRequest - (*GetComponentFirmwareStatusResponse)(nil), // 881: forge.GetComponentFirmwareStatusResponse - (*ListComponentFirmwareVersionsRequest)(nil), // 882: forge.ListComponentFirmwareVersionsRequest - (*ComputeTrayFirmwareVersions)(nil), // 883: forge.ComputeTrayFirmwareVersions - (*DeviceFirmwareVersions)(nil), // 884: forge.DeviceFirmwareVersions - (*ListComponentFirmwareVersionsResponse)(nil), // 885: forge.ListComponentFirmwareVersionsResponse - (*SpxPartitionCreationRequest)(nil), // 886: forge.SpxPartitionCreationRequest - (*SpxPartition)(nil), // 887: forge.SpxPartition - (*SpxPartitionIdList)(nil), // 888: forge.SpxPartitionIdList - (*SpxPartitionDeletionRequest)(nil), // 889: forge.SpxPartitionDeletionRequest - (*SpxPartitionDeletionResult)(nil), // 890: forge.SpxPartitionDeletionResult - (*SpxPartitionSearchFilter)(nil), // 891: forge.SpxPartitionSearchFilter - (*SpxPartitionList)(nil), // 892: forge.SpxPartitionList - (*SpxPartitionsByIdsRequest)(nil), // 893: forge.SpxPartitionsByIdsRequest - (*AdminForceDeleteSwitchRequest)(nil), // 894: forge.AdminForceDeleteSwitchRequest - (*AdminForceDeleteSwitchResponse)(nil), // 895: forge.AdminForceDeleteSwitchResponse - (*AdminForceDeletePowerShelfRequest)(nil), // 896: forge.AdminForceDeletePowerShelfRequest - (*AdminForceDeletePowerShelfResponse)(nil), // 897: forge.AdminForceDeletePowerShelfResponse - (*OperatingSystem)(nil), // 898: forge.OperatingSystem - (*CreateOperatingSystemRequest)(nil), // 899: forge.CreateOperatingSystemRequest - (*IpxeTemplateParameters)(nil), // 900: forge.IpxeTemplateParameters - (*IpxeTemplateArtifacts)(nil), // 901: forge.IpxeTemplateArtifacts - (*UpdateOperatingSystemRequest)(nil), // 902: forge.UpdateOperatingSystemRequest - (*DeleteOperatingSystemRequest)(nil), // 903: forge.DeleteOperatingSystemRequest - (*DeleteOperatingSystemResponse)(nil), // 904: forge.DeleteOperatingSystemResponse - (*OperatingSystemSearchFilter)(nil), // 905: forge.OperatingSystemSearchFilter - (*OperatingSystemIdList)(nil), // 906: forge.OperatingSystemIdList - (*OperatingSystemsByIdsRequest)(nil), // 907: forge.OperatingSystemsByIdsRequest - (*OperatingSystemList)(nil), // 908: forge.OperatingSystemList - (*GetOperatingSystemCachableIpxeTemplateArtifactsRequest)(nil), // 909: forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest - (*IpxeTemplateArtifactList)(nil), // 910: forge.IpxeTemplateArtifactList - (*IpxeTemplateArtifactUpdateRequest)(nil), // 911: forge.IpxeTemplateArtifactUpdateRequest - (*UpdateOperatingSystemIpxeTemplateArtifactRequest)(nil), // 912: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest - (*HostRepresentorInterceptBridging)(nil), // 913: forge.HostRepresentorInterceptBridging - (*ReWrapSecretsRequest)(nil), // 914: forge.ReWrapSecretsRequest - (*ReWrapSecretsResponse)(nil), // 915: forge.ReWrapSecretsResponse - (*GetMachineBootInterfacesRequest)(nil), // 916: forge.GetMachineBootInterfacesRequest - (*MachineInterfaceBootInterface)(nil), // 917: forge.MachineInterfaceBootInterface - (*PredictedBootInterface)(nil), // 918: forge.PredictedBootInterface - (*ExploredBootInterface)(nil), // 919: forge.ExploredBootInterface - (*RetainedBootInterface)(nil), // 920: forge.RetainedBootInterface - (*GetMachineBootInterfacesResponse)(nil), // 921: forge.GetMachineBootInterfacesResponse - nil, // 922: forge.RuntimeConfig.DpuNicFirmwareUpdateVersionEntry - (*DNSMessage_DNSQuestion)(nil), // 923: forge.DNSMessage.DNSQuestion - (*DNSMessage_DNSResponse)(nil), // 924: forge.DNSMessage.DNSResponse - (*DNSMessage_DNSResponse_DNSRR)(nil), // 925: forge.DNSMessage.DNSResponse.DNSRR - nil, // 926: forge.FabricManagerConfig.ConfigMapEntry - nil, // 927: forge.StateHistories.HistoriesEntry - nil, // 928: forge.MachineStateHistories.HistoriesEntry - nil, // 929: forge.HealthHistories.HistoriesEntry - nil, // 930: forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry - (*MachineCredentialsUpdateRequest_Credentials)(nil), // 931: forge.MachineCredentialsUpdateRequest.Credentials - (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo)(nil), // 932: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo - (*ForgeAgentControlResponse_Noop)(nil), // 933: forge.ForgeAgentControlResponse.Noop - (*ForgeAgentControlResponse_Reset)(nil), // 934: forge.ForgeAgentControlResponse.Reset - (*ForgeAgentControlResponse_Discovery)(nil), // 935: forge.ForgeAgentControlResponse.Discovery - (*ForgeAgentControlResponse_Rebuild)(nil), // 936: forge.ForgeAgentControlResponse.Rebuild - (*ForgeAgentControlResponse_Retry)(nil), // 937: forge.ForgeAgentControlResponse.Retry - (*ForgeAgentControlResponse_Measure)(nil), // 938: forge.ForgeAgentControlResponse.Measure - (*ForgeAgentControlResponse_LogError)(nil), // 939: forge.ForgeAgentControlResponse.LogError - (*ForgeAgentControlResponse_MachineValidation)(nil), // 940: forge.ForgeAgentControlResponse.MachineValidation - (*ForgeAgentControlResponse_MachineValidationFilter)(nil), // 941: forge.ForgeAgentControlResponse.MachineValidationFilter - (*ForgeAgentControlResponse_MlxAction)(nil), // 942: forge.ForgeAgentControlResponse.MlxAction - (*ForgeAgentControlResponse_MlxDeviceAction)(nil), // 943: forge.ForgeAgentControlResponse.MlxDeviceAction - (*ForgeAgentControlResponse_MlxDeviceNoop)(nil), // 944: forge.ForgeAgentControlResponse.MlxDeviceNoop - (*ForgeAgentControlResponse_MlxDeviceLock)(nil), // 945: forge.ForgeAgentControlResponse.MlxDeviceLock - (*ForgeAgentControlResponse_MlxDeviceUnlock)(nil), // 946: forge.ForgeAgentControlResponse.MlxDeviceUnlock - (*ForgeAgentControlResponse_MlxDeviceApplyProfile)(nil), // 947: forge.ForgeAgentControlResponse.MlxDeviceApplyProfile - (*ForgeAgentControlResponse_MlxDeviceApplyFirmware)(nil), // 948: forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware - (*ForgeAgentControlResponse_FirmwareUpgrade)(nil), // 949: forge.ForgeAgentControlResponse.FirmwareUpgrade - (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair)(nil), // 950: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.KeyValuePair - (*MachineCleanupInfo_CleanupStepResult)(nil), // 951: forge.MachineCleanupInfo.CleanupStepResult - (*DpuReprovisioningListResponse_DpuReprovisioningListItem)(nil), // 952: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem - (*HostReprovisioningListResponse_HostReprovisioningListItem)(nil), // 953: forge.HostReprovisioningListResponse.HostReprovisioningListItem - (*MachineValidationTestUpdateRequest_Payload)(nil), // 954: forge.MachineValidationTestUpdateRequest.Payload - nil, // 955: forge.RedfishBrowseResponse.HeadersEntry - nil, // 956: forge.RedfishActionResult.HeadersEntry - nil, // 957: forge.UfmBrowseResponse.HeadersEntry - nil, // 958: forge.DesiredFirmwareVersionEntry.ComponentVersionsEntry - nil, // 959: forge.NmxcBrowseResponse.HeadersEntry - (*DPFStateResponse_DPFState)(nil), // 960: forge.DPFStateResponse.DPFState - (*MachineId)(nil), // 961: common.MachineId - (*timestamppb.Timestamp)(nil), // 962: google.protobuf.Timestamp - (*DomainId)(nil), // 963: common.DomainId - (*VpcId)(nil), // 964: common.VpcId - (*NVLinkLogicalPartitionId)(nil), // 965: common.NVLinkLogicalPartitionId - (*VpcPrefixId)(nil), // 966: common.VpcPrefixId - (*VpcPeeringId)(nil), // 967: common.VpcPeeringId - (*IBPartitionId)(nil), // 968: common.IBPartitionId - (*HealthReport)(nil), // 969: health.HealthReport - (*PowerShelfId)(nil), // 970: common.PowerShelfId - (*RackId)(nil), // 971: common.RackId - (*UUID)(nil), // 972: common.UUID - (*SwitchId)(nil), // 973: common.SwitchId - (*RackProfileId)(nil), // 974: common.RackProfileId - (*NetworkSegmentId)(nil), // 975: common.NetworkSegmentId - (*NetworkPrefixId)(nil), // 976: common.NetworkPrefixId - (*InstanceId)(nil), // 977: common.InstanceId - (*IpxeTemplateId)(nil), // 978: common.IpxeTemplateId - (*OperatingSystemId)(nil), // 979: common.OperatingSystemId - (*SpxPartitionId)(nil), // 980: common.SpxPartitionId - (*NVLinkDomainId)(nil), // 981: common.NVLinkDomainId - (*MachineInterfaceId)(nil), // 982: common.MachineInterfaceId - (*DiscoveryInfo)(nil), // 983: machine_discovery.DiscoveryInfo - (*durationpb.Duration)(nil), // 984: google.protobuf.Duration - (*StringList)(nil), // 985: common.StringList - (*Gpu)(nil), // 986: machine_discovery.Gpu - (*RouteTarget)(nil), // 987: common.RouteTarget - (*MachineValidationId)(nil), // 988: common.MachineValidationId - (*Uint32List)(nil), // 989: common.Uint32List - (*DpaInterfaceId)(nil), // 990: common.DpaInterfaceId - (*ComputeAllocationId)(nil), // 991: common.ComputeAllocationId - (*RackHardwareType)(nil), // 992: common.RackHardwareType - (*NVLinkPartitionId)(nil), // 993: common.NVLinkPartitionId - (*RemediationId)(nil), // 994: common.RemediationId - (*MlxDeviceLockdownResponse)(nil), // 995: mlx_device.MlxDeviceLockdownResponse - (*MlxDeviceProfileSyncResponse)(nil), // 996: mlx_device.MlxDeviceProfileSyncResponse - (*MlxDeviceProfileCompareResponse)(nil), // 997: mlx_device.MlxDeviceProfileCompareResponse - (*MlxDeviceInfoDeviceResponse)(nil), // 998: mlx_device.MlxDeviceInfoDeviceResponse - (*MlxDeviceInfoReportResponse)(nil), // 999: mlx_device.MlxDeviceInfoReportResponse - (*MlxDeviceRegistryListResponse)(nil), // 1000: mlx_device.MlxDeviceRegistryListResponse - (*MlxDeviceRegistryShowResponse)(nil), // 1001: mlx_device.MlxDeviceRegistryShowResponse - (*MlxDeviceConfigQueryResponse)(nil), // 1002: mlx_device.MlxDeviceConfigQueryResponse - (*MlxDeviceConfigSetResponse)(nil), // 1003: mlx_device.MlxDeviceConfigSetResponse - (*MlxDeviceConfigSyncResponse)(nil), // 1004: mlx_device.MlxDeviceConfigSyncResponse - (*MlxDeviceConfigCompareResponse)(nil), // 1005: mlx_device.MlxDeviceConfigCompareResponse - (*MlxDeviceLockdownLockRequest)(nil), // 1006: mlx_device.MlxDeviceLockdownLockRequest - (*MlxDeviceLockdownUnlockRequest)(nil), // 1007: mlx_device.MlxDeviceLockdownUnlockRequest - (*MlxDeviceLockdownStatusRequest)(nil), // 1008: mlx_device.MlxDeviceLockdownStatusRequest - (*MlxDeviceProfileSyncRequest)(nil), // 1009: mlx_device.MlxDeviceProfileSyncRequest - (*MlxDeviceProfileCompareRequest)(nil), // 1010: mlx_device.MlxDeviceProfileCompareRequest - (*MlxDeviceInfoDeviceRequest)(nil), // 1011: mlx_device.MlxDeviceInfoDeviceRequest - (*MlxDeviceInfoReportRequest)(nil), // 1012: mlx_device.MlxDeviceInfoReportRequest - (*MlxDeviceRegistryListRequest)(nil), // 1013: mlx_device.MlxDeviceRegistryListRequest - (*MlxDeviceRegistryShowRequest)(nil), // 1014: mlx_device.MlxDeviceRegistryShowRequest - (*MlxDeviceConfigQueryRequest)(nil), // 1015: mlx_device.MlxDeviceConfigQueryRequest - (*MlxDeviceConfigSetRequest)(nil), // 1016: mlx_device.MlxDeviceConfigSetRequest - (*MlxDeviceConfigSyncRequest)(nil), // 1017: mlx_device.MlxDeviceConfigSyncRequest - (*MlxDeviceConfigCompareRequest)(nil), // 1018: mlx_device.MlxDeviceConfigCompareRequest - (*MachineIdList)(nil), // 1019: common.MachineIdList - (*EndpointExplorationReport)(nil), // 1020: site_explorer.EndpointExplorationReport - (SystemPowerControl)(0), // 1021: common.SystemPowerControl - (*SerializableMlxConfigProfile)(nil), // 1022: mlx_device.SerializableMlxConfigProfile - (*FirmwareFlasherProfile)(nil), // 1023: mlx_device.FirmwareFlasherProfile - (*emptypb.Empty)(nil), // 1024: google.protobuf.Empty - (*ExploredEndpointSearchFilter)(nil), // 1025: site_explorer.ExploredEndpointSearchFilter - (*ExploredEndpointsByIdsRequest)(nil), // 1026: site_explorer.ExploredEndpointsByIdsRequest - (*ExploredManagedHostSearchFilter)(nil), // 1027: site_explorer.ExploredManagedHostSearchFilter - (*ExploredManagedHostsByIdsRequest)(nil), // 1028: site_explorer.ExploredManagedHostsByIdsRequest - (*ExploredMlxDeviceHostSearchFilter)(nil), // 1029: site_explorer.ExploredMlxDeviceHostSearchFilter - (*ExploredMlxDevicesByIdsRequest)(nil), // 1030: site_explorer.ExploredMlxDevicesByIdsRequest - (*CreateMeasurementBundleRequest)(nil), // 1031: measured_boot.CreateMeasurementBundleRequest - (*DeleteMeasurementBundleRequest)(nil), // 1032: measured_boot.DeleteMeasurementBundleRequest - (*RenameMeasurementBundleRequest)(nil), // 1033: measured_boot.RenameMeasurementBundleRequest - (*UpdateMeasurementBundleRequest)(nil), // 1034: measured_boot.UpdateMeasurementBundleRequest - (*ShowMeasurementBundleRequest)(nil), // 1035: measured_boot.ShowMeasurementBundleRequest - (*ShowMeasurementBundlesRequest)(nil), // 1036: measured_boot.ShowMeasurementBundlesRequest - (*ListMeasurementBundlesRequest)(nil), // 1037: measured_boot.ListMeasurementBundlesRequest - (*ListMeasurementBundleMachinesRequest)(nil), // 1038: measured_boot.ListMeasurementBundleMachinesRequest - (*FindClosestBundleMatchRequest)(nil), // 1039: measured_boot.FindClosestBundleMatchRequest - (*DeleteMeasurementJournalRequest)(nil), // 1040: measured_boot.DeleteMeasurementJournalRequest - (*ShowMeasurementJournalRequest)(nil), // 1041: measured_boot.ShowMeasurementJournalRequest - (*ShowMeasurementJournalsRequest)(nil), // 1042: measured_boot.ShowMeasurementJournalsRequest - (*ListMeasurementJournalRequest)(nil), // 1043: measured_boot.ListMeasurementJournalRequest - (*AttestCandidateMachineRequest)(nil), // 1044: measured_boot.AttestCandidateMachineRequest - (*ShowCandidateMachineRequest)(nil), // 1045: measured_boot.ShowCandidateMachineRequest - (*ShowCandidateMachinesRequest)(nil), // 1046: measured_boot.ShowCandidateMachinesRequest - (*ListCandidateMachinesRequest)(nil), // 1047: measured_boot.ListCandidateMachinesRequest - (*CreateMeasurementSystemProfileRequest)(nil), // 1048: measured_boot.CreateMeasurementSystemProfileRequest - (*DeleteMeasurementSystemProfileRequest)(nil), // 1049: measured_boot.DeleteMeasurementSystemProfileRequest - (*RenameMeasurementSystemProfileRequest)(nil), // 1050: measured_boot.RenameMeasurementSystemProfileRequest - (*ShowMeasurementSystemProfileRequest)(nil), // 1051: measured_boot.ShowMeasurementSystemProfileRequest - (*ShowMeasurementSystemProfilesRequest)(nil), // 1052: measured_boot.ShowMeasurementSystemProfilesRequest - (*ListMeasurementSystemProfilesRequest)(nil), // 1053: measured_boot.ListMeasurementSystemProfilesRequest - (*ListMeasurementSystemProfileBundlesRequest)(nil), // 1054: measured_boot.ListMeasurementSystemProfileBundlesRequest - (*ListMeasurementSystemProfileMachinesRequest)(nil), // 1055: measured_boot.ListMeasurementSystemProfileMachinesRequest - (*CreateMeasurementReportRequest)(nil), // 1056: measured_boot.CreateMeasurementReportRequest - (*DeleteMeasurementReportRequest)(nil), // 1057: measured_boot.DeleteMeasurementReportRequest - (*PromoteMeasurementReportRequest)(nil), // 1058: measured_boot.PromoteMeasurementReportRequest - (*RevokeMeasurementReportRequest)(nil), // 1059: measured_boot.RevokeMeasurementReportRequest - (*ShowMeasurementReportForIdRequest)(nil), // 1060: measured_boot.ShowMeasurementReportForIdRequest - (*ShowMeasurementReportsForMachineRequest)(nil), // 1061: measured_boot.ShowMeasurementReportsForMachineRequest - (*ShowMeasurementReportsRequest)(nil), // 1062: measured_boot.ShowMeasurementReportsRequest - (*ListMeasurementReportRequest)(nil), // 1063: measured_boot.ListMeasurementReportRequest - (*MatchMeasurementReportRequest)(nil), // 1064: measured_boot.MatchMeasurementReportRequest - (*ImportSiteMeasurementsRequest)(nil), // 1065: measured_boot.ImportSiteMeasurementsRequest - (*ExportSiteMeasurementsRequest)(nil), // 1066: measured_boot.ExportSiteMeasurementsRequest - (*AddMeasurementTrustedMachineRequest)(nil), // 1067: measured_boot.AddMeasurementTrustedMachineRequest - (*RemoveMeasurementTrustedMachineRequest)(nil), // 1068: measured_boot.RemoveMeasurementTrustedMachineRequest - (*AddMeasurementTrustedProfileRequest)(nil), // 1069: measured_boot.AddMeasurementTrustedProfileRequest - (*RemoveMeasurementTrustedProfileRequest)(nil), // 1070: measured_boot.RemoveMeasurementTrustedProfileRequest - (*ListMeasurementTrustedMachinesRequest)(nil), // 1071: measured_boot.ListMeasurementTrustedMachinesRequest - (*ListMeasurementTrustedProfilesRequest)(nil), // 1072: measured_boot.ListMeasurementTrustedProfilesRequest - (*ListAttestationSummaryRequest)(nil), // 1073: measured_boot.ListAttestationSummaryRequest - (*PublishMlxDeviceReportRequest)(nil), // 1074: mlx_device.PublishMlxDeviceReportRequest - (*PublishMlxObservationReportRequest)(nil), // 1075: mlx_device.PublishMlxObservationReportRequest - (*MlxAdminProfileSyncRequest)(nil), // 1076: mlx_device.MlxAdminProfileSyncRequest - (*MlxAdminProfileShowRequest)(nil), // 1077: mlx_device.MlxAdminProfileShowRequest - (*MlxAdminProfileCompareRequest)(nil), // 1078: mlx_device.MlxAdminProfileCompareRequest - (*MlxAdminProfileListRequest)(nil), // 1079: mlx_device.MlxAdminProfileListRequest - (*MlxAdminLockdownLockRequest)(nil), // 1080: mlx_device.MlxAdminLockdownLockRequest - (*MlxAdminLockdownUnlockRequest)(nil), // 1081: mlx_device.MlxAdminLockdownUnlockRequest - (*MlxAdminLockdownStatusRequest)(nil), // 1082: mlx_device.MlxAdminLockdownStatusRequest - (*MlxAdminDeviceInfoRequest)(nil), // 1083: mlx_device.MlxAdminDeviceInfoRequest - (*MlxAdminDeviceReportRequest)(nil), // 1084: mlx_device.MlxAdminDeviceReportRequest - (*MlxAdminRegistryListRequest)(nil), // 1085: mlx_device.MlxAdminRegistryListRequest - (*MlxAdminRegistryShowRequest)(nil), // 1086: mlx_device.MlxAdminRegistryShowRequest - (*MlxAdminConfigQueryRequest)(nil), // 1087: mlx_device.MlxAdminConfigQueryRequest - (*MlxAdminConfigSetRequest)(nil), // 1088: mlx_device.MlxAdminConfigSetRequest - (*MlxAdminConfigSyncRequest)(nil), // 1089: mlx_device.MlxAdminConfigSyncRequest - (*MlxAdminConfigCompareRequest)(nil), // 1090: mlx_device.MlxAdminConfigCompareRequest - (*SiteExplorationReport)(nil), // 1091: site_explorer.SiteExplorationReport - (*SiteExplorerLastRunResponse)(nil), // 1092: site_explorer.SiteExplorerLastRunResponse - (*ExploredEndpoint)(nil), // 1093: site_explorer.ExploredEndpoint - (*ExploredEndpointIdList)(nil), // 1094: site_explorer.ExploredEndpointIdList - (*ExploredEndpointList)(nil), // 1095: site_explorer.ExploredEndpointList - (*ExploredManagedHostIdList)(nil), // 1096: site_explorer.ExploredManagedHostIdList - (*ExploredManagedHostList)(nil), // 1097: site_explorer.ExploredManagedHostList - (*ExploredMlxDeviceHostIdList)(nil), // 1098: site_explorer.ExploredMlxDeviceHostIdList - (*ExploredMlxDeviceList)(nil), // 1099: site_explorer.ExploredMlxDeviceList - (*CreateMeasurementBundleResponse)(nil), // 1100: measured_boot.CreateMeasurementBundleResponse - (*DeleteMeasurementBundleResponse)(nil), // 1101: measured_boot.DeleteMeasurementBundleResponse - (*RenameMeasurementBundleResponse)(nil), // 1102: measured_boot.RenameMeasurementBundleResponse - (*UpdateMeasurementBundleResponse)(nil), // 1103: measured_boot.UpdateMeasurementBundleResponse - (*ShowMeasurementBundleResponse)(nil), // 1104: measured_boot.ShowMeasurementBundleResponse - (*ShowMeasurementBundlesResponse)(nil), // 1105: measured_boot.ShowMeasurementBundlesResponse - (*ListMeasurementBundlesResponse)(nil), // 1106: measured_boot.ListMeasurementBundlesResponse - (*ListMeasurementBundleMachinesResponse)(nil), // 1107: measured_boot.ListMeasurementBundleMachinesResponse - (*DeleteMeasurementJournalResponse)(nil), // 1108: measured_boot.DeleteMeasurementJournalResponse - (*ShowMeasurementJournalResponse)(nil), // 1109: measured_boot.ShowMeasurementJournalResponse - (*ShowMeasurementJournalsResponse)(nil), // 1110: measured_boot.ShowMeasurementJournalsResponse - (*ListMeasurementJournalResponse)(nil), // 1111: measured_boot.ListMeasurementJournalResponse - (*AttestCandidateMachineResponse)(nil), // 1112: measured_boot.AttestCandidateMachineResponse - (*ShowCandidateMachineResponse)(nil), // 1113: measured_boot.ShowCandidateMachineResponse - (*ShowCandidateMachinesResponse)(nil), // 1114: measured_boot.ShowCandidateMachinesResponse - (*ListCandidateMachinesResponse)(nil), // 1115: measured_boot.ListCandidateMachinesResponse - (*CreateMeasurementSystemProfileResponse)(nil), // 1116: measured_boot.CreateMeasurementSystemProfileResponse - (*DeleteMeasurementSystemProfileResponse)(nil), // 1117: measured_boot.DeleteMeasurementSystemProfileResponse - (*RenameMeasurementSystemProfileResponse)(nil), // 1118: measured_boot.RenameMeasurementSystemProfileResponse - (*ShowMeasurementSystemProfileResponse)(nil), // 1119: measured_boot.ShowMeasurementSystemProfileResponse - (*ShowMeasurementSystemProfilesResponse)(nil), // 1120: measured_boot.ShowMeasurementSystemProfilesResponse - (*ListMeasurementSystemProfilesResponse)(nil), // 1121: measured_boot.ListMeasurementSystemProfilesResponse - (*ListMeasurementSystemProfileBundlesResponse)(nil), // 1122: measured_boot.ListMeasurementSystemProfileBundlesResponse - (*ListMeasurementSystemProfileMachinesResponse)(nil), // 1123: measured_boot.ListMeasurementSystemProfileMachinesResponse - (*CreateMeasurementReportResponse)(nil), // 1124: measured_boot.CreateMeasurementReportResponse - (*DeleteMeasurementReportResponse)(nil), // 1125: measured_boot.DeleteMeasurementReportResponse - (*PromoteMeasurementReportResponse)(nil), // 1126: measured_boot.PromoteMeasurementReportResponse - (*RevokeMeasurementReportResponse)(nil), // 1127: measured_boot.RevokeMeasurementReportResponse - (*ShowMeasurementReportForIdResponse)(nil), // 1128: measured_boot.ShowMeasurementReportForIdResponse - (*ShowMeasurementReportsForMachineResponse)(nil), // 1129: measured_boot.ShowMeasurementReportsForMachineResponse - (*ShowMeasurementReportsResponse)(nil), // 1130: measured_boot.ShowMeasurementReportsResponse - (*ListMeasurementReportResponse)(nil), // 1131: measured_boot.ListMeasurementReportResponse - (*MatchMeasurementReportResponse)(nil), // 1132: measured_boot.MatchMeasurementReportResponse - (*ImportSiteMeasurementsResponse)(nil), // 1133: measured_boot.ImportSiteMeasurementsResponse - (*ExportSiteMeasurementsResponse)(nil), // 1134: measured_boot.ExportSiteMeasurementsResponse - (*AddMeasurementTrustedMachineResponse)(nil), // 1135: measured_boot.AddMeasurementTrustedMachineResponse - (*RemoveMeasurementTrustedMachineResponse)(nil), // 1136: measured_boot.RemoveMeasurementTrustedMachineResponse - (*AddMeasurementTrustedProfileResponse)(nil), // 1137: measured_boot.AddMeasurementTrustedProfileResponse - (*RemoveMeasurementTrustedProfileResponse)(nil), // 1138: measured_boot.RemoveMeasurementTrustedProfileResponse - (*ListMeasurementTrustedMachinesResponse)(nil), // 1139: measured_boot.ListMeasurementTrustedMachinesResponse - (*ListMeasurementTrustedProfilesResponse)(nil), // 1140: measured_boot.ListMeasurementTrustedProfilesResponse - (*ListAttestationSummaryResponse)(nil), // 1141: measured_boot.ListAttestationSummaryResponse - (*LockdownStatus)(nil), // 1142: site_explorer.LockdownStatus - (*PublishMlxDeviceReportResponse)(nil), // 1143: mlx_device.PublishMlxDeviceReportResponse - (*PublishMlxObservationReportResponse)(nil), // 1144: mlx_device.PublishMlxObservationReportResponse - (*MlxAdminProfileSyncResponse)(nil), // 1145: mlx_device.MlxAdminProfileSyncResponse - (*MlxAdminProfileShowResponse)(nil), // 1146: mlx_device.MlxAdminProfileShowResponse - (*MlxAdminProfileCompareResponse)(nil), // 1147: mlx_device.MlxAdminProfileCompareResponse - (*MlxAdminProfileListResponse)(nil), // 1148: mlx_device.MlxAdminProfileListResponse - (*MlxAdminLockdownLockResponse)(nil), // 1149: mlx_device.MlxAdminLockdownLockResponse - (*MlxAdminLockdownUnlockResponse)(nil), // 1150: mlx_device.MlxAdminLockdownUnlockResponse - (*MlxAdminLockdownStatusResponse)(nil), // 1151: mlx_device.MlxAdminLockdownStatusResponse - (*MlxAdminDeviceInfoResponse)(nil), // 1152: mlx_device.MlxAdminDeviceInfoResponse - (*MlxAdminDeviceReportResponse)(nil), // 1153: mlx_device.MlxAdminDeviceReportResponse - (*MlxAdminRegistryListResponse)(nil), // 1154: mlx_device.MlxAdminRegistryListResponse - (*MlxAdminRegistryShowResponse)(nil), // 1155: mlx_device.MlxAdminRegistryShowResponse - (*MlxAdminConfigQueryResponse)(nil), // 1156: mlx_device.MlxAdminConfigQueryResponse - (*MlxAdminConfigSetResponse)(nil), // 1157: mlx_device.MlxAdminConfigSetResponse - (*MlxAdminConfigSyncResponse)(nil), // 1158: mlx_device.MlxAdminConfigSyncResponse - (*MlxAdminConfigCompareResponse)(nil), // 1159: mlx_device.MlxAdminConfigCompareResponse + (*DeleteInitiatedBy)(nil), // 302: forge.DeleteInitiatedBy + (*DeleteAttribution)(nil), // 303: forge.DeleteAttribution + (*InstanceReleaseRequest)(nil), // 304: forge.InstanceReleaseRequest + (*InstanceReleaseResult)(nil), // 305: forge.InstanceReleaseResult + (*MachinesByIdsRequest)(nil), // 306: forge.MachinesByIdsRequest + (*MachineSearchConfig)(nil), // 307: forge.MachineSearchConfig + (*MachineStateHistoriesRequest)(nil), // 308: forge.MachineStateHistoriesRequest + (*MachineStateHistories)(nil), // 309: forge.MachineStateHistories + (*MachineStateHistoryRecords)(nil), // 310: forge.MachineStateHistoryRecords + (*MachineHealthHistoriesRequest)(nil), // 311: forge.MachineHealthHistoriesRequest + (*HealthHistories)(nil), // 312: forge.HealthHistories + (*HealthHistoryRecords)(nil), // 313: forge.HealthHistoryRecords + (*HealthHistoryRecord)(nil), // 314: forge.HealthHistoryRecord + (*TenantByOrganizationIdsRequest)(nil), // 315: forge.TenantByOrganizationIdsRequest + (*TenantSearchFilter)(nil), // 316: forge.TenantSearchFilter + (*TenantList)(nil), // 317: forge.TenantList + (*TenantOrganizationIdList)(nil), // 318: forge.TenantOrganizationIdList + (*InterfaceList)(nil), // 319: forge.InterfaceList + (*MachineList)(nil), // 320: forge.MachineList + (*InterfaceDeleteQuery)(nil), // 321: forge.InterfaceDeleteQuery + (*InterfaceSearchQuery)(nil), // 322: forge.InterfaceSearchQuery + (*AssignStaticAddressRequest)(nil), // 323: forge.AssignStaticAddressRequest + (*AssignStaticAddressResponse)(nil), // 324: forge.AssignStaticAddressResponse + (*RemoveStaticAddressRequest)(nil), // 325: forge.RemoveStaticAddressRequest + (*RemoveStaticAddressResponse)(nil), // 326: forge.RemoveStaticAddressResponse + (*FindInterfaceAddressesRequest)(nil), // 327: forge.FindInterfaceAddressesRequest + (*InterfaceAddress)(nil), // 328: forge.InterfaceAddress + (*FindInterfaceAddressesResponse)(nil), // 329: forge.FindInterfaceAddressesResponse + (*BmcInfo)(nil), // 330: forge.BmcInfo + (*SwitchNvosInfo)(nil), // 331: forge.SwitchNvosInfo + (*Machine)(nil), // 332: forge.Machine + (*DpfMachineState)(nil), // 333: forge.DpfMachineState + (*InstanceNetworkRestrictions)(nil), // 334: forge.InstanceNetworkRestrictions + (*MachineMetadataUpdateRequest)(nil), // 335: forge.MachineMetadataUpdateRequest + (*RackMetadataUpdateRequest)(nil), // 336: forge.RackMetadataUpdateRequest + (*SwitchMetadataUpdateRequest)(nil), // 337: forge.SwitchMetadataUpdateRequest + (*PowerShelfMetadataUpdateRequest)(nil), // 338: forge.PowerShelfMetadataUpdateRequest + (*DpuAgentInventoryReport)(nil), // 339: forge.DpuAgentInventoryReport + (*MachineInventory)(nil), // 340: forge.MachineInventory + (*MachineInventorySoftwareComponent)(nil), // 341: forge.MachineInventorySoftwareComponent + (*HealthSourceOrigin)(nil), // 342: forge.HealthSourceOrigin + (*ControllerStateReason)(nil), // 343: forge.ControllerStateReason + (*ControllerStateSourceReference)(nil), // 344: forge.ControllerStateSourceReference + (*StateSla)(nil), // 345: forge.StateSla + (*InstanceTenantStatus)(nil), // 346: forge.InstanceTenantStatus + (*MachineEvent)(nil), // 347: forge.MachineEvent + (*MachineInterface)(nil), // 348: forge.MachineInterface + (*InfinibandStatusObservation)(nil), // 349: forge.InfinibandStatusObservation + (*MachineIbInterface)(nil), // 350: forge.MachineIbInterface + (*DhcpDiscovery)(nil), // 351: forge.DhcpDiscovery + (*ExpireDhcpLeaseRequest)(nil), // 352: forge.ExpireDhcpLeaseRequest + (*ExpireDhcpLeaseResponse)(nil), // 353: forge.ExpireDhcpLeaseResponse + (*DhcpRecord)(nil), // 354: forge.DhcpRecord + (*NetworkSegmentList)(nil), // 355: forge.NetworkSegmentList + (*SSHKeyValidationRequest)(nil), // 356: forge.SSHKeyValidationRequest + (*SSHKeyValidationResponse)(nil), // 357: forge.SSHKeyValidationResponse + (*GetBmcCredentialsRequest)(nil), // 358: forge.GetBmcCredentialsRequest + (*GetSwitchNvosCredentialsRequest)(nil), // 359: forge.GetSwitchNvosCredentialsRequest + (*GetBmcCredentialsResponse)(nil), // 360: forge.GetBmcCredentialsResponse + (*BmcCredentials)(nil), // 361: forge.BmcCredentials + (*GetSiteExplorationRequest)(nil), // 362: forge.GetSiteExplorationRequest + (*ClearSiteExplorationErrorRequest)(nil), // 363: forge.ClearSiteExplorationErrorRequest + (*ReExploreEndpointRequest)(nil), // 364: forge.ReExploreEndpointRequest + (*RefreshEndpointReportRequest)(nil), // 365: forge.RefreshEndpointReportRequest + (*DeleteExploredEndpointRequest)(nil), // 366: forge.DeleteExploredEndpointRequest + (*PauseExploredEndpointRemediationRequest)(nil), // 367: forge.PauseExploredEndpointRemediationRequest + (*DeleteExploredEndpointResponse)(nil), // 368: forge.DeleteExploredEndpointResponse + (*BmcEndpointRequest)(nil), // 369: forge.BmcEndpointRequest + (*SshTimeoutConfig)(nil), // 370: forge.SshTimeoutConfig + (*SshRequest)(nil), // 371: forge.SshRequest + (*CopyBfbToDpuRshimRequest)(nil), // 372: forge.CopyBfbToDpuRshimRequest + (*UpdateMachineHardwareInfoRequest)(nil), // 373: forge.UpdateMachineHardwareInfoRequest + (*MachineHardwareInfo)(nil), // 374: forge.MachineHardwareInfo + (*ManagedHostNetworkConfigRequest)(nil), // 375: forge.ManagedHostNetworkConfigRequest + (*ManagedHostNetworkConfigResponse)(nil), // 376: forge.ManagedHostNetworkConfigResponse + (*TrafficInterceptConfig)(nil), // 377: forge.TrafficInterceptConfig + (*TrafficInterceptBridging)(nil), // 378: forge.TrafficInterceptBridging + (*ManagedHostDpuExtensionServiceConfig)(nil), // 379: forge.ManagedHostDpuExtensionServiceConfig + (*ManagedHostQuarantineState)(nil), // 380: forge.ManagedHostQuarantineState + (*GetManagedHostQuarantineStateRequest)(nil), // 381: forge.GetManagedHostQuarantineStateRequest + (*GetManagedHostQuarantineStateResponse)(nil), // 382: forge.GetManagedHostQuarantineStateResponse + (*SetManagedHostQuarantineStateRequest)(nil), // 383: forge.SetManagedHostQuarantineStateRequest + (*SetManagedHostQuarantineStateResponse)(nil), // 384: forge.SetManagedHostQuarantineStateResponse + (*ClearManagedHostQuarantineStateRequest)(nil), // 385: forge.ClearManagedHostQuarantineStateRequest + (*ClearManagedHostQuarantineStateResponse)(nil), // 386: forge.ClearManagedHostQuarantineStateResponse + (*ManagedHostNetworkConfig)(nil), // 387: forge.ManagedHostNetworkConfig + (*FlatInterfaceConfig)(nil), // 388: forge.FlatInterfaceConfig + (*FlatInterfaceRoutingProfile)(nil), // 389: forge.FlatInterfaceRoutingProfile + (*FlatInterfaceIpv6Config)(nil), // 390: forge.FlatInterfaceIpv6Config + (*FlatInterfaceNetworkSecurityGroupConfig)(nil), // 391: forge.FlatInterfaceNetworkSecurityGroupConfig + (*ManagedHostNetworkStatusRequest)(nil), // 392: forge.ManagedHostNetworkStatusRequest + (*ManagedHostNetworkStatusResponse)(nil), // 393: forge.ManagedHostNetworkStatusResponse + (*DpuAgentUpgradeCheckRequest)(nil), // 394: forge.DpuAgentUpgradeCheckRequest + (*DpuAgentUpgradeCheckResponse)(nil), // 395: forge.DpuAgentUpgradeCheckResponse + (*DpuAgentUpgradePolicyRequest)(nil), // 396: forge.DpuAgentUpgradePolicyRequest + (*DpuAgentUpgradePolicyResponse)(nil), // 397: forge.DpuAgentUpgradePolicyResponse + (*AdminForceDeleteMachineRequest)(nil), // 398: forge.AdminForceDeleteMachineRequest + (*AdminForceDeleteMachineResponse)(nil), // 399: forge.AdminForceDeleteMachineResponse + (*DisableSecureBootResponse)(nil), // 400: forge.DisableSecureBootResponse + (*LockdownRequest)(nil), // 401: forge.LockdownRequest + (*LockdownResponse)(nil), // 402: forge.LockdownResponse + (*LockdownStatusRequest)(nil), // 403: forge.LockdownStatusRequest + (*MachineSetupStatusRequest)(nil), // 404: forge.MachineSetupStatusRequest + (*MachineSetupRequest)(nil), // 405: forge.MachineSetupRequest + (*MachineSetupResponse)(nil), // 406: forge.MachineSetupResponse + (*SetDpuFirstBootOrderRequest)(nil), // 407: forge.SetDpuFirstBootOrderRequest + (*SetDpuFirstBootOrderResponse)(nil), // 408: forge.SetDpuFirstBootOrderResponse + (*AdminRebootRequest)(nil), // 409: forge.AdminRebootRequest + (*AdminRebootResponse)(nil), // 410: forge.AdminRebootResponse + (*AdminBmcResetRequest)(nil), // 411: forge.AdminBmcResetRequest + (*AdminBmcResetResponse)(nil), // 412: forge.AdminBmcResetResponse + (*EnableInfiniteBootRequest)(nil), // 413: forge.EnableInfiniteBootRequest + (*EnableInfiniteBootResponse)(nil), // 414: forge.EnableInfiniteBootResponse + (*IsInfiniteBootEnabledRequest)(nil), // 415: forge.IsInfiniteBootEnabledRequest + (*IsInfiniteBootEnabledResponse)(nil), // 416: forge.IsInfiniteBootEnabledResponse + (*BMCMetaDataGetRequest)(nil), // 417: forge.BMCMetaDataGetRequest + (*BMCMetaDataGetResponse)(nil), // 418: forge.BMCMetaDataGetResponse + (*MachineCredentialsUpdateRequest)(nil), // 419: forge.MachineCredentialsUpdateRequest + (*MachineCredentialsUpdateResponse)(nil), // 420: forge.MachineCredentialsUpdateResponse + (*ForgeAgentControlRequest)(nil), // 421: forge.ForgeAgentControlRequest + (*ForgeAgentControlResponse)(nil), // 422: forge.ForgeAgentControlResponse + (*MachineDiscoveryInfo)(nil), // 423: forge.MachineDiscoveryInfo + (*MachineDiscoveryCompletedRequest)(nil), // 424: forge.MachineDiscoveryCompletedRequest + (*MachineCleanupInfo)(nil), // 425: forge.MachineCleanupInfo + (*MachineCertificate)(nil), // 426: forge.MachineCertificate + (*MachineCertificateRenewRequest)(nil), // 427: forge.MachineCertificateRenewRequest + (*MachineCertificateResult)(nil), // 428: forge.MachineCertificateResult + (*MachineDiscoveryResult)(nil), // 429: forge.MachineDiscoveryResult + (*MachineDiscoveryCompletedResponse)(nil), // 430: forge.MachineDiscoveryCompletedResponse + (*MachineCleanupResult)(nil), // 431: forge.MachineCleanupResult + (*ForgeScoutErrorReport)(nil), // 432: forge.ForgeScoutErrorReport + (*ForgeScoutErrorReportResult)(nil), // 433: forge.ForgeScoutErrorReportResult + (*PxeInstructionRequest)(nil), // 434: forge.PxeInstructionRequest + (*PxeInstructions)(nil), // 435: forge.PxeInstructions + (*CloudInitDiscoveryInstructions)(nil), // 436: forge.CloudInitDiscoveryInstructions + (*CloudInitMetaData)(nil), // 437: forge.CloudInitMetaData + (*CloudInitInstructionsRequest)(nil), // 438: forge.CloudInitInstructionsRequest + (*CloudInitInstructions)(nil), // 439: forge.CloudInitInstructions + (*DpuNetworkStatus)(nil), // 440: forge.DpuNetworkStatus + (*LastDhcpRequest)(nil), // 441: forge.LastDhcpRequest + (*DpuExtensionServiceStatusObservation)(nil), // 442: forge.DpuExtensionServiceStatusObservation + (*DpuExtensionServiceComponent)(nil), // 443: forge.DpuExtensionServiceComponent + (*OptionalHealthReport)(nil), // 444: forge.OptionalHealthReport + (*HealthReportEntry)(nil), // 445: forge.HealthReportEntry + (*InsertMachineHealthReportRequest)(nil), // 446: forge.InsertMachineHealthReportRequest + (*InsertRackHealthReportRequest)(nil), // 447: forge.InsertRackHealthReportRequest + (*RemoveRackHealthReportRequest)(nil), // 448: forge.RemoveRackHealthReportRequest + (*ListRackHealthReportsRequest)(nil), // 449: forge.ListRackHealthReportsRequest + (*InsertSwitchHealthReportRequest)(nil), // 450: forge.InsertSwitchHealthReportRequest + (*RemoveSwitchHealthReportRequest)(nil), // 451: forge.RemoveSwitchHealthReportRequest + (*ListSwitchHealthReportsRequest)(nil), // 452: forge.ListSwitchHealthReportsRequest + (*InsertPowerShelfHealthReportRequest)(nil), // 453: forge.InsertPowerShelfHealthReportRequest + (*RemovePowerShelfHealthReportRequest)(nil), // 454: forge.RemovePowerShelfHealthReportRequest + (*ListPowerShelfHealthReportsRequest)(nil), // 455: forge.ListPowerShelfHealthReportsRequest + (*ListHealthReportResponse)(nil), // 456: forge.ListHealthReportResponse + (*RemoveMachineHealthReportRequest)(nil), // 457: forge.RemoveMachineHealthReportRequest + (*ListNVLinkDomainHealthReportsRequest)(nil), // 458: forge.ListNVLinkDomainHealthReportsRequest + (*InsertNVLinkDomainHealthReportRequest)(nil), // 459: forge.InsertNVLinkDomainHealthReportRequest + (*RemoveNVLinkDomainHealthReportRequest)(nil), // 460: forge.RemoveNVLinkDomainHealthReportRequest + (*InstanceInterfaceStatusObservation)(nil), // 461: forge.InstanceInterfaceStatusObservation + (*FabricInterfaceData)(nil), // 462: forge.FabricInterfaceData + (*LinkData)(nil), // 463: forge.LinkData + (*Tenant)(nil), // 464: forge.Tenant + (*CreateTenantRequest)(nil), // 465: forge.CreateTenantRequest + (*CreateTenantResponse)(nil), // 466: forge.CreateTenantResponse + (*UpdateTenantRequest)(nil), // 467: forge.UpdateTenantRequest + (*UpdateTenantResponse)(nil), // 468: forge.UpdateTenantResponse + (*FindTenantRequest)(nil), // 469: forge.FindTenantRequest + (*FindTenantResponse)(nil), // 470: forge.FindTenantResponse + (*TenantKeysetIdentifier)(nil), // 471: forge.TenantKeysetIdentifier + (*TenantPublicKey)(nil), // 472: forge.TenantPublicKey + (*TenantKeysetContent)(nil), // 473: forge.TenantKeysetContent + (*TenantKeyset)(nil), // 474: forge.TenantKeyset + (*CreateTenantKeysetRequest)(nil), // 475: forge.CreateTenantKeysetRequest + (*CreateTenantKeysetResponse)(nil), // 476: forge.CreateTenantKeysetResponse + (*TenantKeySetList)(nil), // 477: forge.TenantKeySetList + (*UpdateTenantKeysetRequest)(nil), // 478: forge.UpdateTenantKeysetRequest + (*UpdateTenantKeysetResponse)(nil), // 479: forge.UpdateTenantKeysetResponse + (*DeleteTenantKeysetRequest)(nil), // 480: forge.DeleteTenantKeysetRequest + (*DeleteTenantKeysetResponse)(nil), // 481: forge.DeleteTenantKeysetResponse + (*TenantKeysetSearchFilter)(nil), // 482: forge.TenantKeysetSearchFilter + (*TenantKeysetIdList)(nil), // 483: forge.TenantKeysetIdList + (*TenantKeysetsByIdsRequest)(nil), // 484: forge.TenantKeysetsByIdsRequest + (*ValidateTenantPublicKeyRequest)(nil), // 485: forge.ValidateTenantPublicKeyRequest + (*ValidateTenantPublicKeyResponse)(nil), // 486: forge.ValidateTenantPublicKeyResponse + (*ListResourcePoolsRequest)(nil), // 487: forge.ListResourcePoolsRequest + (*ResourcePools)(nil), // 488: forge.ResourcePools + (*ResourcePool)(nil), // 489: forge.ResourcePool + (*GrowResourcePoolRequest)(nil), // 490: forge.GrowResourcePoolRequest + (*GrowResourcePoolResponse)(nil), // 491: forge.GrowResourcePoolResponse + (*Range)(nil), // 492: forge.Range + (*MigrateVpcVniResponse)(nil), // 493: forge.MigrateVpcVniResponse + (*MaintenanceRequest)(nil), // 494: forge.MaintenanceRequest + (*SetDynamicConfigRequest)(nil), // 495: forge.SetDynamicConfigRequest + (*FindIpAddressRequest)(nil), // 496: forge.FindIpAddressRequest + (*FindIpAddressResponse)(nil), // 497: forge.FindIpAddressResponse + (*IdentifyUuidRequest)(nil), // 498: forge.IdentifyUuidRequest + (*IdentifyUuidResponse)(nil), // 499: forge.IdentifyUuidResponse + (*FindBmcIpsRequest)(nil), // 500: forge.FindBmcIpsRequest + (*IdentifyMacRequest)(nil), // 501: forge.IdentifyMacRequest + (*IdentifyMacResponse)(nil), // 502: forge.IdentifyMacResponse + (*IdentifySerialRequest)(nil), // 503: forge.IdentifySerialRequest + (*IdentifySerialResponse)(nil), // 504: forge.IdentifySerialResponse + (*DpuReprovisioningRequest)(nil), // 505: forge.DpuReprovisioningRequest + (*DpuReprovisioningListRequest)(nil), // 506: forge.DpuReprovisioningListRequest + (*DpuReprovisioningListResponse)(nil), // 507: forge.DpuReprovisioningListResponse + (*HostReprovisioningRequest)(nil), // 508: forge.HostReprovisioningRequest + (*HostReprovisioningListRequest)(nil), // 509: forge.HostReprovisioningListRequest + (*HostReprovisioningListResponse)(nil), // 510: forge.HostReprovisioningListResponse + (*DpuOsOperationalState)(nil), // 511: forge.DpuOsOperationalState + (*DpuRepresentorStatus)(nil), // 512: forge.DpuRepresentorStatus + (*DpuInfoStatusObservation)(nil), // 513: forge.DpuInfoStatusObservation + (*DpuInfo)(nil), // 514: forge.DpuInfo + (*GetDpuInfoListRequest)(nil), // 515: forge.GetDpuInfoListRequest + (*GetDpuInfoListResponse)(nil), // 516: forge.GetDpuInfoListResponse + (*IpAddressMatch)(nil), // 517: forge.IpAddressMatch + (*MachineBootOverride)(nil), // 518: forge.MachineBootOverride + (*ConnectedDevice)(nil), // 519: forge.ConnectedDevice + (*ConnectedDeviceList)(nil), // 520: forge.ConnectedDeviceList + (*BmcIpList)(nil), // 521: forge.BmcIpList + (*BmcIp)(nil), // 522: forge.BmcIp + (*MacAddressBmcIp)(nil), // 523: forge.MacAddressBmcIp + (*MachineIdBmcIpPairs)(nil), // 524: forge.MachineIdBmcIpPairs + (*MachineIdBmcIp)(nil), // 525: forge.MachineIdBmcIp + (*NetworkDevice)(nil), // 526: forge.NetworkDevice + (*NetworkTopologyRequest)(nil), // 527: forge.NetworkTopologyRequest + (*NetworkDeviceIdList)(nil), // 528: forge.NetworkDeviceIdList + (*NetworkTopologyData)(nil), // 529: forge.NetworkTopologyData + (*RouteServers)(nil), // 530: forge.RouteServers + (*RouteServerEntries)(nil), // 531: forge.RouteServerEntries + (*RouteServer)(nil), // 532: forge.RouteServer + (*SetHostUefiPasswordRequest)(nil), // 533: forge.SetHostUefiPasswordRequest + (*SetHostUefiPasswordResponse)(nil), // 534: forge.SetHostUefiPasswordResponse + (*ClearHostUefiPasswordRequest)(nil), // 535: forge.ClearHostUefiPasswordRequest + (*ClearHostUefiPasswordResponse)(nil), // 536: forge.ClearHostUefiPasswordResponse + (*OsImageAttributes)(nil), // 537: forge.OsImageAttributes + (*OsImage)(nil), // 538: forge.OsImage + (*ListOsImageRequest)(nil), // 539: forge.ListOsImageRequest + (*ListOsImageResponse)(nil), // 540: forge.ListOsImageResponse + (*DeleteOsImageRequest)(nil), // 541: forge.DeleteOsImageRequest + (*DeleteOsImageResponse)(nil), // 542: forge.DeleteOsImageResponse + (*GetIpxeTemplateRequest)(nil), // 543: forge.GetIpxeTemplateRequest + (*ListIpxeTemplatesRequest)(nil), // 544: forge.ListIpxeTemplatesRequest + (*IpxeTemplateList)(nil), // 545: forge.IpxeTemplateList + (*ExpectedHostNic)(nil), // 546: forge.ExpectedHostNic + (*HostLifecycleProfile)(nil), // 547: forge.HostLifecycleProfile + (*ExpectedMachine)(nil), // 548: forge.ExpectedMachine + (*ExpectedMachineRequest)(nil), // 549: forge.ExpectedMachineRequest + (*ExpectedMachineList)(nil), // 550: forge.ExpectedMachineList + (*LinkedExpectedMachineList)(nil), // 551: forge.LinkedExpectedMachineList + (*LinkedExpectedMachine)(nil), // 552: forge.LinkedExpectedMachine + (*UnexpectedMachineList)(nil), // 553: forge.UnexpectedMachineList + (*UnexpectedMachine)(nil), // 554: forge.UnexpectedMachine + (*BatchExpectedMachineOperationRequest)(nil), // 555: forge.BatchExpectedMachineOperationRequest + (*ExpectedMachineOperationResult)(nil), // 556: forge.ExpectedMachineOperationResult + (*BatchExpectedMachineOperationResponse)(nil), // 557: forge.BatchExpectedMachineOperationResponse + (*MachineRebootCompletedResponse)(nil), // 558: forge.MachineRebootCompletedResponse + (*MachineRebootCompletedRequest)(nil), // 559: forge.MachineRebootCompletedRequest + (*ScoutFirmwareUpgradeStatusRequest)(nil), // 560: forge.ScoutFirmwareUpgradeStatusRequest + (*MachineValidationCompletedRequest)(nil), // 561: forge.MachineValidationCompletedRequest + (*MachineValidationCompletedResponse)(nil), // 562: forge.MachineValidationCompletedResponse + (*MachineValidationResult)(nil), // 563: forge.MachineValidationResult + (*MachineValidationResultPostRequest)(nil), // 564: forge.MachineValidationResultPostRequest + (*MachineValidationResultList)(nil), // 565: forge.MachineValidationResultList + (*MachineValidationGetRequest)(nil), // 566: forge.MachineValidationGetRequest + (*MachineValidationStatus)(nil), // 567: forge.MachineValidationStatus + (*MachineValidationRun)(nil), // 568: forge.MachineValidationRun + (*MachineSetAutoUpdateRequest)(nil), // 569: forge.MachineSetAutoUpdateRequest + (*MachineSetAutoUpdateResponse)(nil), // 570: forge.MachineSetAutoUpdateResponse + (*GetMachineValidationExternalConfigRequest)(nil), // 571: forge.GetMachineValidationExternalConfigRequest + (*MachineValidationExternalConfig)(nil), // 572: forge.MachineValidationExternalConfig + (*GetMachineValidationExternalConfigResponse)(nil), // 573: forge.GetMachineValidationExternalConfigResponse + (*GetMachineValidationExternalConfigsRequest)(nil), // 574: forge.GetMachineValidationExternalConfigsRequest + (*GetMachineValidationExternalConfigsResponse)(nil), // 575: forge.GetMachineValidationExternalConfigsResponse + (*AddUpdateMachineValidationExternalConfigRequest)(nil), // 576: forge.AddUpdateMachineValidationExternalConfigRequest + (*RemoveMachineValidationExternalConfigRequest)(nil), // 577: forge.RemoveMachineValidationExternalConfigRequest + (*MachineValidationOnDemandRequest)(nil), // 578: forge.MachineValidationOnDemandRequest + (*MachineValidationOnDemandResponse)(nil), // 579: forge.MachineValidationOnDemandResponse + (*FirmwareUpgradeActivity)(nil), // 580: forge.FirmwareUpgradeActivity + (*NvosUpdateActivity)(nil), // 581: forge.NvosUpdateActivity + (*ConfigureNmxClusterActivity)(nil), // 582: forge.ConfigureNmxClusterActivity + (*PowerSequenceActivity)(nil), // 583: forge.PowerSequenceActivity + (*MaintenanceActivityConfig)(nil), // 584: forge.MaintenanceActivityConfig + (*RackMaintenanceScope)(nil), // 585: forge.RackMaintenanceScope + (*RackMaintenanceOnDemandRequest)(nil), // 586: forge.RackMaintenanceOnDemandRequest + (*RackMaintenanceOnDemandResponse)(nil), // 587: forge.RackMaintenanceOnDemandResponse + (*AdminPowerControlRequest)(nil), // 588: forge.AdminPowerControlRequest + (*AdminPowerControlResponse)(nil), // 589: forge.AdminPowerControlResponse + (*GetRedfishJobStateRequest)(nil), // 590: forge.GetRedfishJobStateRequest + (*GetRedfishJobStateResponse)(nil), // 591: forge.GetRedfishJobStateResponse + (*MachineValidationRunList)(nil), // 592: forge.MachineValidationRunList + (*MachineValidationRunListGetRequest)(nil), // 593: forge.MachineValidationRunListGetRequest + (*MachineValidationRunItemSearchFilter)(nil), // 594: forge.MachineValidationRunItemSearchFilter + (*MachineValidationRunItemIdList)(nil), // 595: forge.MachineValidationRunItemIdList + (*MachineValidationRunItemsByIdsRequest)(nil), // 596: forge.MachineValidationRunItemsByIdsRequest + (*MachineValidationRunItemList)(nil), // 597: forge.MachineValidationRunItemList + (*MachineValidationRunItem)(nil), // 598: forge.MachineValidationRunItem + (*MachineValidationAttemptGetRequest)(nil), // 599: forge.MachineValidationAttemptGetRequest + (*MachineValidationAttempt)(nil), // 600: forge.MachineValidationAttempt + (*MachineValidationHeartbeatRequest)(nil), // 601: forge.MachineValidationHeartbeatRequest + (*MachineValidationHeartbeatResponse)(nil), // 602: forge.MachineValidationHeartbeatResponse + (*IsBmcInManagedHostResponse)(nil), // 603: forge.IsBmcInManagedHostResponse + (*BmcCredentialStatusResponse)(nil), // 604: forge.BmcCredentialStatusResponse + (*MachineValidationTestsGetRequest)(nil), // 605: forge.MachineValidationTestsGetRequest + (*MachineValidationTestUpdateRequest)(nil), // 606: forge.MachineValidationTestUpdateRequest + (*MachineValidationTestAddRequest)(nil), // 607: forge.MachineValidationTestAddRequest + (*MachineValidationTestAddUpdateResponse)(nil), // 608: forge.MachineValidationTestAddUpdateResponse + (*MachineValidationTestsGetResponse)(nil), // 609: forge.MachineValidationTestsGetResponse + (*MachineValidationTestVerfiedRequest)(nil), // 610: forge.MachineValidationTestVerfiedRequest + (*MachineValidationTestVerfiedResponse)(nil), // 611: forge.MachineValidationTestVerfiedResponse + (*MachineValidationTest)(nil), // 612: forge.MachineValidationTest + (*MachineValidationTestNextVersionResponse)(nil), // 613: forge.MachineValidationTestNextVersionResponse + (*MachineValidationTestNextVersionRequest)(nil), // 614: forge.MachineValidationTestNextVersionRequest + (*MachineValidationTestEnableDisableTestRequest)(nil), // 615: forge.MachineValidationTestEnableDisableTestRequest + (*MachineValidationTestEnableDisableTestResponse)(nil), // 616: forge.MachineValidationTestEnableDisableTestResponse + (*MachineValidationRunRequest)(nil), // 617: forge.MachineValidationRunRequest + (*MachineValidationRunResponse)(nil), // 618: forge.MachineValidationRunResponse + (*MachineCapabilityAttributesCpu)(nil), // 619: forge.MachineCapabilityAttributesCpu + (*MachineCapabilityAttributesGpu)(nil), // 620: forge.MachineCapabilityAttributesGpu + (*MachineCapabilityAttributesMemory)(nil), // 621: forge.MachineCapabilityAttributesMemory + (*MachineCapabilityAttributesStorage)(nil), // 622: forge.MachineCapabilityAttributesStorage + (*MachineCapabilityAttributesNetwork)(nil), // 623: forge.MachineCapabilityAttributesNetwork + (*MachineCapabilityAttributesInfiniband)(nil), // 624: forge.MachineCapabilityAttributesInfiniband + (*MachineCapabilityAttributesDpu)(nil), // 625: forge.MachineCapabilityAttributesDpu + (*MachineCapabilitiesSet)(nil), // 626: forge.MachineCapabilitiesSet + (*InstanceTypeAttributes)(nil), // 627: forge.InstanceTypeAttributes + (*InstanceType)(nil), // 628: forge.InstanceType + (*InstanceTypeMachineCapabilityFilterAttributes)(nil), // 629: forge.InstanceTypeMachineCapabilityFilterAttributes + (*CreateInstanceTypeRequest)(nil), // 630: forge.CreateInstanceTypeRequest + (*CreateInstanceTypeResponse)(nil), // 631: forge.CreateInstanceTypeResponse + (*FindInstanceTypeIdsRequest)(nil), // 632: forge.FindInstanceTypeIdsRequest + (*FindInstanceTypeIdsResponse)(nil), // 633: forge.FindInstanceTypeIdsResponse + (*FindInstanceTypesByIdsRequest)(nil), // 634: forge.FindInstanceTypesByIdsRequest + (*FindInstanceTypesByIdsResponse)(nil), // 635: forge.FindInstanceTypesByIdsResponse + (*DeleteInstanceTypeRequest)(nil), // 636: forge.DeleteInstanceTypeRequest + (*DeleteInstanceTypeResponse)(nil), // 637: forge.DeleteInstanceTypeResponse + (*UpdateInstanceTypeResponse)(nil), // 638: forge.UpdateInstanceTypeResponse + (*UpdateInstanceTypeRequest)(nil), // 639: forge.UpdateInstanceTypeRequest + (*AssociateMachinesWithInstanceTypeRequest)(nil), // 640: forge.AssociateMachinesWithInstanceTypeRequest + (*AssociateMachinesWithInstanceTypeResponse)(nil), // 641: forge.AssociateMachinesWithInstanceTypeResponse + (*RemoveMachineInstanceTypeAssociationRequest)(nil), // 642: forge.RemoveMachineInstanceTypeAssociationRequest + (*RemoveMachineInstanceTypeAssociationResponse)(nil), // 643: forge.RemoveMachineInstanceTypeAssociationResponse + (*RedfishBrowseRequest)(nil), // 644: forge.RedfishBrowseRequest + (*RedfishBrowseResponse)(nil), // 645: forge.RedfishBrowseResponse + (*RedfishListActionsRequest)(nil), // 646: forge.RedfishListActionsRequest + (*RedfishListActionsResponse)(nil), // 647: forge.RedfishListActionsResponse + (*RedfishAction)(nil), // 648: forge.RedfishAction + (*OptionalRedfishActionResult)(nil), // 649: forge.OptionalRedfishActionResult + (*RedfishActionResult)(nil), // 650: forge.RedfishActionResult + (*RedfishCreateActionRequest)(nil), // 651: forge.RedfishCreateActionRequest + (*RedfishCreateActionResponse)(nil), // 652: forge.RedfishCreateActionResponse + (*RedfishActionID)(nil), // 653: forge.RedfishActionID + (*RedfishApproveActionResponse)(nil), // 654: forge.RedfishApproveActionResponse + (*RedfishApplyActionResponse)(nil), // 655: forge.RedfishApplyActionResponse + (*RedfishCancelActionResponse)(nil), // 656: forge.RedfishCancelActionResponse + (*UfmBrowseRequest)(nil), // 657: forge.UfmBrowseRequest + (*UfmBrowseResponse)(nil), // 658: forge.UfmBrowseResponse + (*NetworkSecurityGroupAttributes)(nil), // 659: forge.NetworkSecurityGroupAttributes + (*NetworkSecurityGroup)(nil), // 660: forge.NetworkSecurityGroup + (*CreateNetworkSecurityGroupRequest)(nil), // 661: forge.CreateNetworkSecurityGroupRequest + (*CreateNetworkSecurityGroupResponse)(nil), // 662: forge.CreateNetworkSecurityGroupResponse + (*FindNetworkSecurityGroupIdsRequest)(nil), // 663: forge.FindNetworkSecurityGroupIdsRequest + (*FindNetworkSecurityGroupIdsResponse)(nil), // 664: forge.FindNetworkSecurityGroupIdsResponse + (*FindNetworkSecurityGroupsByIdsRequest)(nil), // 665: forge.FindNetworkSecurityGroupsByIdsRequest + (*FindNetworkSecurityGroupsByIdsResponse)(nil), // 666: forge.FindNetworkSecurityGroupsByIdsResponse + (*UpdateNetworkSecurityGroupResponse)(nil), // 667: forge.UpdateNetworkSecurityGroupResponse + (*UpdateNetworkSecurityGroupRequest)(nil), // 668: forge.UpdateNetworkSecurityGroupRequest + (*DeleteNetworkSecurityGroupRequest)(nil), // 669: forge.DeleteNetworkSecurityGroupRequest + (*DeleteNetworkSecurityGroupResponse)(nil), // 670: forge.DeleteNetworkSecurityGroupResponse + (*NetworkSecurityGroupStatus)(nil), // 671: forge.NetworkSecurityGroupStatus + (*NetworkSecurityGroupPropagationObjectStatus)(nil), // 672: forge.NetworkSecurityGroupPropagationObjectStatus + (*GetNetworkSecurityGroupPropagationStatusResponse)(nil), // 673: forge.GetNetworkSecurityGroupPropagationStatusResponse + (*NetworkSecurityGroupIdList)(nil), // 674: forge.NetworkSecurityGroupIdList + (*GetNetworkSecurityGroupPropagationStatusRequest)(nil), // 675: forge.GetNetworkSecurityGroupPropagationStatusRequest + (*NetworkSecurityGroupRuleAttributes)(nil), // 676: forge.NetworkSecurityGroupRuleAttributes + (*ResolvedNetworkSecurityGroupRule)(nil), // 677: forge.ResolvedNetworkSecurityGroupRule + (*GetNetworkSecurityGroupAttachmentsRequest)(nil), // 678: forge.GetNetworkSecurityGroupAttachmentsRequest + (*NetworkSecurityGroupAttachments)(nil), // 679: forge.NetworkSecurityGroupAttachments + (*GetNetworkSecurityGroupAttachmentsResponse)(nil), // 680: forge.GetNetworkSecurityGroupAttachmentsResponse + (*GetDesiredFirmwareVersionsRequest)(nil), // 681: forge.GetDesiredFirmwareVersionsRequest + (*GetDesiredFirmwareVersionsResponse)(nil), // 682: forge.GetDesiredFirmwareVersionsResponse + (*DesiredFirmwareVersionEntry)(nil), // 683: forge.DesiredFirmwareVersionEntry + (*SkuComponentChassis)(nil), // 684: forge.SkuComponentChassis + (*SkuComponentCpu)(nil), // 685: forge.SkuComponentCpu + (*SkuComponentGpu)(nil), // 686: forge.SkuComponentGpu + (*SkuComponentEthernetDevices)(nil), // 687: forge.SkuComponentEthernetDevices + (*SkuComponentInfinibandDevices)(nil), // 688: forge.SkuComponentInfinibandDevices + (*SkuComponentStorage)(nil), // 689: forge.SkuComponentStorage + (*SkuComponentStorageController)(nil), // 690: forge.SkuComponentStorageController + (*SkuComponentMemory)(nil), // 691: forge.SkuComponentMemory + (*SkuComponentTpm)(nil), // 692: forge.SkuComponentTpm + (*SkuComponents)(nil), // 693: forge.SkuComponents + (*Sku)(nil), // 694: forge.Sku + (*SkuMachinePair)(nil), // 695: forge.SkuMachinePair + (*RemoveSkuRequest)(nil), // 696: forge.RemoveSkuRequest + (*SkuList)(nil), // 697: forge.SkuList + (*SkuIdList)(nil), // 698: forge.SkuIdList + (*SkuStatus)(nil), // 699: forge.SkuStatus + (*SkusByIdsRequest)(nil), // 700: forge.SkusByIdsRequest + (*SkuSearchFilter)(nil), // 701: forge.SkuSearchFilter + (*DpaInterface)(nil), // 702: forge.DpaInterface + (*DpaInterfaceCreationRequest)(nil), // 703: forge.DpaInterfaceCreationRequest + (*DpaInterfaceIdList)(nil), // 704: forge.DpaInterfaceIdList + (*DpaInterfacesByIdsRequest)(nil), // 705: forge.DpaInterfacesByIdsRequest + (*DpaInterfaceList)(nil), // 706: forge.DpaInterfaceList + (*DpaNetworkObservationSetRequest)(nil), // 707: forge.DpaNetworkObservationSetRequest + (*DpaInterfaceDeletionRequest)(nil), // 708: forge.DpaInterfaceDeletionRequest + (*DpaInterfaceDeletionResult)(nil), // 709: forge.DpaInterfaceDeletionResult + (*SkuUpdateMetadataRequest)(nil), // 710: forge.SkuUpdateMetadataRequest + (*PowerOptionRequest)(nil), // 711: forge.PowerOptionRequest + (*PowerOptionUpdateRequest)(nil), // 712: forge.PowerOptionUpdateRequest + (*PowerOptions)(nil), // 713: forge.PowerOptions + (*PowerOptionResponse)(nil), // 714: forge.PowerOptionResponse + (*ComputeAllocationAttributes)(nil), // 715: forge.ComputeAllocationAttributes + (*ComputeAllocation)(nil), // 716: forge.ComputeAllocation + (*CreateComputeAllocationRequest)(nil), // 717: forge.CreateComputeAllocationRequest + (*CreateComputeAllocationResponse)(nil), // 718: forge.CreateComputeAllocationResponse + (*FindComputeAllocationIdsRequest)(nil), // 719: forge.FindComputeAllocationIdsRequest + (*FindComputeAllocationIdsResponse)(nil), // 720: forge.FindComputeAllocationIdsResponse + (*FindComputeAllocationsByIdsRequest)(nil), // 721: forge.FindComputeAllocationsByIdsRequest + (*FindComputeAllocationsByIdsResponse)(nil), // 722: forge.FindComputeAllocationsByIdsResponse + (*UpdateComputeAllocationResponse)(nil), // 723: forge.UpdateComputeAllocationResponse + (*UpdateComputeAllocationRequest)(nil), // 724: forge.UpdateComputeAllocationRequest + (*DeleteComputeAllocationRequest)(nil), // 725: forge.DeleteComputeAllocationRequest + (*DeleteComputeAllocationResponse)(nil), // 726: forge.DeleteComputeAllocationResponse + (*InstanceTypeAllocationStats)(nil), // 727: forge.InstanceTypeAllocationStats + (*GetRackRequest)(nil), // 728: forge.GetRackRequest + (*GetRackResponse)(nil), // 729: forge.GetRackResponse + (*RackList)(nil), // 730: forge.RackList + (*RackSearchFilter)(nil), // 731: forge.RackSearchFilter + (*RackIdList)(nil), // 732: forge.RackIdList + (*RacksByIdsRequest)(nil), // 733: forge.RacksByIdsRequest + (*Rack)(nil), // 734: forge.Rack + (*RackConfig)(nil), // 735: forge.RackConfig + (*RackStatus)(nil), // 736: forge.RackStatus + (*RackStateHistoriesRequest)(nil), // 737: forge.RackStateHistoriesRequest + (*DeleteRackRequest)(nil), // 738: forge.DeleteRackRequest + (*AdminForceDeleteRackRequest)(nil), // 739: forge.AdminForceDeleteRackRequest + (*AdminForceDeleteRackResponse)(nil), // 740: forge.AdminForceDeleteRackResponse + (*RackCapabilityCompute)(nil), // 741: forge.RackCapabilityCompute + (*RackCapabilitySwitch)(nil), // 742: forge.RackCapabilitySwitch + (*RackCapabilityPowerShelf)(nil), // 743: forge.RackCapabilityPowerShelf + (*RackCapabilitiesSet)(nil), // 744: forge.RackCapabilitiesSet + (*RackProfile)(nil), // 745: forge.RackProfile + (*GetRackProfileRequest)(nil), // 746: forge.GetRackProfileRequest + (*GetRackProfileResponse)(nil), // 747: forge.GetRackProfileResponse + (*RackManagerForgeRequest)(nil), // 748: forge.RackManagerForgeRequest + (*RackManagerForgeResponse)(nil), // 749: forge.RackManagerForgeResponse + (*MachineNVLinkInfo)(nil), // 750: forge.MachineNVLinkInfo + (*UpdateMachineNvLinkInfoRequest)(nil), // 751: forge.UpdateMachineNvLinkInfoRequest + (*MachineSpxStatusObservation)(nil), // 752: forge.MachineSpxStatusObservation + (*MachineSpxAttachmentStatusObservation)(nil), // 753: forge.MachineSpxAttachmentStatusObservation + (*NVLinkGpu)(nil), // 754: forge.NVLinkGpu + (*MachineNVLinkStatusObservation)(nil), // 755: forge.MachineNVLinkStatusObservation + (*MachineNVLinkGpuStatusObservation)(nil), // 756: forge.MachineNVLinkGpuStatusObservation + (*NmxcBrowseRequest)(nil), // 757: forge.NmxcBrowseRequest + (*NmxcBrowseResponse)(nil), // 758: forge.NmxcBrowseResponse + (*NVLinkPartition)(nil), // 759: forge.NVLinkPartition + (*NVLinkPartitionList)(nil), // 760: forge.NVLinkPartitionList + (*NVLinkPartitionSearchConfig)(nil), // 761: forge.NVLinkPartitionSearchConfig + (*NVLinkPartitionQuery)(nil), // 762: forge.NVLinkPartitionQuery + (*NVLinkPartitionSearchFilter)(nil), // 763: forge.NVLinkPartitionSearchFilter + (*NVLinkPartitionsByIdsRequest)(nil), // 764: forge.NVLinkPartitionsByIdsRequest + (*NVLinkPartitionIdList)(nil), // 765: forge.NVLinkPartitionIdList + (*NVLinkFabricSearchFilter)(nil), // 766: forge.NVLinkFabricSearchFilter + (*NVLinkLogicalPartitionConfig)(nil), // 767: forge.NVLinkLogicalPartitionConfig + (*NVLinkLogicalPartitionStatus)(nil), // 768: forge.NVLinkLogicalPartitionStatus + (*NVLinkLogicalPartition)(nil), // 769: forge.NVLinkLogicalPartition + (*NVLinkLogicalPartitionList)(nil), // 770: forge.NVLinkLogicalPartitionList + (*NVLinkLogicalPartitionCreationRequest)(nil), // 771: forge.NVLinkLogicalPartitionCreationRequest + (*NVLinkLogicalPartitionDeletionRequest)(nil), // 772: forge.NVLinkLogicalPartitionDeletionRequest + (*NVLinkLogicalPartitionDeletionResult)(nil), // 773: forge.NVLinkLogicalPartitionDeletionResult + (*NVLinkLogicalPartitionSearchFilter)(nil), // 774: forge.NVLinkLogicalPartitionSearchFilter + (*NVLinkLogicalPartitionsByIdsRequest)(nil), // 775: forge.NVLinkLogicalPartitionsByIdsRequest + (*NVLinkLogicalPartitionIdList)(nil), // 776: forge.NVLinkLogicalPartitionIdList + (*NVLinkLogicalPartitionUpdateRequest)(nil), // 777: forge.NVLinkLogicalPartitionUpdateRequest + (*NVLinkLogicalPartitionUpdateResult)(nil), // 778: forge.NVLinkLogicalPartitionUpdateResult + (*CreateBmcUserRequest)(nil), // 779: forge.CreateBmcUserRequest + (*CreateBmcUserResponse)(nil), // 780: forge.CreateBmcUserResponse + (*DeleteBmcUserRequest)(nil), // 781: forge.DeleteBmcUserRequest + (*DeleteBmcUserResponse)(nil), // 782: forge.DeleteBmcUserResponse + (*SetFirmwareUpdateTimeWindowRequest)(nil), // 783: forge.SetFirmwareUpdateTimeWindowRequest + (*SetFirmwareUpdateTimeWindowResponse)(nil), // 784: forge.SetFirmwareUpdateTimeWindowResponse + (*ListHostFirmwareRequest)(nil), // 785: forge.ListHostFirmwareRequest + (*ListHostFirmwareResponse)(nil), // 786: forge.ListHostFirmwareResponse + (*AvailableHostFirmware)(nil), // 787: forge.AvailableHostFirmware + (*TrimTableRequest)(nil), // 788: forge.TrimTableRequest + (*TrimTableResponse)(nil), // 789: forge.TrimTableResponse + (*NvlinkNmxcEndpoint)(nil), // 790: forge.NvlinkNmxcEndpoint + (*NvlinkNmxcEndpointList)(nil), // 791: forge.NvlinkNmxcEndpointList + (*DeleteNvlinkNmxcEndpointRequest)(nil), // 792: forge.DeleteNvlinkNmxcEndpointRequest + (*CreateRemediationRequest)(nil), // 793: forge.CreateRemediationRequest + (*CreateRemediationResponse)(nil), // 794: forge.CreateRemediationResponse + (*RemediationIdList)(nil), // 795: forge.RemediationIdList + (*RemediationList)(nil), // 796: forge.RemediationList + (*Remediation)(nil), // 797: forge.Remediation + (*ApproveRemediationRequest)(nil), // 798: forge.ApproveRemediationRequest + (*RevokeRemediationRequest)(nil), // 799: forge.RevokeRemediationRequest + (*EnableRemediationRequest)(nil), // 800: forge.EnableRemediationRequest + (*DisableRemediationRequest)(nil), // 801: forge.DisableRemediationRequest + (*FindAppliedRemediationIdsRequest)(nil), // 802: forge.FindAppliedRemediationIdsRequest + (*AppliedRemediationIdList)(nil), // 803: forge.AppliedRemediationIdList + (*FindAppliedRemediationsRequest)(nil), // 804: forge.FindAppliedRemediationsRequest + (*AppliedRemediation)(nil), // 805: forge.AppliedRemediation + (*AppliedRemediationList)(nil), // 806: forge.AppliedRemediationList + (*GetNextRemediationForMachineRequest)(nil), // 807: forge.GetNextRemediationForMachineRequest + (*GetNextRemediationForMachineResponse)(nil), // 808: forge.GetNextRemediationForMachineResponse + (*RemediationAppliedRequest)(nil), // 809: forge.RemediationAppliedRequest + (*RemediationApplicationStatus)(nil), // 810: forge.RemediationApplicationStatus + (*SetPrimaryDpuRequest)(nil), // 811: forge.SetPrimaryDpuRequest + (*SetPrimaryInterfaceRequest)(nil), // 812: forge.SetPrimaryInterfaceRequest + (*UsernamePassword)(nil), // 813: forge.UsernamePassword + (*SessionToken)(nil), // 814: forge.SessionToken + (*DpuExtensionServiceCredential)(nil), // 815: forge.DpuExtensionServiceCredential + (*DpuExtensionServiceVersionInfo)(nil), // 816: forge.DpuExtensionServiceVersionInfo + (*DpuExtensionService)(nil), // 817: forge.DpuExtensionService + (*CreateDpuExtensionServiceRequest)(nil), // 818: forge.CreateDpuExtensionServiceRequest + (*UpdateDpuExtensionServiceRequest)(nil), // 819: forge.UpdateDpuExtensionServiceRequest + (*DeleteDpuExtensionServiceRequest)(nil), // 820: forge.DeleteDpuExtensionServiceRequest + (*DeleteDpuExtensionServiceResponse)(nil), // 821: forge.DeleteDpuExtensionServiceResponse + (*DpuExtensionServiceSearchFilter)(nil), // 822: forge.DpuExtensionServiceSearchFilter + (*DpuExtensionServiceIdList)(nil), // 823: forge.DpuExtensionServiceIdList + (*DpuExtensionServicesByIdsRequest)(nil), // 824: forge.DpuExtensionServicesByIdsRequest + (*DpuExtensionServiceList)(nil), // 825: forge.DpuExtensionServiceList + (*GetDpuExtensionServiceVersionsInfoRequest)(nil), // 826: forge.GetDpuExtensionServiceVersionsInfoRequest + (*DpuExtensionServiceVersionInfoList)(nil), // 827: forge.DpuExtensionServiceVersionInfoList + (*FindInstancesByDpuExtensionServiceRequest)(nil), // 828: forge.FindInstancesByDpuExtensionServiceRequest + (*FindInstancesByDpuExtensionServiceResponse)(nil), // 829: forge.FindInstancesByDpuExtensionServiceResponse + (*InstanceDpuExtensionServiceInfo)(nil), // 830: forge.InstanceDpuExtensionServiceInfo + (*DpuExtensionServiceObservabilityConfigPrometheus)(nil), // 831: forge.DpuExtensionServiceObservabilityConfigPrometheus + (*DpuExtensionServiceObservabilityConfigLogging)(nil), // 832: forge.DpuExtensionServiceObservabilityConfigLogging + (*DpuExtensionServiceObservabilityConfig)(nil), // 833: forge.DpuExtensionServiceObservabilityConfig + (*DpuExtensionServiceObservability)(nil), // 834: forge.DpuExtensionServiceObservability + (*ScoutStreamApiBoundMessage)(nil), // 835: forge.ScoutStreamApiBoundMessage + (*ScoutStreamScoutBoundMessage)(nil), // 836: forge.ScoutStreamScoutBoundMessage + (*ScoutStreamInitRequest)(nil), // 837: forge.ScoutStreamInitRequest + (*ScoutStreamShowConnectionsRequest)(nil), // 838: forge.ScoutStreamShowConnectionsRequest + (*ScoutStreamShowConnectionsResponse)(nil), // 839: forge.ScoutStreamShowConnectionsResponse + (*ScoutStreamDisconnectRequest)(nil), // 840: forge.ScoutStreamDisconnectRequest + (*ScoutStreamDisconnectResponse)(nil), // 841: forge.ScoutStreamDisconnectResponse + (*ScoutStreamAdminPingRequest)(nil), // 842: forge.ScoutStreamAdminPingRequest + (*ScoutStreamAdminPingResponse)(nil), // 843: forge.ScoutStreamAdminPingResponse + (*ScoutStreamAgentPingRequest)(nil), // 844: forge.ScoutStreamAgentPingRequest + (*ScoutStreamAgentPingResponse)(nil), // 845: forge.ScoutStreamAgentPingResponse + (*ScoutStreamConnectionInfo)(nil), // 846: forge.ScoutStreamConnectionInfo + (*ScoutStreamError)(nil), // 847: forge.ScoutStreamError + (*PrefixFilterPolicyEntry)(nil), // 848: forge.PrefixFilterPolicyEntry + (*RoutingProfile)(nil), // 849: forge.RoutingProfile + (*DomainLegacy)(nil), // 850: forge.DomainLegacy + (*DomainListLegacy)(nil), // 851: forge.DomainListLegacy + (*DomainDeletionLegacy)(nil), // 852: forge.DomainDeletionLegacy + (*DomainDeletionResultLegacy)(nil), // 853: forge.DomainDeletionResultLegacy + (*DomainSearchQueryLegacy)(nil), // 854: forge.DomainSearchQueryLegacy + (*PxeDomain)(nil), // 855: forge.PxeDomain + (*MachinePositionQuery)(nil), // 856: forge.MachinePositionQuery + (*MachinePositionInfoList)(nil), // 857: forge.MachinePositionInfoList + (*MachinePositionInfo)(nil), // 858: forge.MachinePositionInfo + (*ModifyDPFStateRequest)(nil), // 859: forge.ModifyDPFStateRequest + (*DPFStateResponse)(nil), // 860: forge.DPFStateResponse + (*GetDPFStateRequest)(nil), // 861: forge.GetDPFStateRequest + (*GetDPFHostSnapshotRequest)(nil), // 862: forge.GetDPFHostSnapshotRequest + (*DPFHostSnapshotResponse)(nil), // 863: forge.DPFHostSnapshotResponse + (*GetDPFServiceVersionsRequest)(nil), // 864: forge.GetDPFServiceVersionsRequest + (*DPFServiceVersion)(nil), // 865: forge.DPFServiceVersion + (*DPFServiceVersionsResponse)(nil), // 866: forge.DPFServiceVersionsResponse + (*ComponentResult)(nil), // 867: forge.ComponentResult + (*SwitchIdList)(nil), // 868: forge.SwitchIdList + (*PowerShelfIdList)(nil), // 869: forge.PowerShelfIdList + (*GetComponentInventoryRequest)(nil), // 870: forge.GetComponentInventoryRequest + (*ComponentInventoryEntry)(nil), // 871: forge.ComponentInventoryEntry + (*GetComponentInventoryResponse)(nil), // 872: forge.GetComponentInventoryResponse + (*ComponentPowerControlRequest)(nil), // 873: forge.ComponentPowerControlRequest + (*ComponentPowerControlResponse)(nil), // 874: forge.ComponentPowerControlResponse + (*FirmwareUpdateStatus)(nil), // 875: forge.FirmwareUpdateStatus + (*UpdateComputeTrayFirmwareTarget)(nil), // 876: forge.UpdateComputeTrayFirmwareTarget + (*UpdateSwitchFirmwareTarget)(nil), // 877: forge.UpdateSwitchFirmwareTarget + (*UpdatePowerShelfFirmwareTarget)(nil), // 878: forge.UpdatePowerShelfFirmwareTarget + (*UpdateFirmwareObjectTarget)(nil), // 879: forge.UpdateFirmwareObjectTarget + (*UpdateComponentFirmwareRequest)(nil), // 880: forge.UpdateComponentFirmwareRequest + (*UpdateComponentFirmwareResponse)(nil), // 881: forge.UpdateComponentFirmwareResponse + (*GetComponentFirmwareStatusRequest)(nil), // 882: forge.GetComponentFirmwareStatusRequest + (*GetComponentFirmwareStatusResponse)(nil), // 883: forge.GetComponentFirmwareStatusResponse + (*ListComponentFirmwareVersionsRequest)(nil), // 884: forge.ListComponentFirmwareVersionsRequest + (*ComputeTrayFirmwareVersions)(nil), // 885: forge.ComputeTrayFirmwareVersions + (*DeviceFirmwareVersions)(nil), // 886: forge.DeviceFirmwareVersions + (*ListComponentFirmwareVersionsResponse)(nil), // 887: forge.ListComponentFirmwareVersionsResponse + (*SpxPartitionCreationRequest)(nil), // 888: forge.SpxPartitionCreationRequest + (*SpxPartition)(nil), // 889: forge.SpxPartition + (*SpxPartitionIdList)(nil), // 890: forge.SpxPartitionIdList + (*SpxPartitionDeletionRequest)(nil), // 891: forge.SpxPartitionDeletionRequest + (*SpxPartitionDeletionResult)(nil), // 892: forge.SpxPartitionDeletionResult + (*SpxPartitionSearchFilter)(nil), // 893: forge.SpxPartitionSearchFilter + (*SpxPartitionList)(nil), // 894: forge.SpxPartitionList + (*SpxPartitionsByIdsRequest)(nil), // 895: forge.SpxPartitionsByIdsRequest + (*AdminForceDeleteSwitchRequest)(nil), // 896: forge.AdminForceDeleteSwitchRequest + (*AdminForceDeleteSwitchResponse)(nil), // 897: forge.AdminForceDeleteSwitchResponse + (*AdminForceDeletePowerShelfRequest)(nil), // 898: forge.AdminForceDeletePowerShelfRequest + (*AdminForceDeletePowerShelfResponse)(nil), // 899: forge.AdminForceDeletePowerShelfResponse + (*OperatingSystem)(nil), // 900: forge.OperatingSystem + (*CreateOperatingSystemRequest)(nil), // 901: forge.CreateOperatingSystemRequest + (*IpxeTemplateParameters)(nil), // 902: forge.IpxeTemplateParameters + (*IpxeTemplateArtifacts)(nil), // 903: forge.IpxeTemplateArtifacts + (*UpdateOperatingSystemRequest)(nil), // 904: forge.UpdateOperatingSystemRequest + (*DeleteOperatingSystemRequest)(nil), // 905: forge.DeleteOperatingSystemRequest + (*DeleteOperatingSystemResponse)(nil), // 906: forge.DeleteOperatingSystemResponse + (*OperatingSystemSearchFilter)(nil), // 907: forge.OperatingSystemSearchFilter + (*OperatingSystemIdList)(nil), // 908: forge.OperatingSystemIdList + (*OperatingSystemsByIdsRequest)(nil), // 909: forge.OperatingSystemsByIdsRequest + (*OperatingSystemList)(nil), // 910: forge.OperatingSystemList + (*GetOperatingSystemCachableIpxeTemplateArtifactsRequest)(nil), // 911: forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest + (*IpxeTemplateArtifactList)(nil), // 912: forge.IpxeTemplateArtifactList + (*IpxeTemplateArtifactUpdateRequest)(nil), // 913: forge.IpxeTemplateArtifactUpdateRequest + (*UpdateOperatingSystemIpxeTemplateArtifactRequest)(nil), // 914: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest + (*HostRepresentorInterceptBridging)(nil), // 915: forge.HostRepresentorInterceptBridging + (*ReWrapSecretsRequest)(nil), // 916: forge.ReWrapSecretsRequest + (*ReWrapSecretsResponse)(nil), // 917: forge.ReWrapSecretsResponse + (*GetMachineBootInterfacesRequest)(nil), // 918: forge.GetMachineBootInterfacesRequest + (*MachineInterfaceBootInterface)(nil), // 919: forge.MachineInterfaceBootInterface + (*PredictedBootInterface)(nil), // 920: forge.PredictedBootInterface + (*ExploredBootInterface)(nil), // 921: forge.ExploredBootInterface + (*RetainedBootInterface)(nil), // 922: forge.RetainedBootInterface + (*GetMachineBootInterfacesResponse)(nil), // 923: forge.GetMachineBootInterfacesResponse + nil, // 924: forge.RuntimeConfig.DpuNicFirmwareUpdateVersionEntry + (*DNSMessage_DNSQuestion)(nil), // 925: forge.DNSMessage.DNSQuestion + (*DNSMessage_DNSResponse)(nil), // 926: forge.DNSMessage.DNSResponse + (*DNSMessage_DNSResponse_DNSRR)(nil), // 927: forge.DNSMessage.DNSResponse.DNSRR + nil, // 928: forge.FabricManagerConfig.ConfigMapEntry + nil, // 929: forge.StateHistories.HistoriesEntry + nil, // 930: forge.MachineStateHistories.HistoriesEntry + nil, // 931: forge.HealthHistories.HistoriesEntry + nil, // 932: forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry + (*MachineCredentialsUpdateRequest_Credentials)(nil), // 933: forge.MachineCredentialsUpdateRequest.Credentials + (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo)(nil), // 934: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo + (*ForgeAgentControlResponse_Noop)(nil), // 935: forge.ForgeAgentControlResponse.Noop + (*ForgeAgentControlResponse_Reset)(nil), // 936: forge.ForgeAgentControlResponse.Reset + (*ForgeAgentControlResponse_Discovery)(nil), // 937: forge.ForgeAgentControlResponse.Discovery + (*ForgeAgentControlResponse_Rebuild)(nil), // 938: forge.ForgeAgentControlResponse.Rebuild + (*ForgeAgentControlResponse_Retry)(nil), // 939: forge.ForgeAgentControlResponse.Retry + (*ForgeAgentControlResponse_Measure)(nil), // 940: forge.ForgeAgentControlResponse.Measure + (*ForgeAgentControlResponse_LogError)(nil), // 941: forge.ForgeAgentControlResponse.LogError + (*ForgeAgentControlResponse_MachineValidation)(nil), // 942: forge.ForgeAgentControlResponse.MachineValidation + (*ForgeAgentControlResponse_MachineValidationFilter)(nil), // 943: forge.ForgeAgentControlResponse.MachineValidationFilter + (*ForgeAgentControlResponse_MlxAction)(nil), // 944: forge.ForgeAgentControlResponse.MlxAction + (*ForgeAgentControlResponse_MlxDeviceAction)(nil), // 945: forge.ForgeAgentControlResponse.MlxDeviceAction + (*ForgeAgentControlResponse_MlxDeviceNoop)(nil), // 946: forge.ForgeAgentControlResponse.MlxDeviceNoop + (*ForgeAgentControlResponse_MlxDeviceLock)(nil), // 947: forge.ForgeAgentControlResponse.MlxDeviceLock + (*ForgeAgentControlResponse_MlxDeviceUnlock)(nil), // 948: forge.ForgeAgentControlResponse.MlxDeviceUnlock + (*ForgeAgentControlResponse_MlxDeviceApplyProfile)(nil), // 949: forge.ForgeAgentControlResponse.MlxDeviceApplyProfile + (*ForgeAgentControlResponse_MlxDeviceApplyFirmware)(nil), // 950: forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware + (*ForgeAgentControlResponse_FirmwareUpgrade)(nil), // 951: forge.ForgeAgentControlResponse.FirmwareUpgrade + (*ForgeAgentControlResponse_ForgeAgentControlExtraInfo_KeyValuePair)(nil), // 952: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.KeyValuePair + (*MachineCleanupInfo_CleanupStepResult)(nil), // 953: forge.MachineCleanupInfo.CleanupStepResult + (*DpuReprovisioningListResponse_DpuReprovisioningListItem)(nil), // 954: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem + (*HostReprovisioningListResponse_HostReprovisioningListItem)(nil), // 955: forge.HostReprovisioningListResponse.HostReprovisioningListItem + (*MachineValidationTestUpdateRequest_Payload)(nil), // 956: forge.MachineValidationTestUpdateRequest.Payload + nil, // 957: forge.RedfishBrowseResponse.HeadersEntry + nil, // 958: forge.RedfishActionResult.HeadersEntry + nil, // 959: forge.UfmBrowseResponse.HeadersEntry + nil, // 960: forge.DesiredFirmwareVersionEntry.ComponentVersionsEntry + nil, // 961: forge.NmxcBrowseResponse.HeadersEntry + (*DPFStateResponse_DPFState)(nil), // 962: forge.DPFStateResponse.DPFState + (*MachineId)(nil), // 963: common.MachineId + (*timestamppb.Timestamp)(nil), // 964: google.protobuf.Timestamp + (*DomainId)(nil), // 965: common.DomainId + (*VpcId)(nil), // 966: common.VpcId + (*NVLinkLogicalPartitionId)(nil), // 967: common.NVLinkLogicalPartitionId + (*VpcPrefixId)(nil), // 968: common.VpcPrefixId + (*VpcPeeringId)(nil), // 969: common.VpcPeeringId + (*IBPartitionId)(nil), // 970: common.IBPartitionId + (*HealthReport)(nil), // 971: health.HealthReport + (*PowerShelfId)(nil), // 972: common.PowerShelfId + (*RackId)(nil), // 973: common.RackId + (*UUID)(nil), // 974: common.UUID + (*SwitchId)(nil), // 975: common.SwitchId + (*RackProfileId)(nil), // 976: common.RackProfileId + (*NetworkSegmentId)(nil), // 977: common.NetworkSegmentId + (*NetworkPrefixId)(nil), // 978: common.NetworkPrefixId + (*InstanceId)(nil), // 979: common.InstanceId + (*IpxeTemplateId)(nil), // 980: common.IpxeTemplateId + (*OperatingSystemId)(nil), // 981: common.OperatingSystemId + (*SpxPartitionId)(nil), // 982: common.SpxPartitionId + (*NVLinkDomainId)(nil), // 983: common.NVLinkDomainId + (*MachineInterfaceId)(nil), // 984: common.MachineInterfaceId + (*DiscoveryInfo)(nil), // 985: machine_discovery.DiscoveryInfo + (*durationpb.Duration)(nil), // 986: google.protobuf.Duration + (*StringList)(nil), // 987: common.StringList + (*Gpu)(nil), // 988: machine_discovery.Gpu + (*RouteTarget)(nil), // 989: common.RouteTarget + (*MachineValidationId)(nil), // 990: common.MachineValidationId + (*Uint32List)(nil), // 991: common.Uint32List + (*DpaInterfaceId)(nil), // 992: common.DpaInterfaceId + (*ComputeAllocationId)(nil), // 993: common.ComputeAllocationId + (*RackHardwareType)(nil), // 994: common.RackHardwareType + (*NVLinkPartitionId)(nil), // 995: common.NVLinkPartitionId + (*RemediationId)(nil), // 996: common.RemediationId + (*MlxDeviceLockdownResponse)(nil), // 997: mlx_device.MlxDeviceLockdownResponse + (*MlxDeviceProfileSyncResponse)(nil), // 998: mlx_device.MlxDeviceProfileSyncResponse + (*MlxDeviceProfileCompareResponse)(nil), // 999: mlx_device.MlxDeviceProfileCompareResponse + (*MlxDeviceInfoDeviceResponse)(nil), // 1000: mlx_device.MlxDeviceInfoDeviceResponse + (*MlxDeviceInfoReportResponse)(nil), // 1001: mlx_device.MlxDeviceInfoReportResponse + (*MlxDeviceRegistryListResponse)(nil), // 1002: mlx_device.MlxDeviceRegistryListResponse + (*MlxDeviceRegistryShowResponse)(nil), // 1003: mlx_device.MlxDeviceRegistryShowResponse + (*MlxDeviceConfigQueryResponse)(nil), // 1004: mlx_device.MlxDeviceConfigQueryResponse + (*MlxDeviceConfigSetResponse)(nil), // 1005: mlx_device.MlxDeviceConfigSetResponse + (*MlxDeviceConfigSyncResponse)(nil), // 1006: mlx_device.MlxDeviceConfigSyncResponse + (*MlxDeviceConfigCompareResponse)(nil), // 1007: mlx_device.MlxDeviceConfigCompareResponse + (*MlxDeviceLockdownLockRequest)(nil), // 1008: mlx_device.MlxDeviceLockdownLockRequest + (*MlxDeviceLockdownUnlockRequest)(nil), // 1009: mlx_device.MlxDeviceLockdownUnlockRequest + (*MlxDeviceLockdownStatusRequest)(nil), // 1010: mlx_device.MlxDeviceLockdownStatusRequest + (*MlxDeviceProfileSyncRequest)(nil), // 1011: mlx_device.MlxDeviceProfileSyncRequest + (*MlxDeviceProfileCompareRequest)(nil), // 1012: mlx_device.MlxDeviceProfileCompareRequest + (*MlxDeviceInfoDeviceRequest)(nil), // 1013: mlx_device.MlxDeviceInfoDeviceRequest + (*MlxDeviceInfoReportRequest)(nil), // 1014: mlx_device.MlxDeviceInfoReportRequest + (*MlxDeviceRegistryListRequest)(nil), // 1015: mlx_device.MlxDeviceRegistryListRequest + (*MlxDeviceRegistryShowRequest)(nil), // 1016: mlx_device.MlxDeviceRegistryShowRequest + (*MlxDeviceConfigQueryRequest)(nil), // 1017: mlx_device.MlxDeviceConfigQueryRequest + (*MlxDeviceConfigSetRequest)(nil), // 1018: mlx_device.MlxDeviceConfigSetRequest + (*MlxDeviceConfigSyncRequest)(nil), // 1019: mlx_device.MlxDeviceConfigSyncRequest + (*MlxDeviceConfigCompareRequest)(nil), // 1020: mlx_device.MlxDeviceConfigCompareRequest + (*MachineIdList)(nil), // 1021: common.MachineIdList + (*EndpointExplorationReport)(nil), // 1022: site_explorer.EndpointExplorationReport + (SystemPowerControl)(0), // 1023: common.SystemPowerControl + (*SerializableMlxConfigProfile)(nil), // 1024: mlx_device.SerializableMlxConfigProfile + (*FirmwareFlasherProfile)(nil), // 1025: mlx_device.FirmwareFlasherProfile + (*emptypb.Empty)(nil), // 1026: google.protobuf.Empty + (*ExploredEndpointSearchFilter)(nil), // 1027: site_explorer.ExploredEndpointSearchFilter + (*ExploredEndpointsByIdsRequest)(nil), // 1028: site_explorer.ExploredEndpointsByIdsRequest + (*ExploredManagedHostSearchFilter)(nil), // 1029: site_explorer.ExploredManagedHostSearchFilter + (*ExploredManagedHostsByIdsRequest)(nil), // 1030: site_explorer.ExploredManagedHostsByIdsRequest + (*ExploredMlxDeviceHostSearchFilter)(nil), // 1031: site_explorer.ExploredMlxDeviceHostSearchFilter + (*ExploredMlxDevicesByIdsRequest)(nil), // 1032: site_explorer.ExploredMlxDevicesByIdsRequest + (*CreateMeasurementBundleRequest)(nil), // 1033: measured_boot.CreateMeasurementBundleRequest + (*DeleteMeasurementBundleRequest)(nil), // 1034: measured_boot.DeleteMeasurementBundleRequest + (*RenameMeasurementBundleRequest)(nil), // 1035: measured_boot.RenameMeasurementBundleRequest + (*UpdateMeasurementBundleRequest)(nil), // 1036: measured_boot.UpdateMeasurementBundleRequest + (*ShowMeasurementBundleRequest)(nil), // 1037: measured_boot.ShowMeasurementBundleRequest + (*ShowMeasurementBundlesRequest)(nil), // 1038: measured_boot.ShowMeasurementBundlesRequest + (*ListMeasurementBundlesRequest)(nil), // 1039: measured_boot.ListMeasurementBundlesRequest + (*ListMeasurementBundleMachinesRequest)(nil), // 1040: measured_boot.ListMeasurementBundleMachinesRequest + (*FindClosestBundleMatchRequest)(nil), // 1041: measured_boot.FindClosestBundleMatchRequest + (*DeleteMeasurementJournalRequest)(nil), // 1042: measured_boot.DeleteMeasurementJournalRequest + (*ShowMeasurementJournalRequest)(nil), // 1043: measured_boot.ShowMeasurementJournalRequest + (*ShowMeasurementJournalsRequest)(nil), // 1044: measured_boot.ShowMeasurementJournalsRequest + (*ListMeasurementJournalRequest)(nil), // 1045: measured_boot.ListMeasurementJournalRequest + (*AttestCandidateMachineRequest)(nil), // 1046: measured_boot.AttestCandidateMachineRequest + (*ShowCandidateMachineRequest)(nil), // 1047: measured_boot.ShowCandidateMachineRequest + (*ShowCandidateMachinesRequest)(nil), // 1048: measured_boot.ShowCandidateMachinesRequest + (*ListCandidateMachinesRequest)(nil), // 1049: measured_boot.ListCandidateMachinesRequest + (*CreateMeasurementSystemProfileRequest)(nil), // 1050: measured_boot.CreateMeasurementSystemProfileRequest + (*DeleteMeasurementSystemProfileRequest)(nil), // 1051: measured_boot.DeleteMeasurementSystemProfileRequest + (*RenameMeasurementSystemProfileRequest)(nil), // 1052: measured_boot.RenameMeasurementSystemProfileRequest + (*ShowMeasurementSystemProfileRequest)(nil), // 1053: measured_boot.ShowMeasurementSystemProfileRequest + (*ShowMeasurementSystemProfilesRequest)(nil), // 1054: measured_boot.ShowMeasurementSystemProfilesRequest + (*ListMeasurementSystemProfilesRequest)(nil), // 1055: measured_boot.ListMeasurementSystemProfilesRequest + (*ListMeasurementSystemProfileBundlesRequest)(nil), // 1056: measured_boot.ListMeasurementSystemProfileBundlesRequest + (*ListMeasurementSystemProfileMachinesRequest)(nil), // 1057: measured_boot.ListMeasurementSystemProfileMachinesRequest + (*CreateMeasurementReportRequest)(nil), // 1058: measured_boot.CreateMeasurementReportRequest + (*DeleteMeasurementReportRequest)(nil), // 1059: measured_boot.DeleteMeasurementReportRequest + (*PromoteMeasurementReportRequest)(nil), // 1060: measured_boot.PromoteMeasurementReportRequest + (*RevokeMeasurementReportRequest)(nil), // 1061: measured_boot.RevokeMeasurementReportRequest + (*ShowMeasurementReportForIdRequest)(nil), // 1062: measured_boot.ShowMeasurementReportForIdRequest + (*ShowMeasurementReportsForMachineRequest)(nil), // 1063: measured_boot.ShowMeasurementReportsForMachineRequest + (*ShowMeasurementReportsRequest)(nil), // 1064: measured_boot.ShowMeasurementReportsRequest + (*ListMeasurementReportRequest)(nil), // 1065: measured_boot.ListMeasurementReportRequest + (*MatchMeasurementReportRequest)(nil), // 1066: measured_boot.MatchMeasurementReportRequest + (*ImportSiteMeasurementsRequest)(nil), // 1067: measured_boot.ImportSiteMeasurementsRequest + (*ExportSiteMeasurementsRequest)(nil), // 1068: measured_boot.ExportSiteMeasurementsRequest + (*AddMeasurementTrustedMachineRequest)(nil), // 1069: measured_boot.AddMeasurementTrustedMachineRequest + (*RemoveMeasurementTrustedMachineRequest)(nil), // 1070: measured_boot.RemoveMeasurementTrustedMachineRequest + (*AddMeasurementTrustedProfileRequest)(nil), // 1071: measured_boot.AddMeasurementTrustedProfileRequest + (*RemoveMeasurementTrustedProfileRequest)(nil), // 1072: measured_boot.RemoveMeasurementTrustedProfileRequest + (*ListMeasurementTrustedMachinesRequest)(nil), // 1073: measured_boot.ListMeasurementTrustedMachinesRequest + (*ListMeasurementTrustedProfilesRequest)(nil), // 1074: measured_boot.ListMeasurementTrustedProfilesRequest + (*ListAttestationSummaryRequest)(nil), // 1075: measured_boot.ListAttestationSummaryRequest + (*PublishMlxDeviceReportRequest)(nil), // 1076: mlx_device.PublishMlxDeviceReportRequest + (*PublishMlxObservationReportRequest)(nil), // 1077: mlx_device.PublishMlxObservationReportRequest + (*MlxAdminProfileSyncRequest)(nil), // 1078: mlx_device.MlxAdminProfileSyncRequest + (*MlxAdminProfileShowRequest)(nil), // 1079: mlx_device.MlxAdminProfileShowRequest + (*MlxAdminProfileCompareRequest)(nil), // 1080: mlx_device.MlxAdminProfileCompareRequest + (*MlxAdminProfileListRequest)(nil), // 1081: mlx_device.MlxAdminProfileListRequest + (*MlxAdminLockdownLockRequest)(nil), // 1082: mlx_device.MlxAdminLockdownLockRequest + (*MlxAdminLockdownUnlockRequest)(nil), // 1083: mlx_device.MlxAdminLockdownUnlockRequest + (*MlxAdminLockdownStatusRequest)(nil), // 1084: mlx_device.MlxAdminLockdownStatusRequest + (*MlxAdminDeviceInfoRequest)(nil), // 1085: mlx_device.MlxAdminDeviceInfoRequest + (*MlxAdminDeviceReportRequest)(nil), // 1086: mlx_device.MlxAdminDeviceReportRequest + (*MlxAdminRegistryListRequest)(nil), // 1087: mlx_device.MlxAdminRegistryListRequest + (*MlxAdminRegistryShowRequest)(nil), // 1088: mlx_device.MlxAdminRegistryShowRequest + (*MlxAdminConfigQueryRequest)(nil), // 1089: mlx_device.MlxAdminConfigQueryRequest + (*MlxAdminConfigSetRequest)(nil), // 1090: mlx_device.MlxAdminConfigSetRequest + (*MlxAdminConfigSyncRequest)(nil), // 1091: mlx_device.MlxAdminConfigSyncRequest + (*MlxAdminConfigCompareRequest)(nil), // 1092: mlx_device.MlxAdminConfigCompareRequest + (*SiteExplorationReport)(nil), // 1093: site_explorer.SiteExplorationReport + (*SiteExplorerLastRunResponse)(nil), // 1094: site_explorer.SiteExplorerLastRunResponse + (*ExploredEndpoint)(nil), // 1095: site_explorer.ExploredEndpoint + (*ExploredEndpointIdList)(nil), // 1096: site_explorer.ExploredEndpointIdList + (*ExploredEndpointList)(nil), // 1097: site_explorer.ExploredEndpointList + (*ExploredManagedHostIdList)(nil), // 1098: site_explorer.ExploredManagedHostIdList + (*ExploredManagedHostList)(nil), // 1099: site_explorer.ExploredManagedHostList + (*ExploredMlxDeviceHostIdList)(nil), // 1100: site_explorer.ExploredMlxDeviceHostIdList + (*ExploredMlxDeviceList)(nil), // 1101: site_explorer.ExploredMlxDeviceList + (*CreateMeasurementBundleResponse)(nil), // 1102: measured_boot.CreateMeasurementBundleResponse + (*DeleteMeasurementBundleResponse)(nil), // 1103: measured_boot.DeleteMeasurementBundleResponse + (*RenameMeasurementBundleResponse)(nil), // 1104: measured_boot.RenameMeasurementBundleResponse + (*UpdateMeasurementBundleResponse)(nil), // 1105: measured_boot.UpdateMeasurementBundleResponse + (*ShowMeasurementBundleResponse)(nil), // 1106: measured_boot.ShowMeasurementBundleResponse + (*ShowMeasurementBundlesResponse)(nil), // 1107: measured_boot.ShowMeasurementBundlesResponse + (*ListMeasurementBundlesResponse)(nil), // 1108: measured_boot.ListMeasurementBundlesResponse + (*ListMeasurementBundleMachinesResponse)(nil), // 1109: measured_boot.ListMeasurementBundleMachinesResponse + (*DeleteMeasurementJournalResponse)(nil), // 1110: measured_boot.DeleteMeasurementJournalResponse + (*ShowMeasurementJournalResponse)(nil), // 1111: measured_boot.ShowMeasurementJournalResponse + (*ShowMeasurementJournalsResponse)(nil), // 1112: measured_boot.ShowMeasurementJournalsResponse + (*ListMeasurementJournalResponse)(nil), // 1113: measured_boot.ListMeasurementJournalResponse + (*AttestCandidateMachineResponse)(nil), // 1114: measured_boot.AttestCandidateMachineResponse + (*ShowCandidateMachineResponse)(nil), // 1115: measured_boot.ShowCandidateMachineResponse + (*ShowCandidateMachinesResponse)(nil), // 1116: measured_boot.ShowCandidateMachinesResponse + (*ListCandidateMachinesResponse)(nil), // 1117: measured_boot.ListCandidateMachinesResponse + (*CreateMeasurementSystemProfileResponse)(nil), // 1118: measured_boot.CreateMeasurementSystemProfileResponse + (*DeleteMeasurementSystemProfileResponse)(nil), // 1119: measured_boot.DeleteMeasurementSystemProfileResponse + (*RenameMeasurementSystemProfileResponse)(nil), // 1120: measured_boot.RenameMeasurementSystemProfileResponse + (*ShowMeasurementSystemProfileResponse)(nil), // 1121: measured_boot.ShowMeasurementSystemProfileResponse + (*ShowMeasurementSystemProfilesResponse)(nil), // 1122: measured_boot.ShowMeasurementSystemProfilesResponse + (*ListMeasurementSystemProfilesResponse)(nil), // 1123: measured_boot.ListMeasurementSystemProfilesResponse + (*ListMeasurementSystemProfileBundlesResponse)(nil), // 1124: measured_boot.ListMeasurementSystemProfileBundlesResponse + (*ListMeasurementSystemProfileMachinesResponse)(nil), // 1125: measured_boot.ListMeasurementSystemProfileMachinesResponse + (*CreateMeasurementReportResponse)(nil), // 1126: measured_boot.CreateMeasurementReportResponse + (*DeleteMeasurementReportResponse)(nil), // 1127: measured_boot.DeleteMeasurementReportResponse + (*PromoteMeasurementReportResponse)(nil), // 1128: measured_boot.PromoteMeasurementReportResponse + (*RevokeMeasurementReportResponse)(nil), // 1129: measured_boot.RevokeMeasurementReportResponse + (*ShowMeasurementReportForIdResponse)(nil), // 1130: measured_boot.ShowMeasurementReportForIdResponse + (*ShowMeasurementReportsForMachineResponse)(nil), // 1131: measured_boot.ShowMeasurementReportsForMachineResponse + (*ShowMeasurementReportsResponse)(nil), // 1132: measured_boot.ShowMeasurementReportsResponse + (*ListMeasurementReportResponse)(nil), // 1133: measured_boot.ListMeasurementReportResponse + (*MatchMeasurementReportResponse)(nil), // 1134: measured_boot.MatchMeasurementReportResponse + (*ImportSiteMeasurementsResponse)(nil), // 1135: measured_boot.ImportSiteMeasurementsResponse + (*ExportSiteMeasurementsResponse)(nil), // 1136: measured_boot.ExportSiteMeasurementsResponse + (*AddMeasurementTrustedMachineResponse)(nil), // 1137: measured_boot.AddMeasurementTrustedMachineResponse + (*RemoveMeasurementTrustedMachineResponse)(nil), // 1138: measured_boot.RemoveMeasurementTrustedMachineResponse + (*AddMeasurementTrustedProfileResponse)(nil), // 1139: measured_boot.AddMeasurementTrustedProfileResponse + (*RemoveMeasurementTrustedProfileResponse)(nil), // 1140: measured_boot.RemoveMeasurementTrustedProfileResponse + (*ListMeasurementTrustedMachinesResponse)(nil), // 1141: measured_boot.ListMeasurementTrustedMachinesResponse + (*ListMeasurementTrustedProfilesResponse)(nil), // 1142: measured_boot.ListMeasurementTrustedProfilesResponse + (*ListAttestationSummaryResponse)(nil), // 1143: measured_boot.ListAttestationSummaryResponse + (*LockdownStatus)(nil), // 1144: site_explorer.LockdownStatus + (*PublishMlxDeviceReportResponse)(nil), // 1145: mlx_device.PublishMlxDeviceReportResponse + (*PublishMlxObservationReportResponse)(nil), // 1146: mlx_device.PublishMlxObservationReportResponse + (*MlxAdminProfileSyncResponse)(nil), // 1147: mlx_device.MlxAdminProfileSyncResponse + (*MlxAdminProfileShowResponse)(nil), // 1148: mlx_device.MlxAdminProfileShowResponse + (*MlxAdminProfileCompareResponse)(nil), // 1149: mlx_device.MlxAdminProfileCompareResponse + (*MlxAdminProfileListResponse)(nil), // 1150: mlx_device.MlxAdminProfileListResponse + (*MlxAdminLockdownLockResponse)(nil), // 1151: mlx_device.MlxAdminLockdownLockResponse + (*MlxAdminLockdownUnlockResponse)(nil), // 1152: mlx_device.MlxAdminLockdownUnlockResponse + (*MlxAdminLockdownStatusResponse)(nil), // 1153: mlx_device.MlxAdminLockdownStatusResponse + (*MlxAdminDeviceInfoResponse)(nil), // 1154: mlx_device.MlxAdminDeviceInfoResponse + (*MlxAdminDeviceReportResponse)(nil), // 1155: mlx_device.MlxAdminDeviceReportResponse + (*MlxAdminRegistryListResponse)(nil), // 1156: mlx_device.MlxAdminRegistryListResponse + (*MlxAdminRegistryShowResponse)(nil), // 1157: mlx_device.MlxAdminRegistryShowResponse + (*MlxAdminConfigQueryResponse)(nil), // 1158: mlx_device.MlxAdminConfigQueryResponse + (*MlxAdminConfigSetResponse)(nil), // 1159: mlx_device.MlxAdminConfigSetResponse + (*MlxAdminConfigSyncResponse)(nil), // 1160: mlx_device.MlxAdminConfigSyncResponse + (*MlxAdminConfigCompareResponse)(nil), // 1161: mlx_device.MlxAdminConfigCompareResponse } var file_nico_proto_depIdxs = []int32{ - 341, // 0: forge.LifecycleStatus.state_reason:type_name -> forge.ControllerStateReason - 343, // 1: forge.LifecycleStatus.sla:type_name -> forge.StateSla - 961, // 2: forge.SpdmMachineAttestationStatus.machine_id:type_name -> common.MachineId + 343, // 0: forge.LifecycleStatus.state_reason:type_name -> forge.ControllerStateReason + 345, // 1: forge.LifecycleStatus.sla:type_name -> forge.StateSla + 963, // 2: forge.SpdmMachineAttestationStatus.machine_id:type_name -> common.MachineId 0, // 3: forge.SpdmMachineAttestationStatus.attestation_status:type_name -> forge.SpdmAttestationStatus - 961, // 4: forge.SpdmMachineAttestationTriggerResponse.machine_id:type_name -> common.MachineId - 961, // 5: forge.SpdmAttestationDetails.machine_id:type_name -> common.MachineId - 962, // 6: forge.SpdmAttestationDetails.started_at:type_name -> google.protobuf.Timestamp - 962, // 7: forge.SpdmAttestationDetails.cancelled_at:type_name -> google.protobuf.Timestamp - 962, // 8: forge.SpdmAttestationDetails.completed_at:type_name -> google.protobuf.Timestamp + 963, // 4: forge.SpdmMachineAttestationTriggerResponse.machine_id:type_name -> common.MachineId + 963, // 5: forge.SpdmAttestationDetails.machine_id:type_name -> common.MachineId + 964, // 6: forge.SpdmAttestationDetails.started_at:type_name -> google.protobuf.Timestamp + 964, // 7: forge.SpdmAttestationDetails.cancelled_at:type_name -> google.protobuf.Timestamp + 964, // 8: forge.SpdmAttestationDetails.completed_at:type_name -> google.protobuf.Timestamp 90, // 9: forge.SpdmGetAttestationMachineResponse.attestations_details:type_name -> forge.SpdmAttestationDetails - 961, // 10: forge.SpdmMachineAttestationTriggerRequest.machine_id:type_name -> common.MachineId - 961, // 11: forge.SpdmListAttestationMachinesRequest.machine_id:type_name -> common.MachineId + 963, // 10: forge.SpdmMachineAttestationTriggerRequest.machine_id:type_name -> common.MachineId + 963, // 11: forge.SpdmListAttestationMachinesRequest.machine_id:type_name -> common.MachineId 1, // 12: forge.SpdmListAttestationMachinesRequest.selector:type_name -> forge.SpdmListAttestationMachinesRequestSelector 88, // 13: forge.SpdmListAttestationMachinesResponse.statuses:type_name -> forge.SpdmMachineAttestationStatus - 962, // 14: forge.TenantIdentitySigningKey.expire_at:type_name -> google.protobuf.Timestamp + 964, // 14: forge.TenantIdentitySigningKey.expire_at:type_name -> google.protobuf.Timestamp 99, // 15: forge.SetTenantIdentityConfigRequest.config:type_name -> forge.TenantIdentityConfig 99, // 16: forge.TenantIdentityConfigResponse.config:type_name -> forge.TenantIdentityConfig - 962, // 17: forge.TenantIdentityConfigResponse.created_at:type_name -> google.protobuf.Timestamp - 962, // 18: forge.TenantIdentityConfigResponse.updated_at:type_name -> google.protobuf.Timestamp + 964, // 17: forge.TenantIdentityConfigResponse.created_at:type_name -> google.protobuf.Timestamp + 964, // 18: forge.TenantIdentityConfigResponse.updated_at:type_name -> google.protobuf.Timestamp 98, // 19: forge.TenantIdentityConfigResponse.signing_keys:type_name -> forge.TenantIdentitySigningKey 103, // 20: forge.TokenDelegationResponse.client_secret_basic:type_name -> forge.ClientSecretBasicResponse - 962, // 21: forge.TokenDelegationResponse.created_at:type_name -> google.protobuf.Timestamp - 962, // 22: forge.TokenDelegationResponse.updated_at:type_name -> google.protobuf.Timestamp + 964, // 21: forge.TokenDelegationResponse.created_at:type_name -> google.protobuf.Timestamp + 964, // 22: forge.TokenDelegationResponse.updated_at:type_name -> google.protobuf.Timestamp 102, // 23: forge.TokenDelegation.client_secret_basic:type_name -> forge.ClientSecretBasic 106, // 24: forge.TokenDelegationRequest.config:type_name -> forge.TokenDelegation 109, // 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 117, // 28: forge.TpmCaAddedCaStatus.id:type_name -> forge.TpmCaCertId - 961, // 29: forge.TpmEkCertStatus.machine_id:type_name -> common.MachineId + 963, // 29: forge.TpmEkCertStatus.machine_id:type_name -> common.MachineId 118, // 30: forge.TpmEkCertStatusCollection.tpm_ek_cert_statuses:type_name -> forge.TpmEkCertStatus 121, // 31: forge.TpmCaCertDetailCollection.tpm_ca_cert_details:type_name -> forge.TpmCaCertDetail - 961, // 32: forge.AttestQuoteRequest.machine_id:type_name -> common.MachineId - 424, // 33: forge.AttestQuoteResponse.machine_certificate:type_name -> forge.MachineCertificate + 963, // 32: forge.AttestQuoteRequest.machine_id:type_name -> common.MachineId + 426, // 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 132, // 36: forge.BuildInfo.runtime_config:type_name -> forge.RuntimeConfig - 922, // 37: forge.RuntimeConfig.dpu_nic_firmware_update_version:type_name -> forge.RuntimeConfig.DpuNicFirmwareUpdateVersionEntry - 923, // 38: forge.DNSMessage.question:type_name -> forge.DNSMessage.DNSQuestion - 924, // 39: forge.DNSMessage.response:type_name -> forge.DNSMessage.DNSResponse + 924, // 37: forge.RuntimeConfig.dpu_nic_firmware_update_version:type_name -> forge.RuntimeConfig.DpuNicFirmwareUpdateVersionEntry + 925, // 38: forge.DNSMessage.question:type_name -> forge.DNSMessage.DNSQuestion + 926, // 39: forge.DNSMessage.response:type_name -> forge.DNSMessage.DNSResponse 139, // 40: forge.DomainList.domains:type_name -> forge.Domain - 963, // 41: forge.Domain.id:type_name -> common.DomainId - 962, // 42: forge.Domain.created:type_name -> google.protobuf.Timestamp - 962, // 43: forge.Domain.updated:type_name -> google.protobuf.Timestamp - 962, // 44: forge.Domain.deleted:type_name -> google.protobuf.Timestamp - 963, // 45: forge.DomainDeletion.id:type_name -> common.DomainId - 963, // 46: forge.DomainSearchQuery.id:type_name -> common.DomainId - 964, // 47: forge.VpcSearchQuery.id:type_name -> common.VpcId + 965, // 41: forge.Domain.id:type_name -> common.DomainId + 964, // 42: forge.Domain.created:type_name -> google.protobuf.Timestamp + 964, // 43: forge.Domain.updated:type_name -> google.protobuf.Timestamp + 964, // 44: forge.Domain.deleted:type_name -> google.protobuf.Timestamp + 965, // 45: forge.DomainDeletion.id:type_name -> common.DomainId + 965, // 46: forge.DomainSearchQuery.id:type_name -> common.DomainId + 966, // 47: forge.VpcSearchQuery.id:type_name -> common.VpcId 255, // 48: forge.VpcSearchFilter.label:type_name -> forge.Label - 964, // 49: forge.VpcIdList.vpc_ids:type_name -> common.VpcId - 964, // 50: forge.VpcsByIdsRequest.vpc_ids:type_name -> common.VpcId + 966, // 49: forge.VpcIdList.vpc_ids:type_name -> common.VpcId + 966, // 50: forge.VpcsByIdsRequest.vpc_ids:type_name -> common.VpcId 5, // 51: forge.VpcConfig.network_virtualization_type:type_name -> forge.VpcVirtualizationType - 965, // 52: forge.VpcConfig.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 964, // 53: forge.Vpc.id:type_name -> common.VpcId - 962, // 54: forge.Vpc.created:type_name -> google.protobuf.Timestamp - 962, // 55: forge.Vpc.updated:type_name -> google.protobuf.Timestamp - 962, // 56: forge.Vpc.deleted:type_name -> google.protobuf.Timestamp + 967, // 52: forge.VpcConfig.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 966, // 53: forge.Vpc.id:type_name -> common.VpcId + 964, // 54: forge.Vpc.created:type_name -> google.protobuf.Timestamp + 964, // 55: forge.Vpc.updated:type_name -> google.protobuf.Timestamp + 964, // 56: forge.Vpc.deleted:type_name -> google.protobuf.Timestamp 5, // 57: forge.Vpc.network_virtualization_type:type_name -> forge.VpcVirtualizationType 256, // 58: forge.Vpc.metadata:type_name -> forge.Metadata - 965, // 59: forge.Vpc.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 967, // 59: forge.Vpc.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId 152, // 60: forge.Vpc.status:type_name -> forge.VpcStatus 151, // 61: forge.Vpc.config:type_name -> forge.VpcConfig 5, // 62: forge.VpcCreationRequest.network_virtualization_type:type_name -> forge.VpcVirtualizationType - 964, // 63: forge.VpcCreationRequest.id:type_name -> common.VpcId + 966, // 63: forge.VpcCreationRequest.id:type_name -> common.VpcId 256, // 64: forge.VpcCreationRequest.metadata:type_name -> forge.Metadata - 965, // 65: forge.VpcCreationRequest.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 964, // 66: forge.VpcUpdateRequest.id:type_name -> common.VpcId + 967, // 65: forge.VpcCreationRequest.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 966, // 66: forge.VpcUpdateRequest.id:type_name -> common.VpcId 256, // 67: forge.VpcUpdateRequest.metadata:type_name -> forge.Metadata - 965, // 68: forge.VpcUpdateRequest.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 967, // 68: forge.VpcUpdateRequest.default_nvlink_logical_partition_id:type_name -> common.NVLinkLogicalPartitionId 153, // 69: forge.VpcUpdateResult.vpc:type_name -> forge.Vpc - 964, // 70: forge.VpcUpdateVirtualizationRequest.id:type_name -> common.VpcId + 966, // 70: forge.VpcUpdateVirtualizationRequest.id:type_name -> common.VpcId 5, // 71: forge.VpcUpdateVirtualizationRequest.network_virtualization_type:type_name -> forge.VpcVirtualizationType - 964, // 72: forge.VpcDeletionRequest.id:type_name -> common.VpcId + 966, // 72: forge.VpcDeletionRequest.id:type_name -> common.VpcId 153, // 73: forge.VpcList.vpcs:type_name -> forge.Vpc - 966, // 74: forge.VpcPrefix.id:type_name -> common.VpcPrefixId - 964, // 75: forge.VpcPrefix.vpc_id:type_name -> common.VpcId + 968, // 74: forge.VpcPrefix.id:type_name -> common.VpcPrefixId + 966, // 75: forge.VpcPrefix.vpc_id:type_name -> common.VpcId 163, // 76: forge.VpcPrefix.config:type_name -> forge.VpcPrefixConfig 164, // 77: forge.VpcPrefix.status:type_name -> forge.VpcPrefixStatus 256, // 78: forge.VpcPrefix.metadata:type_name -> forge.Metadata 87, // 79: forge.VpcPrefixStatus.lifecycle:type_name -> forge.LifecycleStatus 7, // 80: forge.VpcPrefixStatus.tenant_state:type_name -> forge.TenantState - 966, // 81: forge.VpcPrefixCreationRequest.id:type_name -> common.VpcPrefixId - 964, // 82: forge.VpcPrefixCreationRequest.vpc_id:type_name -> common.VpcId + 968, // 81: forge.VpcPrefixCreationRequest.id:type_name -> common.VpcPrefixId + 966, // 82: forge.VpcPrefixCreationRequest.vpc_id:type_name -> common.VpcId 163, // 83: forge.VpcPrefixCreationRequest.config:type_name -> forge.VpcPrefixConfig 256, // 84: forge.VpcPrefixCreationRequest.metadata:type_name -> forge.Metadata - 964, // 85: forge.VpcPrefixSearchQuery.vpc_id:type_name -> common.VpcId - 966, // 86: forge.VpcPrefixSearchQuery.tenant_prefix_id:type_name -> common.VpcPrefixId + 966, // 85: forge.VpcPrefixSearchQuery.vpc_id:type_name -> common.VpcId + 968, // 86: forge.VpcPrefixSearchQuery.tenant_prefix_id:type_name -> common.VpcPrefixId 6, // 87: forge.VpcPrefixSearchQuery.prefix_match_type:type_name -> forge.PrefixMatchType 9, // 88: forge.VpcPrefixSearchQuery.deleted:type_name -> forge.DeletedFilter - 966, // 89: forge.VpcPrefixGetRequest.vpc_prefix_ids:type_name -> common.VpcPrefixId + 968, // 89: forge.VpcPrefixGetRequest.vpc_prefix_ids:type_name -> common.VpcPrefixId 9, // 90: forge.VpcPrefixGetRequest.deleted:type_name -> forge.DeletedFilter - 966, // 91: forge.VpcPrefixIdList.vpc_prefix_ids:type_name -> common.VpcPrefixId + 968, // 91: forge.VpcPrefixIdList.vpc_prefix_ids:type_name -> common.VpcPrefixId 162, // 92: forge.VpcPrefixList.vpc_prefixes:type_name -> forge.VpcPrefix - 966, // 93: forge.VpcPrefixUpdateRequest.id:type_name -> common.VpcPrefixId + 968, // 93: forge.VpcPrefixUpdateRequest.id:type_name -> common.VpcPrefixId 163, // 94: forge.VpcPrefixUpdateRequest.config:type_name -> forge.VpcPrefixConfig 256, // 95: forge.VpcPrefixUpdateRequest.metadata:type_name -> forge.Metadata - 966, // 96: forge.VpcPrefixDeletionRequest.id:type_name -> common.VpcPrefixId - 966, // 97: forge.VpcPrefixStateHistoriesRequest.vpc_prefix_ids:type_name -> common.VpcPrefixId - 967, // 98: forge.VpcPeering.id:type_name -> common.VpcPeeringId - 964, // 99: forge.VpcPeering.vpc_id:type_name -> common.VpcId - 964, // 100: forge.VpcPeering.peer_vpc_id:type_name -> common.VpcId - 967, // 101: forge.VpcPeeringIdList.vpc_peering_ids:type_name -> common.VpcPeeringId + 968, // 96: forge.VpcPrefixDeletionRequest.id:type_name -> common.VpcPrefixId + 968, // 97: forge.VpcPrefixStateHistoriesRequest.vpc_prefix_ids:type_name -> common.VpcPrefixId + 969, // 98: forge.VpcPeering.id:type_name -> common.VpcPeeringId + 966, // 99: forge.VpcPeering.vpc_id:type_name -> common.VpcId + 966, // 100: forge.VpcPeering.peer_vpc_id:type_name -> common.VpcId + 969, // 101: forge.VpcPeeringIdList.vpc_peering_ids:type_name -> common.VpcPeeringId 174, // 102: forge.VpcPeeringList.vpc_peerings:type_name -> forge.VpcPeering - 964, // 103: forge.VpcPeeringCreationRequest.vpc_id:type_name -> common.VpcId - 964, // 104: forge.VpcPeeringCreationRequest.peer_vpc_id:type_name -> common.VpcId - 967, // 105: forge.VpcPeeringCreationRequest.id:type_name -> common.VpcPeeringId - 964, // 106: forge.VpcPeeringSearchFilter.vpc_id:type_name -> common.VpcId - 967, // 107: forge.VpcPeeringsByIdsRequest.vpc_peering_ids:type_name -> common.VpcPeeringId - 967, // 108: forge.VpcPeeringDeletionRequest.id:type_name -> common.VpcPeeringId + 966, // 103: forge.VpcPeeringCreationRequest.vpc_id:type_name -> common.VpcId + 966, // 104: forge.VpcPeeringCreationRequest.peer_vpc_id:type_name -> common.VpcId + 969, // 105: forge.VpcPeeringCreationRequest.id:type_name -> common.VpcPeeringId + 966, // 106: forge.VpcPeeringSearchFilter.vpc_id:type_name -> common.VpcId + 969, // 107: forge.VpcPeeringsByIdsRequest.vpc_peering_ids:type_name -> common.VpcPeeringId + 969, // 108: forge.VpcPeeringDeletionRequest.id:type_name -> common.VpcPeeringId 7, // 109: forge.IBPartitionStatus.state:type_name -> forge.TenantState - 341, // 110: forge.IBPartitionStatus.state_reason:type_name -> forge.ControllerStateReason - 343, // 111: forge.IBPartitionStatus.state_sla:type_name -> forge.StateSla - 968, // 112: forge.IBPartition.id:type_name -> common.IBPartitionId + 343, // 110: forge.IBPartitionStatus.state_reason:type_name -> forge.ControllerStateReason + 345, // 111: forge.IBPartitionStatus.state_sla:type_name -> forge.StateSla + 970, // 112: forge.IBPartition.id:type_name -> common.IBPartitionId 182, // 113: forge.IBPartition.config:type_name -> forge.IBPartitionConfig 183, // 114: forge.IBPartition.status:type_name -> forge.IBPartitionStatus 256, // 115: forge.IBPartition.metadata:type_name -> forge.Metadata 184, // 116: forge.IBPartitionList.ib_partitions:type_name -> forge.IBPartition 182, // 117: forge.IBPartitionCreationRequest.config:type_name -> forge.IBPartitionConfig - 968, // 118: forge.IBPartitionCreationRequest.id:type_name -> common.IBPartitionId + 970, // 118: forge.IBPartitionCreationRequest.id:type_name -> common.IBPartitionId 256, // 119: forge.IBPartitionCreationRequest.metadata:type_name -> forge.Metadata - 968, // 120: forge.IBPartitionUpdateRequest.id:type_name -> common.IBPartitionId + 970, // 120: forge.IBPartitionUpdateRequest.id:type_name -> common.IBPartitionId 182, // 121: forge.IBPartitionUpdateRequest.config:type_name -> forge.IBPartitionConfig 256, // 122: forge.IBPartitionUpdateRequest.metadata:type_name -> forge.Metadata - 968, // 123: forge.IBPartitionDeletionRequest.id:type_name -> common.IBPartitionId - 968, // 124: forge.IBPartitionsByIdsRequest.ib_partition_ids:type_name -> common.IBPartitionId - 968, // 125: forge.IBPartitionIdList.ib_partition_ids:type_name -> common.IBPartitionId - 341, // 126: forge.PowerShelfStatus.state_reason:type_name -> forge.ControllerStateReason - 343, // 127: forge.PowerShelfStatus.state_sla:type_name -> forge.StateSla - 969, // 128: forge.PowerShelfStatus.health:type_name -> health.HealthReport - 340, // 129: forge.PowerShelfStatus.health_sources:type_name -> forge.HealthSourceOrigin + 970, // 123: forge.IBPartitionDeletionRequest.id:type_name -> common.IBPartitionId + 970, // 124: forge.IBPartitionsByIdsRequest.ib_partition_ids:type_name -> common.IBPartitionId + 970, // 125: forge.IBPartitionIdList.ib_partition_ids:type_name -> common.IBPartitionId + 343, // 126: forge.PowerShelfStatus.state_reason:type_name -> forge.ControllerStateReason + 345, // 127: forge.PowerShelfStatus.state_sla:type_name -> forge.StateSla + 971, // 128: forge.PowerShelfStatus.health:type_name -> health.HealthReport + 342, // 129: forge.PowerShelfStatus.health_sources:type_name -> forge.HealthSourceOrigin 87, // 130: forge.PowerShelfStatus.lifecycle:type_name -> forge.LifecycleStatus - 970, // 131: forge.PowerShelf.id:type_name -> common.PowerShelfId + 972, // 131: forge.PowerShelf.id:type_name -> common.PowerShelfId 193, // 132: forge.PowerShelf.config:type_name -> forge.PowerShelfConfig 194, // 133: forge.PowerShelf.status:type_name -> forge.PowerShelfStatus - 962, // 134: forge.PowerShelf.deleted:type_name -> google.protobuf.Timestamp + 964, // 134: forge.PowerShelf.deleted:type_name -> google.protobuf.Timestamp 256, // 135: forge.PowerShelf.metadata:type_name -> forge.Metadata - 328, // 136: forge.PowerShelf.bmc_info:type_name -> forge.BmcInfo - 971, // 137: forge.PowerShelf.rack_id:type_name -> common.RackId + 330, // 136: forge.PowerShelf.bmc_info:type_name -> forge.BmcInfo + 973, // 137: forge.PowerShelf.rack_id:type_name -> common.RackId 195, // 138: forge.PowerShelfList.power_shelves:type_name -> forge.PowerShelf 193, // 139: forge.PowerShelfCreationRequest.config:type_name -> forge.PowerShelfConfig - 970, // 140: forge.PowerShelfCreationRequest.id:type_name -> common.PowerShelfId - 970, // 141: forge.PowerShelfDeletionRequest.id:type_name -> common.PowerShelfId - 970, // 142: forge.PowerShelfMaintenanceRequest.power_shelf_ids:type_name -> common.PowerShelfId + 972, // 140: forge.PowerShelfCreationRequest.id:type_name -> common.PowerShelfId + 972, // 141: forge.PowerShelfDeletionRequest.id:type_name -> common.PowerShelfId + 972, // 142: forge.PowerShelfMaintenanceRequest.power_shelf_ids:type_name -> common.PowerShelfId 8, // 143: forge.PowerShelfMaintenanceRequest.operation:type_name -> forge.PowerShelfMaintenanceOperation - 970, // 144: forge.PowerShelfStateHistoriesRequest.power_shelf_ids:type_name -> common.PowerShelfId - 970, // 145: forge.PowerShelfQuery.power_shelf_id:type_name -> common.PowerShelfId - 971, // 146: forge.PowerShelfSearchFilter.rack_id:type_name -> common.RackId + 972, // 144: forge.PowerShelfStateHistoriesRequest.power_shelf_ids:type_name -> common.PowerShelfId + 972, // 145: forge.PowerShelfQuery.power_shelf_id:type_name -> common.PowerShelfId + 973, // 146: forge.PowerShelfSearchFilter.rack_id:type_name -> common.RackId 9, // 147: forge.PowerShelfSearchFilter.deleted:type_name -> forge.DeletedFilter - 970, // 148: forge.PowerShelvesByIdsRequest.power_shelf_ids:type_name -> common.PowerShelfId + 972, // 148: forge.PowerShelvesByIdsRequest.power_shelf_ids:type_name -> common.PowerShelfId 256, // 149: forge.ExpectedPowerShelf.metadata:type_name -> forge.Metadata - 971, // 150: forge.ExpectedPowerShelf.rack_id:type_name -> common.RackId - 972, // 151: forge.ExpectedPowerShelf.expected_power_shelf_id:type_name -> common.UUID - 972, // 152: forge.ExpectedPowerShelfRequest.expected_power_shelf_id:type_name -> common.UUID + 973, // 150: forge.ExpectedPowerShelf.rack_id:type_name -> common.RackId + 974, // 151: forge.ExpectedPowerShelf.expected_power_shelf_id:type_name -> common.UUID + 974, // 152: forge.ExpectedPowerShelfRequest.expected_power_shelf_id:type_name -> common.UUID 205, // 153: forge.ExpectedPowerShelfList.expected_power_shelves:type_name -> forge.ExpectedPowerShelf 209, // 154: forge.LinkedExpectedPowerShelfList.expected_power_shelves:type_name -> forge.LinkedExpectedPowerShelf - 970, // 155: forge.LinkedExpectedPowerShelf.power_shelf_id:type_name -> common.PowerShelfId - 972, // 156: forge.LinkedExpectedPowerShelf.expected_power_shelf_id:type_name -> common.UUID - 971, // 157: forge.LinkedExpectedPowerShelf.rack_id:type_name -> common.RackId + 972, // 155: forge.LinkedExpectedPowerShelf.power_shelf_id:type_name -> common.PowerShelfId + 974, // 156: forge.LinkedExpectedPowerShelf.expected_power_shelf_id:type_name -> common.UUID + 973, // 157: forge.LinkedExpectedPowerShelf.rack_id:type_name -> common.RackId 211, // 158: forge.SwitchConfig.fabric_manager_config:type_name -> forge.FabricManagerConfig - 926, // 159: forge.FabricManagerConfig.config_map:type_name -> forge.FabricManagerConfig.ConfigMapEntry + 928, // 159: forge.FabricManagerConfig.config_map:type_name -> forge.FabricManagerConfig.ConfigMapEntry 10, // 160: forge.FabricManagerStatus.fabric_manager_state:type_name -> forge.FabricManagerState - 341, // 161: forge.SwitchStatus.state_reason:type_name -> forge.ControllerStateReason - 343, // 162: forge.SwitchStatus.state_sla:type_name -> forge.StateSla - 969, // 163: forge.SwitchStatus.health:type_name -> health.HealthReport - 340, // 164: forge.SwitchStatus.health_sources:type_name -> forge.HealthSourceOrigin + 343, // 161: forge.SwitchStatus.state_reason:type_name -> forge.ControllerStateReason + 345, // 162: forge.SwitchStatus.state_sla:type_name -> forge.StateSla + 971, // 163: forge.SwitchStatus.health:type_name -> health.HealthReport + 342, // 164: forge.SwitchStatus.health_sources:type_name -> forge.HealthSourceOrigin 87, // 165: forge.SwitchStatus.lifecycle:type_name -> forge.LifecycleStatus 212, // 166: forge.SwitchStatus.fabric_manager_status_details:type_name -> forge.FabricManagerStatus - 973, // 167: forge.Switch.id:type_name -> common.SwitchId + 975, // 167: forge.Switch.id:type_name -> common.SwitchId 210, // 168: forge.Switch.config:type_name -> forge.SwitchConfig 213, // 169: forge.Switch.status:type_name -> forge.SwitchStatus - 962, // 170: forge.Switch.deleted:type_name -> google.protobuf.Timestamp - 328, // 171: forge.Switch.bmc_info:type_name -> forge.BmcInfo + 964, // 170: forge.Switch.deleted:type_name -> google.protobuf.Timestamp + 330, // 171: forge.Switch.bmc_info:type_name -> forge.BmcInfo 256, // 172: forge.Switch.metadata:type_name -> forge.Metadata - 971, // 173: forge.Switch.rack_id:type_name -> common.RackId + 973, // 173: forge.Switch.rack_id:type_name -> common.RackId 214, // 174: forge.Switch.placement_in_rack:type_name -> forge.PlacementInRack - 329, // 175: forge.Switch.nvos_info:type_name -> forge.SwitchNvosInfo + 331, // 175: forge.Switch.nvos_info:type_name -> forge.SwitchNvosInfo 215, // 176: forge.SwitchList.switches:type_name -> forge.Switch 210, // 177: forge.SwitchCreationRequest.config:type_name -> forge.SwitchConfig - 972, // 178: forge.SwitchCreationRequest.id:type_name -> common.UUID + 974, // 178: forge.SwitchCreationRequest.id:type_name -> common.UUID 214, // 179: forge.SwitchCreationRequest.placement_in_rack:type_name -> forge.PlacementInRack - 973, // 180: forge.SwitchDeletionRequest.id:type_name -> common.SwitchId - 962, // 181: forge.StateHistoryRecord.time:type_name -> google.protobuf.Timestamp + 975, // 180: forge.SwitchDeletionRequest.id:type_name -> common.SwitchId + 964, // 181: forge.StateHistoryRecord.time:type_name -> google.protobuf.Timestamp 220, // 182: forge.StateHistoryRecords.records:type_name -> forge.StateHistoryRecord - 973, // 183: forge.SwitchStateHistoriesRequest.switch_ids:type_name -> common.SwitchId - 927, // 184: forge.StateHistories.histories:type_name -> forge.StateHistories.HistoriesEntry - 973, // 185: forge.SwitchQuery.switch_id:type_name -> common.SwitchId - 971, // 186: forge.SwitchSearchFilter.rack_id:type_name -> common.RackId + 975, // 183: forge.SwitchStateHistoriesRequest.switch_ids:type_name -> common.SwitchId + 929, // 184: forge.StateHistories.histories:type_name -> forge.StateHistories.HistoriesEntry + 975, // 185: forge.SwitchQuery.switch_id:type_name -> common.SwitchId + 973, // 186: forge.SwitchSearchFilter.rack_id:type_name -> common.RackId 9, // 187: forge.SwitchSearchFilter.deleted:type_name -> forge.DeletedFilter - 973, // 188: forge.SwitchesByIdsRequest.switch_ids:type_name -> common.SwitchId + 975, // 188: forge.SwitchesByIdsRequest.switch_ids:type_name -> common.SwitchId 256, // 189: forge.ExpectedSwitch.metadata:type_name -> forge.Metadata - 971, // 190: forge.ExpectedSwitch.rack_id:type_name -> common.RackId - 972, // 191: forge.ExpectedSwitch.expected_switch_id:type_name -> common.UUID - 972, // 192: forge.ExpectedSwitchRequest.expected_switch_id:type_name -> common.UUID + 973, // 190: forge.ExpectedSwitch.rack_id:type_name -> common.RackId + 974, // 191: forge.ExpectedSwitch.expected_switch_id:type_name -> common.UUID + 974, // 192: forge.ExpectedSwitchRequest.expected_switch_id:type_name -> common.UUID 227, // 193: forge.ExpectedSwitchList.expected_switches:type_name -> forge.ExpectedSwitch 231, // 194: forge.LinkedExpectedSwitchList.expected_switches:type_name -> forge.LinkedExpectedSwitch - 973, // 195: forge.LinkedExpectedSwitch.switch_id:type_name -> common.SwitchId - 972, // 196: forge.LinkedExpectedSwitch.expected_switch_id:type_name -> common.UUID - 971, // 197: forge.LinkedExpectedSwitch.rack_id:type_name -> common.RackId - 971, // 198: forge.ExpectedRack.rack_id:type_name -> common.RackId - 974, // 199: forge.ExpectedRack.rack_profile_id:type_name -> common.RackProfileId + 975, // 195: forge.LinkedExpectedSwitch.switch_id:type_name -> common.SwitchId + 974, // 196: forge.LinkedExpectedSwitch.expected_switch_id:type_name -> common.UUID + 973, // 197: forge.LinkedExpectedSwitch.rack_id:type_name -> common.RackId + 973, // 198: forge.ExpectedRack.rack_id:type_name -> common.RackId + 976, // 199: forge.ExpectedRack.rack_profile_id:type_name -> common.RackProfileId 256, // 200: forge.ExpectedRack.metadata:type_name -> forge.Metadata 232, // 201: forge.ExpectedRackList.expected_racks:type_name -> forge.ExpectedRack - 962, // 202: forge.NetworkSegmentStateHistory.time:type_name -> google.protobuf.Timestamp - 964, // 203: forge.NetworkSegmentConfig.vpc_id:type_name -> common.VpcId - 963, // 204: forge.NetworkSegmentConfig.subdomain_id:type_name -> common.DomainId + 964, // 202: forge.NetworkSegmentStateHistory.time:type_name -> google.protobuf.Timestamp + 966, // 203: forge.NetworkSegmentConfig.vpc_id:type_name -> common.VpcId + 965, // 204: forge.NetworkSegmentConfig.subdomain_id:type_name -> common.DomainId 11, // 205: forge.NetworkSegmentConfig.segment_type:type_name -> forge.NetworkSegmentType 250, // 206: forge.NetworkSegmentConfig.prefixes:type_name -> forge.NetworkPrefix 12, // 207: forge.NetworkSegmentStatus.flags:type_name -> forge.NetworkSegmentFlag 87, // 208: forge.NetworkSegmentStatus.lifecycle:type_name -> forge.LifecycleStatus 7, // 209: forge.NetworkSegmentStatus.tenant_state:type_name -> forge.TenantState - 975, // 210: forge.NetworkSegment.id:type_name -> common.NetworkSegmentId - 964, // 211: forge.NetworkSegment.vpc_id:type_name -> common.VpcId - 963, // 212: forge.NetworkSegment.subdomain_id:type_name -> common.DomainId + 977, // 210: forge.NetworkSegment.id:type_name -> common.NetworkSegmentId + 966, // 211: forge.NetworkSegment.vpc_id:type_name -> common.VpcId + 965, // 212: forge.NetworkSegment.subdomain_id:type_name -> common.DomainId 250, // 213: forge.NetworkSegment.prefixes:type_name -> forge.NetworkPrefix - 962, // 214: forge.NetworkSegment.created:type_name -> google.protobuf.Timestamp - 962, // 215: forge.NetworkSegment.updated:type_name -> google.protobuf.Timestamp - 962, // 216: forge.NetworkSegment.deleted:type_name -> google.protobuf.Timestamp + 964, // 214: forge.NetworkSegment.created:type_name -> google.protobuf.Timestamp + 964, // 215: forge.NetworkSegment.updated:type_name -> google.protobuf.Timestamp + 964, // 216: forge.NetworkSegment.deleted:type_name -> google.protobuf.Timestamp 11, // 217: forge.NetworkSegment.segment_type:type_name -> forge.NetworkSegmentType 12, // 218: forge.NetworkSegment.flags:type_name -> forge.NetworkSegmentFlag 238, // 219: forge.NetworkSegment.config:type_name -> forge.NetworkSegmentConfig @@ -65352,40 +65485,40 @@ var file_nico_proto_depIdxs = []int32{ 256, // 221: forge.NetworkSegment.metadata:type_name -> forge.Metadata 7, // 222: forge.NetworkSegment.state:type_name -> forge.TenantState 237, // 223: forge.NetworkSegment.history:type_name -> forge.NetworkSegmentStateHistory - 341, // 224: forge.NetworkSegment.state_reason:type_name -> forge.ControllerStateReason - 343, // 225: forge.NetworkSegment.state_sla:type_name -> forge.StateSla - 964, // 226: forge.NetworkSegmentCreationRequest.vpc_id:type_name -> common.VpcId - 963, // 227: forge.NetworkSegmentCreationRequest.subdomain_id:type_name -> common.DomainId + 343, // 224: forge.NetworkSegment.state_reason:type_name -> forge.ControllerStateReason + 345, // 225: forge.NetworkSegment.state_sla:type_name -> forge.StateSla + 966, // 226: forge.NetworkSegmentCreationRequest.vpc_id:type_name -> common.VpcId + 965, // 227: forge.NetworkSegmentCreationRequest.subdomain_id:type_name -> common.DomainId 250, // 228: forge.NetworkSegmentCreationRequest.prefixes:type_name -> forge.NetworkPrefix 11, // 229: forge.NetworkSegmentCreationRequest.segment_type:type_name -> forge.NetworkSegmentType - 975, // 230: forge.NetworkSegmentCreationRequest.id:type_name -> common.NetworkSegmentId - 975, // 231: forge.NetworkSegmentDeletionRequest.id:type_name -> common.NetworkSegmentId - 975, // 232: forge.AttachNetworkSegmentToVpcRequest.network_segment_id:type_name -> common.NetworkSegmentId - 964, // 233: forge.AttachNetworkSegmentToVpcRequest.vpc_id:type_name -> common.VpcId - 975, // 234: forge.NetworkSegmentStateHistoriesRequest.network_segment_ids:type_name -> common.NetworkSegmentId - 975, // 235: forge.NetworkSegmentIdList.network_segments_ids:type_name -> common.NetworkSegmentId - 975, // 236: forge.NetworkSegmentsByIdsRequest.network_segments_ids:type_name -> common.NetworkSegmentId - 976, // 237: forge.NetworkPrefix.id:type_name -> common.NetworkPrefixId - 961, // 238: forge.InstancePowerRequest.machine_id:type_name -> common.MachineId + 977, // 230: forge.NetworkSegmentCreationRequest.id:type_name -> common.NetworkSegmentId + 977, // 231: forge.NetworkSegmentDeletionRequest.id:type_name -> common.NetworkSegmentId + 977, // 232: forge.AttachNetworkSegmentToVpcRequest.network_segment_id:type_name -> common.NetworkSegmentId + 966, // 233: forge.AttachNetworkSegmentToVpcRequest.vpc_id:type_name -> common.VpcId + 977, // 234: forge.NetworkSegmentStateHistoriesRequest.network_segment_ids:type_name -> common.NetworkSegmentId + 977, // 235: forge.NetworkSegmentIdList.network_segments_ids:type_name -> common.NetworkSegmentId + 977, // 236: forge.NetworkSegmentsByIdsRequest.network_segments_ids:type_name -> common.NetworkSegmentId + 978, // 237: forge.NetworkPrefix.id:type_name -> common.NetworkPrefixId + 963, // 238: forge.InstancePowerRequest.machine_id:type_name -> common.MachineId 73, // 239: forge.InstancePowerRequest.operation:type_name -> forge.InstancePowerRequest.Operation - 977, // 240: forge.InstancePowerRequest.instance_id:type_name -> common.InstanceId + 979, // 240: forge.InstancePowerRequest.instance_id:type_name -> common.InstanceId 289, // 241: forge.InstanceList.instances:type_name -> forge.Instance 255, // 242: forge.Metadata.labels:type_name -> forge.Label 255, // 243: forge.InstanceSearchFilter.label:type_name -> forge.Label - 977, // 244: forge.InstanceIdList.instance_ids:type_name -> common.InstanceId - 977, // 245: forge.InstancesByIdsRequest.instance_ids:type_name -> common.InstanceId - 961, // 246: forge.InstanceAllocationRequest.machine_id:type_name -> common.MachineId + 979, // 244: forge.InstanceIdList.instance_ids:type_name -> common.InstanceId + 979, // 245: forge.InstancesByIdsRequest.instance_ids:type_name -> common.InstanceId + 963, // 246: forge.InstanceAllocationRequest.machine_id:type_name -> common.MachineId 269, // 247: forge.InstanceAllocationRequest.config:type_name -> forge.InstanceConfig - 977, // 248: forge.InstanceAllocationRequest.instance_id:type_name -> common.InstanceId + 979, // 248: forge.InstanceAllocationRequest.instance_id:type_name -> common.InstanceId 256, // 249: forge.InstanceAllocationRequest.metadata:type_name -> forge.Metadata 260, // 250: forge.BatchInstanceAllocationRequest.instance_requests:type_name -> forge.InstanceAllocationRequest 289, // 251: forge.BatchInstanceAllocationResponse.instances:type_name -> forge.Instance 13, // 252: forge.IpxeTemplateArtifact.cache_strategy:type_name -> forge.IpxeTemplateArtifactCacheStrategy 14, // 253: forge.IpxeTemplate.scope:type_name -> forge.IpxeTemplateScope - 978, // 254: forge.IpxeTemplate.id:type_name -> common.IpxeTemplateId + 980, // 254: forge.IpxeTemplate.id:type_name -> common.IpxeTemplateId 268, // 255: forge.InstanceOperatingSystemConfig.ipxe:type_name -> forge.InlineIpxe - 972, // 256: forge.InstanceOperatingSystemConfig.os_image_id:type_name -> common.UUID - 979, // 257: forge.InstanceOperatingSystemConfig.operating_system_id:type_name -> common.OperatingSystemId + 974, // 256: forge.InstanceOperatingSystemConfig.os_image_id:type_name -> common.UUID + 981, // 257: forge.InstanceOperatingSystemConfig.operating_system_id:type_name -> common.OperatingSystemId 266, // 258: forge.InstanceConfig.tenant:type_name -> forge.TenantConfig 267, // 259: forge.InstanceConfig.os:type_name -> forge.InstanceOperatingSystemConfig 270, // 260: forge.InstanceConfig.network:type_name -> forge.InstanceNetworkConfig @@ -65395,19 +65528,19 @@ var file_nico_proto_depIdxs = []int32{ 276, // 264: forge.InstanceConfig.spxconfig:type_name -> forge.InstanceSpxConfig 291, // 265: forge.InstanceNetworkConfig.interfaces:type_name -> forge.InstanceInterfaceConfig 271, // 266: forge.InstanceNetworkConfig.auto_config:type_name -> forge.InstanceNetworkAutoConfig - 964, // 267: forge.InstanceNetworkAutoConfig.vpc_id:type_name -> common.VpcId + 966, // 267: forge.InstanceNetworkAutoConfig.vpc_id:type_name -> common.VpcId 294, // 268: forge.InstanceInfinibandConfig.ib_interfaces:type_name -> forge.InstanceIBInterfaceConfig 273, // 269: forge.InstanceDpuExtensionServicesConfig.service_configs:type_name -> forge.InstanceDpuExtensionServiceConfig 298, // 270: forge.InstanceNVLinkConfig.gpu_configs:type_name -> forge.InstanceNVLinkGpuConfig 277, // 271: forge.InstanceSpxConfig.spx_attachments:type_name -> forge.InstanceSpxAttachment - 980, // 272: forge.InstanceSpxAttachment.spx_partition_id:type_name -> common.SpxPartitionId + 982, // 272: forge.InstanceSpxAttachment.spx_partition_id:type_name -> common.SpxPartitionId 15, // 273: forge.InstanceSpxAttachment.attachment_type:type_name -> forge.SpxAttachmentType - 977, // 274: forge.InstanceOperatingSystemUpdateRequest.instance_id:type_name -> common.InstanceId + 979, // 274: forge.InstanceOperatingSystemUpdateRequest.instance_id:type_name -> common.InstanceId 267, // 275: forge.InstanceOperatingSystemUpdateRequest.os:type_name -> forge.InstanceOperatingSystemConfig - 977, // 276: forge.InstanceConfigUpdateRequest.instance_id:type_name -> common.InstanceId + 979, // 276: forge.InstanceConfigUpdateRequest.instance_id:type_name -> common.InstanceId 269, // 277: forge.InstanceConfigUpdateRequest.config:type_name -> forge.InstanceConfig 256, // 278: forge.InstanceConfigUpdateRequest.metadata:type_name -> forge.Metadata - 344, // 279: forge.InstanceStatus.tenant:type_name -> forge.InstanceTenantStatus + 346, // 279: forge.InstanceStatus.tenant:type_name -> forge.InstanceTenantStatus 283, // 280: forge.InstanceStatus.network:type_name -> forge.InstanceNetworkStatus 284, // 281: forge.InstanceStatus.infiniband:type_name -> forge.InstanceInfinibandStatus 287, // 282: forge.InstanceStatus.dpu_extension_services:type_name -> forge.InstanceDpuExtensionServicesStatus @@ -65418,1745 +65551,1747 @@ var file_nico_proto_depIdxs = []int32{ 282, // 287: forge.InstanceSpxStatus.attachment_statuses:type_name -> forge.InstanceSpxAttachmentStatus 22, // 288: forge.InstanceSpxStatus.configs_synced:type_name -> forge.SyncState 15, // 289: forge.InstanceSpxAttachmentStatus.attachment_type:type_name -> forge.SpxAttachmentType - 980, // 290: forge.InstanceSpxAttachmentStatus.spx_partition_id:type_name -> common.SpxPartitionId + 982, // 290: forge.InstanceSpxAttachmentStatus.spx_partition_id:type_name -> common.SpxPartitionId 295, // 291: forge.InstanceNetworkStatus.interfaces:type_name -> forge.InstanceInterfaceStatus 22, // 292: forge.InstanceNetworkStatus.configs_synced:type_name -> forge.SyncState 296, // 293: forge.InstanceInfinibandStatus.ib_interfaces:type_name -> forge.InstanceIBInterfaceStatus 22, // 294: forge.InstanceInfinibandStatus.configs_synced:type_name -> forge.SyncState - 961, // 295: forge.DpuExtensionServiceStatus.dpu_machine_id:type_name -> common.MachineId + 963, // 295: forge.DpuExtensionServiceStatus.dpu_machine_id:type_name -> common.MachineId 65, // 296: forge.DpuExtensionServiceStatus.status:type_name -> forge.DpuExtensionServiceDeploymentStatus - 441, // 297: forge.DpuExtensionServiceStatus.components:type_name -> forge.DpuExtensionServiceComponent + 443, // 297: forge.DpuExtensionServiceStatus.components:type_name -> forge.DpuExtensionServiceComponent 65, // 298: forge.InstanceDpuExtensionServiceStatus.deployment_status:type_name -> forge.DpuExtensionServiceDeploymentStatus 285, // 299: forge.InstanceDpuExtensionServiceStatus.dpu_statuses:type_name -> forge.DpuExtensionServiceStatus 286, // 300: forge.InstanceDpuExtensionServicesStatus.dpu_extension_services:type_name -> forge.InstanceDpuExtensionServiceStatus 22, // 301: forge.InstanceDpuExtensionServicesStatus.configs_synced:type_name -> forge.SyncState 297, // 302: forge.InstanceNVLinkStatus.gpu_statuses:type_name -> forge.InstanceNVLinkGpuStatus 22, // 303: forge.InstanceNVLinkStatus.configs_synced:type_name -> forge.SyncState - 977, // 304: forge.Instance.id:type_name -> common.InstanceId - 961, // 305: forge.Instance.machine_id:type_name -> common.MachineId + 979, // 304: forge.Instance.id:type_name -> common.InstanceId + 963, // 305: forge.Instance.machine_id:type_name -> common.MachineId 256, // 306: forge.Instance.metadata:type_name -> forge.Metadata 269, // 307: forge.Instance.config:type_name -> forge.InstanceConfig 280, // 308: forge.Instance.status:type_name -> forge.InstanceStatus 74, // 309: forge.InstanceUpdateStatus.module:type_name -> forge.InstanceUpdateStatus.Module - 962, // 310: forge.InstanceUpdateStatus.trigger_received_at:type_name -> google.protobuf.Timestamp - 962, // 311: forge.InstanceUpdateStatus.update_triggered_at:type_name -> google.protobuf.Timestamp + 964, // 310: forge.InstanceUpdateStatus.trigger_received_at:type_name -> google.protobuf.Timestamp + 964, // 311: forge.InstanceUpdateStatus.update_triggered_at:type_name -> google.protobuf.Timestamp 37, // 312: forge.InstanceInterfaceConfig.function_type:type_name -> forge.InterfaceFunctionType - 975, // 313: forge.InstanceInterfaceConfig.network_segment_id:type_name -> common.NetworkSegmentId - 975, // 314: forge.InstanceInterfaceConfig.segment_id:type_name -> common.NetworkSegmentId - 966, // 315: forge.InstanceInterfaceConfig.vpc_prefix_id:type_name -> common.VpcPrefixId + 977, // 313: forge.InstanceInterfaceConfig.network_segment_id:type_name -> common.NetworkSegmentId + 977, // 314: forge.InstanceInterfaceConfig.segment_id:type_name -> common.NetworkSegmentId + 968, // 315: forge.InstanceInterfaceConfig.vpc_prefix_id:type_name -> common.VpcPrefixId 292, // 316: forge.InstanceInterfaceConfig.ipv6_interface_config:type_name -> forge.InstanceInterfaceIpv6Config 293, // 317: forge.InstanceInterfaceConfig.routing_profile:type_name -> forge.InstanceInterfaceRoutingProfile - 966, // 318: forge.InstanceInterfaceIpv6Config.vpc_prefix_id:type_name -> common.VpcPrefixId - 846, // 319: forge.InstanceInterfaceRoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry + 968, // 318: forge.InstanceInterfaceIpv6Config.vpc_prefix_id:type_name -> common.VpcPrefixId + 848, // 319: forge.InstanceInterfaceRoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry 37, // 320: forge.InstanceIBInterfaceConfig.function_type:type_name -> forge.InterfaceFunctionType - 968, // 321: forge.InstanceIBInterfaceConfig.ib_partition_id:type_name -> common.IBPartitionId - 964, // 322: forge.InstanceInterfaceStatus.vpc_id:type_name -> common.VpcId - 981, // 323: forge.InstanceNVLinkGpuStatus.domain_id:type_name -> common.NVLinkDomainId - 965, // 324: forge.InstanceNVLinkGpuStatus.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 965, // 325: forge.InstanceNVLinkGpuConfig.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 977, // 326: forge.InstancePhoneHomeLastContactRequest.instance_id:type_name -> common.InstanceId - 962, // 327: forge.InstancePhoneHomeLastContactResponse.timestamp:type_name -> google.protobuf.Timestamp + 970, // 321: forge.InstanceIBInterfaceConfig.ib_partition_id:type_name -> common.IBPartitionId + 966, // 322: forge.InstanceInterfaceStatus.vpc_id:type_name -> common.VpcId + 983, // 323: forge.InstanceNVLinkGpuStatus.domain_id:type_name -> common.NVLinkDomainId + 967, // 324: forge.InstanceNVLinkGpuStatus.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 967, // 325: forge.InstanceNVLinkGpuConfig.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 979, // 326: forge.InstancePhoneHomeLastContactRequest.instance_id:type_name -> common.InstanceId + 964, // 327: forge.InstancePhoneHomeLastContactResponse.timestamp:type_name -> google.protobuf.Timestamp 16, // 328: forge.Issue.category:type_name -> forge.IssueCategory - 977, // 329: forge.InstanceReleaseRequest.id:type_name -> common.InstanceId - 301, // 330: forge.InstanceReleaseRequest.issue:type_name -> forge.Issue - 961, // 331: forge.MachinesByIdsRequest.machine_ids:type_name -> common.MachineId - 971, // 332: forge.MachineSearchConfig.rack_id:type_name -> common.RackId - 961, // 333: forge.MachineStateHistoriesRequest.machine_ids:type_name -> common.MachineId - 928, // 334: forge.MachineStateHistories.histories:type_name -> forge.MachineStateHistories.HistoriesEntry - 345, // 335: forge.MachineStateHistoryRecords.records:type_name -> forge.MachineEvent - 961, // 336: forge.MachineHealthHistoriesRequest.machine_ids:type_name -> common.MachineId - 962, // 337: forge.MachineHealthHistoriesRequest.start_time:type_name -> google.protobuf.Timestamp - 962, // 338: forge.MachineHealthHistoriesRequest.end_time:type_name -> google.protobuf.Timestamp - 929, // 339: forge.HealthHistories.histories:type_name -> forge.HealthHistories.HistoriesEntry - 312, // 340: forge.HealthHistoryRecords.records:type_name -> forge.HealthHistoryRecord - 969, // 341: forge.HealthHistoryRecord.health:type_name -> health.HealthReport - 962, // 342: forge.HealthHistoryRecord.time:type_name -> google.protobuf.Timestamp - 462, // 343: forge.TenantList.tenants:type_name -> forge.Tenant - 346, // 344: forge.InterfaceList.interfaces:type_name -> forge.MachineInterface - 330, // 345: forge.MachineList.machines:type_name -> forge.Machine - 982, // 346: forge.InterfaceDeleteQuery.id:type_name -> common.MachineInterfaceId - 982, // 347: forge.InterfaceSearchQuery.id:type_name -> common.MachineInterfaceId - 982, // 348: forge.AssignStaticAddressRequest.interface_id:type_name -> common.MachineInterfaceId - 982, // 349: forge.AssignStaticAddressResponse.interface_id:type_name -> common.MachineInterfaceId - 17, // 350: forge.AssignStaticAddressResponse.status:type_name -> forge.AssignStaticAddressStatus - 982, // 351: forge.RemoveStaticAddressRequest.interface_id:type_name -> common.MachineInterfaceId - 982, // 352: forge.RemoveStaticAddressResponse.interface_id:type_name -> common.MachineInterfaceId - 18, // 353: forge.RemoveStaticAddressResponse.status:type_name -> forge.RemoveStaticAddressStatus - 982, // 354: forge.FindInterfaceAddressesRequest.interface_id:type_name -> common.MachineInterfaceId - 982, // 355: forge.FindInterfaceAddressesResponse.interface_id:type_name -> common.MachineInterfaceId - 326, // 356: forge.FindInterfaceAddressesResponse.addresses:type_name -> forge.InterfaceAddress - 982, // 357: forge.BmcInfo.machine_interface_id:type_name -> common.MachineInterfaceId - 961, // 358: forge.Machine.id:type_name -> common.MachineId - 341, // 359: forge.Machine.state_reason:type_name -> forge.ControllerStateReason - 343, // 360: forge.Machine.state_sla:type_name -> forge.StateSla - 345, // 361: forge.Machine.events:type_name -> forge.MachineEvent - 346, // 362: forge.Machine.interfaces:type_name -> forge.MachineInterface - 983, // 363: forge.Machine.discovery_info:type_name -> machine_discovery.DiscoveryInfo - 19, // 364: forge.Machine.machine_type:type_name -> forge.MachineType - 328, // 365: forge.Machine.bmc_info:type_name -> forge.BmcInfo - 962, // 366: forge.Machine.last_reboot_time:type_name -> google.protobuf.Timestamp - 962, // 367: forge.Machine.last_observation_time:type_name -> google.protobuf.Timestamp - 962, // 368: forge.Machine.maintenance_start_time:type_name -> google.protobuf.Timestamp - 961, // 369: forge.Machine.associated_host_machine_id:type_name -> common.MachineId - 338, // 370: forge.Machine.inventory:type_name -> forge.MachineInventory - 962, // 371: forge.Machine.last_reboot_requested_time:type_name -> google.protobuf.Timestamp - 961, // 372: forge.Machine.associated_dpu_machine_ids:type_name -> common.MachineId - 969, // 373: forge.Machine.health:type_name -> health.HealthReport - 340, // 374: forge.Machine.health_sources:type_name -> forge.HealthSourceOrigin - 347, // 375: forge.Machine.ib_status:type_name -> forge.InfinibandStatusObservation - 256, // 376: forge.Machine.metadata:type_name -> forge.Metadata - 332, // 377: forge.Machine.instance_network_restrictions:type_name -> forge.InstanceNetworkRestrictions - 624, // 378: forge.Machine.capabilities:type_name -> forge.MachineCapabilitiesSet - 697, // 379: forge.Machine.hw_sku_status:type_name -> forge.SkuStatus - 378, // 380: forge.Machine.quarantine_state:type_name -> forge.ManagedHostQuarantineState - 748, // 381: forge.Machine.nvlink_info:type_name -> forge.MachineNVLinkInfo - 753, // 382: forge.Machine.nvlink_status_observation:type_name -> forge.MachineNVLinkStatusObservation - 971, // 383: forge.Machine.rack_id:type_name -> common.RackId - 214, // 384: forge.Machine.placement_in_rack:type_name -> forge.PlacementInRack - 750, // 385: forge.Machine.spx_status_observation:type_name -> forge.MachineSpxStatusObservation - 331, // 386: forge.Machine.dpf:type_name -> forge.DpfMachineState - 20, // 387: forge.InstanceNetworkRestrictions.network_segment_membership_type:type_name -> forge.InstanceNetworkSegmentMembershipType - 975, // 388: forge.InstanceNetworkRestrictions.network_segment_ids:type_name -> common.NetworkSegmentId - 961, // 389: forge.MachineMetadataUpdateRequest.machine_id:type_name -> common.MachineId - 256, // 390: forge.MachineMetadataUpdateRequest.metadata:type_name -> forge.Metadata - 971, // 391: forge.RackMetadataUpdateRequest.rack_id:type_name -> common.RackId - 256, // 392: forge.RackMetadataUpdateRequest.metadata:type_name -> forge.Metadata - 973, // 393: forge.SwitchMetadataUpdateRequest.switch_id:type_name -> common.SwitchId - 256, // 394: forge.SwitchMetadataUpdateRequest.metadata:type_name -> forge.Metadata - 970, // 395: forge.PowerShelfMetadataUpdateRequest.power_shelf_id:type_name -> common.PowerShelfId - 256, // 396: forge.PowerShelfMetadataUpdateRequest.metadata:type_name -> forge.Metadata - 961, // 397: forge.DpuAgentInventoryReport.machine_id:type_name -> common.MachineId - 338, // 398: forge.DpuAgentInventoryReport.inventory:type_name -> forge.MachineInventory - 339, // 399: forge.MachineInventory.components:type_name -> forge.MachineInventorySoftwareComponent - 38, // 400: forge.HealthSourceOrigin.mode:type_name -> forge.HealthReportApplyMode - 21, // 401: forge.ControllerStateReason.outcome:type_name -> forge.ControllerStateOutcome - 342, // 402: forge.ControllerStateReason.source_ref:type_name -> forge.ControllerStateSourceReference - 984, // 403: forge.StateSla.sla:type_name -> google.protobuf.Duration - 7, // 404: forge.InstanceTenantStatus.state:type_name -> forge.TenantState - 962, // 405: forge.MachineEvent.time:type_name -> google.protobuf.Timestamp - 982, // 406: forge.MachineInterface.id:type_name -> common.MachineInterfaceId - 961, // 407: forge.MachineInterface.attached_dpu_machine_id:type_name -> common.MachineId - 961, // 408: forge.MachineInterface.machine_id:type_name -> common.MachineId - 975, // 409: forge.MachineInterface.segment_id:type_name -> common.NetworkSegmentId - 963, // 410: forge.MachineInterface.domain_id:type_name -> common.DomainId - 962, // 411: forge.MachineInterface.created:type_name -> google.protobuf.Timestamp - 962, // 412: forge.MachineInterface.last_dhcp:type_name -> google.protobuf.Timestamp - 970, // 413: forge.MachineInterface.power_shelf_id:type_name -> common.PowerShelfId - 973, // 414: forge.MachineInterface.switch_id:type_name -> common.SwitchId - 24, // 415: forge.MachineInterface.association_type:type_name -> forge.InterfaceAssociationType - 25, // 416: forge.MachineInterface.interface_type:type_name -> forge.InterfaceType - 348, // 417: forge.InfinibandStatusObservation.ib_interfaces:type_name -> forge.MachineIbInterface - 962, // 418: forge.InfinibandStatusObservation.observed_at:type_name -> google.protobuf.Timestamp - 985, // 419: forge.MachineIbInterface.associated_pkeys:type_name -> common.StringList - 985, // 420: forge.MachineIbInterface.associated_partition_ids:type_name -> common.StringList - 26, // 421: forge.DhcpDiscovery.address_family:type_name -> forge.AddressFamily - 27, // 422: forge.DhcpDiscovery.message_kind:type_name -> forge.MessageKind - 28, // 423: forge.ExpireDhcpLeaseResponse.status:type_name -> forge.ExpireDhcpLeaseStatus - 961, // 424: forge.DhcpRecord.machine_id:type_name -> common.MachineId - 982, // 425: forge.DhcpRecord.machine_interface_id:type_name -> common.MachineInterfaceId - 975, // 426: forge.DhcpRecord.segment_id:type_name -> common.NetworkSegmentId - 963, // 427: forge.DhcpRecord.subdomain_id:type_name -> common.DomainId - 962, // 428: forge.DhcpRecord.last_invalidation_time:type_name -> google.protobuf.Timestamp - 240, // 429: forge.NetworkSegmentList.network_segments:type_name -> forge.NetworkSegment - 29, // 430: forge.SSHKeyValidationResponse.role:type_name -> forge.UserRoles - 973, // 431: forge.GetSwitchNvosCredentialsRequest.switch_id:type_name -> common.SwitchId - 359, // 432: forge.GetBmcCredentialsResponse.credentials:type_name -> forge.BmcCredentials - 811, // 433: forge.BmcCredentials.username_password:type_name -> forge.UsernamePassword - 812, // 434: forge.BmcCredentials.session_token:type_name -> forge.SessionToken - 367, // 435: forge.SshRequest.endpoint_request:type_name -> forge.BmcEndpointRequest - 369, // 436: forge.CopyBfbToDpuRshimRequest.ssh_request:type_name -> forge.SshRequest - 961, // 437: forge.UpdateMachineHardwareInfoRequest.machine_id:type_name -> common.MachineId - 372, // 438: forge.UpdateMachineHardwareInfoRequest.info:type_name -> forge.MachineHardwareInfo - 30, // 439: forge.UpdateMachineHardwareInfoRequest.update_type:type_name -> forge.MachineHardwareInfoUpdateType - 986, // 440: forge.MachineHardwareInfo.gpus:type_name -> machine_discovery.Gpu - 961, // 441: forge.ManagedHostNetworkConfigRequest.dpu_machine_id:type_name -> common.MachineId - 385, // 442: forge.ManagedHostNetworkConfigResponse.managed_host_config:type_name -> forge.ManagedHostNetworkConfig - 386, // 443: forge.ManagedHostNetworkConfigResponse.admin_interface:type_name -> forge.FlatInterfaceConfig - 386, // 444: forge.ManagedHostNetworkConfigResponse.tenant_interfaces:type_name -> forge.FlatInterfaceConfig - 977, // 445: forge.ManagedHostNetworkConfigResponse.instance_id:type_name -> common.InstanceId - 5, // 446: forge.ManagedHostNetworkConfigResponse.network_virtualization_type:type_name -> forge.VpcVirtualizationType - 32, // 447: forge.ManagedHostNetworkConfigResponse.vpc_isolation_behavior:type_name -> forge.VpcIsolationBehaviorType - 289, // 448: forge.ManagedHostNetworkConfigResponse.instance:type_name -> forge.Instance - 987, // 449: forge.ManagedHostNetworkConfigResponse.common_internal_route_target:type_name -> common.RouteTarget - 987, // 450: forge.ManagedHostNetworkConfigResponse.additional_route_target_imports:type_name -> common.RouteTarget - 675, // 451: forge.ManagedHostNetworkConfigResponse.network_security_policy_overrides:type_name -> forge.ResolvedNetworkSecurityGroupRule - 377, // 452: forge.ManagedHostNetworkConfigResponse.dpu_extension_services:type_name -> forge.ManagedHostDpuExtensionServiceConfig - 375, // 453: forge.ManagedHostNetworkConfigResponse.traffic_intercept_config:type_name -> forge.TrafficInterceptConfig - 847, // 454: forge.ManagedHostNetworkConfigResponse.routing_profile:type_name -> forge.RoutingProfile - 376, // 455: forge.TrafficInterceptConfig.bridging:type_name -> forge.TrafficInterceptBridging - 930, // 456: forge.TrafficInterceptBridging.host_representor_intercept_bridging:type_name -> forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry - 64, // 457: forge.ManagedHostDpuExtensionServiceConfig.service_type:type_name -> forge.DpuExtensionServiceType - 813, // 458: forge.ManagedHostDpuExtensionServiceConfig.credential:type_name -> forge.DpuExtensionServiceCredential - 832, // 459: forge.ManagedHostDpuExtensionServiceConfig.observability:type_name -> forge.DpuExtensionServiceObservability - 31, // 460: forge.ManagedHostQuarantineState.mode:type_name -> forge.ManagedHostQuarantineMode - 961, // 461: forge.GetManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId - 378, // 462: forge.GetManagedHostQuarantineStateResponse.quarantine_state:type_name -> forge.ManagedHostQuarantineState - 961, // 463: forge.SetManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId - 378, // 464: forge.SetManagedHostQuarantineStateRequest.quarantine_state:type_name -> forge.ManagedHostQuarantineState - 378, // 465: forge.SetManagedHostQuarantineStateResponse.prior_quarantine_state:type_name -> forge.ManagedHostQuarantineState - 961, // 466: forge.ClearManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId - 378, // 467: forge.ClearManagedHostQuarantineStateResponse.prior_quarantine_state:type_name -> forge.ManagedHostQuarantineState - 378, // 468: forge.ManagedHostNetworkConfig.quarantine_state:type_name -> forge.ManagedHostQuarantineState - 37, // 469: forge.FlatInterfaceConfig.function_type:type_name -> forge.InterfaceFunctionType - 388, // 470: forge.FlatInterfaceConfig.ipv6_interface_config:type_name -> forge.FlatInterfaceIpv6Config - 847, // 471: forge.FlatInterfaceConfig.vpc_routing_profile:type_name -> forge.RoutingProfile - 387, // 472: forge.FlatInterfaceConfig.interface_routing_profile:type_name -> forge.FlatInterfaceRoutingProfile - 389, // 473: forge.FlatInterfaceConfig.network_security_group:type_name -> forge.FlatInterfaceNetworkSecurityGroupConfig - 972, // 474: forge.FlatInterfaceConfig.internal_uuid:type_name -> common.UUID - 846, // 475: forge.FlatInterfaceRoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry - 51, // 476: forge.FlatInterfaceNetworkSecurityGroupConfig.source:type_name -> forge.NetworkSecurityGroupSource - 675, // 477: forge.FlatInterfaceNetworkSecurityGroupConfig.rules:type_name -> forge.ResolvedNetworkSecurityGroupRule - 438, // 478: forge.ManagedHostNetworkStatusResponse.all:type_name -> forge.DpuNetworkStatus - 962, // 479: forge.DpuAgentUpgradeCheckRequest.binary_mtime:type_name -> google.protobuf.Timestamp - 33, // 480: forge.DpuAgentUpgradePolicyRequest.new_policy:type_name -> forge.AgentUpgradePolicy - 33, // 481: forge.DpuAgentUpgradePolicyResponse.active_policy:type_name -> forge.AgentUpgradePolicy - 367, // 482: forge.LockdownRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 961, // 483: forge.LockdownRequest.machine_id:type_name -> common.MachineId - 34, // 484: forge.LockdownRequest.action:type_name -> forge.LockdownAction - 367, // 485: forge.LockdownStatusRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 961, // 486: forge.LockdownStatusRequest.machine_id:type_name -> common.MachineId - 367, // 487: forge.MachineSetupStatusRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 367, // 488: forge.MachineSetupRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 367, // 489: forge.SetDpuFirstBootOrderRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 367, // 490: forge.AdminRebootRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 367, // 491: forge.AdminBmcResetRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 367, // 492: forge.EnableInfiniteBootRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 367, // 493: forge.IsInfiniteBootEnabledRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 961, // 494: forge.BMCMetaDataGetRequest.machine_id:type_name -> common.MachineId - 29, // 495: forge.BMCMetaDataGetRequest.role:type_name -> forge.UserRoles - 35, // 496: forge.BMCMetaDataGetRequest.request_type:type_name -> forge.BMCRequestType - 367, // 497: forge.BMCMetaDataGetRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 961, // 498: forge.MachineCredentialsUpdateRequest.machine_id:type_name -> common.MachineId - 931, // 499: forge.MachineCredentialsUpdateRequest.credentials:type_name -> forge.MachineCredentialsUpdateRequest.Credentials - 961, // 500: forge.ForgeAgentControlRequest.machine_id:type_name -> common.MachineId - 76, // 501: forge.ForgeAgentControlResponse.legacy_action:type_name -> forge.ForgeAgentControlResponse.LegacyAction - 932, // 502: forge.ForgeAgentControlResponse.data:type_name -> forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo - 933, // 503: forge.ForgeAgentControlResponse.noop:type_name -> forge.ForgeAgentControlResponse.Noop - 934, // 504: forge.ForgeAgentControlResponse.reset:type_name -> forge.ForgeAgentControlResponse.Reset - 935, // 505: forge.ForgeAgentControlResponse.discovery:type_name -> forge.ForgeAgentControlResponse.Discovery - 936, // 506: forge.ForgeAgentControlResponse.rebuild:type_name -> forge.ForgeAgentControlResponse.Rebuild - 937, // 507: forge.ForgeAgentControlResponse.retry:type_name -> forge.ForgeAgentControlResponse.Retry - 938, // 508: forge.ForgeAgentControlResponse.measure:type_name -> forge.ForgeAgentControlResponse.Measure - 939, // 509: forge.ForgeAgentControlResponse.log_error:type_name -> forge.ForgeAgentControlResponse.LogError - 940, // 510: forge.ForgeAgentControlResponse.machine_validation:type_name -> forge.ForgeAgentControlResponse.MachineValidation - 942, // 511: forge.ForgeAgentControlResponse.mlx_action:type_name -> forge.ForgeAgentControlResponse.MlxAction - 949, // 512: forge.ForgeAgentControlResponse.firmware_upgrade:type_name -> forge.ForgeAgentControlResponse.FirmwareUpgrade - 982, // 513: forge.MachineDiscoveryInfo.machine_interface_id:type_name -> common.MachineInterfaceId - 983, // 514: forge.MachineDiscoveryInfo.info:type_name -> machine_discovery.DiscoveryInfo - 36, // 515: forge.MachineDiscoveryInfo.discovery_reporter:type_name -> forge.MachineDiscoveryReporter - 961, // 516: forge.MachineDiscoveryCompletedRequest.machine_id:type_name -> common.MachineId - 961, // 517: forge.MachineCleanupInfo.machine_id:type_name -> common.MachineId - 951, // 518: forge.MachineCleanupInfo.nvme:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 951, // 519: forge.MachineCleanupInfo.ram:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 951, // 520: forge.MachineCleanupInfo.mem_overwrite:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 951, // 521: forge.MachineCleanupInfo.ib:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 951, // 522: forge.MachineCleanupInfo.hdd:type_name -> forge.MachineCleanupInfo.CleanupStepResult - 77, // 523: forge.MachineCleanupInfo.result:type_name -> forge.MachineCleanupInfo.CleanupResult - 424, // 524: forge.MachineCertificateResult.machine_certificate:type_name -> forge.MachineCertificate - 961, // 525: forge.MachineDiscoveryResult.machine_id:type_name -> common.MachineId - 424, // 526: forge.MachineDiscoveryResult.machine_certificate:type_name -> forge.MachineCertificate - 123, // 527: forge.MachineDiscoveryResult.attest_key_challenge:type_name -> forge.AttestKeyBindChallenge - 982, // 528: forge.MachineDiscoveryResult.machine_interface_id:type_name -> common.MachineInterfaceId - 961, // 529: forge.ForgeScoutErrorReport.machine_id:type_name -> common.MachineId - 982, // 530: forge.ForgeScoutErrorReport.machine_interface_id:type_name -> common.MachineInterfaceId - 23, // 531: forge.PxeInstructionRequest.arch:type_name -> forge.MachineArchitecture - 982, // 532: forge.PxeInstructionRequest.interface_id:type_name -> common.MachineInterfaceId - 346, // 533: forge.CloudInitDiscoveryInstructions.machine_interface:type_name -> forge.MachineInterface - 853, // 534: forge.CloudInitDiscoveryInstructions.domain:type_name -> forge.PxeDomain - 434, // 535: forge.CloudInitInstructions.discovery_instructions:type_name -> forge.CloudInitDiscoveryInstructions - 435, // 536: forge.CloudInitInstructions.metadata:type_name -> forge.CloudInitMetaData - 961, // 537: forge.DpuNetworkStatus.dpu_machine_id:type_name -> common.MachineId - 962, // 538: forge.DpuNetworkStatus.observed_at:type_name -> google.protobuf.Timestamp - 459, // 539: forge.DpuNetworkStatus.interfaces:type_name -> forge.InstanceInterfaceStatusObservation - 977, // 540: forge.DpuNetworkStatus.instance_id:type_name -> common.InstanceId - 969, // 541: forge.DpuNetworkStatus.dpu_health:type_name -> health.HealthReport - 460, // 542: forge.DpuNetworkStatus.fabric_interfaces:type_name -> forge.FabricInterfaceData - 439, // 543: forge.DpuNetworkStatus.last_dhcp_requests:type_name -> forge.LastDhcpRequest - 440, // 544: forge.DpuNetworkStatus.dpu_extension_services:type_name -> forge.DpuExtensionServiceStatusObservation - 982, // 545: forge.LastDhcpRequest.host_interface_id:type_name -> common.MachineInterfaceId - 64, // 546: forge.DpuExtensionServiceStatusObservation.service_type:type_name -> forge.DpuExtensionServiceType - 65, // 547: forge.DpuExtensionServiceStatusObservation.state:type_name -> forge.DpuExtensionServiceDeploymentStatus - 441, // 548: forge.DpuExtensionServiceStatusObservation.components:type_name -> forge.DpuExtensionServiceComponent - 969, // 549: forge.OptionalHealthReport.report:type_name -> health.HealthReport - 969, // 550: forge.HealthReportEntry.report:type_name -> health.HealthReport - 38, // 551: forge.HealthReportEntry.mode:type_name -> forge.HealthReportApplyMode - 961, // 552: forge.InsertMachineHealthReportRequest.machine_id:type_name -> common.MachineId - 443, // 553: forge.InsertMachineHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 971, // 554: forge.InsertRackHealthReportRequest.rack_id:type_name -> common.RackId - 443, // 555: forge.InsertRackHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 971, // 556: forge.RemoveRackHealthReportRequest.rack_id:type_name -> common.RackId - 971, // 557: forge.ListRackHealthReportsRequest.rack_id:type_name -> common.RackId - 973, // 558: forge.InsertSwitchHealthReportRequest.switch_id:type_name -> common.SwitchId - 443, // 559: forge.InsertSwitchHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 973, // 560: forge.RemoveSwitchHealthReportRequest.switch_id:type_name -> common.SwitchId - 973, // 561: forge.ListSwitchHealthReportsRequest.switch_id:type_name -> common.SwitchId - 970, // 562: forge.InsertPowerShelfHealthReportRequest.power_shelf_id:type_name -> common.PowerShelfId - 443, // 563: forge.InsertPowerShelfHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 970, // 564: forge.RemovePowerShelfHealthReportRequest.power_shelf_id:type_name -> common.PowerShelfId - 970, // 565: forge.ListPowerShelfHealthReportsRequest.power_shelf_id:type_name -> common.PowerShelfId - 443, // 566: forge.ListHealthReportResponse.health_report_entries:type_name -> forge.HealthReportEntry - 961, // 567: forge.RemoveMachineHealthReportRequest.machine_id:type_name -> common.MachineId - 981, // 568: forge.ListNVLinkDomainHealthReportsRequest.domain_id:type_name -> common.NVLinkDomainId - 981, // 569: forge.InsertNVLinkDomainHealthReportRequest.domain_id:type_name -> common.NVLinkDomainId - 443, // 570: forge.InsertNVLinkDomainHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry - 981, // 571: forge.RemoveNVLinkDomainHealthReportRequest.domain_id:type_name -> common.NVLinkDomainId - 37, // 572: forge.InstanceInterfaceStatusObservation.function_type:type_name -> forge.InterfaceFunctionType - 669, // 573: forge.InstanceInterfaceStatusObservation.network_security_group:type_name -> forge.NetworkSecurityGroupStatus - 972, // 574: forge.InstanceInterfaceStatusObservation.internal_uuid:type_name -> common.UUID - 461, // 575: forge.FabricInterfaceData.link_data:type_name -> forge.LinkData - 256, // 576: forge.Tenant.metadata:type_name -> forge.Metadata - 256, // 577: forge.CreateTenantRequest.metadata:type_name -> forge.Metadata - 462, // 578: forge.CreateTenantResponse.tenant:type_name -> forge.Tenant - 256, // 579: forge.UpdateTenantRequest.metadata:type_name -> forge.Metadata - 462, // 580: forge.UpdateTenantResponse.tenant:type_name -> forge.Tenant - 462, // 581: forge.FindTenantResponse.tenant:type_name -> forge.Tenant - 470, // 582: forge.TenantKeysetContent.public_keys:type_name -> forge.TenantPublicKey - 469, // 583: forge.TenantKeyset.keyset_identifier:type_name -> forge.TenantKeysetIdentifier - 471, // 584: forge.TenantKeyset.keyset_content:type_name -> forge.TenantKeysetContent - 469, // 585: forge.CreateTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier - 471, // 586: forge.CreateTenantKeysetRequest.keyset_content:type_name -> forge.TenantKeysetContent - 472, // 587: forge.CreateTenantKeysetResponse.keyset:type_name -> forge.TenantKeyset - 472, // 588: forge.TenantKeySetList.keyset:type_name -> forge.TenantKeyset - 469, // 589: forge.UpdateTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier - 471, // 590: forge.UpdateTenantKeysetRequest.keyset_content:type_name -> forge.TenantKeysetContent - 469, // 591: forge.DeleteTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier - 469, // 592: forge.TenantKeysetIdList.keyset_ids:type_name -> forge.TenantKeysetIdentifier - 469, // 593: forge.TenantKeysetsByIdsRequest.keyset_ids:type_name -> forge.TenantKeysetIdentifier - 487, // 594: forge.ResourcePools.pools:type_name -> forge.ResourcePool - 40, // 595: forge.MaintenanceRequest.operation:type_name -> forge.MaintenanceOperation - 961, // 596: forge.MaintenanceRequest.host_id:type_name -> common.MachineId - 41, // 597: forge.SetDynamicConfigRequest.setting:type_name -> forge.ConfigSetting - 515, // 598: forge.FindIpAddressResponse.matches:type_name -> forge.IpAddressMatch - 972, // 599: forge.IdentifyUuidRequest.uuid:type_name -> common.UUID - 972, // 600: forge.IdentifyUuidResponse.uuid:type_name -> common.UUID - 42, // 601: forge.IdentifyUuidResponse.object_type:type_name -> forge.UuidType - 43, // 602: forge.IdentifyMacResponse.object_type:type_name -> forge.MacOwner - 961, // 603: forge.IdentifySerialResponse.machine_id:type_name -> common.MachineId - 961, // 604: forge.DpuReprovisioningRequest.dpu_id:type_name -> common.MachineId - 78, // 605: forge.DpuReprovisioningRequest.mode:type_name -> forge.DpuReprovisioningRequest.Mode - 44, // 606: forge.DpuReprovisioningRequest.initiator:type_name -> forge.UpdateInitiator - 961, // 607: forge.DpuReprovisioningRequest.machine_id:type_name -> common.MachineId - 952, // 608: forge.DpuReprovisioningListResponse.dpus:type_name -> forge.DpuReprovisioningListResponse.DpuReprovisioningListItem - 961, // 609: forge.HostReprovisioningRequest.machine_id:type_name -> common.MachineId - 79, // 610: forge.HostReprovisioningRequest.mode:type_name -> forge.HostReprovisioningRequest.Mode - 44, // 611: forge.HostReprovisioningRequest.initiator:type_name -> forge.UpdateInitiator - 953, // 612: forge.HostReprovisioningListResponse.hosts:type_name -> forge.HostReprovisioningListResponse.HostReprovisioningListItem - 509, // 613: forge.DpuInfoStatusObservation.os_operational_state:type_name -> forge.DpuOsOperationalState - 510, // 614: forge.DpuInfoStatusObservation.representors:type_name -> forge.DpuRepresentorStatus - 962, // 615: forge.DpuInfoStatusObservation.last_heartbeat:type_name -> google.protobuf.Timestamp - 511, // 616: forge.DpuInfo.observed_status:type_name -> forge.DpuInfoStatusObservation - 512, // 617: forge.GetDpuInfoListResponse.dpu_list:type_name -> forge.DpuInfo - 45, // 618: forge.IpAddressMatch.ip_type:type_name -> forge.IpType - 982, // 619: forge.MachineBootOverride.machine_interface_id:type_name -> common.MachineInterfaceId - 961, // 620: forge.ConnectedDevice.id:type_name -> common.MachineId - 517, // 621: forge.ConnectedDeviceList.connected_devices:type_name -> forge.ConnectedDevice - 523, // 622: forge.MachineIdBmcIpPairs.pairs:type_name -> forge.MachineIdBmcIp - 961, // 623: forge.MachineIdBmcIp.machine_id:type_name -> common.MachineId - 517, // 624: forge.NetworkDevice.devices:type_name -> forge.ConnectedDevice - 524, // 625: forge.NetworkTopologyData.network_devices:type_name -> forge.NetworkDevice - 46, // 626: forge.RouteServers.source_type:type_name -> forge.RouteServerSourceType - 530, // 627: forge.RouteServerEntries.route_servers:type_name -> forge.RouteServer - 46, // 628: forge.RouteServer.source_type:type_name -> forge.RouteServerSourceType - 961, // 629: forge.SetHostUefiPasswordRequest.host_id:type_name -> common.MachineId - 961, // 630: forge.ClearHostUefiPasswordRequest.host_id:type_name -> common.MachineId - 972, // 631: forge.OsImageAttributes.id:type_name -> common.UUID - 535, // 632: forge.OsImage.attributes:type_name -> forge.OsImageAttributes - 47, // 633: forge.OsImage.status:type_name -> forge.OsImageStatus - 536, // 634: forge.ListOsImageResponse.images:type_name -> forge.OsImage - 972, // 635: forge.DeleteOsImageRequest.id:type_name -> common.UUID - 978, // 636: forge.GetIpxeTemplateRequest.id:type_name -> common.IpxeTemplateId - 265, // 637: forge.IpxeTemplateList.templates:type_name -> forge.IpxeTemplate - 11, // 638: forge.ExpectedHostNic.network_segment_type:type_name -> forge.NetworkSegmentType - 256, // 639: forge.ExpectedMachine.metadata:type_name -> forge.Metadata - 972, // 640: forge.ExpectedMachine.id:type_name -> common.UUID - 544, // 641: forge.ExpectedMachine.host_nics:type_name -> forge.ExpectedHostNic - 971, // 642: forge.ExpectedMachine.rack_id:type_name -> common.RackId - 48, // 643: forge.ExpectedMachine.dpu_mode:type_name -> forge.DpuMode - 545, // 644: forge.ExpectedMachine.host_lifecycle_profile:type_name -> forge.HostLifecycleProfile - 972, // 645: forge.ExpectedMachineRequest.id:type_name -> common.UUID - 546, // 646: forge.ExpectedMachineList.expected_machines:type_name -> forge.ExpectedMachine - 550, // 647: forge.LinkedExpectedMachineList.expected_machines:type_name -> forge.LinkedExpectedMachine - 961, // 648: forge.LinkedExpectedMachine.machine_id:type_name -> common.MachineId - 972, // 649: forge.LinkedExpectedMachine.expected_machine_id:type_name -> common.UUID - 552, // 650: forge.UnexpectedMachineList.unexpected_machines:type_name -> forge.UnexpectedMachine - 961, // 651: forge.UnexpectedMachine.machine_id:type_name -> common.MachineId - 548, // 652: forge.BatchExpectedMachineOperationRequest.expected_machines:type_name -> forge.ExpectedMachineList - 972, // 653: forge.ExpectedMachineOperationResult.id:type_name -> common.UUID - 546, // 654: forge.ExpectedMachineOperationResult.expected_machine:type_name -> forge.ExpectedMachine - 554, // 655: forge.BatchExpectedMachineOperationResponse.results:type_name -> forge.ExpectedMachineOperationResult - 961, // 656: forge.MachineRebootCompletedRequest.machine_id:type_name -> common.MachineId - 961, // 657: forge.ScoutFirmwareUpgradeStatusRequest.machine_id:type_name -> common.MachineId - 961, // 658: forge.MachineValidationCompletedRequest.machine_id:type_name -> common.MachineId - 988, // 659: forge.MachineValidationCompletedRequest.validation_id:type_name -> common.MachineValidationId - 962, // 660: forge.MachineValidationResult.start_time:type_name -> google.protobuf.Timestamp - 962, // 661: forge.MachineValidationResult.end_time:type_name -> google.protobuf.Timestamp - 988, // 662: forge.MachineValidationResult.validation_id:type_name -> common.MachineValidationId - 561, // 663: forge.MachineValidationResultPostRequest.result:type_name -> forge.MachineValidationResult - 561, // 664: forge.MachineValidationResultList.results:type_name -> forge.MachineValidationResult - 961, // 665: forge.MachineValidationGetRequest.machine_id:type_name -> common.MachineId - 988, // 666: forge.MachineValidationGetRequest.validation_id:type_name -> common.MachineValidationId - 80, // 667: forge.MachineValidationStatus.oneof_started:type_name -> forge.MachineValidationStatus.MachineValidationStarted - 81, // 668: forge.MachineValidationStatus.oneof_in_progress:type_name -> forge.MachineValidationStatus.MachineValidationInProgress - 82, // 669: forge.MachineValidationStatus.oneof_completed:type_name -> forge.MachineValidationStatus.MachineValidationCompleted - 988, // 670: forge.MachineValidationRun.validation_id:type_name -> common.MachineValidationId - 961, // 671: forge.MachineValidationRun.machine_id:type_name -> common.MachineId - 962, // 672: forge.MachineValidationRun.start_time:type_name -> google.protobuf.Timestamp - 962, // 673: forge.MachineValidationRun.end_time:type_name -> google.protobuf.Timestamp - 565, // 674: forge.MachineValidationRun.status:type_name -> forge.MachineValidationStatus - 984, // 675: forge.MachineValidationRun.duration_to_complete:type_name -> google.protobuf.Duration - 962, // 676: forge.MachineValidationRun.last_heartbeat_at:type_name -> google.protobuf.Timestamp - 961, // 677: forge.MachineSetAutoUpdateRequest.machine_id:type_name -> common.MachineId - 83, // 678: forge.MachineSetAutoUpdateRequest.action:type_name -> forge.MachineSetAutoUpdateRequest.SetAutoupdateAction - 962, // 679: forge.MachineValidationExternalConfig.timestamp:type_name -> google.protobuf.Timestamp - 570, // 680: forge.GetMachineValidationExternalConfigResponse.config:type_name -> forge.MachineValidationExternalConfig - 570, // 681: forge.GetMachineValidationExternalConfigsResponse.configs:type_name -> forge.MachineValidationExternalConfig - 961, // 682: forge.MachineValidationOnDemandRequest.machine_id:type_name -> common.MachineId - 84, // 683: forge.MachineValidationOnDemandRequest.action:type_name -> forge.MachineValidationOnDemandRequest.Action - 988, // 684: forge.MachineValidationOnDemandResponse.validation_id:type_name -> common.MachineValidationId - 578, // 685: forge.MaintenanceActivityConfig.firmware_upgrade:type_name -> forge.FirmwareUpgradeActivity - 580, // 686: forge.MaintenanceActivityConfig.configure_nmx_cluster:type_name -> forge.ConfigureNmxClusterActivity - 581, // 687: forge.MaintenanceActivityConfig.power_sequence:type_name -> forge.PowerSequenceActivity - 579, // 688: forge.MaintenanceActivityConfig.nvos_update:type_name -> forge.NvosUpdateActivity - 582, // 689: forge.RackMaintenanceScope.activities:type_name -> forge.MaintenanceActivityConfig - 971, // 690: forge.RackMaintenanceOnDemandRequest.rack_id:type_name -> common.RackId - 583, // 691: forge.RackMaintenanceOnDemandRequest.scope:type_name -> forge.RackMaintenanceScope - 367, // 692: forge.AdminPowerControlRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 85, // 693: forge.AdminPowerControlRequest.action:type_name -> forge.AdminPowerControlRequest.SystemPowerControl - 961, // 694: forge.GetRedfishJobStateRequest.machine_id:type_name -> common.MachineId - 86, // 695: forge.GetRedfishJobStateResponse.job_state:type_name -> forge.GetRedfishJobStateResponse.RedfishJobState - 566, // 696: forge.MachineValidationRunList.runs:type_name -> forge.MachineValidationRun - 961, // 697: forge.MachineValidationRunListGetRequest.machine_id:type_name -> common.MachineId - 988, // 698: forge.MachineValidationRunItemSearchFilter.validation_id:type_name -> common.MachineValidationId - 972, // 699: forge.MachineValidationRunItemIdList.run_item_ids:type_name -> common.UUID - 972, // 700: forge.MachineValidationRunItemsByIdsRequest.run_item_ids:type_name -> common.UUID - 596, // 701: forge.MachineValidationRunItemList.run_items:type_name -> forge.MachineValidationRunItem - 972, // 702: forge.MachineValidationRunItem.run_item_id:type_name -> common.UUID - 988, // 703: forge.MachineValidationRunItem.validation_id:type_name -> common.MachineValidationId - 984, // 704: forge.MachineValidationRunItem.timeout:type_name -> google.protobuf.Duration - 962, // 705: forge.MachineValidationRunItem.started_at:type_name -> google.protobuf.Timestamp - 962, // 706: forge.MachineValidationRunItem.ended_at:type_name -> google.protobuf.Timestamp - 962, // 707: forge.MachineValidationRunItem.last_heartbeat_at:type_name -> google.protobuf.Timestamp - 972, // 708: forge.MachineValidationRunItem.current_attempt_id:type_name -> common.UUID - 972, // 709: forge.MachineValidationAttemptGetRequest.attempt_id:type_name -> common.UUID - 972, // 710: forge.MachineValidationAttempt.attempt_id:type_name -> common.UUID - 972, // 711: forge.MachineValidationAttempt.run_item_id:type_name -> common.UUID - 962, // 712: forge.MachineValidationAttempt.started_at:type_name -> google.protobuf.Timestamp - 962, // 713: forge.MachineValidationAttempt.ended_at:type_name -> google.protobuf.Timestamp - 962, // 714: forge.MachineValidationAttempt.last_heartbeat_at:type_name -> google.protobuf.Timestamp - 988, // 715: forge.MachineValidationHeartbeatRequest.validation_id:type_name -> common.MachineValidationId - 972, // 716: forge.MachineValidationHeartbeatRequest.run_item_id:type_name -> common.UUID - 972, // 717: forge.MachineValidationHeartbeatRequest.attempt_id:type_name -> common.UUID - 954, // 718: forge.MachineValidationTestUpdateRequest.payload:type_name -> forge.MachineValidationTestUpdateRequest.Payload - 610, // 719: forge.MachineValidationTestsGetResponse.tests:type_name -> forge.MachineValidationTest - 988, // 720: forge.MachineValidationRunRequest.validation_id:type_name -> common.MachineValidationId - 984, // 721: forge.MachineValidationRunRequest.duration_to_complete:type_name -> google.protobuf.Duration - 610, // 722: forge.MachineValidationRunRequest.selected_tests:type_name -> forge.MachineValidationTest - 49, // 723: forge.MachineCapabilityAttributesGpu.device_type:type_name -> forge.MachineCapabilityDeviceType - 49, // 724: forge.MachineCapabilityAttributesNetwork.device_type:type_name -> forge.MachineCapabilityDeviceType - 617, // 725: forge.MachineCapabilitiesSet.cpu:type_name -> forge.MachineCapabilityAttributesCpu - 618, // 726: forge.MachineCapabilitiesSet.gpu:type_name -> forge.MachineCapabilityAttributesGpu - 619, // 727: forge.MachineCapabilitiesSet.memory:type_name -> forge.MachineCapabilityAttributesMemory - 620, // 728: forge.MachineCapabilitiesSet.storage:type_name -> forge.MachineCapabilityAttributesStorage - 621, // 729: forge.MachineCapabilitiesSet.network:type_name -> forge.MachineCapabilityAttributesNetwork - 622, // 730: forge.MachineCapabilitiesSet.infiniband:type_name -> forge.MachineCapabilityAttributesInfiniband - 623, // 731: forge.MachineCapabilitiesSet.dpu:type_name -> forge.MachineCapabilityAttributesDpu - 627, // 732: forge.InstanceTypeAttributes.desired_capabilities:type_name -> forge.InstanceTypeMachineCapabilityFilterAttributes - 625, // 733: forge.InstanceType.attributes:type_name -> forge.InstanceTypeAttributes - 256, // 734: forge.InstanceType.metadata:type_name -> forge.Metadata - 725, // 735: forge.InstanceType.allocation_stats:type_name -> forge.InstanceTypeAllocationStats - 50, // 736: forge.InstanceTypeMachineCapabilityFilterAttributes.capability_type:type_name -> forge.MachineCapabilityType - 989, // 737: forge.InstanceTypeMachineCapabilityFilterAttributes.inactive_devices:type_name -> common.Uint32List - 49, // 738: forge.InstanceTypeMachineCapabilityFilterAttributes.device_type:type_name -> forge.MachineCapabilityDeviceType - 256, // 739: forge.CreateInstanceTypeRequest.metadata:type_name -> forge.Metadata - 625, // 740: forge.CreateInstanceTypeRequest.instance_type_attributes:type_name -> forge.InstanceTypeAttributes - 626, // 741: forge.CreateInstanceTypeResponse.instance_type:type_name -> forge.InstanceType - 626, // 742: forge.FindInstanceTypesByIdsResponse.instance_types:type_name -> forge.InstanceType - 626, // 743: forge.UpdateInstanceTypeResponse.instance_type:type_name -> forge.InstanceType - 256, // 744: forge.UpdateInstanceTypeRequest.metadata:type_name -> forge.Metadata - 625, // 745: forge.UpdateInstanceTypeRequest.instance_type_attributes:type_name -> forge.InstanceTypeAttributes - 955, // 746: forge.RedfishBrowseResponse.headers:type_name -> forge.RedfishBrowseResponse.HeadersEntry - 646, // 747: forge.RedfishListActionsResponse.actions:type_name -> forge.RedfishAction - 962, // 748: forge.RedfishAction.approver_dates:type_name -> google.protobuf.Timestamp - 962, // 749: forge.RedfishAction.applied_at:type_name -> google.protobuf.Timestamp - 647, // 750: forge.RedfishAction.results:type_name -> forge.OptionalRedfishActionResult - 648, // 751: forge.OptionalRedfishActionResult.result:type_name -> forge.RedfishActionResult - 956, // 752: forge.RedfishActionResult.headers:type_name -> forge.RedfishActionResult.HeadersEntry - 962, // 753: forge.RedfishActionResult.completed_at:type_name -> google.protobuf.Timestamp - 957, // 754: forge.UfmBrowseResponse.headers:type_name -> forge.UfmBrowseResponse.HeadersEntry - 674, // 755: forge.NetworkSecurityGroupAttributes.rules:type_name -> forge.NetworkSecurityGroupRuleAttributes - 256, // 756: forge.NetworkSecurityGroup.metadata:type_name -> forge.Metadata - 657, // 757: forge.NetworkSecurityGroup.attributes:type_name -> forge.NetworkSecurityGroupAttributes - 256, // 758: forge.CreateNetworkSecurityGroupRequest.metadata:type_name -> forge.Metadata - 657, // 759: forge.CreateNetworkSecurityGroupRequest.network_security_group_attributes:type_name -> forge.NetworkSecurityGroupAttributes - 658, // 760: forge.CreateNetworkSecurityGroupResponse.network_security_group:type_name -> forge.NetworkSecurityGroup - 658, // 761: forge.FindNetworkSecurityGroupsByIdsResponse.network_security_groups:type_name -> forge.NetworkSecurityGroup - 658, // 762: forge.UpdateNetworkSecurityGroupResponse.network_security_group:type_name -> forge.NetworkSecurityGroup - 256, // 763: forge.UpdateNetworkSecurityGroupRequest.metadata:type_name -> forge.Metadata - 657, // 764: forge.UpdateNetworkSecurityGroupRequest.network_security_group_attributes:type_name -> forge.NetworkSecurityGroupAttributes - 51, // 765: forge.NetworkSecurityGroupStatus.source:type_name -> forge.NetworkSecurityGroupSource - 52, // 766: forge.NetworkSecurityGroupPropagationObjectStatus.status:type_name -> forge.NetworkSecurityGroupPropagationStatus - 670, // 767: forge.GetNetworkSecurityGroupPropagationStatusResponse.vpcs:type_name -> forge.NetworkSecurityGroupPropagationObjectStatus - 670, // 768: forge.GetNetworkSecurityGroupPropagationStatusResponse.instances:type_name -> forge.NetworkSecurityGroupPropagationObjectStatus - 672, // 769: forge.GetNetworkSecurityGroupPropagationStatusRequest.network_security_group_ids:type_name -> forge.NetworkSecurityGroupIdList - 53, // 770: forge.NetworkSecurityGroupRuleAttributes.direction:type_name -> forge.NetworkSecurityGroupRuleDirection - 54, // 771: forge.NetworkSecurityGroupRuleAttributes.protocol:type_name -> forge.NetworkSecurityGroupRuleProtocol - 55, // 772: forge.NetworkSecurityGroupRuleAttributes.action:type_name -> forge.NetworkSecurityGroupRuleAction - 674, // 773: forge.ResolvedNetworkSecurityGroupRule.rule:type_name -> forge.NetworkSecurityGroupRuleAttributes - 677, // 774: forge.GetNetworkSecurityGroupAttachmentsResponse.attachments:type_name -> forge.NetworkSecurityGroupAttachments - 681, // 775: forge.GetDesiredFirmwareVersionsResponse.entries:type_name -> forge.DesiredFirmwareVersionEntry - 958, // 776: forge.DesiredFirmwareVersionEntry.component_versions:type_name -> forge.DesiredFirmwareVersionEntry.ComponentVersionsEntry - 682, // 777: forge.SkuComponents.chassis:type_name -> forge.SkuComponentChassis - 683, // 778: forge.SkuComponents.cpus:type_name -> forge.SkuComponentCpu - 684, // 779: forge.SkuComponents.gpus:type_name -> forge.SkuComponentGpu - 685, // 780: forge.SkuComponents.ethernet_devices:type_name -> forge.SkuComponentEthernetDevices - 686, // 781: forge.SkuComponents.infiniband_devices:type_name -> forge.SkuComponentInfinibandDevices - 687, // 782: forge.SkuComponents.storage:type_name -> forge.SkuComponentStorage - 689, // 783: forge.SkuComponents.memory:type_name -> forge.SkuComponentMemory - 690, // 784: forge.SkuComponents.tpm:type_name -> forge.SkuComponentTpm - 962, // 785: forge.Sku.created:type_name -> google.protobuf.Timestamp - 691, // 786: forge.Sku.components:type_name -> forge.SkuComponents - 961, // 787: forge.Sku.associated_machine_ids:type_name -> common.MachineId - 961, // 788: forge.SkuMachinePair.machine_id:type_name -> common.MachineId - 961, // 789: forge.RemoveSkuRequest.machine_id:type_name -> common.MachineId - 692, // 790: forge.SkuList.skus:type_name -> forge.Sku - 962, // 791: forge.SkuStatus.verify_request_time:type_name -> google.protobuf.Timestamp - 962, // 792: forge.SkuStatus.last_match_attempt:type_name -> google.protobuf.Timestamp - 962, // 793: forge.SkuStatus.last_generate_attempt:type_name -> google.protobuf.Timestamp - 990, // 794: forge.DpaInterface.id:type_name -> common.DpaInterfaceId - 961, // 795: forge.DpaInterface.machine_id:type_name -> common.MachineId - 962, // 796: forge.DpaInterface.created:type_name -> google.protobuf.Timestamp - 962, // 797: forge.DpaInterface.updated:type_name -> google.protobuf.Timestamp - 962, // 798: forge.DpaInterface.deleted:type_name -> google.protobuf.Timestamp - 220, // 799: forge.DpaInterface.history:type_name -> forge.StateHistoryRecord - 962, // 800: forge.DpaInterface.last_hb_time:type_name -> google.protobuf.Timestamp - 56, // 801: forge.DpaInterface.interface_type:type_name -> forge.DpaInterfaceType - 961, // 802: forge.DpaInterfaceCreationRequest.machine_id:type_name -> common.MachineId - 56, // 803: forge.DpaInterfaceCreationRequest.interface_type:type_name -> forge.DpaInterfaceType - 990, // 804: forge.DpaInterfaceIdList.ids:type_name -> common.DpaInterfaceId - 990, // 805: forge.DpaInterfacesByIdsRequest.ids:type_name -> common.DpaInterfaceId - 700, // 806: forge.DpaInterfaceList.interfaces:type_name -> forge.DpaInterface - 990, // 807: forge.DpaNetworkObservationSetRequest.id:type_name -> common.DpaInterfaceId - 990, // 808: forge.DpaInterfaceDeletionRequest.id:type_name -> common.DpaInterfaceId - 961, // 809: forge.PowerOptionRequest.machine_id:type_name -> common.MachineId - 961, // 810: forge.PowerOptionUpdateRequest.machine_id:type_name -> common.MachineId - 57, // 811: forge.PowerOptionUpdateRequest.power_state:type_name -> forge.PowerState - 57, // 812: forge.PowerOptions.desired_state:type_name -> forge.PowerState - 962, // 813: forge.PowerOptions.desired_state_updated_at:type_name -> google.protobuf.Timestamp - 57, // 814: forge.PowerOptions.actual_state:type_name -> forge.PowerState - 962, // 815: forge.PowerOptions.actual_state_updated_at:type_name -> google.protobuf.Timestamp - 961, // 816: forge.PowerOptions.host_id:type_name -> common.MachineId - 962, // 817: forge.PowerOptions.next_power_state_fetch_at:type_name -> google.protobuf.Timestamp - 962, // 818: forge.PowerOptions.tried_triggering_on_at:type_name -> google.protobuf.Timestamp - 962, // 819: forge.PowerOptions.wait_until_time_before_performing_next_power_action:type_name -> google.protobuf.Timestamp - 711, // 820: forge.PowerOptionResponse.response:type_name -> forge.PowerOptions - 991, // 821: forge.ComputeAllocation.id:type_name -> common.ComputeAllocationId - 713, // 822: forge.ComputeAllocation.attributes:type_name -> forge.ComputeAllocationAttributes - 256, // 823: forge.ComputeAllocation.metadata:type_name -> forge.Metadata - 991, // 824: forge.CreateComputeAllocationRequest.id:type_name -> common.ComputeAllocationId - 256, // 825: forge.CreateComputeAllocationRequest.metadata:type_name -> forge.Metadata - 713, // 826: forge.CreateComputeAllocationRequest.attributes:type_name -> forge.ComputeAllocationAttributes - 714, // 827: forge.CreateComputeAllocationResponse.allocation:type_name -> forge.ComputeAllocation - 991, // 828: forge.FindComputeAllocationIdsResponse.ids:type_name -> common.ComputeAllocationId - 991, // 829: forge.FindComputeAllocationsByIdsRequest.ids:type_name -> common.ComputeAllocationId - 714, // 830: forge.FindComputeAllocationsByIdsResponse.allocations:type_name -> forge.ComputeAllocation - 714, // 831: forge.UpdateComputeAllocationResponse.allocation:type_name -> forge.ComputeAllocation - 991, // 832: forge.UpdateComputeAllocationRequest.id:type_name -> common.ComputeAllocationId - 256, // 833: forge.UpdateComputeAllocationRequest.metadata:type_name -> forge.Metadata - 713, // 834: forge.UpdateComputeAllocationRequest.attributes:type_name -> forge.ComputeAllocationAttributes - 991, // 835: forge.DeleteComputeAllocationRequest.id:type_name -> common.ComputeAllocationId - 732, // 836: forge.GetRackResponse.rack:type_name -> forge.Rack - 732, // 837: forge.RackList.racks:type_name -> forge.Rack - 255, // 838: forge.RackSearchFilter.label:type_name -> forge.Label - 971, // 839: forge.RackIdList.rack_ids:type_name -> common.RackId - 971, // 840: forge.RacksByIdsRequest.rack_ids:type_name -> common.RackId - 971, // 841: forge.Rack.id:type_name -> common.RackId - 962, // 842: forge.Rack.created:type_name -> google.protobuf.Timestamp - 962, // 843: forge.Rack.updated:type_name -> google.protobuf.Timestamp - 962, // 844: forge.Rack.deleted:type_name -> google.protobuf.Timestamp - 256, // 845: forge.Rack.metadata:type_name -> forge.Metadata - 733, // 846: forge.Rack.config:type_name -> forge.RackConfig - 734, // 847: forge.Rack.status:type_name -> forge.RackStatus - 969, // 848: forge.RackStatus.health:type_name -> health.HealthReport - 340, // 849: forge.RackStatus.health_sources:type_name -> forge.HealthSourceOrigin - 87, // 850: forge.RackStatus.lifecycle:type_name -> forge.LifecycleStatus - 971, // 851: forge.RackStateHistoriesRequest.rack_ids:type_name -> common.RackId - 971, // 852: forge.AdminForceDeleteRackRequest.rack_id:type_name -> common.RackId - 739, // 853: forge.RackCapabilitiesSet.compute:type_name -> forge.RackCapabilityCompute - 740, // 854: forge.RackCapabilitiesSet.switch:type_name -> forge.RackCapabilitySwitch - 741, // 855: forge.RackCapabilitiesSet.power_shelf:type_name -> forge.RackCapabilityPowerShelf - 992, // 856: forge.RackProfile.rack_hardware_type:type_name -> common.RackHardwareType - 58, // 857: forge.RackProfile.rack_hardware_topology:type_name -> forge.RackHardwareTopology - 60, // 858: forge.RackProfile.rack_hardware_class:type_name -> forge.RackHardwareClass - 742, // 859: forge.RackProfile.capabilities:type_name -> forge.RackCapabilitiesSet - 59, // 860: forge.RackProfile.product_family:type_name -> forge.RackProductFamily - 971, // 861: forge.GetRackProfileRequest.rack_id:type_name -> common.RackId - 971, // 862: forge.GetRackProfileResponse.rack_id:type_name -> common.RackId - 974, // 863: forge.GetRackProfileResponse.rack_profile_id:type_name -> common.RackProfileId - 743, // 864: forge.GetRackProfileResponse.profile:type_name -> forge.RackProfile - 61, // 865: forge.RackManagerForgeRequest.cmd:type_name -> forge.RackManagerForgeCmd - 981, // 866: forge.MachineNVLinkInfo.domain_uuid:type_name -> common.NVLinkDomainId - 752, // 867: forge.MachineNVLinkInfo.gpus:type_name -> forge.NVLinkGpu - 961, // 868: forge.UpdateMachineNvLinkInfoRequest.machine_id:type_name -> common.MachineId - 748, // 869: forge.UpdateMachineNvLinkInfoRequest.nvlink_info:type_name -> forge.MachineNVLinkInfo - 751, // 870: forge.MachineSpxStatusObservation.attachment_status:type_name -> forge.MachineSpxAttachmentStatusObservation - 962, // 871: forge.MachineSpxStatusObservation.observed_at:type_name -> google.protobuf.Timestamp - 980, // 872: forge.MachineSpxAttachmentStatusObservation.partition_id:type_name -> common.SpxPartitionId - 15, // 873: forge.MachineSpxAttachmentStatusObservation.attachment_type:type_name -> forge.SpxAttachmentType - 962, // 874: forge.MachineSpxAttachmentStatusObservation.observed_at:type_name -> google.protobuf.Timestamp - 754, // 875: forge.MachineNVLinkStatusObservation.gpu_status:type_name -> forge.MachineNVLinkGpuStatusObservation - 993, // 876: forge.MachineNVLinkGpuStatusObservation.partition_id:type_name -> common.NVLinkPartitionId - 965, // 877: forge.MachineNVLinkGpuStatusObservation.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 981, // 878: forge.MachineNVLinkGpuStatusObservation.domain_id:type_name -> common.NVLinkDomainId - 62, // 879: forge.NmxcBrowseRequest.operation:type_name -> forge.NmxcBrowseOperation - 959, // 880: forge.NmxcBrowseResponse.headers:type_name -> forge.NmxcBrowseResponse.HeadersEntry - 993, // 881: forge.NVLinkPartition.id:type_name -> common.NVLinkPartitionId - 981, // 882: forge.NVLinkPartition.domain_uuid:type_name -> common.NVLinkDomainId - 965, // 883: forge.NVLinkPartition.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId - 757, // 884: forge.NVLinkPartitionList.partitions:type_name -> forge.NVLinkPartition - 972, // 885: forge.NVLinkPartitionQuery.id:type_name -> common.UUID - 759, // 886: forge.NVLinkPartitionQuery.search_config:type_name -> forge.NVLinkPartitionSearchConfig - 993, // 887: forge.NVLinkPartitionsByIdsRequest.partition_ids:type_name -> common.NVLinkPartitionId - 993, // 888: forge.NVLinkPartitionIdList.partition_ids:type_name -> common.NVLinkPartitionId - 256, // 889: forge.NVLinkLogicalPartitionConfig.metadata:type_name -> forge.Metadata - 7, // 890: forge.NVLinkLogicalPartitionStatus.state:type_name -> forge.TenantState - 965, // 891: forge.NVLinkLogicalPartition.id:type_name -> common.NVLinkLogicalPartitionId - 765, // 892: forge.NVLinkLogicalPartition.config:type_name -> forge.NVLinkLogicalPartitionConfig - 766, // 893: forge.NVLinkLogicalPartition.status:type_name -> forge.NVLinkLogicalPartitionStatus - 962, // 894: forge.NVLinkLogicalPartition.created:type_name -> google.protobuf.Timestamp - 767, // 895: forge.NVLinkLogicalPartitionList.partitions:type_name -> forge.NVLinkLogicalPartition - 765, // 896: forge.NVLinkLogicalPartitionCreationRequest.config:type_name -> forge.NVLinkLogicalPartitionConfig - 965, // 897: forge.NVLinkLogicalPartitionCreationRequest.id:type_name -> common.NVLinkLogicalPartitionId - 965, // 898: forge.NVLinkLogicalPartitionDeletionRequest.id:type_name -> common.NVLinkLogicalPartitionId - 965, // 899: forge.NVLinkLogicalPartitionsByIdsRequest.partition_ids:type_name -> common.NVLinkLogicalPartitionId - 965, // 900: forge.NVLinkLogicalPartitionIdList.partition_ids:type_name -> common.NVLinkLogicalPartitionId - 965, // 901: forge.NVLinkLogicalPartitionUpdateRequest.id:type_name -> common.NVLinkLogicalPartitionId - 765, // 902: forge.NVLinkLogicalPartitionUpdateRequest.config:type_name -> forge.NVLinkLogicalPartitionConfig - 367, // 903: forge.CreateBmcUserRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 367, // 904: forge.DeleteBmcUserRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest - 961, // 905: forge.SetFirmwareUpdateTimeWindowRequest.machine_ids:type_name -> common.MachineId - 962, // 906: forge.SetFirmwareUpdateTimeWindowRequest.start_timestamp:type_name -> google.protobuf.Timestamp - 962, // 907: forge.SetFirmwareUpdateTimeWindowRequest.end_timestamp:type_name -> google.protobuf.Timestamp - 785, // 908: forge.ListHostFirmwareResponse.available:type_name -> forge.AvailableHostFirmware - 63, // 909: forge.TrimTableRequest.target:type_name -> forge.TrimTableTarget - 788, // 910: forge.NvlinkNmxcEndpointList.entries:type_name -> forge.NvlinkNmxcEndpoint - 256, // 911: forge.CreateRemediationRequest.metadata:type_name -> forge.Metadata - 994, // 912: forge.CreateRemediationResponse.remediation_id:type_name -> common.RemediationId - 994, // 913: forge.RemediationIdList.remediation_ids:type_name -> common.RemediationId - 795, // 914: forge.RemediationList.remediations:type_name -> forge.Remediation - 994, // 915: forge.Remediation.id:type_name -> common.RemediationId - 256, // 916: forge.Remediation.metadata:type_name -> forge.Metadata - 962, // 917: forge.Remediation.creation_time:type_name -> google.protobuf.Timestamp - 994, // 918: forge.ApproveRemediationRequest.remediation_id:type_name -> common.RemediationId - 994, // 919: forge.RevokeRemediationRequest.remediation_id:type_name -> common.RemediationId - 994, // 920: forge.EnableRemediationRequest.remediation_id:type_name -> common.RemediationId - 994, // 921: forge.DisableRemediationRequest.remediation_id:type_name -> common.RemediationId - 994, // 922: forge.FindAppliedRemediationIdsRequest.remediation_id:type_name -> common.RemediationId - 961, // 923: forge.FindAppliedRemediationIdsRequest.dpu_machine_id:type_name -> common.MachineId - 994, // 924: forge.AppliedRemediationIdList.remediation_ids:type_name -> common.RemediationId - 961, // 925: forge.AppliedRemediationIdList.dpu_machine_ids:type_name -> common.MachineId - 994, // 926: forge.FindAppliedRemediationsRequest.remediation_id:type_name -> common.RemediationId - 961, // 927: forge.FindAppliedRemediationsRequest.dpu_machine_id:type_name -> common.MachineId - 994, // 928: forge.AppliedRemediation.remediation_id:type_name -> common.RemediationId - 961, // 929: forge.AppliedRemediation.dpu_machine_id:type_name -> common.MachineId - 962, // 930: forge.AppliedRemediation.applied_time:type_name -> google.protobuf.Timestamp - 256, // 931: forge.AppliedRemediation.metadata:type_name -> forge.Metadata - 803, // 932: forge.AppliedRemediationList.applied_remediations:type_name -> forge.AppliedRemediation - 961, // 933: forge.GetNextRemediationForMachineRequest.dpu_machine_id:type_name -> common.MachineId - 994, // 934: forge.GetNextRemediationForMachineResponse.remediation_id:type_name -> common.RemediationId - 994, // 935: forge.RemediationAppliedRequest.remediation_id:type_name -> common.RemediationId - 961, // 936: forge.RemediationAppliedRequest.dpu_machine_id:type_name -> common.MachineId - 808, // 937: forge.RemediationAppliedRequest.status:type_name -> forge.RemediationApplicationStatus - 256, // 938: forge.RemediationApplicationStatus.metadata:type_name -> forge.Metadata - 961, // 939: forge.SetPrimaryDpuRequest.host_machine_id:type_name -> common.MachineId - 961, // 940: forge.SetPrimaryDpuRequest.dpu_machine_id:type_name -> common.MachineId - 961, // 941: forge.SetPrimaryInterfaceRequest.host_machine_id:type_name -> common.MachineId - 982, // 942: forge.SetPrimaryInterfaceRequest.interface_id:type_name -> common.MachineInterfaceId - 811, // 943: forge.DpuExtensionServiceCredential.username_password:type_name -> forge.UsernamePassword - 832, // 944: forge.DpuExtensionServiceVersionInfo.observability:type_name -> forge.DpuExtensionServiceObservability - 64, // 945: forge.DpuExtensionService.service_type:type_name -> forge.DpuExtensionServiceType - 814, // 946: forge.DpuExtensionService.latest_version_info:type_name -> forge.DpuExtensionServiceVersionInfo - 64, // 947: forge.CreateDpuExtensionServiceRequest.service_type:type_name -> forge.DpuExtensionServiceType - 813, // 948: forge.CreateDpuExtensionServiceRequest.credential:type_name -> forge.DpuExtensionServiceCredential - 832, // 949: forge.CreateDpuExtensionServiceRequest.observability:type_name -> forge.DpuExtensionServiceObservability - 813, // 950: forge.UpdateDpuExtensionServiceRequest.credential:type_name -> forge.DpuExtensionServiceCredential - 832, // 951: forge.UpdateDpuExtensionServiceRequest.observability:type_name -> forge.DpuExtensionServiceObservability - 64, // 952: forge.DpuExtensionServiceSearchFilter.service_type:type_name -> forge.DpuExtensionServiceType - 815, // 953: forge.DpuExtensionServiceList.services:type_name -> forge.DpuExtensionService - 814, // 954: forge.DpuExtensionServiceVersionInfoList.version_infos:type_name -> forge.DpuExtensionServiceVersionInfo - 828, // 955: forge.FindInstancesByDpuExtensionServiceResponse.instances:type_name -> forge.InstanceDpuExtensionServiceInfo - 829, // 956: forge.DpuExtensionServiceObservabilityConfig.prometheus:type_name -> forge.DpuExtensionServiceObservabilityConfigPrometheus - 830, // 957: forge.DpuExtensionServiceObservabilityConfig.logging:type_name -> forge.DpuExtensionServiceObservabilityConfigLogging - 831, // 958: forge.DpuExtensionServiceObservability.configs:type_name -> forge.DpuExtensionServiceObservabilityConfig - 972, // 959: forge.ScoutStreamApiBoundMessage.flow_uuid:type_name -> common.UUID - 835, // 960: forge.ScoutStreamApiBoundMessage.init:type_name -> forge.ScoutStreamInitRequest - 995, // 961: forge.ScoutStreamApiBoundMessage.mlx_device_lockdown_response:type_name -> mlx_device.MlxDeviceLockdownResponse - 996, // 962: forge.ScoutStreamApiBoundMessage.mlx_device_profile_sync_response:type_name -> mlx_device.MlxDeviceProfileSyncResponse - 997, // 963: forge.ScoutStreamApiBoundMessage.mlx_device_profile_compare_response:type_name -> mlx_device.MlxDeviceProfileCompareResponse - 998, // 964: forge.ScoutStreamApiBoundMessage.mlx_device_info_device_response:type_name -> mlx_device.MlxDeviceInfoDeviceResponse - 999, // 965: forge.ScoutStreamApiBoundMessage.mlx_device_info_report_response:type_name -> mlx_device.MlxDeviceInfoReportResponse - 1000, // 966: forge.ScoutStreamApiBoundMessage.mlx_device_registry_list_response:type_name -> mlx_device.MlxDeviceRegistryListResponse - 1001, // 967: forge.ScoutStreamApiBoundMessage.mlx_device_registry_show_response:type_name -> mlx_device.MlxDeviceRegistryShowResponse - 1002, // 968: forge.ScoutStreamApiBoundMessage.mlx_device_config_query_response:type_name -> mlx_device.MlxDeviceConfigQueryResponse - 1003, // 969: forge.ScoutStreamApiBoundMessage.mlx_device_config_set_response:type_name -> mlx_device.MlxDeviceConfigSetResponse - 1004, // 970: forge.ScoutStreamApiBoundMessage.mlx_device_config_sync_response:type_name -> mlx_device.MlxDeviceConfigSyncResponse - 1005, // 971: forge.ScoutStreamApiBoundMessage.mlx_device_config_compare_response:type_name -> mlx_device.MlxDeviceConfigCompareResponse - 843, // 972: forge.ScoutStreamApiBoundMessage.scout_stream_agent_ping_response:type_name -> forge.ScoutStreamAgentPingResponse - 972, // 973: forge.ScoutStreamScoutBoundMessage.flow_uuid:type_name -> common.UUID - 1006, // 974: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_lock_request:type_name -> mlx_device.MlxDeviceLockdownLockRequest - 1007, // 975: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_unlock_request:type_name -> mlx_device.MlxDeviceLockdownUnlockRequest - 1008, // 976: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_status_request:type_name -> mlx_device.MlxDeviceLockdownStatusRequest - 1009, // 977: forge.ScoutStreamScoutBoundMessage.mlx_device_profile_sync_request:type_name -> mlx_device.MlxDeviceProfileSyncRequest - 1010, // 978: forge.ScoutStreamScoutBoundMessage.mlx_device_profile_compare_request:type_name -> mlx_device.MlxDeviceProfileCompareRequest - 1011, // 979: forge.ScoutStreamScoutBoundMessage.mlx_device_info_device_request:type_name -> mlx_device.MlxDeviceInfoDeviceRequest - 1012, // 980: forge.ScoutStreamScoutBoundMessage.mlx_device_info_report_request:type_name -> mlx_device.MlxDeviceInfoReportRequest - 1013, // 981: forge.ScoutStreamScoutBoundMessage.mlx_device_registry_list_request:type_name -> mlx_device.MlxDeviceRegistryListRequest - 1014, // 982: forge.ScoutStreamScoutBoundMessage.mlx_device_registry_show_request:type_name -> mlx_device.MlxDeviceRegistryShowRequest - 1015, // 983: forge.ScoutStreamScoutBoundMessage.mlx_device_config_query_request:type_name -> mlx_device.MlxDeviceConfigQueryRequest - 1016, // 984: forge.ScoutStreamScoutBoundMessage.mlx_device_config_set_request:type_name -> mlx_device.MlxDeviceConfigSetRequest - 1017, // 985: forge.ScoutStreamScoutBoundMessage.mlx_device_config_sync_request:type_name -> mlx_device.MlxDeviceConfigSyncRequest - 1018, // 986: forge.ScoutStreamScoutBoundMessage.mlx_device_config_compare_request:type_name -> mlx_device.MlxDeviceConfigCompareRequest - 842, // 987: forge.ScoutStreamScoutBoundMessage.scout_stream_agent_ping_request:type_name -> forge.ScoutStreamAgentPingRequest - 961, // 988: forge.ScoutStreamInitRequest.machine_id:type_name -> common.MachineId - 844, // 989: forge.ScoutStreamShowConnectionsResponse.scout_stream_connections:type_name -> forge.ScoutStreamConnectionInfo - 961, // 990: forge.ScoutStreamDisconnectRequest.machine_id:type_name -> common.MachineId - 961, // 991: forge.ScoutStreamDisconnectResponse.machine_id:type_name -> common.MachineId - 961, // 992: forge.ScoutStreamAdminPingRequest.machine_id:type_name -> common.MachineId - 845, // 993: forge.ScoutStreamAgentPingResponse.error:type_name -> forge.ScoutStreamError - 961, // 994: forge.ScoutStreamConnectionInfo.machine_id:type_name -> common.MachineId - 66, // 995: forge.ScoutStreamError.status:type_name -> forge.ScoutStreamErrorStatus - 987, // 996: forge.RoutingProfile.route_target_imports:type_name -> common.RouteTarget - 987, // 997: forge.RoutingProfile.route_targets_on_exports:type_name -> common.RouteTarget - 846, // 998: forge.RoutingProfile.accepted_leaks_from_underlay:type_name -> forge.PrefixFilterPolicyEntry - 846, // 999: forge.RoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry - 963, // 1000: forge.DomainLegacy.id:type_name -> common.DomainId - 962, // 1001: forge.DomainLegacy.created:type_name -> google.protobuf.Timestamp - 962, // 1002: forge.DomainLegacy.updated:type_name -> google.protobuf.Timestamp - 962, // 1003: forge.DomainLegacy.deleted:type_name -> google.protobuf.Timestamp - 848, // 1004: forge.DomainListLegacy.domains:type_name -> forge.DomainLegacy - 963, // 1005: forge.DomainDeletionLegacy.id:type_name -> common.DomainId - 963, // 1006: forge.DomainSearchQueryLegacy.id:type_name -> common.DomainId - 139, // 1007: forge.PxeDomain.legacy_domain:type_name -> forge.Domain - 961, // 1008: forge.MachinePositionQuery.machine_ids:type_name -> common.MachineId - 856, // 1009: forge.MachinePositionInfoList.machine_position_info:type_name -> forge.MachinePositionInfo - 961, // 1010: forge.MachinePositionInfo.machine_id:type_name -> common.MachineId - 973, // 1011: forge.MachinePositionInfo.switch_id:type_name -> common.SwitchId - 970, // 1012: forge.MachinePositionInfo.power_shelf_id:type_name -> common.PowerShelfId - 961, // 1013: forge.ModifyDPFStateRequest.machine_id:type_name -> common.MachineId - 960, // 1014: forge.DPFStateResponse.dpf_states:type_name -> forge.DPFStateResponse.DPFState - 961, // 1015: forge.GetDPFStateRequest.machine_ids:type_name -> common.MachineId - 961, // 1016: forge.GetDPFHostSnapshotRequest.host_machine_id:type_name -> common.MachineId - 863, // 1017: forge.DPFServiceVersionsResponse.services:type_name -> forge.DPFServiceVersion - 67, // 1018: forge.ComponentResult.status:type_name -> forge.ComponentManagerStatusCode - 973, // 1019: forge.SwitchIdList.ids:type_name -> common.SwitchId - 970, // 1020: forge.PowerShelfIdList.ids:type_name -> common.PowerShelfId - 1019, // 1021: forge.GetComponentInventoryRequest.machine_ids:type_name -> common.MachineIdList - 866, // 1022: forge.GetComponentInventoryRequest.switch_ids:type_name -> forge.SwitchIdList - 867, // 1023: forge.GetComponentInventoryRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList - 865, // 1024: forge.ComponentInventoryEntry.result:type_name -> forge.ComponentResult - 1020, // 1025: forge.ComponentInventoryEntry.report:type_name -> site_explorer.EndpointExplorationReport - 869, // 1026: forge.GetComponentInventoryResponse.entries:type_name -> forge.ComponentInventoryEntry - 1019, // 1027: forge.ComponentPowerControlRequest.machine_ids:type_name -> common.MachineIdList - 866, // 1028: forge.ComponentPowerControlRequest.switch_ids:type_name -> forge.SwitchIdList - 867, // 1029: forge.ComponentPowerControlRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList - 1021, // 1030: forge.ComponentPowerControlRequest.action:type_name -> common.SystemPowerControl - 865, // 1031: forge.ComponentPowerControlResponse.results:type_name -> forge.ComponentResult - 865, // 1032: forge.FirmwareUpdateStatus.result:type_name -> forge.ComponentResult - 68, // 1033: forge.FirmwareUpdateStatus.state:type_name -> forge.FirmwareUpdateState - 962, // 1034: forge.FirmwareUpdateStatus.updated_at:type_name -> google.protobuf.Timestamp - 1019, // 1035: forge.UpdateComputeTrayFirmwareTarget.machine_ids:type_name -> common.MachineIdList - 71, // 1036: forge.UpdateComputeTrayFirmwareTarget.components:type_name -> forge.ComputeTrayComponent - 866, // 1037: forge.UpdateSwitchFirmwareTarget.switch_ids:type_name -> forge.SwitchIdList - 69, // 1038: forge.UpdateSwitchFirmwareTarget.components:type_name -> forge.NvSwitchComponent - 867, // 1039: forge.UpdatePowerShelfFirmwareTarget.power_shelf_ids:type_name -> forge.PowerShelfIdList - 70, // 1040: forge.UpdatePowerShelfFirmwareTarget.components:type_name -> forge.PowerShelfComponent - 730, // 1041: forge.UpdateFirmwareObjectTarget.rack_ids:type_name -> forge.RackIdList - 874, // 1042: forge.UpdateComponentFirmwareRequest.compute_trays:type_name -> forge.UpdateComputeTrayFirmwareTarget - 875, // 1043: forge.UpdateComponentFirmwareRequest.switches:type_name -> forge.UpdateSwitchFirmwareTarget - 876, // 1044: forge.UpdateComponentFirmwareRequest.power_shelves:type_name -> forge.UpdatePowerShelfFirmwareTarget - 877, // 1045: forge.UpdateComponentFirmwareRequest.racks:type_name -> forge.UpdateFirmwareObjectTarget - 865, // 1046: forge.UpdateComponentFirmwareResponse.results:type_name -> forge.ComponentResult - 1019, // 1047: forge.GetComponentFirmwareStatusRequest.machine_ids:type_name -> common.MachineIdList - 866, // 1048: forge.GetComponentFirmwareStatusRequest.switch_ids:type_name -> forge.SwitchIdList - 867, // 1049: forge.GetComponentFirmwareStatusRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList - 730, // 1050: forge.GetComponentFirmwareStatusRequest.rack_ids:type_name -> forge.RackIdList - 873, // 1051: forge.GetComponentFirmwareStatusResponse.statuses:type_name -> forge.FirmwareUpdateStatus - 1019, // 1052: forge.ListComponentFirmwareVersionsRequest.machine_ids:type_name -> common.MachineIdList - 866, // 1053: forge.ListComponentFirmwareVersionsRequest.switch_ids:type_name -> forge.SwitchIdList - 867, // 1054: forge.ListComponentFirmwareVersionsRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList - 730, // 1055: forge.ListComponentFirmwareVersionsRequest.rack_ids:type_name -> forge.RackIdList - 71, // 1056: forge.ComputeTrayFirmwareVersions.component:type_name -> forge.ComputeTrayComponent - 865, // 1057: forge.DeviceFirmwareVersions.result:type_name -> forge.ComponentResult - 883, // 1058: forge.DeviceFirmwareVersions.compute_fw_versions:type_name -> forge.ComputeTrayFirmwareVersions - 884, // 1059: forge.ListComponentFirmwareVersionsResponse.devices:type_name -> forge.DeviceFirmwareVersions - 256, // 1060: forge.SpxPartitionCreationRequest.metadata:type_name -> forge.Metadata - 980, // 1061: forge.SpxPartitionCreationRequest.id:type_name -> common.SpxPartitionId - 256, // 1062: forge.SpxPartition.metadata:type_name -> forge.Metadata - 980, // 1063: forge.SpxPartition.id:type_name -> common.SpxPartitionId - 980, // 1064: forge.SpxPartitionIdList.spx_partition_ids:type_name -> common.SpxPartitionId - 980, // 1065: forge.SpxPartitionDeletionRequest.id:type_name -> common.SpxPartitionId - 255, // 1066: forge.SpxPartitionSearchFilter.label:type_name -> forge.Label - 887, // 1067: forge.SpxPartitionList.spx_partitions:type_name -> forge.SpxPartition - 980, // 1068: forge.SpxPartitionsByIdsRequest.spx_partition_ids:type_name -> common.SpxPartitionId - 973, // 1069: forge.AdminForceDeleteSwitchRequest.switch_id:type_name -> common.SwitchId - 970, // 1070: forge.AdminForceDeletePowerShelfRequest.power_shelf_id:type_name -> common.PowerShelfId - 979, // 1071: forge.OperatingSystem.id:type_name -> common.OperatingSystemId - 72, // 1072: forge.OperatingSystem.type:type_name -> forge.OperatingSystemType - 7, // 1073: forge.OperatingSystem.status:type_name -> forge.TenantState - 978, // 1074: forge.OperatingSystem.ipxe_template_id:type_name -> common.IpxeTemplateId - 263, // 1075: forge.OperatingSystem.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameter - 264, // 1076: forge.OperatingSystem.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifact - 979, // 1077: forge.CreateOperatingSystemRequest.id:type_name -> common.OperatingSystemId - 978, // 1078: forge.CreateOperatingSystemRequest.ipxe_template_id:type_name -> common.IpxeTemplateId - 263, // 1079: forge.CreateOperatingSystemRequest.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameter - 264, // 1080: forge.CreateOperatingSystemRequest.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifact - 263, // 1081: forge.IpxeTemplateParameters.items:type_name -> forge.IpxeTemplateParameter - 264, // 1082: forge.IpxeTemplateArtifacts.items:type_name -> forge.IpxeTemplateArtifact - 979, // 1083: forge.UpdateOperatingSystemRequest.id:type_name -> common.OperatingSystemId - 978, // 1084: forge.UpdateOperatingSystemRequest.ipxe_template_id:type_name -> common.IpxeTemplateId - 900, // 1085: forge.UpdateOperatingSystemRequest.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameters - 901, // 1086: forge.UpdateOperatingSystemRequest.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifacts - 979, // 1087: forge.DeleteOperatingSystemRequest.id:type_name -> common.OperatingSystemId - 979, // 1088: forge.OperatingSystemIdList.ids:type_name -> common.OperatingSystemId - 979, // 1089: forge.OperatingSystemsByIdsRequest.ids:type_name -> common.OperatingSystemId - 898, // 1090: forge.OperatingSystemList.operating_systems:type_name -> forge.OperatingSystem - 979, // 1091: forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest.id:type_name -> common.OperatingSystemId - 264, // 1092: forge.IpxeTemplateArtifactList.artifacts:type_name -> forge.IpxeTemplateArtifact - 979, // 1093: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest.id:type_name -> common.OperatingSystemId - 911, // 1094: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest.updates:type_name -> forge.IpxeTemplateArtifactUpdateRequest - 961, // 1095: forge.GetMachineBootInterfacesRequest.machine_id:type_name -> common.MachineId - 962, // 1096: forge.RetainedBootInterface.recorded_at:type_name -> google.protobuf.Timestamp - 961, // 1097: forge.GetMachineBootInterfacesResponse.machine_id:type_name -> common.MachineId - 917, // 1098: forge.GetMachineBootInterfacesResponse.machine_interfaces:type_name -> forge.MachineInterfaceBootInterface - 918, // 1099: forge.GetMachineBootInterfacesResponse.predicted_interfaces:type_name -> forge.PredictedBootInterface - 919, // 1100: forge.GetMachineBootInterfacesResponse.explored_endpoints:type_name -> forge.ExploredBootInterface - 920, // 1101: forge.GetMachineBootInterfacesResponse.retained_interfaces:type_name -> forge.RetainedBootInterface - 925, // 1102: forge.DNSMessage.DNSResponse.rrs:type_name -> forge.DNSMessage.DNSResponse.DNSRR - 221, // 1103: forge.StateHistories.HistoriesEntry.value:type_name -> forge.StateHistoryRecords - 308, // 1104: forge.MachineStateHistories.HistoriesEntry.value:type_name -> forge.MachineStateHistoryRecords - 311, // 1105: forge.HealthHistories.HistoriesEntry.value:type_name -> forge.HealthHistoryRecords - 913, // 1106: forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry.value:type_name -> forge.HostRepresentorInterceptBridging - 75, // 1107: forge.MachineCredentialsUpdateRequest.Credentials.credential_purpose:type_name -> forge.MachineCredentialsUpdateRequest.CredentialPurpose - 950, // 1108: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.pair:type_name -> forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.KeyValuePair - 988, // 1109: forge.ForgeAgentControlResponse.MachineValidation.validation_id:type_name -> common.MachineValidationId - 941, // 1110: forge.ForgeAgentControlResponse.MachineValidation.filter:type_name -> forge.ForgeAgentControlResponse.MachineValidationFilter - 985, // 1111: forge.ForgeAgentControlResponse.MachineValidationFilter.contexts:type_name -> common.StringList - 943, // 1112: forge.ForgeAgentControlResponse.MlxAction.device_actions:type_name -> forge.ForgeAgentControlResponse.MlxDeviceAction - 944, // 1113: forge.ForgeAgentControlResponse.MlxDeviceAction.noop:type_name -> forge.ForgeAgentControlResponse.MlxDeviceNoop - 945, // 1114: forge.ForgeAgentControlResponse.MlxDeviceAction.lock:type_name -> forge.ForgeAgentControlResponse.MlxDeviceLock - 946, // 1115: forge.ForgeAgentControlResponse.MlxDeviceAction.unlock:type_name -> forge.ForgeAgentControlResponse.MlxDeviceUnlock - 947, // 1116: forge.ForgeAgentControlResponse.MlxDeviceAction.apply_profile:type_name -> forge.ForgeAgentControlResponse.MlxDeviceApplyProfile - 948, // 1117: forge.ForgeAgentControlResponse.MlxDeviceAction.apply_firmware:type_name -> forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware - 1022, // 1118: forge.ForgeAgentControlResponse.MlxDeviceApplyProfile.serialized_profile:type_name -> mlx_device.SerializableMlxConfigProfile - 1023, // 1119: forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware.profile:type_name -> mlx_device.FirmwareFlasherProfile - 77, // 1120: forge.MachineCleanupInfo.CleanupStepResult.result:type_name -> forge.MachineCleanupInfo.CleanupResult - 961, // 1121: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.id:type_name -> common.MachineId - 962, // 1122: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.requested_at:type_name -> google.protobuf.Timestamp - 962, // 1123: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.initiated_at:type_name -> google.protobuf.Timestamp - 961, // 1124: forge.HostReprovisioningListResponse.HostReprovisioningListItem.id:type_name -> common.MachineId - 962, // 1125: forge.HostReprovisioningListResponse.HostReprovisioningListItem.requested_at:type_name -> google.protobuf.Timestamp - 962, // 1126: forge.HostReprovisioningListResponse.HostReprovisioningListItem.initiated_at:type_name -> google.protobuf.Timestamp - 961, // 1127: forge.DPFStateResponse.DPFState.machine_id:type_name -> common.MachineId - 130, // 1128: forge.Forge.Version:input_type -> forge.VersionRequest - 848, // 1129: forge.Forge.CreateDomainLegacy:input_type -> forge.DomainLegacy - 848, // 1130: forge.Forge.UpdateDomainLegacy:input_type -> forge.DomainLegacy - 850, // 1131: forge.Forge.DeleteDomainLegacy:input_type -> forge.DomainDeletionLegacy - 852, // 1132: forge.Forge.FindDomainLegacy:input_type -> forge.DomainSearchQueryLegacy - 154, // 1133: forge.Forge.CreateVpc:input_type -> forge.VpcCreationRequest - 155, // 1134: forge.Forge.UpdateVpc:input_type -> forge.VpcUpdateRequest - 157, // 1135: forge.Forge.UpdateVpcVirtualization:input_type -> forge.VpcUpdateVirtualizationRequest - 159, // 1136: forge.Forge.DeleteVpc:input_type -> forge.VpcDeletionRequest - 147, // 1137: forge.Forge.FindVpcIds:input_type -> forge.VpcSearchFilter - 149, // 1138: forge.Forge.FindVpcsByIds:input_type -> forge.VpcsByIdsRequest - 886, // 1139: forge.Forge.CreateSpxPartition:input_type -> forge.SpxPartitionCreationRequest - 889, // 1140: forge.Forge.DeleteSpxPartition:input_type -> forge.SpxPartitionDeletionRequest - 891, // 1141: forge.Forge.FindSpxPartitionIds:input_type -> forge.SpxPartitionSearchFilter - 893, // 1142: forge.Forge.FindSpxPartitionsByIds:input_type -> forge.SpxPartitionsByIdsRequest - 165, // 1143: forge.Forge.CreateVpcPrefix:input_type -> forge.VpcPrefixCreationRequest - 166, // 1144: forge.Forge.SearchVpcPrefixes:input_type -> forge.VpcPrefixSearchQuery - 167, // 1145: forge.Forge.GetVpcPrefixes:input_type -> forge.VpcPrefixGetRequest - 170, // 1146: forge.Forge.UpdateVpcPrefix:input_type -> forge.VpcPrefixUpdateRequest - 171, // 1147: forge.Forge.DeleteVpcPrefix:input_type -> forge.VpcPrefixDeletionRequest - 177, // 1148: forge.Forge.CreateVpcPeering:input_type -> forge.VpcPeeringCreationRequest - 178, // 1149: forge.Forge.FindVpcPeeringIds:input_type -> forge.VpcPeeringSearchFilter - 179, // 1150: forge.Forge.FindVpcPeeringsByIds:input_type -> forge.VpcPeeringsByIdsRequest - 180, // 1151: forge.Forge.DeleteVpcPeering:input_type -> forge.VpcPeeringDeletionRequest - 247, // 1152: forge.Forge.FindNetworkSegmentIds:input_type -> forge.NetworkSegmentSearchFilter - 249, // 1153: forge.Forge.FindNetworkSegmentsByIds:input_type -> forge.NetworkSegmentsByIdsRequest - 241, // 1154: forge.Forge.CreateNetworkSegment:input_type -> forge.NetworkSegmentCreationRequest - 243, // 1155: forge.Forge.AttachNetworkSegmentToVpc:input_type -> forge.AttachNetworkSegmentToVpcRequest - 242, // 1156: forge.Forge.DeleteNetworkSegment:input_type -> forge.NetworkSegmentDeletionRequest - 146, // 1157: forge.Forge.NetworkSegmentsForVpc:input_type -> forge.VpcSearchQuery - 190, // 1158: forge.Forge.FindIBPartitionIds:input_type -> forge.IBPartitionSearchFilter - 191, // 1159: forge.Forge.FindIBPartitionsByIds:input_type -> forge.IBPartitionsByIdsRequest - 186, // 1160: forge.Forge.CreateIBPartition:input_type -> forge.IBPartitionCreationRequest - 187, // 1161: forge.Forge.UpdateIBPartition:input_type -> forge.IBPartitionUpdateRequest - 188, // 1162: forge.Forge.DeleteIBPartition:input_type -> forge.IBPartitionDeletionRequest - 150, // 1163: forge.Forge.IBPartitionsForTenant:input_type -> forge.TenantSearchQuery - 202, // 1164: forge.Forge.FindPowerShelves:input_type -> forge.PowerShelfQuery - 203, // 1165: forge.Forge.FindPowerShelfIds:input_type -> forge.PowerShelfSearchFilter - 204, // 1166: forge.Forge.FindPowerShelvesByIds:input_type -> forge.PowerShelvesByIdsRequest - 198, // 1167: forge.Forge.DeletePowerShelf:input_type -> forge.PowerShelfDeletionRequest - 896, // 1168: forge.Forge.AdminForceDeletePowerShelf:input_type -> forge.AdminForceDeletePowerShelfRequest - 200, // 1169: forge.Forge.SetPowerShelfMaintenance:input_type -> forge.PowerShelfMaintenanceRequest - 224, // 1170: forge.Forge.FindSwitches:input_type -> forge.SwitchQuery - 225, // 1171: forge.Forge.FindSwitchIds:input_type -> forge.SwitchSearchFilter - 226, // 1172: forge.Forge.FindSwitchesByIds:input_type -> forge.SwitchesByIdsRequest - 218, // 1173: forge.Forge.DeleteSwitch:input_type -> forge.SwitchDeletionRequest - 894, // 1174: forge.Forge.AdminForceDeleteSwitch:input_type -> forge.AdminForceDeleteSwitchRequest - 235, // 1175: forge.Forge.FindIBFabricIds:input_type -> forge.IBFabricSearchFilter - 260, // 1176: forge.Forge.AllocateInstance:input_type -> forge.InstanceAllocationRequest - 261, // 1177: forge.Forge.AllocateInstances:input_type -> forge.BatchInstanceAllocationRequest - 302, // 1178: forge.Forge.ReleaseInstance:input_type -> forge.InstanceReleaseRequest - 278, // 1179: forge.Forge.UpdateInstanceOperatingSystem:input_type -> forge.InstanceOperatingSystemUpdateRequest - 279, // 1180: forge.Forge.UpdateInstanceConfig:input_type -> forge.InstanceConfigUpdateRequest - 257, // 1181: forge.Forge.FindInstanceIds:input_type -> forge.InstanceSearchFilter - 259, // 1182: forge.Forge.FindInstancesByIds:input_type -> forge.InstancesByIdsRequest - 961, // 1183: forge.Forge.FindInstanceByMachineID:input_type -> common.MachineId - 373, // 1184: forge.Forge.GetManagedHostNetworkConfig:input_type -> forge.ManagedHostNetworkConfigRequest - 438, // 1185: forge.Forge.RecordDpuNetworkStatus:input_type -> forge.DpuNetworkStatus - 961, // 1186: forge.Forge.ListMachineHealthReports:input_type -> common.MachineId - 444, // 1187: forge.Forge.InsertMachineHealthReport:input_type -> forge.InsertMachineHealthReportRequest - 455, // 1188: forge.Forge.RemoveMachineHealthReport:input_type -> forge.RemoveMachineHealthReportRequest - 447, // 1189: forge.Forge.ListRackHealthReports:input_type -> forge.ListRackHealthReportsRequest - 445, // 1190: forge.Forge.InsertRackHealthReport:input_type -> forge.InsertRackHealthReportRequest - 446, // 1191: forge.Forge.RemoveRackHealthReport:input_type -> forge.RemoveRackHealthReportRequest - 450, // 1192: forge.Forge.ListSwitchHealthReports:input_type -> forge.ListSwitchHealthReportsRequest - 448, // 1193: forge.Forge.InsertSwitchHealthReport:input_type -> forge.InsertSwitchHealthReportRequest - 449, // 1194: forge.Forge.RemoveSwitchHealthReport:input_type -> forge.RemoveSwitchHealthReportRequest - 453, // 1195: forge.Forge.ListPowerShelfHealthReports:input_type -> forge.ListPowerShelfHealthReportsRequest - 451, // 1196: forge.Forge.InsertPowerShelfHealthReport:input_type -> forge.InsertPowerShelfHealthReportRequest - 452, // 1197: forge.Forge.RemovePowerShelfHealthReport:input_type -> forge.RemovePowerShelfHealthReportRequest - 456, // 1198: forge.Forge.ListNVLinkDomainHealthReports:input_type -> forge.ListNVLinkDomainHealthReportsRequest - 457, // 1199: forge.Forge.InsertNVLinkDomainHealthReport:input_type -> forge.InsertNVLinkDomainHealthReportRequest - 458, // 1200: forge.Forge.RemoveNVLinkDomainHealthReport:input_type -> forge.RemoveNVLinkDomainHealthReportRequest - 961, // 1201: forge.Forge.ListHealthReportOverrides:input_type -> common.MachineId - 444, // 1202: forge.Forge.InsertHealthReportOverride:input_type -> forge.InsertMachineHealthReportRequest - 455, // 1203: forge.Forge.RemoveHealthReportOverride:input_type -> forge.RemoveMachineHealthReportRequest - 392, // 1204: forge.Forge.DpuAgentUpgradeCheck:input_type -> forge.DpuAgentUpgradeCheckRequest - 394, // 1205: forge.Forge.DpuAgentUpgradePolicyAction:input_type -> forge.DpuAgentUpgradePolicyRequest - 252, // 1206: forge.Forge.InvokeInstancePower:input_type -> forge.InstancePowerRequest - 419, // 1207: forge.Forge.ForgeAgentControl:input_type -> forge.ForgeAgentControlRequest - 421, // 1208: forge.Forge.DiscoverMachine:input_type -> forge.MachineDiscoveryInfo - 425, // 1209: forge.Forge.RenewMachineCertificate:input_type -> forge.MachineCertificateRenewRequest - 422, // 1210: forge.Forge.DiscoveryCompleted:input_type -> forge.MachineDiscoveryCompletedRequest - 423, // 1211: forge.Forge.CleanupMachineCompleted:input_type -> forge.MachineCleanupInfo - 430, // 1212: forge.Forge.ReportForgeScoutError:input_type -> forge.ForgeScoutErrorReport - 349, // 1213: forge.Forge.DiscoverDhcp:input_type -> forge.DhcpDiscovery - 350, // 1214: forge.Forge.ExpireDhcpLease:input_type -> forge.ExpireDhcpLeaseRequest - 321, // 1215: forge.Forge.AssignStaticAddress:input_type -> forge.AssignStaticAddressRequest - 323, // 1216: forge.Forge.RemoveStaticAddress:input_type -> forge.RemoveStaticAddressRequest - 325, // 1217: forge.Forge.FindInterfaceAddresses:input_type -> forge.FindInterfaceAddressesRequest - 320, // 1218: forge.Forge.FindInterfaces:input_type -> forge.InterfaceSearchQuery - 319, // 1219: forge.Forge.DeleteInterface:input_type -> forge.InterfaceDeleteQuery - 494, // 1220: forge.Forge.FindIpAddress:input_type -> forge.FindIpAddressRequest - 305, // 1221: forge.Forge.FindMachineIds:input_type -> forge.MachineSearchConfig - 304, // 1222: forge.Forge.FindMachinesByIds:input_type -> forge.MachinesByIdsRequest - 306, // 1223: forge.Forge.FindMachineStateHistories:input_type -> forge.MachineStateHistoriesRequest - 309, // 1224: forge.Forge.FindMachineHealthHistories:input_type -> forge.MachineHealthHistoriesRequest - 201, // 1225: forge.Forge.FindPowerShelfStateHistories:input_type -> forge.PowerShelfStateHistoriesRequest - 735, // 1226: forge.Forge.FindRackStateHistories:input_type -> forge.RackStateHistoriesRequest - 222, // 1227: forge.Forge.FindSwitchStateHistories:input_type -> forge.SwitchStateHistoriesRequest - 245, // 1228: forge.Forge.FindNetworkSegmentStateHistories:input_type -> forge.NetworkSegmentStateHistoriesRequest - 173, // 1229: forge.Forge.FindVpcPrefixStateHistories:input_type -> forge.VpcPrefixStateHistoriesRequest - 314, // 1230: forge.Forge.FindTenantOrganizationIds:input_type -> forge.TenantSearchFilter - 313, // 1231: forge.Forge.FindTenantsByOrganizationIds:input_type -> forge.TenantByOrganizationIdsRequest - 1019, // 1232: forge.Forge.FindConnectedDevicesByDpuMachineIds:input_type -> common.MachineIdList - 519, // 1233: forge.Forge.FindMachineIdsByBmcIps:input_type -> forge.BmcIpList - 520, // 1234: forge.Forge.FindMacAddressByBmcIp:input_type -> forge.BmcIp - 498, // 1235: forge.Forge.FindBmcIps:input_type -> forge.FindBmcIpsRequest - 496, // 1236: forge.Forge.IdentifyUuid:input_type -> forge.IdentifyUuidRequest - 499, // 1237: forge.Forge.IdentifyMac:input_type -> forge.IdentifyMacRequest - 501, // 1238: forge.Forge.IdentifySerial:input_type -> forge.IdentifySerialRequest - 415, // 1239: forge.Forge.GetBMCMetaData:input_type -> forge.BMCMetaDataGetRequest - 417, // 1240: forge.Forge.UpdateMachineCredentials:input_type -> forge.MachineCredentialsUpdateRequest - 432, // 1241: forge.Forge.GetPxeInstructions:input_type -> forge.PxeInstructionRequest - 436, // 1242: forge.Forge.GetCloudInitInstructions:input_type -> forge.CloudInitInstructionsRequest - 133, // 1243: forge.Forge.Echo:input_type -> forge.EchoRequest - 463, // 1244: forge.Forge.CreateTenant:input_type -> forge.CreateTenantRequest - 467, // 1245: forge.Forge.FindTenant:input_type -> forge.FindTenantRequest - 465, // 1246: forge.Forge.UpdateTenant:input_type -> forge.UpdateTenantRequest - 473, // 1247: forge.Forge.CreateTenantKeyset:input_type -> forge.CreateTenantKeysetRequest - 480, // 1248: forge.Forge.FindTenantKeysetIds:input_type -> forge.TenantKeysetSearchFilter - 482, // 1249: forge.Forge.FindTenantKeysetsByIds:input_type -> forge.TenantKeysetsByIdsRequest - 476, // 1250: forge.Forge.UpdateTenantKeyset:input_type -> forge.UpdateTenantKeysetRequest - 478, // 1251: forge.Forge.DeleteTenantKeyset:input_type -> forge.DeleteTenantKeysetRequest - 483, // 1252: forge.Forge.ValidateTenantPublicKey:input_type -> forge.ValidateTenantPublicKeyRequest - 356, // 1253: forge.Forge.GetBmcCredentials:input_type -> forge.GetBmcCredentialsRequest - 357, // 1254: forge.Forge.GetSwitchNvosCredentials:input_type -> forge.GetSwitchNvosCredentialsRequest - 390, // 1255: forge.Forge.GetAllManagedHostNetworkStatus:input_type -> forge.ManagedHostNetworkStatusRequest - 360, // 1256: forge.Forge.GetSiteExplorationReport:input_type -> forge.GetSiteExplorationRequest - 1024, // 1257: forge.Forge.GetSiteExplorerLastRun:input_type -> google.protobuf.Empty - 361, // 1258: forge.Forge.ClearSiteExplorationError:input_type -> forge.ClearSiteExplorationErrorRequest - 367, // 1259: forge.Forge.IsBmcInManagedHost:input_type -> forge.BmcEndpointRequest - 367, // 1260: forge.Forge.BmcCredentialStatus:input_type -> forge.BmcEndpointRequest - 367, // 1261: forge.Forge.Explore:input_type -> forge.BmcEndpointRequest - 362, // 1262: forge.Forge.ReExploreEndpoint:input_type -> forge.ReExploreEndpointRequest - 363, // 1263: forge.Forge.RefreshEndpointReport:input_type -> forge.RefreshEndpointReportRequest - 364, // 1264: forge.Forge.DeleteExploredEndpoint:input_type -> forge.DeleteExploredEndpointRequest - 365, // 1265: forge.Forge.PauseExploredEndpointRemediation:input_type -> forge.PauseExploredEndpointRemediationRequest - 1025, // 1266: forge.Forge.FindExploredEndpointIds:input_type -> site_explorer.ExploredEndpointSearchFilter - 1026, // 1267: forge.Forge.FindExploredEndpointsByIds:input_type -> site_explorer.ExploredEndpointsByIdsRequest - 1027, // 1268: forge.Forge.FindExploredManagedHostIds:input_type -> site_explorer.ExploredManagedHostSearchFilter - 1028, // 1269: forge.Forge.FindExploredManagedHostsByIds:input_type -> site_explorer.ExploredManagedHostsByIdsRequest - 1029, // 1270: forge.Forge.FindExploredMlxDeviceHostIds:input_type -> site_explorer.ExploredMlxDeviceHostSearchFilter - 1030, // 1271: forge.Forge.FindExploredMlxDevicesByIds:input_type -> site_explorer.ExploredMlxDevicesByIdsRequest - 371, // 1272: forge.Forge.UpdateMachineHardwareInfo:input_type -> forge.UpdateMachineHardwareInfoRequest - 396, // 1273: forge.Forge.AdminForceDeleteMachine:input_type -> forge.AdminForceDeleteMachineRequest - 485, // 1274: forge.Forge.AdminListResourcePools:input_type -> forge.ListResourcePoolsRequest - 488, // 1275: forge.Forge.AdminGrowResourcePool:input_type -> forge.GrowResourcePoolRequest - 333, // 1276: forge.Forge.UpdateMachineMetadata:input_type -> forge.MachineMetadataUpdateRequest - 334, // 1277: forge.Forge.UpdateRackMetadata:input_type -> forge.RackMetadataUpdateRequest - 335, // 1278: forge.Forge.UpdateSwitchMetadata:input_type -> forge.SwitchMetadataUpdateRequest - 336, // 1279: forge.Forge.UpdatePowerShelfMetadata:input_type -> forge.PowerShelfMetadataUpdateRequest - 749, // 1280: forge.Forge.UpdateMachineNvLinkInfo:input_type -> forge.UpdateMachineNvLinkInfoRequest - 492, // 1281: forge.Forge.SetMaintenance:input_type -> forge.MaintenanceRequest - 493, // 1282: forge.Forge.SetDynamicConfig:input_type -> forge.SetDynamicConfigRequest - 503, // 1283: forge.Forge.TriggerDpuReprovisioning:input_type -> forge.DpuReprovisioningRequest - 504, // 1284: forge.Forge.ListDpuWaitingForReprovisioning:input_type -> forge.DpuReprovisioningListRequest - 506, // 1285: forge.Forge.TriggerHostReprovisioning:input_type -> forge.HostReprovisioningRequest - 507, // 1286: forge.Forge.ListHostsWaitingForReprovisioning:input_type -> forge.HostReprovisioningListRequest - 961, // 1287: forge.Forge.MarkManualFirmwareUpgradeComplete:input_type -> common.MachineId - 513, // 1288: forge.Forge.GetDpuInfoList:input_type -> forge.GetDpuInfoListRequest - 982, // 1289: forge.Forge.GetMachineBootOverride:input_type -> common.MachineInterfaceId - 516, // 1290: forge.Forge.SetMachineBootOverride:input_type -> forge.MachineBootOverride - 982, // 1291: forge.Forge.ClearMachineBootOverride:input_type -> common.MachineInterfaceId - 916, // 1292: forge.Forge.GetMachineBootInterfaces:input_type -> forge.GetMachineBootInterfacesRequest - 525, // 1293: forge.Forge.GetNetworkTopology:input_type -> forge.NetworkTopologyRequest - 526, // 1294: forge.Forge.FindNetworkDevicesByDeviceIds:input_type -> forge.NetworkDeviceIdList - 126, // 1295: forge.Forge.CreateCredential:input_type -> forge.CredentialCreationRequest - 127, // 1296: forge.Forge.DeleteCredential:input_type -> forge.CredentialDeletionRequest - 1024, // 1297: forge.Forge.GetRouteServers:input_type -> google.protobuf.Empty - 528, // 1298: forge.Forge.AddRouteServers:input_type -> forge.RouteServers - 528, // 1299: forge.Forge.RemoveRouteServers:input_type -> forge.RouteServers - 528, // 1300: forge.Forge.ReplaceRouteServers:input_type -> forge.RouteServers - 337, // 1301: forge.Forge.UpdateAgentReportedInventory:input_type -> forge.DpuAgentInventoryReport - 299, // 1302: forge.Forge.UpdateInstancePhoneHomeLastContact:input_type -> forge.InstancePhoneHomeLastContactRequest - 531, // 1303: forge.Forge.SetHostUefiPassword:input_type -> forge.SetHostUefiPasswordRequest - 533, // 1304: forge.Forge.ClearHostUefiPassword:input_type -> forge.ClearHostUefiPasswordRequest - 546, // 1305: forge.Forge.AddExpectedMachine:input_type -> forge.ExpectedMachine - 547, // 1306: forge.Forge.DeleteExpectedMachine:input_type -> forge.ExpectedMachineRequest - 546, // 1307: forge.Forge.UpdateExpectedMachine:input_type -> forge.ExpectedMachine - 547, // 1308: forge.Forge.GetExpectedMachine:input_type -> forge.ExpectedMachineRequest - 1024, // 1309: forge.Forge.GetAllExpectedMachines:input_type -> google.protobuf.Empty - 548, // 1310: forge.Forge.ReplaceAllExpectedMachines:input_type -> forge.ExpectedMachineList - 1024, // 1311: forge.Forge.DeleteAllExpectedMachines:input_type -> google.protobuf.Empty - 1024, // 1312: forge.Forge.GetAllExpectedMachinesLinked:input_type -> google.protobuf.Empty - 1024, // 1313: forge.Forge.GetAllUnexpectedMachines:input_type -> google.protobuf.Empty - 553, // 1314: forge.Forge.CreateExpectedMachines:input_type -> forge.BatchExpectedMachineOperationRequest - 553, // 1315: forge.Forge.UpdateExpectedMachines:input_type -> forge.BatchExpectedMachineOperationRequest - 205, // 1316: forge.Forge.AddExpectedPowerShelf:input_type -> forge.ExpectedPowerShelf - 206, // 1317: forge.Forge.DeleteExpectedPowerShelf:input_type -> forge.ExpectedPowerShelfRequest - 205, // 1318: forge.Forge.UpdateExpectedPowerShelf:input_type -> forge.ExpectedPowerShelf - 206, // 1319: forge.Forge.GetExpectedPowerShelf:input_type -> forge.ExpectedPowerShelfRequest - 1024, // 1320: forge.Forge.GetAllExpectedPowerShelves:input_type -> google.protobuf.Empty - 207, // 1321: forge.Forge.ReplaceAllExpectedPowerShelves:input_type -> forge.ExpectedPowerShelfList - 1024, // 1322: forge.Forge.DeleteAllExpectedPowerShelves:input_type -> google.protobuf.Empty - 1024, // 1323: forge.Forge.GetAllExpectedPowerShelvesLinked:input_type -> google.protobuf.Empty - 227, // 1324: forge.Forge.AddExpectedSwitch:input_type -> forge.ExpectedSwitch - 228, // 1325: forge.Forge.DeleteExpectedSwitch:input_type -> forge.ExpectedSwitchRequest - 227, // 1326: forge.Forge.UpdateExpectedSwitch:input_type -> forge.ExpectedSwitch - 228, // 1327: forge.Forge.GetExpectedSwitch:input_type -> forge.ExpectedSwitchRequest - 1024, // 1328: forge.Forge.GetAllExpectedSwitches:input_type -> google.protobuf.Empty - 229, // 1329: forge.Forge.ReplaceAllExpectedSwitches:input_type -> forge.ExpectedSwitchList - 1024, // 1330: forge.Forge.DeleteAllExpectedSwitches:input_type -> google.protobuf.Empty - 1024, // 1331: forge.Forge.GetAllExpectedSwitchesLinked:input_type -> google.protobuf.Empty - 232, // 1332: forge.Forge.AddExpectedRack:input_type -> forge.ExpectedRack - 233, // 1333: forge.Forge.DeleteExpectedRack:input_type -> forge.ExpectedRackRequest - 232, // 1334: forge.Forge.UpdateExpectedRack:input_type -> forge.ExpectedRack - 233, // 1335: forge.Forge.GetExpectedRack:input_type -> forge.ExpectedRackRequest - 1024, // 1336: forge.Forge.GetAllExpectedRacks:input_type -> google.protobuf.Empty - 234, // 1337: forge.Forge.ReplaceAllExpectedRacks:input_type -> forge.ExpectedRackList - 1024, // 1338: forge.Forge.DeleteAllExpectedRacks:input_type -> google.protobuf.Empty - 124, // 1339: forge.Forge.AttestQuote:input_type -> forge.AttestQuoteRequest - 628, // 1340: forge.Forge.CreateInstanceType:input_type -> forge.CreateInstanceTypeRequest - 630, // 1341: forge.Forge.FindInstanceTypeIds:input_type -> forge.FindInstanceTypeIdsRequest - 632, // 1342: forge.Forge.FindInstanceTypesByIds:input_type -> forge.FindInstanceTypesByIdsRequest - 637, // 1343: forge.Forge.UpdateInstanceType:input_type -> forge.UpdateInstanceTypeRequest - 634, // 1344: forge.Forge.DeleteInstanceType:input_type -> forge.DeleteInstanceTypeRequest - 638, // 1345: forge.Forge.AssociateMachinesWithInstanceType:input_type -> forge.AssociateMachinesWithInstanceTypeRequest - 640, // 1346: forge.Forge.RemoveMachineInstanceTypeAssociation:input_type -> forge.RemoveMachineInstanceTypeAssociationRequest - 1031, // 1347: forge.Forge.CreateMeasurementBundle:input_type -> measured_boot.CreateMeasurementBundleRequest - 1032, // 1348: forge.Forge.DeleteMeasurementBundle:input_type -> measured_boot.DeleteMeasurementBundleRequest - 1033, // 1349: forge.Forge.RenameMeasurementBundle:input_type -> measured_boot.RenameMeasurementBundleRequest - 1034, // 1350: forge.Forge.UpdateMeasurementBundle:input_type -> measured_boot.UpdateMeasurementBundleRequest - 1035, // 1351: forge.Forge.ShowMeasurementBundle:input_type -> measured_boot.ShowMeasurementBundleRequest - 1036, // 1352: forge.Forge.ShowMeasurementBundles:input_type -> measured_boot.ShowMeasurementBundlesRequest - 1037, // 1353: forge.Forge.ListMeasurementBundles:input_type -> measured_boot.ListMeasurementBundlesRequest - 1038, // 1354: forge.Forge.ListMeasurementBundleMachines:input_type -> measured_boot.ListMeasurementBundleMachinesRequest - 1039, // 1355: forge.Forge.FindClosestBundleMatch:input_type -> measured_boot.FindClosestBundleMatchRequest - 1040, // 1356: forge.Forge.DeleteMeasurementJournal:input_type -> measured_boot.DeleteMeasurementJournalRequest - 1041, // 1357: forge.Forge.ShowMeasurementJournal:input_type -> measured_boot.ShowMeasurementJournalRequest - 1042, // 1358: forge.Forge.ShowMeasurementJournals:input_type -> measured_boot.ShowMeasurementJournalsRequest - 1043, // 1359: forge.Forge.ListMeasurementJournal:input_type -> measured_boot.ListMeasurementJournalRequest - 1044, // 1360: forge.Forge.AttestCandidateMachine:input_type -> measured_boot.AttestCandidateMachineRequest - 1045, // 1361: forge.Forge.ShowCandidateMachine:input_type -> measured_boot.ShowCandidateMachineRequest - 1046, // 1362: forge.Forge.ShowCandidateMachines:input_type -> measured_boot.ShowCandidateMachinesRequest - 1047, // 1363: forge.Forge.ListCandidateMachines:input_type -> measured_boot.ListCandidateMachinesRequest - 1048, // 1364: forge.Forge.CreateMeasurementSystemProfile:input_type -> measured_boot.CreateMeasurementSystemProfileRequest - 1049, // 1365: forge.Forge.DeleteMeasurementSystemProfile:input_type -> measured_boot.DeleteMeasurementSystemProfileRequest - 1050, // 1366: forge.Forge.RenameMeasurementSystemProfile:input_type -> measured_boot.RenameMeasurementSystemProfileRequest - 1051, // 1367: forge.Forge.ShowMeasurementSystemProfile:input_type -> measured_boot.ShowMeasurementSystemProfileRequest - 1052, // 1368: forge.Forge.ShowMeasurementSystemProfiles:input_type -> measured_boot.ShowMeasurementSystemProfilesRequest - 1053, // 1369: forge.Forge.ListMeasurementSystemProfiles:input_type -> measured_boot.ListMeasurementSystemProfilesRequest - 1054, // 1370: forge.Forge.ListMeasurementSystemProfileBundles:input_type -> measured_boot.ListMeasurementSystemProfileBundlesRequest - 1055, // 1371: forge.Forge.ListMeasurementSystemProfileMachines:input_type -> measured_boot.ListMeasurementSystemProfileMachinesRequest - 1056, // 1372: forge.Forge.CreateMeasurementReport:input_type -> measured_boot.CreateMeasurementReportRequest - 1057, // 1373: forge.Forge.DeleteMeasurementReport:input_type -> measured_boot.DeleteMeasurementReportRequest - 1058, // 1374: forge.Forge.PromoteMeasurementReport:input_type -> measured_boot.PromoteMeasurementReportRequest - 1059, // 1375: forge.Forge.RevokeMeasurementReport:input_type -> measured_boot.RevokeMeasurementReportRequest - 1060, // 1376: forge.Forge.ShowMeasurementReportForId:input_type -> measured_boot.ShowMeasurementReportForIdRequest - 1061, // 1377: forge.Forge.ShowMeasurementReportsForMachine:input_type -> measured_boot.ShowMeasurementReportsForMachineRequest - 1062, // 1378: forge.Forge.ShowMeasurementReports:input_type -> measured_boot.ShowMeasurementReportsRequest - 1063, // 1379: forge.Forge.ListMeasurementReport:input_type -> measured_boot.ListMeasurementReportRequest - 1064, // 1380: forge.Forge.MatchMeasurementReport:input_type -> measured_boot.MatchMeasurementReportRequest - 1065, // 1381: forge.Forge.ImportSiteMeasurements:input_type -> measured_boot.ImportSiteMeasurementsRequest - 1066, // 1382: forge.Forge.ExportSiteMeasurements:input_type -> measured_boot.ExportSiteMeasurementsRequest - 1067, // 1383: forge.Forge.AddMeasurementTrustedMachine:input_type -> measured_boot.AddMeasurementTrustedMachineRequest - 1068, // 1384: forge.Forge.RemoveMeasurementTrustedMachine:input_type -> measured_boot.RemoveMeasurementTrustedMachineRequest - 1069, // 1385: forge.Forge.AddMeasurementTrustedProfile:input_type -> measured_boot.AddMeasurementTrustedProfileRequest - 1070, // 1386: forge.Forge.RemoveMeasurementTrustedProfile:input_type -> measured_boot.RemoveMeasurementTrustedProfileRequest - 1071, // 1387: forge.Forge.ListMeasurementTrustedMachines:input_type -> measured_boot.ListMeasurementTrustedMachinesRequest - 1072, // 1388: forge.Forge.ListMeasurementTrustedProfiles:input_type -> measured_boot.ListMeasurementTrustedProfilesRequest - 1073, // 1389: forge.Forge.ListAttestationSummary:input_type -> measured_boot.ListAttestationSummaryRequest - 659, // 1390: forge.Forge.CreateNetworkSecurityGroup:input_type -> forge.CreateNetworkSecurityGroupRequest - 661, // 1391: forge.Forge.FindNetworkSecurityGroupIds:input_type -> forge.FindNetworkSecurityGroupIdsRequest - 663, // 1392: forge.Forge.FindNetworkSecurityGroupsByIds:input_type -> forge.FindNetworkSecurityGroupsByIdsRequest - 666, // 1393: forge.Forge.UpdateNetworkSecurityGroup:input_type -> forge.UpdateNetworkSecurityGroupRequest - 667, // 1394: forge.Forge.DeleteNetworkSecurityGroup:input_type -> forge.DeleteNetworkSecurityGroupRequest - 673, // 1395: forge.Forge.GetNetworkSecurityGroupPropagationStatus:input_type -> forge.GetNetworkSecurityGroupPropagationStatusRequest - 676, // 1396: forge.Forge.GetNetworkSecurityGroupAttachments:input_type -> forge.GetNetworkSecurityGroupAttachmentsRequest - 535, // 1397: forge.Forge.CreateOsImage:input_type -> forge.OsImageAttributes - 539, // 1398: forge.Forge.DeleteOsImage:input_type -> forge.DeleteOsImageRequest - 537, // 1399: forge.Forge.ListOsImage:input_type -> forge.ListOsImageRequest - 972, // 1400: forge.Forge.GetOsImage:input_type -> common.UUID - 535, // 1401: forge.Forge.UpdateOsImage:input_type -> forge.OsImageAttributes - 541, // 1402: forge.Forge.GetIpxeTemplate:input_type -> forge.GetIpxeTemplateRequest - 542, // 1403: forge.Forge.ListIpxeTemplates:input_type -> forge.ListIpxeTemplatesRequest - 557, // 1404: forge.Forge.RebootCompleted:input_type -> forge.MachineRebootCompletedRequest - 562, // 1405: forge.Forge.PersistValidationResult:input_type -> forge.MachineValidationResultPostRequest - 564, // 1406: forge.Forge.GetMachineValidationResults:input_type -> forge.MachineValidationGetRequest - 559, // 1407: forge.Forge.MachineValidationCompleted:input_type -> forge.MachineValidationCompletedRequest - 567, // 1408: forge.Forge.MachineSetAutoUpdate:input_type -> forge.MachineSetAutoUpdateRequest - 569, // 1409: forge.Forge.GetMachineValidationExternalConfig:input_type -> forge.GetMachineValidationExternalConfigRequest - 572, // 1410: forge.Forge.GetMachineValidationExternalConfigs:input_type -> forge.GetMachineValidationExternalConfigsRequest - 574, // 1411: forge.Forge.AddUpdateMachineValidationExternalConfig:input_type -> forge.AddUpdateMachineValidationExternalConfigRequest - 591, // 1412: forge.Forge.GetMachineValidationRuns:input_type -> forge.MachineValidationRunListGetRequest - 592, // 1413: forge.Forge.FindMachineValidationRunItemIds:input_type -> forge.MachineValidationRunItemSearchFilter - 594, // 1414: forge.Forge.FindMachineValidationRunItemsByIds:input_type -> forge.MachineValidationRunItemsByIdsRequest - 597, // 1415: forge.Forge.GetMachineValidationAttempt:input_type -> forge.MachineValidationAttemptGetRequest - 599, // 1416: forge.Forge.HeartbeatMachineValidationRun:input_type -> forge.MachineValidationHeartbeatRequest - 575, // 1417: forge.Forge.RemoveMachineValidationExternalConfig:input_type -> forge.RemoveMachineValidationExternalConfigRequest - 603, // 1418: forge.Forge.GetMachineValidationTests:input_type -> forge.MachineValidationTestsGetRequest - 605, // 1419: forge.Forge.AddMachineValidationTest:input_type -> forge.MachineValidationTestAddRequest - 604, // 1420: forge.Forge.UpdateMachineValidationTest:input_type -> forge.MachineValidationTestUpdateRequest - 608, // 1421: forge.Forge.MachineValidationTestVerfied:input_type -> forge.MachineValidationTestVerfiedRequest - 612, // 1422: forge.Forge.MachineValidationTestNextVersion:input_type -> forge.MachineValidationTestNextVersionRequest - 613, // 1423: forge.Forge.MachineValidationTestEnableDisableTest:input_type -> forge.MachineValidationTestEnableDisableTestRequest - 615, // 1424: forge.Forge.UpdateMachineValidationRun:input_type -> forge.MachineValidationRunRequest - 409, // 1425: forge.Forge.AdminBmcReset:input_type -> forge.AdminBmcResetRequest - 586, // 1426: forge.Forge.AdminPowerControl:input_type -> forge.AdminPowerControlRequest - 367, // 1427: forge.Forge.DisableSecureBoot:input_type -> forge.BmcEndpointRequest - 399, // 1428: forge.Forge.Lockdown:input_type -> forge.LockdownRequest - 401, // 1429: forge.Forge.LockdownStatus:input_type -> forge.LockdownStatusRequest - 403, // 1430: forge.Forge.MachineSetup:input_type -> forge.MachineSetupRequest - 405, // 1431: forge.Forge.SetDpuFirstBootOrder:input_type -> forge.SetDpuFirstBootOrderRequest - 777, // 1432: forge.Forge.CreateBmcUser:input_type -> forge.CreateBmcUserRequest - 779, // 1433: forge.Forge.DeleteBmcUser:input_type -> forge.DeleteBmcUserRequest - 411, // 1434: forge.Forge.EnableInfiniteBoot:input_type -> forge.EnableInfiniteBootRequest - 413, // 1435: forge.Forge.IsInfiniteBootEnabled:input_type -> forge.IsInfiniteBootEnabledRequest - 576, // 1436: forge.Forge.OnDemandMachineValidation:input_type -> forge.MachineValidationOnDemandRequest - 584, // 1437: forge.Forge.OnDemandRackMaintenance:input_type -> forge.RackMaintenanceOnDemandRequest - 120, // 1438: forge.Forge.TpmAddCaCert:input_type -> forge.TpmCaCert - 1024, // 1439: forge.Forge.TpmShowCaCerts:input_type -> google.protobuf.Empty - 1024, // 1440: forge.Forge.TpmShowUnmatchedEkCerts:input_type -> google.protobuf.Empty - 117, // 1441: forge.Forge.TpmDeleteCaCert:input_type -> forge.TpmCaCertId - 642, // 1442: forge.Forge.RedfishBrowse:input_type -> forge.RedfishBrowseRequest - 644, // 1443: forge.Forge.RedfishListActions:input_type -> forge.RedfishListActionsRequest - 649, // 1444: forge.Forge.RedfishCreateAction:input_type -> forge.RedfishCreateActionRequest - 651, // 1445: forge.Forge.RedfishApproveAction:input_type -> forge.RedfishActionID - 651, // 1446: forge.Forge.RedfishApplyAction:input_type -> forge.RedfishActionID - 651, // 1447: forge.Forge.RedfishCancelAction:input_type -> forge.RedfishActionID - 655, // 1448: forge.Forge.UfmBrowse:input_type -> forge.UfmBrowseRequest - 679, // 1449: forge.Forge.GetDesiredFirmwareVersions:input_type -> forge.GetDesiredFirmwareVersionsRequest - 695, // 1450: forge.Forge.CreateSku:input_type -> forge.SkuList - 961, // 1451: forge.Forge.GenerateSkuFromMachine:input_type -> common.MachineId - 961, // 1452: forge.Forge.VerifySkuForMachine:input_type -> common.MachineId - 693, // 1453: forge.Forge.AssignSkuToMachine:input_type -> forge.SkuMachinePair - 694, // 1454: forge.Forge.RemoveSkuAssociation:input_type -> forge.RemoveSkuRequest - 696, // 1455: forge.Forge.DeleteSku:input_type -> forge.SkuIdList - 1024, // 1456: forge.Forge.GetAllSkuIds:input_type -> google.protobuf.Empty - 698, // 1457: forge.Forge.FindSkusByIds:input_type -> forge.SkusByIdsRequest - 708, // 1458: forge.Forge.UpdateSkuMetadata:input_type -> forge.SkuUpdateMetadataRequest - 692, // 1459: forge.Forge.ReplaceSku:input_type -> forge.Sku - 379, // 1460: forge.Forge.GetManagedHostQuarantineState:input_type -> forge.GetManagedHostQuarantineStateRequest - 381, // 1461: forge.Forge.SetManagedHostQuarantineState:input_type -> forge.SetManagedHostQuarantineStateRequest - 383, // 1462: forge.Forge.ClearManagedHostQuarantineState:input_type -> forge.ClearManagedHostQuarantineStateRequest - 961, // 1463: forge.Forge.ResetHostReprovisioning:input_type -> common.MachineId - 370, // 1464: forge.Forge.CopyBfbToDpuRshim:input_type -> forge.CopyBfbToDpuRshimRequest - 1024, // 1465: forge.Forge.GetAllDpaInterfaceIds:input_type -> google.protobuf.Empty - 703, // 1466: forge.Forge.FindDpaInterfacesByIds:input_type -> forge.DpaInterfacesByIdsRequest - 701, // 1467: forge.Forge.CreateDpaInterface:input_type -> forge.DpaInterfaceCreationRequest - 701, // 1468: forge.Forge.EnsureDpaInterface:input_type -> forge.DpaInterfaceCreationRequest - 706, // 1469: forge.Forge.DeleteDpaInterface:input_type -> forge.DpaInterfaceDeletionRequest - 709, // 1470: forge.Forge.GetPowerOptions:input_type -> forge.PowerOptionRequest - 710, // 1471: forge.Forge.UpdatePowerOption:input_type -> forge.PowerOptionUpdateRequest - 367, // 1472: forge.Forge.AllowIngestionAndPowerOn:input_type -> forge.BmcEndpointRequest - 367, // 1473: forge.Forge.DetermineMachineIngestionState:input_type -> forge.BmcEndpointRequest - 729, // 1474: forge.Forge.FindRackIds:input_type -> forge.RackSearchFilter - 731, // 1475: forge.Forge.FindRacksByIds:input_type -> forge.RacksByIdsRequest - 726, // 1476: forge.Forge.GetRack:input_type -> forge.GetRackRequest - 736, // 1477: forge.Forge.DeleteRack:input_type -> forge.DeleteRackRequest - 737, // 1478: forge.Forge.AdminForceDeleteRack:input_type -> forge.AdminForceDeleteRackRequest - 744, // 1479: forge.Forge.GetRackProfile:input_type -> forge.GetRackProfileRequest - 715, // 1480: forge.Forge.CreateComputeAllocation:input_type -> forge.CreateComputeAllocationRequest - 717, // 1481: forge.Forge.FindComputeAllocationIds:input_type -> forge.FindComputeAllocationIdsRequest - 719, // 1482: forge.Forge.FindComputeAllocationsByIds:input_type -> forge.FindComputeAllocationsByIdsRequest - 722, // 1483: forge.Forge.UpdateComputeAllocation:input_type -> forge.UpdateComputeAllocationRequest - 723, // 1484: forge.Forge.DeleteComputeAllocation:input_type -> forge.DeleteComputeAllocationRequest - 781, // 1485: forge.Forge.SetFirmwareUpdateTimeWindow:input_type -> forge.SetFirmwareUpdateTimeWindowRequest - 783, // 1486: forge.Forge.ListHostFirmware:input_type -> forge.ListHostFirmwareRequest - 1074, // 1487: forge.Forge.PublishMlxDeviceReport:input_type -> mlx_device.PublishMlxDeviceReportRequest - 1075, // 1488: forge.Forge.PublishMlxObservationReport:input_type -> mlx_device.PublishMlxObservationReportRequest - 786, // 1489: forge.Forge.TrimTable:input_type -> forge.TrimTableRequest - 1024, // 1490: forge.Forge.ListNvlinkNmxcEndpoints:input_type -> google.protobuf.Empty - 788, // 1491: forge.Forge.CreateNvlinkNmxcEndpoint:input_type -> forge.NvlinkNmxcEndpoint - 788, // 1492: forge.Forge.UpdateNvlinkNmxcEndpoint:input_type -> forge.NvlinkNmxcEndpoint - 790, // 1493: forge.Forge.DeleteNvlinkNmxcEndpoint:input_type -> forge.DeleteNvlinkNmxcEndpointRequest - 791, // 1494: forge.Forge.CreateRemediation:input_type -> forge.CreateRemediationRequest - 796, // 1495: forge.Forge.ApproveRemediation:input_type -> forge.ApproveRemediationRequest - 797, // 1496: forge.Forge.RevokeRemediation:input_type -> forge.RevokeRemediationRequest - 798, // 1497: forge.Forge.EnableRemediation:input_type -> forge.EnableRemediationRequest - 799, // 1498: forge.Forge.DisableRemediation:input_type -> forge.DisableRemediationRequest - 1024, // 1499: forge.Forge.FindRemediationIds:input_type -> google.protobuf.Empty - 793, // 1500: forge.Forge.FindRemediationsByIds:input_type -> forge.RemediationIdList - 800, // 1501: forge.Forge.FindAppliedRemediationIds:input_type -> forge.FindAppliedRemediationIdsRequest - 802, // 1502: forge.Forge.FindAppliedRemediations:input_type -> forge.FindAppliedRemediationsRequest - 805, // 1503: forge.Forge.GetNextRemediationForMachine:input_type -> forge.GetNextRemediationForMachineRequest - 807, // 1504: forge.Forge.RemediationApplied:input_type -> forge.RemediationAppliedRequest - 809, // 1505: forge.Forge.SetPrimaryDpu:input_type -> forge.SetPrimaryDpuRequest - 810, // 1506: forge.Forge.SetPrimaryInterface:input_type -> forge.SetPrimaryInterfaceRequest - 816, // 1507: forge.Forge.CreateDpuExtensionService:input_type -> forge.CreateDpuExtensionServiceRequest - 817, // 1508: forge.Forge.UpdateDpuExtensionService:input_type -> forge.UpdateDpuExtensionServiceRequest - 818, // 1509: forge.Forge.DeleteDpuExtensionService:input_type -> forge.DeleteDpuExtensionServiceRequest - 820, // 1510: forge.Forge.FindDpuExtensionServiceIds:input_type -> forge.DpuExtensionServiceSearchFilter - 822, // 1511: forge.Forge.FindDpuExtensionServicesByIds:input_type -> forge.DpuExtensionServicesByIdsRequest - 824, // 1512: forge.Forge.GetDpuExtensionServiceVersionsInfo:input_type -> forge.GetDpuExtensionServiceVersionsInfoRequest - 826, // 1513: forge.Forge.FindInstancesByDpuExtensionService:input_type -> forge.FindInstancesByDpuExtensionServiceRequest - 92, // 1514: forge.Forge.TriggerMachineAttestation:input_type -> forge.SpdmMachineAttestationTriggerRequest - 961, // 1515: forge.Forge.CancelMachineAttestation:input_type -> common.MachineId - 93, // 1516: forge.Forge.ListAttestationMachines:input_type -> forge.SpdmListAttestationMachinesRequest - 961, // 1517: forge.Forge.GetAttestationMachine:input_type -> common.MachineId - 95, // 1518: forge.Forge.SignMachineIdentity:input_type -> forge.MachineIdentityRequest - 97, // 1519: forge.Forge.GetTenantIdentityConfiguration:input_type -> forge.GetTenantIdentityConfigRequest - 100, // 1520: forge.Forge.SetTenantIdentityConfiguration:input_type -> forge.SetTenantIdentityConfigRequest - 97, // 1521: forge.Forge.DeleteTenantIdentityConfiguration:input_type -> forge.GetTenantIdentityConfigRequest - 105, // 1522: forge.Forge.GetTokenDelegation:input_type -> forge.GetTokenDelegationRequest - 107, // 1523: forge.Forge.SetTokenDelegation:input_type -> forge.TokenDelegationRequest - 105, // 1524: forge.Forge.DeleteTokenDelegation:input_type -> forge.GetTokenDelegationRequest - 108, // 1525: forge.Forge.ReencryptTenantIdentitySecrets:input_type -> forge.ReencryptTenantIdentitySecretsRequest - 113, // 1526: forge.Forge.GetJWKS:input_type -> forge.JwksRequest - 114, // 1527: forge.Forge.GetOpenIDConfiguration:input_type -> forge.OpenIdConfigRequest - 833, // 1528: forge.Forge.ScoutStream:input_type -> forge.ScoutStreamApiBoundMessage - 836, // 1529: forge.Forge.ScoutStreamShowConnections:input_type -> forge.ScoutStreamShowConnectionsRequest - 838, // 1530: forge.Forge.ScoutStreamDisconnect:input_type -> forge.ScoutStreamDisconnectRequest - 840, // 1531: forge.Forge.ScoutStreamPing:input_type -> forge.ScoutStreamAdminPingRequest - 1076, // 1532: forge.Forge.MlxAdminProfileSync:input_type -> mlx_device.MlxAdminProfileSyncRequest - 1077, // 1533: forge.Forge.MlxAdminProfileShow:input_type -> mlx_device.MlxAdminProfileShowRequest - 1078, // 1534: forge.Forge.MlxAdminProfileCompare:input_type -> mlx_device.MlxAdminProfileCompareRequest - 1079, // 1535: forge.Forge.MlxAdminProfileList:input_type -> mlx_device.MlxAdminProfileListRequest - 1080, // 1536: forge.Forge.MlxAdminLockdownLock:input_type -> mlx_device.MlxAdminLockdownLockRequest - 1081, // 1537: forge.Forge.MlxAdminLockdownUnlock:input_type -> mlx_device.MlxAdminLockdownUnlockRequest - 1082, // 1538: forge.Forge.MlxAdminLockdownStatus:input_type -> mlx_device.MlxAdminLockdownStatusRequest - 1083, // 1539: forge.Forge.MlxAdminShowDevice:input_type -> mlx_device.MlxAdminDeviceInfoRequest - 1084, // 1540: forge.Forge.MlxAdminShowMachine:input_type -> mlx_device.MlxAdminDeviceReportRequest - 1085, // 1541: forge.Forge.MlxAdminRegistryList:input_type -> mlx_device.MlxAdminRegistryListRequest - 1086, // 1542: forge.Forge.MlxAdminRegistryShow:input_type -> mlx_device.MlxAdminRegistryShowRequest - 1087, // 1543: forge.Forge.MlxAdminConfigQuery:input_type -> mlx_device.MlxAdminConfigQueryRequest - 1088, // 1544: forge.Forge.MlxAdminConfigSet:input_type -> mlx_device.MlxAdminConfigSetRequest - 1089, // 1545: forge.Forge.MlxAdminConfigSync:input_type -> mlx_device.MlxAdminConfigSyncRequest - 1090, // 1546: forge.Forge.MlxAdminConfigCompare:input_type -> mlx_device.MlxAdminConfigCompareRequest - 761, // 1547: forge.Forge.FindNVLinkPartitionIds:input_type -> forge.NVLinkPartitionSearchFilter - 762, // 1548: forge.Forge.FindNVLinkPartitionsByIds:input_type -> forge.NVLinkPartitionsByIdsRequest - 150, // 1549: forge.Forge.NVLinkPartitionsForTenant:input_type -> forge.TenantSearchQuery - 772, // 1550: forge.Forge.FindNVLinkLogicalPartitionIds:input_type -> forge.NVLinkLogicalPartitionSearchFilter - 773, // 1551: forge.Forge.FindNVLinkLogicalPartitionsByIds:input_type -> forge.NVLinkLogicalPartitionsByIdsRequest - 769, // 1552: forge.Forge.CreateNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionCreationRequest - 775, // 1553: forge.Forge.UpdateNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionUpdateRequest - 770, // 1554: forge.Forge.DeleteNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionDeletionRequest - 150, // 1555: forge.Forge.NVLinkLogicalPartitionsForTenant:input_type -> forge.TenantSearchQuery - 854, // 1556: forge.Forge.GetMachinePositionInfo:input_type -> forge.MachinePositionQuery - 755, // 1557: forge.Forge.NmxcBrowse:input_type -> forge.NmxcBrowseRequest - 857, // 1558: forge.Forge.ModifyDPFState:input_type -> forge.ModifyDPFStateRequest - 859, // 1559: forge.Forge.GetDPFState:input_type -> forge.GetDPFStateRequest - 860, // 1560: forge.Forge.GetDPFHostSnapshot:input_type -> forge.GetDPFHostSnapshotRequest - 862, // 1561: forge.Forge.GetDPFServiceVersions:input_type -> forge.GetDPFServiceVersionsRequest - 871, // 1562: forge.Forge.ComponentPowerControl:input_type -> forge.ComponentPowerControlRequest - 868, // 1563: forge.Forge.GetComponentInventory:input_type -> forge.GetComponentInventoryRequest - 878, // 1564: forge.Forge.UpdateComponentFirmware:input_type -> forge.UpdateComponentFirmwareRequest - 880, // 1565: forge.Forge.GetComponentFirmwareStatus:input_type -> forge.GetComponentFirmwareStatusRequest - 882, // 1566: forge.Forge.ListComponentFirmwareVersions:input_type -> forge.ListComponentFirmwareVersionsRequest - 899, // 1567: forge.Forge.CreateOperatingSystem:input_type -> forge.CreateOperatingSystemRequest - 979, // 1568: forge.Forge.GetOperatingSystem:input_type -> common.OperatingSystemId - 902, // 1569: forge.Forge.UpdateOperatingSystem:input_type -> forge.UpdateOperatingSystemRequest - 903, // 1570: forge.Forge.DeleteOperatingSystem:input_type -> forge.DeleteOperatingSystemRequest - 905, // 1571: forge.Forge.FindOperatingSystemIds:input_type -> forge.OperatingSystemSearchFilter - 907, // 1572: forge.Forge.FindOperatingSystemsByIds:input_type -> forge.OperatingSystemsByIdsRequest - 909, // 1573: forge.Forge.GetOperatingSystemCachableIpxeTemplateArtifacts:input_type -> forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest - 912, // 1574: forge.Forge.UpdateOperatingSystemCachableIpxeTemplateArtifacts:input_type -> forge.UpdateOperatingSystemIpxeTemplateArtifactRequest - 914, // 1575: forge.Forge.ReWrapSecrets:input_type -> forge.ReWrapSecretsRequest - 131, // 1576: forge.Forge.Version:output_type -> forge.BuildInfo - 848, // 1577: forge.Forge.CreateDomainLegacy:output_type -> forge.DomainLegacy - 848, // 1578: forge.Forge.UpdateDomainLegacy:output_type -> forge.DomainLegacy - 851, // 1579: forge.Forge.DeleteDomainLegacy:output_type -> forge.DomainDeletionResultLegacy - 849, // 1580: forge.Forge.FindDomainLegacy:output_type -> forge.DomainListLegacy - 153, // 1581: forge.Forge.CreateVpc:output_type -> forge.Vpc - 156, // 1582: forge.Forge.UpdateVpc:output_type -> forge.VpcUpdateResult - 158, // 1583: forge.Forge.UpdateVpcVirtualization:output_type -> forge.VpcUpdateVirtualizationResult - 160, // 1584: forge.Forge.DeleteVpc:output_type -> forge.VpcDeletionResult - 148, // 1585: forge.Forge.FindVpcIds:output_type -> forge.VpcIdList - 161, // 1586: forge.Forge.FindVpcsByIds:output_type -> forge.VpcList - 887, // 1587: forge.Forge.CreateSpxPartition:output_type -> forge.SpxPartition - 890, // 1588: forge.Forge.DeleteSpxPartition:output_type -> forge.SpxPartitionDeletionResult - 888, // 1589: forge.Forge.FindSpxPartitionIds:output_type -> forge.SpxPartitionIdList - 892, // 1590: forge.Forge.FindSpxPartitionsByIds:output_type -> forge.SpxPartitionList - 162, // 1591: forge.Forge.CreateVpcPrefix:output_type -> forge.VpcPrefix - 168, // 1592: forge.Forge.SearchVpcPrefixes:output_type -> forge.VpcPrefixIdList - 169, // 1593: forge.Forge.GetVpcPrefixes:output_type -> forge.VpcPrefixList - 162, // 1594: forge.Forge.UpdateVpcPrefix:output_type -> forge.VpcPrefix - 172, // 1595: forge.Forge.DeleteVpcPrefix:output_type -> forge.VpcPrefixDeletionResult - 174, // 1596: forge.Forge.CreateVpcPeering:output_type -> forge.VpcPeering - 175, // 1597: forge.Forge.FindVpcPeeringIds:output_type -> forge.VpcPeeringIdList - 176, // 1598: forge.Forge.FindVpcPeeringsByIds:output_type -> forge.VpcPeeringList - 181, // 1599: forge.Forge.DeleteVpcPeering:output_type -> forge.VpcPeeringDeletionResult - 248, // 1600: forge.Forge.FindNetworkSegmentIds:output_type -> forge.NetworkSegmentIdList - 353, // 1601: forge.Forge.FindNetworkSegmentsByIds:output_type -> forge.NetworkSegmentList - 240, // 1602: forge.Forge.CreateNetworkSegment:output_type -> forge.NetworkSegment - 240, // 1603: forge.Forge.AttachNetworkSegmentToVpc:output_type -> forge.NetworkSegment - 244, // 1604: forge.Forge.DeleteNetworkSegment:output_type -> forge.NetworkSegmentDeletionResult - 353, // 1605: forge.Forge.NetworkSegmentsForVpc:output_type -> forge.NetworkSegmentList - 192, // 1606: forge.Forge.FindIBPartitionIds:output_type -> forge.IBPartitionIdList - 185, // 1607: forge.Forge.FindIBPartitionsByIds:output_type -> forge.IBPartitionList - 184, // 1608: forge.Forge.CreateIBPartition:output_type -> forge.IBPartition - 184, // 1609: forge.Forge.UpdateIBPartition:output_type -> forge.IBPartition - 189, // 1610: forge.Forge.DeleteIBPartition:output_type -> forge.IBPartitionDeletionResult - 185, // 1611: forge.Forge.IBPartitionsForTenant:output_type -> forge.IBPartitionList - 196, // 1612: forge.Forge.FindPowerShelves:output_type -> forge.PowerShelfList - 867, // 1613: forge.Forge.FindPowerShelfIds:output_type -> forge.PowerShelfIdList - 196, // 1614: forge.Forge.FindPowerShelvesByIds:output_type -> forge.PowerShelfList - 199, // 1615: forge.Forge.DeletePowerShelf:output_type -> forge.PowerShelfDeletionResult - 897, // 1616: forge.Forge.AdminForceDeletePowerShelf:output_type -> forge.AdminForceDeletePowerShelfResponse - 1024, // 1617: forge.Forge.SetPowerShelfMaintenance:output_type -> google.protobuf.Empty - 216, // 1618: forge.Forge.FindSwitches:output_type -> forge.SwitchList - 866, // 1619: forge.Forge.FindSwitchIds:output_type -> forge.SwitchIdList - 216, // 1620: forge.Forge.FindSwitchesByIds:output_type -> forge.SwitchList - 219, // 1621: forge.Forge.DeleteSwitch:output_type -> forge.SwitchDeletionResult - 895, // 1622: forge.Forge.AdminForceDeleteSwitch:output_type -> forge.AdminForceDeleteSwitchResponse - 236, // 1623: forge.Forge.FindIBFabricIds:output_type -> forge.IBFabricIdList - 289, // 1624: forge.Forge.AllocateInstance:output_type -> forge.Instance - 262, // 1625: forge.Forge.AllocateInstances:output_type -> forge.BatchInstanceAllocationResponse - 303, // 1626: forge.Forge.ReleaseInstance:output_type -> forge.InstanceReleaseResult - 289, // 1627: forge.Forge.UpdateInstanceOperatingSystem:output_type -> forge.Instance - 289, // 1628: forge.Forge.UpdateInstanceConfig:output_type -> forge.Instance - 258, // 1629: forge.Forge.FindInstanceIds:output_type -> forge.InstanceIdList - 254, // 1630: forge.Forge.FindInstancesByIds:output_type -> forge.InstanceList - 254, // 1631: forge.Forge.FindInstanceByMachineID:output_type -> forge.InstanceList - 374, // 1632: forge.Forge.GetManagedHostNetworkConfig:output_type -> forge.ManagedHostNetworkConfigResponse - 1024, // 1633: forge.Forge.RecordDpuNetworkStatus:output_type -> google.protobuf.Empty - 454, // 1634: forge.Forge.ListMachineHealthReports:output_type -> forge.ListHealthReportResponse - 1024, // 1635: forge.Forge.InsertMachineHealthReport:output_type -> google.protobuf.Empty - 1024, // 1636: forge.Forge.RemoveMachineHealthReport:output_type -> google.protobuf.Empty - 454, // 1637: forge.Forge.ListRackHealthReports:output_type -> forge.ListHealthReportResponse - 1024, // 1638: forge.Forge.InsertRackHealthReport:output_type -> google.protobuf.Empty - 1024, // 1639: forge.Forge.RemoveRackHealthReport:output_type -> google.protobuf.Empty - 454, // 1640: forge.Forge.ListSwitchHealthReports:output_type -> forge.ListHealthReportResponse - 1024, // 1641: forge.Forge.InsertSwitchHealthReport:output_type -> google.protobuf.Empty - 1024, // 1642: forge.Forge.RemoveSwitchHealthReport:output_type -> google.protobuf.Empty - 454, // 1643: forge.Forge.ListPowerShelfHealthReports:output_type -> forge.ListHealthReportResponse - 1024, // 1644: forge.Forge.InsertPowerShelfHealthReport:output_type -> google.protobuf.Empty - 1024, // 1645: forge.Forge.RemovePowerShelfHealthReport:output_type -> google.protobuf.Empty - 454, // 1646: forge.Forge.ListNVLinkDomainHealthReports:output_type -> forge.ListHealthReportResponse - 1024, // 1647: forge.Forge.InsertNVLinkDomainHealthReport:output_type -> google.protobuf.Empty - 1024, // 1648: forge.Forge.RemoveNVLinkDomainHealthReport:output_type -> google.protobuf.Empty - 454, // 1649: forge.Forge.ListHealthReportOverrides:output_type -> forge.ListHealthReportResponse - 1024, // 1650: forge.Forge.InsertHealthReportOverride:output_type -> google.protobuf.Empty - 1024, // 1651: forge.Forge.RemoveHealthReportOverride:output_type -> google.protobuf.Empty - 393, // 1652: forge.Forge.DpuAgentUpgradeCheck:output_type -> forge.DpuAgentUpgradeCheckResponse - 395, // 1653: forge.Forge.DpuAgentUpgradePolicyAction:output_type -> forge.DpuAgentUpgradePolicyResponse - 253, // 1654: forge.Forge.InvokeInstancePower:output_type -> forge.InstancePowerResult - 420, // 1655: forge.Forge.ForgeAgentControl:output_type -> forge.ForgeAgentControlResponse - 427, // 1656: forge.Forge.DiscoverMachine:output_type -> forge.MachineDiscoveryResult - 426, // 1657: forge.Forge.RenewMachineCertificate:output_type -> forge.MachineCertificateResult - 428, // 1658: forge.Forge.DiscoveryCompleted:output_type -> forge.MachineDiscoveryCompletedResponse - 429, // 1659: forge.Forge.CleanupMachineCompleted:output_type -> forge.MachineCleanupResult - 431, // 1660: forge.Forge.ReportForgeScoutError:output_type -> forge.ForgeScoutErrorReportResult - 352, // 1661: forge.Forge.DiscoverDhcp:output_type -> forge.DhcpRecord - 351, // 1662: forge.Forge.ExpireDhcpLease:output_type -> forge.ExpireDhcpLeaseResponse - 322, // 1663: forge.Forge.AssignStaticAddress:output_type -> forge.AssignStaticAddressResponse - 324, // 1664: forge.Forge.RemoveStaticAddress:output_type -> forge.RemoveStaticAddressResponse - 327, // 1665: forge.Forge.FindInterfaceAddresses:output_type -> forge.FindInterfaceAddressesResponse - 317, // 1666: forge.Forge.FindInterfaces:output_type -> forge.InterfaceList - 1024, // 1667: forge.Forge.DeleteInterface:output_type -> google.protobuf.Empty - 495, // 1668: forge.Forge.FindIpAddress:output_type -> forge.FindIpAddressResponse - 1019, // 1669: forge.Forge.FindMachineIds:output_type -> common.MachineIdList - 318, // 1670: forge.Forge.FindMachinesByIds:output_type -> forge.MachineList - 307, // 1671: forge.Forge.FindMachineStateHistories:output_type -> forge.MachineStateHistories - 310, // 1672: forge.Forge.FindMachineHealthHistories:output_type -> forge.HealthHistories - 223, // 1673: forge.Forge.FindPowerShelfStateHistories:output_type -> forge.StateHistories - 223, // 1674: forge.Forge.FindRackStateHistories:output_type -> forge.StateHistories - 223, // 1675: forge.Forge.FindSwitchStateHistories:output_type -> forge.StateHistories - 223, // 1676: forge.Forge.FindNetworkSegmentStateHistories:output_type -> forge.StateHistories - 223, // 1677: forge.Forge.FindVpcPrefixStateHistories:output_type -> forge.StateHistories - 316, // 1678: forge.Forge.FindTenantOrganizationIds:output_type -> forge.TenantOrganizationIdList - 315, // 1679: forge.Forge.FindTenantsByOrganizationIds:output_type -> forge.TenantList - 518, // 1680: forge.Forge.FindConnectedDevicesByDpuMachineIds:output_type -> forge.ConnectedDeviceList - 522, // 1681: forge.Forge.FindMachineIdsByBmcIps:output_type -> forge.MachineIdBmcIpPairs - 521, // 1682: forge.Forge.FindMacAddressByBmcIp:output_type -> forge.MacAddressBmcIp - 519, // 1683: forge.Forge.FindBmcIps:output_type -> forge.BmcIpList - 497, // 1684: forge.Forge.IdentifyUuid:output_type -> forge.IdentifyUuidResponse - 500, // 1685: forge.Forge.IdentifyMac:output_type -> forge.IdentifyMacResponse - 502, // 1686: forge.Forge.IdentifySerial:output_type -> forge.IdentifySerialResponse - 416, // 1687: forge.Forge.GetBMCMetaData:output_type -> forge.BMCMetaDataGetResponse - 418, // 1688: forge.Forge.UpdateMachineCredentials:output_type -> forge.MachineCredentialsUpdateResponse - 433, // 1689: forge.Forge.GetPxeInstructions:output_type -> forge.PxeInstructions - 437, // 1690: forge.Forge.GetCloudInitInstructions:output_type -> forge.CloudInitInstructions - 134, // 1691: forge.Forge.Echo:output_type -> forge.EchoResponse - 464, // 1692: forge.Forge.CreateTenant:output_type -> forge.CreateTenantResponse - 468, // 1693: forge.Forge.FindTenant:output_type -> forge.FindTenantResponse - 466, // 1694: forge.Forge.UpdateTenant:output_type -> forge.UpdateTenantResponse - 474, // 1695: forge.Forge.CreateTenantKeyset:output_type -> forge.CreateTenantKeysetResponse - 481, // 1696: forge.Forge.FindTenantKeysetIds:output_type -> forge.TenantKeysetIdList - 475, // 1697: forge.Forge.FindTenantKeysetsByIds:output_type -> forge.TenantKeySetList - 477, // 1698: forge.Forge.UpdateTenantKeyset:output_type -> forge.UpdateTenantKeysetResponse - 479, // 1699: forge.Forge.DeleteTenantKeyset:output_type -> forge.DeleteTenantKeysetResponse - 484, // 1700: forge.Forge.ValidateTenantPublicKey:output_type -> forge.ValidateTenantPublicKeyResponse - 358, // 1701: forge.Forge.GetBmcCredentials:output_type -> forge.GetBmcCredentialsResponse - 358, // 1702: forge.Forge.GetSwitchNvosCredentials:output_type -> forge.GetBmcCredentialsResponse - 391, // 1703: forge.Forge.GetAllManagedHostNetworkStatus:output_type -> forge.ManagedHostNetworkStatusResponse - 1091, // 1704: forge.Forge.GetSiteExplorationReport:output_type -> site_explorer.SiteExplorationReport - 1092, // 1705: forge.Forge.GetSiteExplorerLastRun:output_type -> site_explorer.SiteExplorerLastRunResponse - 1024, // 1706: forge.Forge.ClearSiteExplorationError:output_type -> google.protobuf.Empty - 601, // 1707: forge.Forge.IsBmcInManagedHost:output_type -> forge.IsBmcInManagedHostResponse - 602, // 1708: forge.Forge.BmcCredentialStatus:output_type -> forge.BmcCredentialStatusResponse - 1020, // 1709: forge.Forge.Explore:output_type -> site_explorer.EndpointExplorationReport - 1024, // 1710: forge.Forge.ReExploreEndpoint:output_type -> google.protobuf.Empty - 1093, // 1711: forge.Forge.RefreshEndpointReport:output_type -> site_explorer.ExploredEndpoint - 366, // 1712: forge.Forge.DeleteExploredEndpoint:output_type -> forge.DeleteExploredEndpointResponse - 1024, // 1713: forge.Forge.PauseExploredEndpointRemediation:output_type -> google.protobuf.Empty - 1094, // 1714: forge.Forge.FindExploredEndpointIds:output_type -> site_explorer.ExploredEndpointIdList - 1095, // 1715: forge.Forge.FindExploredEndpointsByIds:output_type -> site_explorer.ExploredEndpointList - 1096, // 1716: forge.Forge.FindExploredManagedHostIds:output_type -> site_explorer.ExploredManagedHostIdList - 1097, // 1717: forge.Forge.FindExploredManagedHostsByIds:output_type -> site_explorer.ExploredManagedHostList - 1098, // 1718: forge.Forge.FindExploredMlxDeviceHostIds:output_type -> site_explorer.ExploredMlxDeviceHostIdList - 1099, // 1719: forge.Forge.FindExploredMlxDevicesByIds:output_type -> site_explorer.ExploredMlxDeviceList - 1024, // 1720: forge.Forge.UpdateMachineHardwareInfo:output_type -> google.protobuf.Empty - 397, // 1721: forge.Forge.AdminForceDeleteMachine:output_type -> forge.AdminForceDeleteMachineResponse - 486, // 1722: forge.Forge.AdminListResourcePools:output_type -> forge.ResourcePools - 489, // 1723: forge.Forge.AdminGrowResourcePool:output_type -> forge.GrowResourcePoolResponse - 1024, // 1724: forge.Forge.UpdateMachineMetadata:output_type -> google.protobuf.Empty - 1024, // 1725: forge.Forge.UpdateRackMetadata:output_type -> google.protobuf.Empty - 1024, // 1726: forge.Forge.UpdateSwitchMetadata:output_type -> google.protobuf.Empty - 1024, // 1727: forge.Forge.UpdatePowerShelfMetadata:output_type -> google.protobuf.Empty - 1024, // 1728: forge.Forge.UpdateMachineNvLinkInfo:output_type -> google.protobuf.Empty - 1024, // 1729: forge.Forge.SetMaintenance:output_type -> google.protobuf.Empty - 1024, // 1730: forge.Forge.SetDynamicConfig:output_type -> google.protobuf.Empty - 1024, // 1731: forge.Forge.TriggerDpuReprovisioning:output_type -> google.protobuf.Empty - 505, // 1732: forge.Forge.ListDpuWaitingForReprovisioning:output_type -> forge.DpuReprovisioningListResponse - 1024, // 1733: forge.Forge.TriggerHostReprovisioning:output_type -> google.protobuf.Empty - 508, // 1734: forge.Forge.ListHostsWaitingForReprovisioning:output_type -> forge.HostReprovisioningListResponse - 1024, // 1735: forge.Forge.MarkManualFirmwareUpgradeComplete:output_type -> google.protobuf.Empty - 514, // 1736: forge.Forge.GetDpuInfoList:output_type -> forge.GetDpuInfoListResponse - 516, // 1737: forge.Forge.GetMachineBootOverride:output_type -> forge.MachineBootOverride - 1024, // 1738: forge.Forge.SetMachineBootOverride:output_type -> google.protobuf.Empty - 1024, // 1739: forge.Forge.ClearMachineBootOverride:output_type -> google.protobuf.Empty - 921, // 1740: forge.Forge.GetMachineBootInterfaces:output_type -> forge.GetMachineBootInterfacesResponse - 527, // 1741: forge.Forge.GetNetworkTopology:output_type -> forge.NetworkTopologyData - 527, // 1742: forge.Forge.FindNetworkDevicesByDeviceIds:output_type -> forge.NetworkTopologyData - 128, // 1743: forge.Forge.CreateCredential:output_type -> forge.CredentialCreationResult - 129, // 1744: forge.Forge.DeleteCredential:output_type -> forge.CredentialDeletionResult - 529, // 1745: forge.Forge.GetRouteServers:output_type -> forge.RouteServerEntries - 1024, // 1746: forge.Forge.AddRouteServers:output_type -> google.protobuf.Empty - 1024, // 1747: forge.Forge.RemoveRouteServers:output_type -> google.protobuf.Empty - 1024, // 1748: forge.Forge.ReplaceRouteServers:output_type -> google.protobuf.Empty - 1024, // 1749: forge.Forge.UpdateAgentReportedInventory:output_type -> google.protobuf.Empty - 300, // 1750: forge.Forge.UpdateInstancePhoneHomeLastContact:output_type -> forge.InstancePhoneHomeLastContactResponse - 532, // 1751: forge.Forge.SetHostUefiPassword:output_type -> forge.SetHostUefiPasswordResponse - 534, // 1752: forge.Forge.ClearHostUefiPassword:output_type -> forge.ClearHostUefiPasswordResponse - 1024, // 1753: forge.Forge.AddExpectedMachine:output_type -> google.protobuf.Empty - 1024, // 1754: forge.Forge.DeleteExpectedMachine:output_type -> google.protobuf.Empty - 1024, // 1755: forge.Forge.UpdateExpectedMachine:output_type -> google.protobuf.Empty - 546, // 1756: forge.Forge.GetExpectedMachine:output_type -> forge.ExpectedMachine - 548, // 1757: forge.Forge.GetAllExpectedMachines:output_type -> forge.ExpectedMachineList - 1024, // 1758: forge.Forge.ReplaceAllExpectedMachines:output_type -> google.protobuf.Empty - 1024, // 1759: forge.Forge.DeleteAllExpectedMachines:output_type -> google.protobuf.Empty - 549, // 1760: forge.Forge.GetAllExpectedMachinesLinked:output_type -> forge.LinkedExpectedMachineList - 551, // 1761: forge.Forge.GetAllUnexpectedMachines:output_type -> forge.UnexpectedMachineList - 555, // 1762: forge.Forge.CreateExpectedMachines:output_type -> forge.BatchExpectedMachineOperationResponse - 555, // 1763: forge.Forge.UpdateExpectedMachines:output_type -> forge.BatchExpectedMachineOperationResponse - 1024, // 1764: forge.Forge.AddExpectedPowerShelf:output_type -> google.protobuf.Empty - 1024, // 1765: forge.Forge.DeleteExpectedPowerShelf:output_type -> google.protobuf.Empty - 1024, // 1766: forge.Forge.UpdateExpectedPowerShelf:output_type -> google.protobuf.Empty - 205, // 1767: forge.Forge.GetExpectedPowerShelf:output_type -> forge.ExpectedPowerShelf - 207, // 1768: forge.Forge.GetAllExpectedPowerShelves:output_type -> forge.ExpectedPowerShelfList - 1024, // 1769: forge.Forge.ReplaceAllExpectedPowerShelves:output_type -> google.protobuf.Empty - 1024, // 1770: forge.Forge.DeleteAllExpectedPowerShelves:output_type -> google.protobuf.Empty - 208, // 1771: forge.Forge.GetAllExpectedPowerShelvesLinked:output_type -> forge.LinkedExpectedPowerShelfList - 1024, // 1772: forge.Forge.AddExpectedSwitch:output_type -> google.protobuf.Empty - 1024, // 1773: forge.Forge.DeleteExpectedSwitch:output_type -> google.protobuf.Empty - 1024, // 1774: forge.Forge.UpdateExpectedSwitch:output_type -> google.protobuf.Empty - 227, // 1775: forge.Forge.GetExpectedSwitch:output_type -> forge.ExpectedSwitch - 229, // 1776: forge.Forge.GetAllExpectedSwitches:output_type -> forge.ExpectedSwitchList - 1024, // 1777: forge.Forge.ReplaceAllExpectedSwitches:output_type -> google.protobuf.Empty - 1024, // 1778: forge.Forge.DeleteAllExpectedSwitches:output_type -> google.protobuf.Empty - 230, // 1779: forge.Forge.GetAllExpectedSwitchesLinked:output_type -> forge.LinkedExpectedSwitchList - 1024, // 1780: forge.Forge.AddExpectedRack:output_type -> google.protobuf.Empty - 1024, // 1781: forge.Forge.DeleteExpectedRack:output_type -> google.protobuf.Empty - 1024, // 1782: forge.Forge.UpdateExpectedRack:output_type -> google.protobuf.Empty - 232, // 1783: forge.Forge.GetExpectedRack:output_type -> forge.ExpectedRack - 234, // 1784: forge.Forge.GetAllExpectedRacks:output_type -> forge.ExpectedRackList - 1024, // 1785: forge.Forge.ReplaceAllExpectedRacks:output_type -> google.protobuf.Empty - 1024, // 1786: forge.Forge.DeleteAllExpectedRacks:output_type -> google.protobuf.Empty - 125, // 1787: forge.Forge.AttestQuote:output_type -> forge.AttestQuoteResponse - 629, // 1788: forge.Forge.CreateInstanceType:output_type -> forge.CreateInstanceTypeResponse - 631, // 1789: forge.Forge.FindInstanceTypeIds:output_type -> forge.FindInstanceTypeIdsResponse - 633, // 1790: forge.Forge.FindInstanceTypesByIds:output_type -> forge.FindInstanceTypesByIdsResponse - 636, // 1791: forge.Forge.UpdateInstanceType:output_type -> forge.UpdateInstanceTypeResponse - 635, // 1792: forge.Forge.DeleteInstanceType:output_type -> forge.DeleteInstanceTypeResponse - 639, // 1793: forge.Forge.AssociateMachinesWithInstanceType:output_type -> forge.AssociateMachinesWithInstanceTypeResponse - 641, // 1794: forge.Forge.RemoveMachineInstanceTypeAssociation:output_type -> forge.RemoveMachineInstanceTypeAssociationResponse - 1100, // 1795: forge.Forge.CreateMeasurementBundle:output_type -> measured_boot.CreateMeasurementBundleResponse - 1101, // 1796: forge.Forge.DeleteMeasurementBundle:output_type -> measured_boot.DeleteMeasurementBundleResponse - 1102, // 1797: forge.Forge.RenameMeasurementBundle:output_type -> measured_boot.RenameMeasurementBundleResponse - 1103, // 1798: forge.Forge.UpdateMeasurementBundle:output_type -> measured_boot.UpdateMeasurementBundleResponse - 1104, // 1799: forge.Forge.ShowMeasurementBundle:output_type -> measured_boot.ShowMeasurementBundleResponse - 1105, // 1800: forge.Forge.ShowMeasurementBundles:output_type -> measured_boot.ShowMeasurementBundlesResponse - 1106, // 1801: forge.Forge.ListMeasurementBundles:output_type -> measured_boot.ListMeasurementBundlesResponse - 1107, // 1802: forge.Forge.ListMeasurementBundleMachines:output_type -> measured_boot.ListMeasurementBundleMachinesResponse - 1104, // 1803: forge.Forge.FindClosestBundleMatch:output_type -> measured_boot.ShowMeasurementBundleResponse - 1108, // 1804: forge.Forge.DeleteMeasurementJournal:output_type -> measured_boot.DeleteMeasurementJournalResponse - 1109, // 1805: forge.Forge.ShowMeasurementJournal:output_type -> measured_boot.ShowMeasurementJournalResponse - 1110, // 1806: forge.Forge.ShowMeasurementJournals:output_type -> measured_boot.ShowMeasurementJournalsResponse - 1111, // 1807: forge.Forge.ListMeasurementJournal:output_type -> measured_boot.ListMeasurementJournalResponse - 1112, // 1808: forge.Forge.AttestCandidateMachine:output_type -> measured_boot.AttestCandidateMachineResponse - 1113, // 1809: forge.Forge.ShowCandidateMachine:output_type -> measured_boot.ShowCandidateMachineResponse - 1114, // 1810: forge.Forge.ShowCandidateMachines:output_type -> measured_boot.ShowCandidateMachinesResponse - 1115, // 1811: forge.Forge.ListCandidateMachines:output_type -> measured_boot.ListCandidateMachinesResponse - 1116, // 1812: forge.Forge.CreateMeasurementSystemProfile:output_type -> measured_boot.CreateMeasurementSystemProfileResponse - 1117, // 1813: forge.Forge.DeleteMeasurementSystemProfile:output_type -> measured_boot.DeleteMeasurementSystemProfileResponse - 1118, // 1814: forge.Forge.RenameMeasurementSystemProfile:output_type -> measured_boot.RenameMeasurementSystemProfileResponse - 1119, // 1815: forge.Forge.ShowMeasurementSystemProfile:output_type -> measured_boot.ShowMeasurementSystemProfileResponse - 1120, // 1816: forge.Forge.ShowMeasurementSystemProfiles:output_type -> measured_boot.ShowMeasurementSystemProfilesResponse - 1121, // 1817: forge.Forge.ListMeasurementSystemProfiles:output_type -> measured_boot.ListMeasurementSystemProfilesResponse - 1122, // 1818: forge.Forge.ListMeasurementSystemProfileBundles:output_type -> measured_boot.ListMeasurementSystemProfileBundlesResponse - 1123, // 1819: forge.Forge.ListMeasurementSystemProfileMachines:output_type -> measured_boot.ListMeasurementSystemProfileMachinesResponse - 1124, // 1820: forge.Forge.CreateMeasurementReport:output_type -> measured_boot.CreateMeasurementReportResponse - 1125, // 1821: forge.Forge.DeleteMeasurementReport:output_type -> measured_boot.DeleteMeasurementReportResponse - 1126, // 1822: forge.Forge.PromoteMeasurementReport:output_type -> measured_boot.PromoteMeasurementReportResponse - 1127, // 1823: forge.Forge.RevokeMeasurementReport:output_type -> measured_boot.RevokeMeasurementReportResponse - 1128, // 1824: forge.Forge.ShowMeasurementReportForId:output_type -> measured_boot.ShowMeasurementReportForIdResponse - 1129, // 1825: forge.Forge.ShowMeasurementReportsForMachine:output_type -> measured_boot.ShowMeasurementReportsForMachineResponse - 1130, // 1826: forge.Forge.ShowMeasurementReports:output_type -> measured_boot.ShowMeasurementReportsResponse - 1131, // 1827: forge.Forge.ListMeasurementReport:output_type -> measured_boot.ListMeasurementReportResponse - 1132, // 1828: forge.Forge.MatchMeasurementReport:output_type -> measured_boot.MatchMeasurementReportResponse - 1133, // 1829: forge.Forge.ImportSiteMeasurements:output_type -> measured_boot.ImportSiteMeasurementsResponse - 1134, // 1830: forge.Forge.ExportSiteMeasurements:output_type -> measured_boot.ExportSiteMeasurementsResponse - 1135, // 1831: forge.Forge.AddMeasurementTrustedMachine:output_type -> measured_boot.AddMeasurementTrustedMachineResponse - 1136, // 1832: forge.Forge.RemoveMeasurementTrustedMachine:output_type -> measured_boot.RemoveMeasurementTrustedMachineResponse - 1137, // 1833: forge.Forge.AddMeasurementTrustedProfile:output_type -> measured_boot.AddMeasurementTrustedProfileResponse - 1138, // 1834: forge.Forge.RemoveMeasurementTrustedProfile:output_type -> measured_boot.RemoveMeasurementTrustedProfileResponse - 1139, // 1835: forge.Forge.ListMeasurementTrustedMachines:output_type -> measured_boot.ListMeasurementTrustedMachinesResponse - 1140, // 1836: forge.Forge.ListMeasurementTrustedProfiles:output_type -> measured_boot.ListMeasurementTrustedProfilesResponse - 1141, // 1837: forge.Forge.ListAttestationSummary:output_type -> measured_boot.ListAttestationSummaryResponse - 660, // 1838: forge.Forge.CreateNetworkSecurityGroup:output_type -> forge.CreateNetworkSecurityGroupResponse - 662, // 1839: forge.Forge.FindNetworkSecurityGroupIds:output_type -> forge.FindNetworkSecurityGroupIdsResponse - 664, // 1840: forge.Forge.FindNetworkSecurityGroupsByIds:output_type -> forge.FindNetworkSecurityGroupsByIdsResponse - 665, // 1841: forge.Forge.UpdateNetworkSecurityGroup:output_type -> forge.UpdateNetworkSecurityGroupResponse - 668, // 1842: forge.Forge.DeleteNetworkSecurityGroup:output_type -> forge.DeleteNetworkSecurityGroupResponse - 671, // 1843: forge.Forge.GetNetworkSecurityGroupPropagationStatus:output_type -> forge.GetNetworkSecurityGroupPropagationStatusResponse - 678, // 1844: forge.Forge.GetNetworkSecurityGroupAttachments:output_type -> forge.GetNetworkSecurityGroupAttachmentsResponse - 536, // 1845: forge.Forge.CreateOsImage:output_type -> forge.OsImage - 540, // 1846: forge.Forge.DeleteOsImage:output_type -> forge.DeleteOsImageResponse - 538, // 1847: forge.Forge.ListOsImage:output_type -> forge.ListOsImageResponse - 536, // 1848: forge.Forge.GetOsImage:output_type -> forge.OsImage - 536, // 1849: forge.Forge.UpdateOsImage:output_type -> forge.OsImage - 265, // 1850: forge.Forge.GetIpxeTemplate:output_type -> forge.IpxeTemplate - 543, // 1851: forge.Forge.ListIpxeTemplates:output_type -> forge.IpxeTemplateList - 556, // 1852: forge.Forge.RebootCompleted:output_type -> forge.MachineRebootCompletedResponse - 1024, // 1853: forge.Forge.PersistValidationResult:output_type -> google.protobuf.Empty - 563, // 1854: forge.Forge.GetMachineValidationResults:output_type -> forge.MachineValidationResultList - 560, // 1855: forge.Forge.MachineValidationCompleted:output_type -> forge.MachineValidationCompletedResponse - 568, // 1856: forge.Forge.MachineSetAutoUpdate:output_type -> forge.MachineSetAutoUpdateResponse - 571, // 1857: forge.Forge.GetMachineValidationExternalConfig:output_type -> forge.GetMachineValidationExternalConfigResponse - 573, // 1858: forge.Forge.GetMachineValidationExternalConfigs:output_type -> forge.GetMachineValidationExternalConfigsResponse - 1024, // 1859: forge.Forge.AddUpdateMachineValidationExternalConfig:output_type -> google.protobuf.Empty - 590, // 1860: forge.Forge.GetMachineValidationRuns:output_type -> forge.MachineValidationRunList - 593, // 1861: forge.Forge.FindMachineValidationRunItemIds:output_type -> forge.MachineValidationRunItemIdList - 595, // 1862: forge.Forge.FindMachineValidationRunItemsByIds:output_type -> forge.MachineValidationRunItemList - 598, // 1863: forge.Forge.GetMachineValidationAttempt:output_type -> forge.MachineValidationAttempt - 600, // 1864: forge.Forge.HeartbeatMachineValidationRun:output_type -> forge.MachineValidationHeartbeatResponse - 1024, // 1865: forge.Forge.RemoveMachineValidationExternalConfig:output_type -> google.protobuf.Empty - 607, // 1866: forge.Forge.GetMachineValidationTests:output_type -> forge.MachineValidationTestsGetResponse - 606, // 1867: forge.Forge.AddMachineValidationTest:output_type -> forge.MachineValidationTestAddUpdateResponse - 606, // 1868: forge.Forge.UpdateMachineValidationTest:output_type -> forge.MachineValidationTestAddUpdateResponse - 609, // 1869: forge.Forge.MachineValidationTestVerfied:output_type -> forge.MachineValidationTestVerfiedResponse - 611, // 1870: forge.Forge.MachineValidationTestNextVersion:output_type -> forge.MachineValidationTestNextVersionResponse - 614, // 1871: forge.Forge.MachineValidationTestEnableDisableTest:output_type -> forge.MachineValidationTestEnableDisableTestResponse - 616, // 1872: forge.Forge.UpdateMachineValidationRun:output_type -> forge.MachineValidationRunResponse - 410, // 1873: forge.Forge.AdminBmcReset:output_type -> forge.AdminBmcResetResponse - 587, // 1874: forge.Forge.AdminPowerControl:output_type -> forge.AdminPowerControlResponse - 398, // 1875: forge.Forge.DisableSecureBoot:output_type -> forge.DisableSecureBootResponse - 400, // 1876: forge.Forge.Lockdown:output_type -> forge.LockdownResponse - 1142, // 1877: forge.Forge.LockdownStatus:output_type -> site_explorer.LockdownStatus - 404, // 1878: forge.Forge.MachineSetup:output_type -> forge.MachineSetupResponse - 406, // 1879: forge.Forge.SetDpuFirstBootOrder:output_type -> forge.SetDpuFirstBootOrderResponse - 778, // 1880: forge.Forge.CreateBmcUser:output_type -> forge.CreateBmcUserResponse - 780, // 1881: forge.Forge.DeleteBmcUser:output_type -> forge.DeleteBmcUserResponse - 412, // 1882: forge.Forge.EnableInfiniteBoot:output_type -> forge.EnableInfiniteBootResponse - 414, // 1883: forge.Forge.IsInfiniteBootEnabled:output_type -> forge.IsInfiniteBootEnabledResponse - 577, // 1884: forge.Forge.OnDemandMachineValidation:output_type -> forge.MachineValidationOnDemandResponse - 585, // 1885: forge.Forge.OnDemandRackMaintenance:output_type -> forge.RackMaintenanceOnDemandResponse - 116, // 1886: forge.Forge.TpmAddCaCert:output_type -> forge.TpmCaAddedCaStatus - 122, // 1887: forge.Forge.TpmShowCaCerts:output_type -> forge.TpmCaCertDetailCollection - 119, // 1888: forge.Forge.TpmShowUnmatchedEkCerts:output_type -> forge.TpmEkCertStatusCollection - 1024, // 1889: forge.Forge.TpmDeleteCaCert:output_type -> google.protobuf.Empty - 643, // 1890: forge.Forge.RedfishBrowse:output_type -> forge.RedfishBrowseResponse - 645, // 1891: forge.Forge.RedfishListActions:output_type -> forge.RedfishListActionsResponse - 650, // 1892: forge.Forge.RedfishCreateAction:output_type -> forge.RedfishCreateActionResponse - 652, // 1893: forge.Forge.RedfishApproveAction:output_type -> forge.RedfishApproveActionResponse - 653, // 1894: forge.Forge.RedfishApplyAction:output_type -> forge.RedfishApplyActionResponse - 654, // 1895: forge.Forge.RedfishCancelAction:output_type -> forge.RedfishCancelActionResponse - 656, // 1896: forge.Forge.UfmBrowse:output_type -> forge.UfmBrowseResponse - 680, // 1897: forge.Forge.GetDesiredFirmwareVersions:output_type -> forge.GetDesiredFirmwareVersionsResponse - 696, // 1898: forge.Forge.CreateSku:output_type -> forge.SkuIdList - 692, // 1899: forge.Forge.GenerateSkuFromMachine:output_type -> forge.Sku - 1024, // 1900: forge.Forge.VerifySkuForMachine:output_type -> google.protobuf.Empty - 1024, // 1901: forge.Forge.AssignSkuToMachine:output_type -> google.protobuf.Empty - 1024, // 1902: forge.Forge.RemoveSkuAssociation:output_type -> google.protobuf.Empty - 1024, // 1903: forge.Forge.DeleteSku:output_type -> google.protobuf.Empty - 696, // 1904: forge.Forge.GetAllSkuIds:output_type -> forge.SkuIdList - 695, // 1905: forge.Forge.FindSkusByIds:output_type -> forge.SkuList - 1024, // 1906: forge.Forge.UpdateSkuMetadata:output_type -> google.protobuf.Empty - 692, // 1907: forge.Forge.ReplaceSku:output_type -> forge.Sku - 380, // 1908: forge.Forge.GetManagedHostQuarantineState:output_type -> forge.GetManagedHostQuarantineStateResponse - 382, // 1909: forge.Forge.SetManagedHostQuarantineState:output_type -> forge.SetManagedHostQuarantineStateResponse - 384, // 1910: forge.Forge.ClearManagedHostQuarantineState:output_type -> forge.ClearManagedHostQuarantineStateResponse - 1024, // 1911: forge.Forge.ResetHostReprovisioning:output_type -> google.protobuf.Empty - 1024, // 1912: forge.Forge.CopyBfbToDpuRshim:output_type -> google.protobuf.Empty - 702, // 1913: forge.Forge.GetAllDpaInterfaceIds:output_type -> forge.DpaInterfaceIdList - 704, // 1914: forge.Forge.FindDpaInterfacesByIds:output_type -> forge.DpaInterfaceList - 700, // 1915: forge.Forge.CreateDpaInterface:output_type -> forge.DpaInterface - 700, // 1916: forge.Forge.EnsureDpaInterface:output_type -> forge.DpaInterface - 707, // 1917: forge.Forge.DeleteDpaInterface:output_type -> forge.DpaInterfaceDeletionResult - 712, // 1918: forge.Forge.GetPowerOptions:output_type -> forge.PowerOptionResponse - 712, // 1919: forge.Forge.UpdatePowerOption:output_type -> forge.PowerOptionResponse - 1024, // 1920: forge.Forge.AllowIngestionAndPowerOn:output_type -> google.protobuf.Empty - 115, // 1921: forge.Forge.DetermineMachineIngestionState:output_type -> forge.MachineIngestionStateResponse - 730, // 1922: forge.Forge.FindRackIds:output_type -> forge.RackIdList - 728, // 1923: forge.Forge.FindRacksByIds:output_type -> forge.RackList - 727, // 1924: forge.Forge.GetRack:output_type -> forge.GetRackResponse - 1024, // 1925: forge.Forge.DeleteRack:output_type -> google.protobuf.Empty - 738, // 1926: forge.Forge.AdminForceDeleteRack:output_type -> forge.AdminForceDeleteRackResponse - 745, // 1927: forge.Forge.GetRackProfile:output_type -> forge.GetRackProfileResponse - 716, // 1928: forge.Forge.CreateComputeAllocation:output_type -> forge.CreateComputeAllocationResponse - 718, // 1929: forge.Forge.FindComputeAllocationIds:output_type -> forge.FindComputeAllocationIdsResponse - 720, // 1930: forge.Forge.FindComputeAllocationsByIds:output_type -> forge.FindComputeAllocationsByIdsResponse - 721, // 1931: forge.Forge.UpdateComputeAllocation:output_type -> forge.UpdateComputeAllocationResponse - 724, // 1932: forge.Forge.DeleteComputeAllocation:output_type -> forge.DeleteComputeAllocationResponse - 782, // 1933: forge.Forge.SetFirmwareUpdateTimeWindow:output_type -> forge.SetFirmwareUpdateTimeWindowResponse - 784, // 1934: forge.Forge.ListHostFirmware:output_type -> forge.ListHostFirmwareResponse - 1143, // 1935: forge.Forge.PublishMlxDeviceReport:output_type -> mlx_device.PublishMlxDeviceReportResponse - 1144, // 1936: forge.Forge.PublishMlxObservationReport:output_type -> mlx_device.PublishMlxObservationReportResponse - 787, // 1937: forge.Forge.TrimTable:output_type -> forge.TrimTableResponse - 789, // 1938: forge.Forge.ListNvlinkNmxcEndpoints:output_type -> forge.NvlinkNmxcEndpointList - 788, // 1939: forge.Forge.CreateNvlinkNmxcEndpoint:output_type -> forge.NvlinkNmxcEndpoint - 788, // 1940: forge.Forge.UpdateNvlinkNmxcEndpoint:output_type -> forge.NvlinkNmxcEndpoint - 1024, // 1941: forge.Forge.DeleteNvlinkNmxcEndpoint:output_type -> google.protobuf.Empty - 792, // 1942: forge.Forge.CreateRemediation:output_type -> forge.CreateRemediationResponse - 1024, // 1943: forge.Forge.ApproveRemediation:output_type -> google.protobuf.Empty - 1024, // 1944: forge.Forge.RevokeRemediation:output_type -> google.protobuf.Empty - 1024, // 1945: forge.Forge.EnableRemediation:output_type -> google.protobuf.Empty - 1024, // 1946: forge.Forge.DisableRemediation:output_type -> google.protobuf.Empty - 793, // 1947: forge.Forge.FindRemediationIds:output_type -> forge.RemediationIdList - 794, // 1948: forge.Forge.FindRemediationsByIds:output_type -> forge.RemediationList - 801, // 1949: forge.Forge.FindAppliedRemediationIds:output_type -> forge.AppliedRemediationIdList - 804, // 1950: forge.Forge.FindAppliedRemediations:output_type -> forge.AppliedRemediationList - 806, // 1951: forge.Forge.GetNextRemediationForMachine:output_type -> forge.GetNextRemediationForMachineResponse - 1024, // 1952: forge.Forge.RemediationApplied:output_type -> google.protobuf.Empty - 1024, // 1953: forge.Forge.SetPrimaryDpu:output_type -> google.protobuf.Empty - 1024, // 1954: forge.Forge.SetPrimaryInterface:output_type -> google.protobuf.Empty - 815, // 1955: forge.Forge.CreateDpuExtensionService:output_type -> forge.DpuExtensionService - 815, // 1956: forge.Forge.UpdateDpuExtensionService:output_type -> forge.DpuExtensionService - 819, // 1957: forge.Forge.DeleteDpuExtensionService:output_type -> forge.DeleteDpuExtensionServiceResponse - 821, // 1958: forge.Forge.FindDpuExtensionServiceIds:output_type -> forge.DpuExtensionServiceIdList - 823, // 1959: forge.Forge.FindDpuExtensionServicesByIds:output_type -> forge.DpuExtensionServiceList - 825, // 1960: forge.Forge.GetDpuExtensionServiceVersionsInfo:output_type -> forge.DpuExtensionServiceVersionInfoList - 827, // 1961: forge.Forge.FindInstancesByDpuExtensionService:output_type -> forge.FindInstancesByDpuExtensionServiceResponse - 89, // 1962: forge.Forge.TriggerMachineAttestation:output_type -> forge.SpdmMachineAttestationTriggerResponse - 1024, // 1963: forge.Forge.CancelMachineAttestation:output_type -> google.protobuf.Empty - 94, // 1964: forge.Forge.ListAttestationMachines:output_type -> forge.SpdmListAttestationMachinesResponse - 91, // 1965: forge.Forge.GetAttestationMachine:output_type -> forge.SpdmGetAttestationMachineResponse - 96, // 1966: forge.Forge.SignMachineIdentity:output_type -> forge.MachineIdentityResponse - 101, // 1967: forge.Forge.GetTenantIdentityConfiguration:output_type -> forge.TenantIdentityConfigResponse - 101, // 1968: forge.Forge.SetTenantIdentityConfiguration:output_type -> forge.TenantIdentityConfigResponse - 1024, // 1969: forge.Forge.DeleteTenantIdentityConfiguration:output_type -> google.protobuf.Empty - 104, // 1970: forge.Forge.GetTokenDelegation:output_type -> forge.TokenDelegationResponse - 104, // 1971: forge.Forge.SetTokenDelegation:output_type -> forge.TokenDelegationResponse - 1024, // 1972: forge.Forge.DeleteTokenDelegation:output_type -> google.protobuf.Empty - 110, // 1973: forge.Forge.ReencryptTenantIdentitySecrets:output_type -> forge.ReencryptTenantIdentitySecretsResponse - 111, // 1974: forge.Forge.GetJWKS:output_type -> forge.Jwks - 112, // 1975: forge.Forge.GetOpenIDConfiguration:output_type -> forge.OpenIdConfiguration - 834, // 1976: forge.Forge.ScoutStream:output_type -> forge.ScoutStreamScoutBoundMessage - 837, // 1977: forge.Forge.ScoutStreamShowConnections:output_type -> forge.ScoutStreamShowConnectionsResponse - 839, // 1978: forge.Forge.ScoutStreamDisconnect:output_type -> forge.ScoutStreamDisconnectResponse - 841, // 1979: forge.Forge.ScoutStreamPing:output_type -> forge.ScoutStreamAdminPingResponse - 1145, // 1980: forge.Forge.MlxAdminProfileSync:output_type -> mlx_device.MlxAdminProfileSyncResponse - 1146, // 1981: forge.Forge.MlxAdminProfileShow:output_type -> mlx_device.MlxAdminProfileShowResponse - 1147, // 1982: forge.Forge.MlxAdminProfileCompare:output_type -> mlx_device.MlxAdminProfileCompareResponse - 1148, // 1983: forge.Forge.MlxAdminProfileList:output_type -> mlx_device.MlxAdminProfileListResponse - 1149, // 1984: forge.Forge.MlxAdminLockdownLock:output_type -> mlx_device.MlxAdminLockdownLockResponse - 1150, // 1985: forge.Forge.MlxAdminLockdownUnlock:output_type -> mlx_device.MlxAdminLockdownUnlockResponse - 1151, // 1986: forge.Forge.MlxAdminLockdownStatus:output_type -> mlx_device.MlxAdminLockdownStatusResponse - 1152, // 1987: forge.Forge.MlxAdminShowDevice:output_type -> mlx_device.MlxAdminDeviceInfoResponse - 1153, // 1988: forge.Forge.MlxAdminShowMachine:output_type -> mlx_device.MlxAdminDeviceReportResponse - 1154, // 1989: forge.Forge.MlxAdminRegistryList:output_type -> mlx_device.MlxAdminRegistryListResponse - 1155, // 1990: forge.Forge.MlxAdminRegistryShow:output_type -> mlx_device.MlxAdminRegistryShowResponse - 1156, // 1991: forge.Forge.MlxAdminConfigQuery:output_type -> mlx_device.MlxAdminConfigQueryResponse - 1157, // 1992: forge.Forge.MlxAdminConfigSet:output_type -> mlx_device.MlxAdminConfigSetResponse - 1158, // 1993: forge.Forge.MlxAdminConfigSync:output_type -> mlx_device.MlxAdminConfigSyncResponse - 1159, // 1994: forge.Forge.MlxAdminConfigCompare:output_type -> mlx_device.MlxAdminConfigCompareResponse - 763, // 1995: forge.Forge.FindNVLinkPartitionIds:output_type -> forge.NVLinkPartitionIdList - 758, // 1996: forge.Forge.FindNVLinkPartitionsByIds:output_type -> forge.NVLinkPartitionList - 758, // 1997: forge.Forge.NVLinkPartitionsForTenant:output_type -> forge.NVLinkPartitionList - 774, // 1998: forge.Forge.FindNVLinkLogicalPartitionIds:output_type -> forge.NVLinkLogicalPartitionIdList - 768, // 1999: forge.Forge.FindNVLinkLogicalPartitionsByIds:output_type -> forge.NVLinkLogicalPartitionList - 767, // 2000: forge.Forge.CreateNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartition - 776, // 2001: forge.Forge.UpdateNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartitionUpdateResult - 771, // 2002: forge.Forge.DeleteNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartitionDeletionResult - 768, // 2003: forge.Forge.NVLinkLogicalPartitionsForTenant:output_type -> forge.NVLinkLogicalPartitionList - 855, // 2004: forge.Forge.GetMachinePositionInfo:output_type -> forge.MachinePositionInfoList - 756, // 2005: forge.Forge.NmxcBrowse:output_type -> forge.NmxcBrowseResponse - 1024, // 2006: forge.Forge.ModifyDPFState:output_type -> google.protobuf.Empty - 858, // 2007: forge.Forge.GetDPFState:output_type -> forge.DPFStateResponse - 861, // 2008: forge.Forge.GetDPFHostSnapshot:output_type -> forge.DPFHostSnapshotResponse - 864, // 2009: forge.Forge.GetDPFServiceVersions:output_type -> forge.DPFServiceVersionsResponse - 872, // 2010: forge.Forge.ComponentPowerControl:output_type -> forge.ComponentPowerControlResponse - 870, // 2011: forge.Forge.GetComponentInventory:output_type -> forge.GetComponentInventoryResponse - 879, // 2012: forge.Forge.UpdateComponentFirmware:output_type -> forge.UpdateComponentFirmwareResponse - 881, // 2013: forge.Forge.GetComponentFirmwareStatus:output_type -> forge.GetComponentFirmwareStatusResponse - 885, // 2014: forge.Forge.ListComponentFirmwareVersions:output_type -> forge.ListComponentFirmwareVersionsResponse - 898, // 2015: forge.Forge.CreateOperatingSystem:output_type -> forge.OperatingSystem - 898, // 2016: forge.Forge.GetOperatingSystem:output_type -> forge.OperatingSystem - 898, // 2017: forge.Forge.UpdateOperatingSystem:output_type -> forge.OperatingSystem - 904, // 2018: forge.Forge.DeleteOperatingSystem:output_type -> forge.DeleteOperatingSystemResponse - 906, // 2019: forge.Forge.FindOperatingSystemIds:output_type -> forge.OperatingSystemIdList - 908, // 2020: forge.Forge.FindOperatingSystemsByIds:output_type -> forge.OperatingSystemList - 910, // 2021: forge.Forge.GetOperatingSystemCachableIpxeTemplateArtifacts:output_type -> forge.IpxeTemplateArtifactList - 910, // 2022: forge.Forge.UpdateOperatingSystemCachableIpxeTemplateArtifacts:output_type -> forge.IpxeTemplateArtifactList - 915, // 2023: forge.Forge.ReWrapSecrets:output_type -> forge.ReWrapSecretsResponse - 1576, // [1576:2024] is the sub-list for method output_type - 1128, // [1128:1576] is the sub-list for method input_type - 1128, // [1128:1128] is the sub-list for extension type_name - 1128, // [1128:1128] is the sub-list for extension extendee - 0, // [0:1128] is the sub-list for field type_name + 302, // 329: forge.DeleteAttribution.initiated_by:type_name -> forge.DeleteInitiatedBy + 979, // 330: forge.InstanceReleaseRequest.id:type_name -> common.InstanceId + 301, // 331: forge.InstanceReleaseRequest.issue:type_name -> forge.Issue + 303, // 332: forge.InstanceReleaseRequest.delete_attribution:type_name -> forge.DeleteAttribution + 963, // 333: forge.MachinesByIdsRequest.machine_ids:type_name -> common.MachineId + 973, // 334: forge.MachineSearchConfig.rack_id:type_name -> common.RackId + 963, // 335: forge.MachineStateHistoriesRequest.machine_ids:type_name -> common.MachineId + 930, // 336: forge.MachineStateHistories.histories:type_name -> forge.MachineStateHistories.HistoriesEntry + 347, // 337: forge.MachineStateHistoryRecords.records:type_name -> forge.MachineEvent + 963, // 338: forge.MachineHealthHistoriesRequest.machine_ids:type_name -> common.MachineId + 964, // 339: forge.MachineHealthHistoriesRequest.start_time:type_name -> google.protobuf.Timestamp + 964, // 340: forge.MachineHealthHistoriesRequest.end_time:type_name -> google.protobuf.Timestamp + 931, // 341: forge.HealthHistories.histories:type_name -> forge.HealthHistories.HistoriesEntry + 314, // 342: forge.HealthHistoryRecords.records:type_name -> forge.HealthHistoryRecord + 971, // 343: forge.HealthHistoryRecord.health:type_name -> health.HealthReport + 964, // 344: forge.HealthHistoryRecord.time:type_name -> google.protobuf.Timestamp + 464, // 345: forge.TenantList.tenants:type_name -> forge.Tenant + 348, // 346: forge.InterfaceList.interfaces:type_name -> forge.MachineInterface + 332, // 347: forge.MachineList.machines:type_name -> forge.Machine + 984, // 348: forge.InterfaceDeleteQuery.id:type_name -> common.MachineInterfaceId + 984, // 349: forge.InterfaceSearchQuery.id:type_name -> common.MachineInterfaceId + 984, // 350: forge.AssignStaticAddressRequest.interface_id:type_name -> common.MachineInterfaceId + 984, // 351: forge.AssignStaticAddressResponse.interface_id:type_name -> common.MachineInterfaceId + 17, // 352: forge.AssignStaticAddressResponse.status:type_name -> forge.AssignStaticAddressStatus + 984, // 353: forge.RemoveStaticAddressRequest.interface_id:type_name -> common.MachineInterfaceId + 984, // 354: forge.RemoveStaticAddressResponse.interface_id:type_name -> common.MachineInterfaceId + 18, // 355: forge.RemoveStaticAddressResponse.status:type_name -> forge.RemoveStaticAddressStatus + 984, // 356: forge.FindInterfaceAddressesRequest.interface_id:type_name -> common.MachineInterfaceId + 984, // 357: forge.FindInterfaceAddressesResponse.interface_id:type_name -> common.MachineInterfaceId + 328, // 358: forge.FindInterfaceAddressesResponse.addresses:type_name -> forge.InterfaceAddress + 984, // 359: forge.BmcInfo.machine_interface_id:type_name -> common.MachineInterfaceId + 963, // 360: forge.Machine.id:type_name -> common.MachineId + 343, // 361: forge.Machine.state_reason:type_name -> forge.ControllerStateReason + 345, // 362: forge.Machine.state_sla:type_name -> forge.StateSla + 347, // 363: forge.Machine.events:type_name -> forge.MachineEvent + 348, // 364: forge.Machine.interfaces:type_name -> forge.MachineInterface + 985, // 365: forge.Machine.discovery_info:type_name -> machine_discovery.DiscoveryInfo + 19, // 366: forge.Machine.machine_type:type_name -> forge.MachineType + 330, // 367: forge.Machine.bmc_info:type_name -> forge.BmcInfo + 964, // 368: forge.Machine.last_reboot_time:type_name -> google.protobuf.Timestamp + 964, // 369: forge.Machine.last_observation_time:type_name -> google.protobuf.Timestamp + 964, // 370: forge.Machine.maintenance_start_time:type_name -> google.protobuf.Timestamp + 963, // 371: forge.Machine.associated_host_machine_id:type_name -> common.MachineId + 340, // 372: forge.Machine.inventory:type_name -> forge.MachineInventory + 964, // 373: forge.Machine.last_reboot_requested_time:type_name -> google.protobuf.Timestamp + 963, // 374: forge.Machine.associated_dpu_machine_ids:type_name -> common.MachineId + 971, // 375: forge.Machine.health:type_name -> health.HealthReport + 342, // 376: forge.Machine.health_sources:type_name -> forge.HealthSourceOrigin + 349, // 377: forge.Machine.ib_status:type_name -> forge.InfinibandStatusObservation + 256, // 378: forge.Machine.metadata:type_name -> forge.Metadata + 334, // 379: forge.Machine.instance_network_restrictions:type_name -> forge.InstanceNetworkRestrictions + 626, // 380: forge.Machine.capabilities:type_name -> forge.MachineCapabilitiesSet + 699, // 381: forge.Machine.hw_sku_status:type_name -> forge.SkuStatus + 380, // 382: forge.Machine.quarantine_state:type_name -> forge.ManagedHostQuarantineState + 750, // 383: forge.Machine.nvlink_info:type_name -> forge.MachineNVLinkInfo + 755, // 384: forge.Machine.nvlink_status_observation:type_name -> forge.MachineNVLinkStatusObservation + 973, // 385: forge.Machine.rack_id:type_name -> common.RackId + 214, // 386: forge.Machine.placement_in_rack:type_name -> forge.PlacementInRack + 752, // 387: forge.Machine.spx_status_observation:type_name -> forge.MachineSpxStatusObservation + 333, // 388: forge.Machine.dpf:type_name -> forge.DpfMachineState + 20, // 389: forge.InstanceNetworkRestrictions.network_segment_membership_type:type_name -> forge.InstanceNetworkSegmentMembershipType + 977, // 390: forge.InstanceNetworkRestrictions.network_segment_ids:type_name -> common.NetworkSegmentId + 963, // 391: forge.MachineMetadataUpdateRequest.machine_id:type_name -> common.MachineId + 256, // 392: forge.MachineMetadataUpdateRequest.metadata:type_name -> forge.Metadata + 973, // 393: forge.RackMetadataUpdateRequest.rack_id:type_name -> common.RackId + 256, // 394: forge.RackMetadataUpdateRequest.metadata:type_name -> forge.Metadata + 975, // 395: forge.SwitchMetadataUpdateRequest.switch_id:type_name -> common.SwitchId + 256, // 396: forge.SwitchMetadataUpdateRequest.metadata:type_name -> forge.Metadata + 972, // 397: forge.PowerShelfMetadataUpdateRequest.power_shelf_id:type_name -> common.PowerShelfId + 256, // 398: forge.PowerShelfMetadataUpdateRequest.metadata:type_name -> forge.Metadata + 963, // 399: forge.DpuAgentInventoryReport.machine_id:type_name -> common.MachineId + 340, // 400: forge.DpuAgentInventoryReport.inventory:type_name -> forge.MachineInventory + 341, // 401: forge.MachineInventory.components:type_name -> forge.MachineInventorySoftwareComponent + 38, // 402: forge.HealthSourceOrigin.mode:type_name -> forge.HealthReportApplyMode + 21, // 403: forge.ControllerStateReason.outcome:type_name -> forge.ControllerStateOutcome + 344, // 404: forge.ControllerStateReason.source_ref:type_name -> forge.ControllerStateSourceReference + 986, // 405: forge.StateSla.sla:type_name -> google.protobuf.Duration + 7, // 406: forge.InstanceTenantStatus.state:type_name -> forge.TenantState + 964, // 407: forge.MachineEvent.time:type_name -> google.protobuf.Timestamp + 984, // 408: forge.MachineInterface.id:type_name -> common.MachineInterfaceId + 963, // 409: forge.MachineInterface.attached_dpu_machine_id:type_name -> common.MachineId + 963, // 410: forge.MachineInterface.machine_id:type_name -> common.MachineId + 977, // 411: forge.MachineInterface.segment_id:type_name -> common.NetworkSegmentId + 965, // 412: forge.MachineInterface.domain_id:type_name -> common.DomainId + 964, // 413: forge.MachineInterface.created:type_name -> google.protobuf.Timestamp + 964, // 414: forge.MachineInterface.last_dhcp:type_name -> google.protobuf.Timestamp + 972, // 415: forge.MachineInterface.power_shelf_id:type_name -> common.PowerShelfId + 975, // 416: forge.MachineInterface.switch_id:type_name -> common.SwitchId + 24, // 417: forge.MachineInterface.association_type:type_name -> forge.InterfaceAssociationType + 25, // 418: forge.MachineInterface.interface_type:type_name -> forge.InterfaceType + 350, // 419: forge.InfinibandStatusObservation.ib_interfaces:type_name -> forge.MachineIbInterface + 964, // 420: forge.InfinibandStatusObservation.observed_at:type_name -> google.protobuf.Timestamp + 987, // 421: forge.MachineIbInterface.associated_pkeys:type_name -> common.StringList + 987, // 422: forge.MachineIbInterface.associated_partition_ids:type_name -> common.StringList + 26, // 423: forge.DhcpDiscovery.address_family:type_name -> forge.AddressFamily + 27, // 424: forge.DhcpDiscovery.message_kind:type_name -> forge.MessageKind + 28, // 425: forge.ExpireDhcpLeaseResponse.status:type_name -> forge.ExpireDhcpLeaseStatus + 963, // 426: forge.DhcpRecord.machine_id:type_name -> common.MachineId + 984, // 427: forge.DhcpRecord.machine_interface_id:type_name -> common.MachineInterfaceId + 977, // 428: forge.DhcpRecord.segment_id:type_name -> common.NetworkSegmentId + 965, // 429: forge.DhcpRecord.subdomain_id:type_name -> common.DomainId + 964, // 430: forge.DhcpRecord.last_invalidation_time:type_name -> google.protobuf.Timestamp + 240, // 431: forge.NetworkSegmentList.network_segments:type_name -> forge.NetworkSegment + 29, // 432: forge.SSHKeyValidationResponse.role:type_name -> forge.UserRoles + 975, // 433: forge.GetSwitchNvosCredentialsRequest.switch_id:type_name -> common.SwitchId + 361, // 434: forge.GetBmcCredentialsResponse.credentials:type_name -> forge.BmcCredentials + 813, // 435: forge.BmcCredentials.username_password:type_name -> forge.UsernamePassword + 814, // 436: forge.BmcCredentials.session_token:type_name -> forge.SessionToken + 369, // 437: forge.SshRequest.endpoint_request:type_name -> forge.BmcEndpointRequest + 371, // 438: forge.CopyBfbToDpuRshimRequest.ssh_request:type_name -> forge.SshRequest + 963, // 439: forge.UpdateMachineHardwareInfoRequest.machine_id:type_name -> common.MachineId + 374, // 440: forge.UpdateMachineHardwareInfoRequest.info:type_name -> forge.MachineHardwareInfo + 30, // 441: forge.UpdateMachineHardwareInfoRequest.update_type:type_name -> forge.MachineHardwareInfoUpdateType + 988, // 442: forge.MachineHardwareInfo.gpus:type_name -> machine_discovery.Gpu + 963, // 443: forge.ManagedHostNetworkConfigRequest.dpu_machine_id:type_name -> common.MachineId + 387, // 444: forge.ManagedHostNetworkConfigResponse.managed_host_config:type_name -> forge.ManagedHostNetworkConfig + 388, // 445: forge.ManagedHostNetworkConfigResponse.admin_interface:type_name -> forge.FlatInterfaceConfig + 388, // 446: forge.ManagedHostNetworkConfigResponse.tenant_interfaces:type_name -> forge.FlatInterfaceConfig + 979, // 447: forge.ManagedHostNetworkConfigResponse.instance_id:type_name -> common.InstanceId + 5, // 448: forge.ManagedHostNetworkConfigResponse.network_virtualization_type:type_name -> forge.VpcVirtualizationType + 32, // 449: forge.ManagedHostNetworkConfigResponse.vpc_isolation_behavior:type_name -> forge.VpcIsolationBehaviorType + 289, // 450: forge.ManagedHostNetworkConfigResponse.instance:type_name -> forge.Instance + 989, // 451: forge.ManagedHostNetworkConfigResponse.common_internal_route_target:type_name -> common.RouteTarget + 989, // 452: forge.ManagedHostNetworkConfigResponse.additional_route_target_imports:type_name -> common.RouteTarget + 677, // 453: forge.ManagedHostNetworkConfigResponse.network_security_policy_overrides:type_name -> forge.ResolvedNetworkSecurityGroupRule + 379, // 454: forge.ManagedHostNetworkConfigResponse.dpu_extension_services:type_name -> forge.ManagedHostDpuExtensionServiceConfig + 377, // 455: forge.ManagedHostNetworkConfigResponse.traffic_intercept_config:type_name -> forge.TrafficInterceptConfig + 849, // 456: forge.ManagedHostNetworkConfigResponse.routing_profile:type_name -> forge.RoutingProfile + 378, // 457: forge.TrafficInterceptConfig.bridging:type_name -> forge.TrafficInterceptBridging + 932, // 458: forge.TrafficInterceptBridging.host_representor_intercept_bridging:type_name -> forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry + 64, // 459: forge.ManagedHostDpuExtensionServiceConfig.service_type:type_name -> forge.DpuExtensionServiceType + 815, // 460: forge.ManagedHostDpuExtensionServiceConfig.credential:type_name -> forge.DpuExtensionServiceCredential + 834, // 461: forge.ManagedHostDpuExtensionServiceConfig.observability:type_name -> forge.DpuExtensionServiceObservability + 31, // 462: forge.ManagedHostQuarantineState.mode:type_name -> forge.ManagedHostQuarantineMode + 963, // 463: forge.GetManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId + 380, // 464: forge.GetManagedHostQuarantineStateResponse.quarantine_state:type_name -> forge.ManagedHostQuarantineState + 963, // 465: forge.SetManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId + 380, // 466: forge.SetManagedHostQuarantineStateRequest.quarantine_state:type_name -> forge.ManagedHostQuarantineState + 380, // 467: forge.SetManagedHostQuarantineStateResponse.prior_quarantine_state:type_name -> forge.ManagedHostQuarantineState + 963, // 468: forge.ClearManagedHostQuarantineStateRequest.machine_id:type_name -> common.MachineId + 380, // 469: forge.ClearManagedHostQuarantineStateResponse.prior_quarantine_state:type_name -> forge.ManagedHostQuarantineState + 380, // 470: forge.ManagedHostNetworkConfig.quarantine_state:type_name -> forge.ManagedHostQuarantineState + 37, // 471: forge.FlatInterfaceConfig.function_type:type_name -> forge.InterfaceFunctionType + 390, // 472: forge.FlatInterfaceConfig.ipv6_interface_config:type_name -> forge.FlatInterfaceIpv6Config + 849, // 473: forge.FlatInterfaceConfig.vpc_routing_profile:type_name -> forge.RoutingProfile + 389, // 474: forge.FlatInterfaceConfig.interface_routing_profile:type_name -> forge.FlatInterfaceRoutingProfile + 391, // 475: forge.FlatInterfaceConfig.network_security_group:type_name -> forge.FlatInterfaceNetworkSecurityGroupConfig + 974, // 476: forge.FlatInterfaceConfig.internal_uuid:type_name -> common.UUID + 848, // 477: forge.FlatInterfaceRoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry + 51, // 478: forge.FlatInterfaceNetworkSecurityGroupConfig.source:type_name -> forge.NetworkSecurityGroupSource + 677, // 479: forge.FlatInterfaceNetworkSecurityGroupConfig.rules:type_name -> forge.ResolvedNetworkSecurityGroupRule + 440, // 480: forge.ManagedHostNetworkStatusResponse.all:type_name -> forge.DpuNetworkStatus + 964, // 481: forge.DpuAgentUpgradeCheckRequest.binary_mtime:type_name -> google.protobuf.Timestamp + 33, // 482: forge.DpuAgentUpgradePolicyRequest.new_policy:type_name -> forge.AgentUpgradePolicy + 33, // 483: forge.DpuAgentUpgradePolicyResponse.active_policy:type_name -> forge.AgentUpgradePolicy + 369, // 484: forge.LockdownRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 963, // 485: forge.LockdownRequest.machine_id:type_name -> common.MachineId + 34, // 486: forge.LockdownRequest.action:type_name -> forge.LockdownAction + 369, // 487: forge.LockdownStatusRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 963, // 488: forge.LockdownStatusRequest.machine_id:type_name -> common.MachineId + 369, // 489: forge.MachineSetupStatusRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 369, // 490: forge.MachineSetupRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 369, // 491: forge.SetDpuFirstBootOrderRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 369, // 492: forge.AdminRebootRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 369, // 493: forge.AdminBmcResetRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 369, // 494: forge.EnableInfiniteBootRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 369, // 495: forge.IsInfiniteBootEnabledRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 963, // 496: forge.BMCMetaDataGetRequest.machine_id:type_name -> common.MachineId + 29, // 497: forge.BMCMetaDataGetRequest.role:type_name -> forge.UserRoles + 35, // 498: forge.BMCMetaDataGetRequest.request_type:type_name -> forge.BMCRequestType + 369, // 499: forge.BMCMetaDataGetRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 963, // 500: forge.MachineCredentialsUpdateRequest.machine_id:type_name -> common.MachineId + 933, // 501: forge.MachineCredentialsUpdateRequest.credentials:type_name -> forge.MachineCredentialsUpdateRequest.Credentials + 963, // 502: forge.ForgeAgentControlRequest.machine_id:type_name -> common.MachineId + 76, // 503: forge.ForgeAgentControlResponse.legacy_action:type_name -> forge.ForgeAgentControlResponse.LegacyAction + 934, // 504: forge.ForgeAgentControlResponse.data:type_name -> forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo + 935, // 505: forge.ForgeAgentControlResponse.noop:type_name -> forge.ForgeAgentControlResponse.Noop + 936, // 506: forge.ForgeAgentControlResponse.reset:type_name -> forge.ForgeAgentControlResponse.Reset + 937, // 507: forge.ForgeAgentControlResponse.discovery:type_name -> forge.ForgeAgentControlResponse.Discovery + 938, // 508: forge.ForgeAgentControlResponse.rebuild:type_name -> forge.ForgeAgentControlResponse.Rebuild + 939, // 509: forge.ForgeAgentControlResponse.retry:type_name -> forge.ForgeAgentControlResponse.Retry + 940, // 510: forge.ForgeAgentControlResponse.measure:type_name -> forge.ForgeAgentControlResponse.Measure + 941, // 511: forge.ForgeAgentControlResponse.log_error:type_name -> forge.ForgeAgentControlResponse.LogError + 942, // 512: forge.ForgeAgentControlResponse.machine_validation:type_name -> forge.ForgeAgentControlResponse.MachineValidation + 944, // 513: forge.ForgeAgentControlResponse.mlx_action:type_name -> forge.ForgeAgentControlResponse.MlxAction + 951, // 514: forge.ForgeAgentControlResponse.firmware_upgrade:type_name -> forge.ForgeAgentControlResponse.FirmwareUpgrade + 984, // 515: forge.MachineDiscoveryInfo.machine_interface_id:type_name -> common.MachineInterfaceId + 985, // 516: forge.MachineDiscoveryInfo.info:type_name -> machine_discovery.DiscoveryInfo + 36, // 517: forge.MachineDiscoveryInfo.discovery_reporter:type_name -> forge.MachineDiscoveryReporter + 963, // 518: forge.MachineDiscoveryCompletedRequest.machine_id:type_name -> common.MachineId + 963, // 519: forge.MachineCleanupInfo.machine_id:type_name -> common.MachineId + 953, // 520: forge.MachineCleanupInfo.nvme:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 953, // 521: forge.MachineCleanupInfo.ram:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 953, // 522: forge.MachineCleanupInfo.mem_overwrite:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 953, // 523: forge.MachineCleanupInfo.ib:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 953, // 524: forge.MachineCleanupInfo.hdd:type_name -> forge.MachineCleanupInfo.CleanupStepResult + 77, // 525: forge.MachineCleanupInfo.result:type_name -> forge.MachineCleanupInfo.CleanupResult + 426, // 526: forge.MachineCertificateResult.machine_certificate:type_name -> forge.MachineCertificate + 963, // 527: forge.MachineDiscoveryResult.machine_id:type_name -> common.MachineId + 426, // 528: forge.MachineDiscoveryResult.machine_certificate:type_name -> forge.MachineCertificate + 123, // 529: forge.MachineDiscoveryResult.attest_key_challenge:type_name -> forge.AttestKeyBindChallenge + 984, // 530: forge.MachineDiscoveryResult.machine_interface_id:type_name -> common.MachineInterfaceId + 963, // 531: forge.ForgeScoutErrorReport.machine_id:type_name -> common.MachineId + 984, // 532: forge.ForgeScoutErrorReport.machine_interface_id:type_name -> common.MachineInterfaceId + 23, // 533: forge.PxeInstructionRequest.arch:type_name -> forge.MachineArchitecture + 984, // 534: forge.PxeInstructionRequest.interface_id:type_name -> common.MachineInterfaceId + 348, // 535: forge.CloudInitDiscoveryInstructions.machine_interface:type_name -> forge.MachineInterface + 855, // 536: forge.CloudInitDiscoveryInstructions.domain:type_name -> forge.PxeDomain + 436, // 537: forge.CloudInitInstructions.discovery_instructions:type_name -> forge.CloudInitDiscoveryInstructions + 437, // 538: forge.CloudInitInstructions.metadata:type_name -> forge.CloudInitMetaData + 963, // 539: forge.DpuNetworkStatus.dpu_machine_id:type_name -> common.MachineId + 964, // 540: forge.DpuNetworkStatus.observed_at:type_name -> google.protobuf.Timestamp + 461, // 541: forge.DpuNetworkStatus.interfaces:type_name -> forge.InstanceInterfaceStatusObservation + 979, // 542: forge.DpuNetworkStatus.instance_id:type_name -> common.InstanceId + 971, // 543: forge.DpuNetworkStatus.dpu_health:type_name -> health.HealthReport + 462, // 544: forge.DpuNetworkStatus.fabric_interfaces:type_name -> forge.FabricInterfaceData + 441, // 545: forge.DpuNetworkStatus.last_dhcp_requests:type_name -> forge.LastDhcpRequest + 442, // 546: forge.DpuNetworkStatus.dpu_extension_services:type_name -> forge.DpuExtensionServiceStatusObservation + 984, // 547: forge.LastDhcpRequest.host_interface_id:type_name -> common.MachineInterfaceId + 64, // 548: forge.DpuExtensionServiceStatusObservation.service_type:type_name -> forge.DpuExtensionServiceType + 65, // 549: forge.DpuExtensionServiceStatusObservation.state:type_name -> forge.DpuExtensionServiceDeploymentStatus + 443, // 550: forge.DpuExtensionServiceStatusObservation.components:type_name -> forge.DpuExtensionServiceComponent + 971, // 551: forge.OptionalHealthReport.report:type_name -> health.HealthReport + 971, // 552: forge.HealthReportEntry.report:type_name -> health.HealthReport + 38, // 553: forge.HealthReportEntry.mode:type_name -> forge.HealthReportApplyMode + 963, // 554: forge.InsertMachineHealthReportRequest.machine_id:type_name -> common.MachineId + 445, // 555: forge.InsertMachineHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 973, // 556: forge.InsertRackHealthReportRequest.rack_id:type_name -> common.RackId + 445, // 557: forge.InsertRackHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 973, // 558: forge.RemoveRackHealthReportRequest.rack_id:type_name -> common.RackId + 973, // 559: forge.ListRackHealthReportsRequest.rack_id:type_name -> common.RackId + 975, // 560: forge.InsertSwitchHealthReportRequest.switch_id:type_name -> common.SwitchId + 445, // 561: forge.InsertSwitchHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 975, // 562: forge.RemoveSwitchHealthReportRequest.switch_id:type_name -> common.SwitchId + 975, // 563: forge.ListSwitchHealthReportsRequest.switch_id:type_name -> common.SwitchId + 972, // 564: forge.InsertPowerShelfHealthReportRequest.power_shelf_id:type_name -> common.PowerShelfId + 445, // 565: forge.InsertPowerShelfHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 972, // 566: forge.RemovePowerShelfHealthReportRequest.power_shelf_id:type_name -> common.PowerShelfId + 972, // 567: forge.ListPowerShelfHealthReportsRequest.power_shelf_id:type_name -> common.PowerShelfId + 445, // 568: forge.ListHealthReportResponse.health_report_entries:type_name -> forge.HealthReportEntry + 963, // 569: forge.RemoveMachineHealthReportRequest.machine_id:type_name -> common.MachineId + 983, // 570: forge.ListNVLinkDomainHealthReportsRequest.domain_id:type_name -> common.NVLinkDomainId + 983, // 571: forge.InsertNVLinkDomainHealthReportRequest.domain_id:type_name -> common.NVLinkDomainId + 445, // 572: forge.InsertNVLinkDomainHealthReportRequest.health_report_entry:type_name -> forge.HealthReportEntry + 983, // 573: forge.RemoveNVLinkDomainHealthReportRequest.domain_id:type_name -> common.NVLinkDomainId + 37, // 574: forge.InstanceInterfaceStatusObservation.function_type:type_name -> forge.InterfaceFunctionType + 671, // 575: forge.InstanceInterfaceStatusObservation.network_security_group:type_name -> forge.NetworkSecurityGroupStatus + 974, // 576: forge.InstanceInterfaceStatusObservation.internal_uuid:type_name -> common.UUID + 463, // 577: forge.FabricInterfaceData.link_data:type_name -> forge.LinkData + 256, // 578: forge.Tenant.metadata:type_name -> forge.Metadata + 256, // 579: forge.CreateTenantRequest.metadata:type_name -> forge.Metadata + 464, // 580: forge.CreateTenantResponse.tenant:type_name -> forge.Tenant + 256, // 581: forge.UpdateTenantRequest.metadata:type_name -> forge.Metadata + 464, // 582: forge.UpdateTenantResponse.tenant:type_name -> forge.Tenant + 464, // 583: forge.FindTenantResponse.tenant:type_name -> forge.Tenant + 472, // 584: forge.TenantKeysetContent.public_keys:type_name -> forge.TenantPublicKey + 471, // 585: forge.TenantKeyset.keyset_identifier:type_name -> forge.TenantKeysetIdentifier + 473, // 586: forge.TenantKeyset.keyset_content:type_name -> forge.TenantKeysetContent + 471, // 587: forge.CreateTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier + 473, // 588: forge.CreateTenantKeysetRequest.keyset_content:type_name -> forge.TenantKeysetContent + 474, // 589: forge.CreateTenantKeysetResponse.keyset:type_name -> forge.TenantKeyset + 474, // 590: forge.TenantKeySetList.keyset:type_name -> forge.TenantKeyset + 471, // 591: forge.UpdateTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier + 473, // 592: forge.UpdateTenantKeysetRequest.keyset_content:type_name -> forge.TenantKeysetContent + 471, // 593: forge.DeleteTenantKeysetRequest.keyset_identifier:type_name -> forge.TenantKeysetIdentifier + 471, // 594: forge.TenantKeysetIdList.keyset_ids:type_name -> forge.TenantKeysetIdentifier + 471, // 595: forge.TenantKeysetsByIdsRequest.keyset_ids:type_name -> forge.TenantKeysetIdentifier + 489, // 596: forge.ResourcePools.pools:type_name -> forge.ResourcePool + 40, // 597: forge.MaintenanceRequest.operation:type_name -> forge.MaintenanceOperation + 963, // 598: forge.MaintenanceRequest.host_id:type_name -> common.MachineId + 41, // 599: forge.SetDynamicConfigRequest.setting:type_name -> forge.ConfigSetting + 517, // 600: forge.FindIpAddressResponse.matches:type_name -> forge.IpAddressMatch + 974, // 601: forge.IdentifyUuidRequest.uuid:type_name -> common.UUID + 974, // 602: forge.IdentifyUuidResponse.uuid:type_name -> common.UUID + 42, // 603: forge.IdentifyUuidResponse.object_type:type_name -> forge.UuidType + 43, // 604: forge.IdentifyMacResponse.object_type:type_name -> forge.MacOwner + 963, // 605: forge.IdentifySerialResponse.machine_id:type_name -> common.MachineId + 963, // 606: forge.DpuReprovisioningRequest.dpu_id:type_name -> common.MachineId + 78, // 607: forge.DpuReprovisioningRequest.mode:type_name -> forge.DpuReprovisioningRequest.Mode + 44, // 608: forge.DpuReprovisioningRequest.initiator:type_name -> forge.UpdateInitiator + 963, // 609: forge.DpuReprovisioningRequest.machine_id:type_name -> common.MachineId + 954, // 610: forge.DpuReprovisioningListResponse.dpus:type_name -> forge.DpuReprovisioningListResponse.DpuReprovisioningListItem + 963, // 611: forge.HostReprovisioningRequest.machine_id:type_name -> common.MachineId + 79, // 612: forge.HostReprovisioningRequest.mode:type_name -> forge.HostReprovisioningRequest.Mode + 44, // 613: forge.HostReprovisioningRequest.initiator:type_name -> forge.UpdateInitiator + 955, // 614: forge.HostReprovisioningListResponse.hosts:type_name -> forge.HostReprovisioningListResponse.HostReprovisioningListItem + 511, // 615: forge.DpuInfoStatusObservation.os_operational_state:type_name -> forge.DpuOsOperationalState + 512, // 616: forge.DpuInfoStatusObservation.representors:type_name -> forge.DpuRepresentorStatus + 964, // 617: forge.DpuInfoStatusObservation.last_heartbeat:type_name -> google.protobuf.Timestamp + 513, // 618: forge.DpuInfo.observed_status:type_name -> forge.DpuInfoStatusObservation + 514, // 619: forge.GetDpuInfoListResponse.dpu_list:type_name -> forge.DpuInfo + 45, // 620: forge.IpAddressMatch.ip_type:type_name -> forge.IpType + 984, // 621: forge.MachineBootOverride.machine_interface_id:type_name -> common.MachineInterfaceId + 963, // 622: forge.ConnectedDevice.id:type_name -> common.MachineId + 519, // 623: forge.ConnectedDeviceList.connected_devices:type_name -> forge.ConnectedDevice + 525, // 624: forge.MachineIdBmcIpPairs.pairs:type_name -> forge.MachineIdBmcIp + 963, // 625: forge.MachineIdBmcIp.machine_id:type_name -> common.MachineId + 519, // 626: forge.NetworkDevice.devices:type_name -> forge.ConnectedDevice + 526, // 627: forge.NetworkTopologyData.network_devices:type_name -> forge.NetworkDevice + 46, // 628: forge.RouteServers.source_type:type_name -> forge.RouteServerSourceType + 532, // 629: forge.RouteServerEntries.route_servers:type_name -> forge.RouteServer + 46, // 630: forge.RouteServer.source_type:type_name -> forge.RouteServerSourceType + 963, // 631: forge.SetHostUefiPasswordRequest.host_id:type_name -> common.MachineId + 963, // 632: forge.ClearHostUefiPasswordRequest.host_id:type_name -> common.MachineId + 974, // 633: forge.OsImageAttributes.id:type_name -> common.UUID + 537, // 634: forge.OsImage.attributes:type_name -> forge.OsImageAttributes + 47, // 635: forge.OsImage.status:type_name -> forge.OsImageStatus + 538, // 636: forge.ListOsImageResponse.images:type_name -> forge.OsImage + 974, // 637: forge.DeleteOsImageRequest.id:type_name -> common.UUID + 980, // 638: forge.GetIpxeTemplateRequest.id:type_name -> common.IpxeTemplateId + 265, // 639: forge.IpxeTemplateList.templates:type_name -> forge.IpxeTemplate + 11, // 640: forge.ExpectedHostNic.network_segment_type:type_name -> forge.NetworkSegmentType + 256, // 641: forge.ExpectedMachine.metadata:type_name -> forge.Metadata + 974, // 642: forge.ExpectedMachine.id:type_name -> common.UUID + 546, // 643: forge.ExpectedMachine.host_nics:type_name -> forge.ExpectedHostNic + 973, // 644: forge.ExpectedMachine.rack_id:type_name -> common.RackId + 48, // 645: forge.ExpectedMachine.dpu_mode:type_name -> forge.DpuMode + 547, // 646: forge.ExpectedMachine.host_lifecycle_profile:type_name -> forge.HostLifecycleProfile + 974, // 647: forge.ExpectedMachineRequest.id:type_name -> common.UUID + 548, // 648: forge.ExpectedMachineList.expected_machines:type_name -> forge.ExpectedMachine + 552, // 649: forge.LinkedExpectedMachineList.expected_machines:type_name -> forge.LinkedExpectedMachine + 963, // 650: forge.LinkedExpectedMachine.machine_id:type_name -> common.MachineId + 974, // 651: forge.LinkedExpectedMachine.expected_machine_id:type_name -> common.UUID + 554, // 652: forge.UnexpectedMachineList.unexpected_machines:type_name -> forge.UnexpectedMachine + 963, // 653: forge.UnexpectedMachine.machine_id:type_name -> common.MachineId + 550, // 654: forge.BatchExpectedMachineOperationRequest.expected_machines:type_name -> forge.ExpectedMachineList + 974, // 655: forge.ExpectedMachineOperationResult.id:type_name -> common.UUID + 548, // 656: forge.ExpectedMachineOperationResult.expected_machine:type_name -> forge.ExpectedMachine + 556, // 657: forge.BatchExpectedMachineOperationResponse.results:type_name -> forge.ExpectedMachineOperationResult + 963, // 658: forge.MachineRebootCompletedRequest.machine_id:type_name -> common.MachineId + 963, // 659: forge.ScoutFirmwareUpgradeStatusRequest.machine_id:type_name -> common.MachineId + 963, // 660: forge.MachineValidationCompletedRequest.machine_id:type_name -> common.MachineId + 990, // 661: forge.MachineValidationCompletedRequest.validation_id:type_name -> common.MachineValidationId + 964, // 662: forge.MachineValidationResult.start_time:type_name -> google.protobuf.Timestamp + 964, // 663: forge.MachineValidationResult.end_time:type_name -> google.protobuf.Timestamp + 990, // 664: forge.MachineValidationResult.validation_id:type_name -> common.MachineValidationId + 563, // 665: forge.MachineValidationResultPostRequest.result:type_name -> forge.MachineValidationResult + 563, // 666: forge.MachineValidationResultList.results:type_name -> forge.MachineValidationResult + 963, // 667: forge.MachineValidationGetRequest.machine_id:type_name -> common.MachineId + 990, // 668: forge.MachineValidationGetRequest.validation_id:type_name -> common.MachineValidationId + 80, // 669: forge.MachineValidationStatus.oneof_started:type_name -> forge.MachineValidationStatus.MachineValidationStarted + 81, // 670: forge.MachineValidationStatus.oneof_in_progress:type_name -> forge.MachineValidationStatus.MachineValidationInProgress + 82, // 671: forge.MachineValidationStatus.oneof_completed:type_name -> forge.MachineValidationStatus.MachineValidationCompleted + 990, // 672: forge.MachineValidationRun.validation_id:type_name -> common.MachineValidationId + 963, // 673: forge.MachineValidationRun.machine_id:type_name -> common.MachineId + 964, // 674: forge.MachineValidationRun.start_time:type_name -> google.protobuf.Timestamp + 964, // 675: forge.MachineValidationRun.end_time:type_name -> google.protobuf.Timestamp + 567, // 676: forge.MachineValidationRun.status:type_name -> forge.MachineValidationStatus + 986, // 677: forge.MachineValidationRun.duration_to_complete:type_name -> google.protobuf.Duration + 964, // 678: forge.MachineValidationRun.last_heartbeat_at:type_name -> google.protobuf.Timestamp + 963, // 679: forge.MachineSetAutoUpdateRequest.machine_id:type_name -> common.MachineId + 83, // 680: forge.MachineSetAutoUpdateRequest.action:type_name -> forge.MachineSetAutoUpdateRequest.SetAutoupdateAction + 964, // 681: forge.MachineValidationExternalConfig.timestamp:type_name -> google.protobuf.Timestamp + 572, // 682: forge.GetMachineValidationExternalConfigResponse.config:type_name -> forge.MachineValidationExternalConfig + 572, // 683: forge.GetMachineValidationExternalConfigsResponse.configs:type_name -> forge.MachineValidationExternalConfig + 963, // 684: forge.MachineValidationOnDemandRequest.machine_id:type_name -> common.MachineId + 84, // 685: forge.MachineValidationOnDemandRequest.action:type_name -> forge.MachineValidationOnDemandRequest.Action + 990, // 686: forge.MachineValidationOnDemandResponse.validation_id:type_name -> common.MachineValidationId + 580, // 687: forge.MaintenanceActivityConfig.firmware_upgrade:type_name -> forge.FirmwareUpgradeActivity + 582, // 688: forge.MaintenanceActivityConfig.configure_nmx_cluster:type_name -> forge.ConfigureNmxClusterActivity + 583, // 689: forge.MaintenanceActivityConfig.power_sequence:type_name -> forge.PowerSequenceActivity + 581, // 690: forge.MaintenanceActivityConfig.nvos_update:type_name -> forge.NvosUpdateActivity + 584, // 691: forge.RackMaintenanceScope.activities:type_name -> forge.MaintenanceActivityConfig + 973, // 692: forge.RackMaintenanceOnDemandRequest.rack_id:type_name -> common.RackId + 585, // 693: forge.RackMaintenanceOnDemandRequest.scope:type_name -> forge.RackMaintenanceScope + 369, // 694: forge.AdminPowerControlRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 85, // 695: forge.AdminPowerControlRequest.action:type_name -> forge.AdminPowerControlRequest.SystemPowerControl + 963, // 696: forge.GetRedfishJobStateRequest.machine_id:type_name -> common.MachineId + 86, // 697: forge.GetRedfishJobStateResponse.job_state:type_name -> forge.GetRedfishJobStateResponse.RedfishJobState + 568, // 698: forge.MachineValidationRunList.runs:type_name -> forge.MachineValidationRun + 963, // 699: forge.MachineValidationRunListGetRequest.machine_id:type_name -> common.MachineId + 990, // 700: forge.MachineValidationRunItemSearchFilter.validation_id:type_name -> common.MachineValidationId + 974, // 701: forge.MachineValidationRunItemIdList.run_item_ids:type_name -> common.UUID + 974, // 702: forge.MachineValidationRunItemsByIdsRequest.run_item_ids:type_name -> common.UUID + 598, // 703: forge.MachineValidationRunItemList.run_items:type_name -> forge.MachineValidationRunItem + 974, // 704: forge.MachineValidationRunItem.run_item_id:type_name -> common.UUID + 990, // 705: forge.MachineValidationRunItem.validation_id:type_name -> common.MachineValidationId + 986, // 706: forge.MachineValidationRunItem.timeout:type_name -> google.protobuf.Duration + 964, // 707: forge.MachineValidationRunItem.started_at:type_name -> google.protobuf.Timestamp + 964, // 708: forge.MachineValidationRunItem.ended_at:type_name -> google.protobuf.Timestamp + 964, // 709: forge.MachineValidationRunItem.last_heartbeat_at:type_name -> google.protobuf.Timestamp + 974, // 710: forge.MachineValidationRunItem.current_attempt_id:type_name -> common.UUID + 974, // 711: forge.MachineValidationAttemptGetRequest.attempt_id:type_name -> common.UUID + 974, // 712: forge.MachineValidationAttempt.attempt_id:type_name -> common.UUID + 974, // 713: forge.MachineValidationAttempt.run_item_id:type_name -> common.UUID + 964, // 714: forge.MachineValidationAttempt.started_at:type_name -> google.protobuf.Timestamp + 964, // 715: forge.MachineValidationAttempt.ended_at:type_name -> google.protobuf.Timestamp + 964, // 716: forge.MachineValidationAttempt.last_heartbeat_at:type_name -> google.protobuf.Timestamp + 990, // 717: forge.MachineValidationHeartbeatRequest.validation_id:type_name -> common.MachineValidationId + 974, // 718: forge.MachineValidationHeartbeatRequest.run_item_id:type_name -> common.UUID + 974, // 719: forge.MachineValidationHeartbeatRequest.attempt_id:type_name -> common.UUID + 956, // 720: forge.MachineValidationTestUpdateRequest.payload:type_name -> forge.MachineValidationTestUpdateRequest.Payload + 612, // 721: forge.MachineValidationTestsGetResponse.tests:type_name -> forge.MachineValidationTest + 990, // 722: forge.MachineValidationRunRequest.validation_id:type_name -> common.MachineValidationId + 986, // 723: forge.MachineValidationRunRequest.duration_to_complete:type_name -> google.protobuf.Duration + 612, // 724: forge.MachineValidationRunRequest.selected_tests:type_name -> forge.MachineValidationTest + 49, // 725: forge.MachineCapabilityAttributesGpu.device_type:type_name -> forge.MachineCapabilityDeviceType + 49, // 726: forge.MachineCapabilityAttributesNetwork.device_type:type_name -> forge.MachineCapabilityDeviceType + 619, // 727: forge.MachineCapabilitiesSet.cpu:type_name -> forge.MachineCapabilityAttributesCpu + 620, // 728: forge.MachineCapabilitiesSet.gpu:type_name -> forge.MachineCapabilityAttributesGpu + 621, // 729: forge.MachineCapabilitiesSet.memory:type_name -> forge.MachineCapabilityAttributesMemory + 622, // 730: forge.MachineCapabilitiesSet.storage:type_name -> forge.MachineCapabilityAttributesStorage + 623, // 731: forge.MachineCapabilitiesSet.network:type_name -> forge.MachineCapabilityAttributesNetwork + 624, // 732: forge.MachineCapabilitiesSet.infiniband:type_name -> forge.MachineCapabilityAttributesInfiniband + 625, // 733: forge.MachineCapabilitiesSet.dpu:type_name -> forge.MachineCapabilityAttributesDpu + 629, // 734: forge.InstanceTypeAttributes.desired_capabilities:type_name -> forge.InstanceTypeMachineCapabilityFilterAttributes + 627, // 735: forge.InstanceType.attributes:type_name -> forge.InstanceTypeAttributes + 256, // 736: forge.InstanceType.metadata:type_name -> forge.Metadata + 727, // 737: forge.InstanceType.allocation_stats:type_name -> forge.InstanceTypeAllocationStats + 50, // 738: forge.InstanceTypeMachineCapabilityFilterAttributes.capability_type:type_name -> forge.MachineCapabilityType + 991, // 739: forge.InstanceTypeMachineCapabilityFilterAttributes.inactive_devices:type_name -> common.Uint32List + 49, // 740: forge.InstanceTypeMachineCapabilityFilterAttributes.device_type:type_name -> forge.MachineCapabilityDeviceType + 256, // 741: forge.CreateInstanceTypeRequest.metadata:type_name -> forge.Metadata + 627, // 742: forge.CreateInstanceTypeRequest.instance_type_attributes:type_name -> forge.InstanceTypeAttributes + 628, // 743: forge.CreateInstanceTypeResponse.instance_type:type_name -> forge.InstanceType + 628, // 744: forge.FindInstanceTypesByIdsResponse.instance_types:type_name -> forge.InstanceType + 628, // 745: forge.UpdateInstanceTypeResponse.instance_type:type_name -> forge.InstanceType + 256, // 746: forge.UpdateInstanceTypeRequest.metadata:type_name -> forge.Metadata + 627, // 747: forge.UpdateInstanceTypeRequest.instance_type_attributes:type_name -> forge.InstanceTypeAttributes + 957, // 748: forge.RedfishBrowseResponse.headers:type_name -> forge.RedfishBrowseResponse.HeadersEntry + 648, // 749: forge.RedfishListActionsResponse.actions:type_name -> forge.RedfishAction + 964, // 750: forge.RedfishAction.approver_dates:type_name -> google.protobuf.Timestamp + 964, // 751: forge.RedfishAction.applied_at:type_name -> google.protobuf.Timestamp + 649, // 752: forge.RedfishAction.results:type_name -> forge.OptionalRedfishActionResult + 650, // 753: forge.OptionalRedfishActionResult.result:type_name -> forge.RedfishActionResult + 958, // 754: forge.RedfishActionResult.headers:type_name -> forge.RedfishActionResult.HeadersEntry + 964, // 755: forge.RedfishActionResult.completed_at:type_name -> google.protobuf.Timestamp + 959, // 756: forge.UfmBrowseResponse.headers:type_name -> forge.UfmBrowseResponse.HeadersEntry + 676, // 757: forge.NetworkSecurityGroupAttributes.rules:type_name -> forge.NetworkSecurityGroupRuleAttributes + 256, // 758: forge.NetworkSecurityGroup.metadata:type_name -> forge.Metadata + 659, // 759: forge.NetworkSecurityGroup.attributes:type_name -> forge.NetworkSecurityGroupAttributes + 256, // 760: forge.CreateNetworkSecurityGroupRequest.metadata:type_name -> forge.Metadata + 659, // 761: forge.CreateNetworkSecurityGroupRequest.network_security_group_attributes:type_name -> forge.NetworkSecurityGroupAttributes + 660, // 762: forge.CreateNetworkSecurityGroupResponse.network_security_group:type_name -> forge.NetworkSecurityGroup + 660, // 763: forge.FindNetworkSecurityGroupsByIdsResponse.network_security_groups:type_name -> forge.NetworkSecurityGroup + 660, // 764: forge.UpdateNetworkSecurityGroupResponse.network_security_group:type_name -> forge.NetworkSecurityGroup + 256, // 765: forge.UpdateNetworkSecurityGroupRequest.metadata:type_name -> forge.Metadata + 659, // 766: forge.UpdateNetworkSecurityGroupRequest.network_security_group_attributes:type_name -> forge.NetworkSecurityGroupAttributes + 51, // 767: forge.NetworkSecurityGroupStatus.source:type_name -> forge.NetworkSecurityGroupSource + 52, // 768: forge.NetworkSecurityGroupPropagationObjectStatus.status:type_name -> forge.NetworkSecurityGroupPropagationStatus + 672, // 769: forge.GetNetworkSecurityGroupPropagationStatusResponse.vpcs:type_name -> forge.NetworkSecurityGroupPropagationObjectStatus + 672, // 770: forge.GetNetworkSecurityGroupPropagationStatusResponse.instances:type_name -> forge.NetworkSecurityGroupPropagationObjectStatus + 674, // 771: forge.GetNetworkSecurityGroupPropagationStatusRequest.network_security_group_ids:type_name -> forge.NetworkSecurityGroupIdList + 53, // 772: forge.NetworkSecurityGroupRuleAttributes.direction:type_name -> forge.NetworkSecurityGroupRuleDirection + 54, // 773: forge.NetworkSecurityGroupRuleAttributes.protocol:type_name -> forge.NetworkSecurityGroupRuleProtocol + 55, // 774: forge.NetworkSecurityGroupRuleAttributes.action:type_name -> forge.NetworkSecurityGroupRuleAction + 676, // 775: forge.ResolvedNetworkSecurityGroupRule.rule:type_name -> forge.NetworkSecurityGroupRuleAttributes + 679, // 776: forge.GetNetworkSecurityGroupAttachmentsResponse.attachments:type_name -> forge.NetworkSecurityGroupAttachments + 683, // 777: forge.GetDesiredFirmwareVersionsResponse.entries:type_name -> forge.DesiredFirmwareVersionEntry + 960, // 778: forge.DesiredFirmwareVersionEntry.component_versions:type_name -> forge.DesiredFirmwareVersionEntry.ComponentVersionsEntry + 684, // 779: forge.SkuComponents.chassis:type_name -> forge.SkuComponentChassis + 685, // 780: forge.SkuComponents.cpus:type_name -> forge.SkuComponentCpu + 686, // 781: forge.SkuComponents.gpus:type_name -> forge.SkuComponentGpu + 687, // 782: forge.SkuComponents.ethernet_devices:type_name -> forge.SkuComponentEthernetDevices + 688, // 783: forge.SkuComponents.infiniband_devices:type_name -> forge.SkuComponentInfinibandDevices + 689, // 784: forge.SkuComponents.storage:type_name -> forge.SkuComponentStorage + 691, // 785: forge.SkuComponents.memory:type_name -> forge.SkuComponentMemory + 692, // 786: forge.SkuComponents.tpm:type_name -> forge.SkuComponentTpm + 964, // 787: forge.Sku.created:type_name -> google.protobuf.Timestamp + 693, // 788: forge.Sku.components:type_name -> forge.SkuComponents + 963, // 789: forge.Sku.associated_machine_ids:type_name -> common.MachineId + 963, // 790: forge.SkuMachinePair.machine_id:type_name -> common.MachineId + 963, // 791: forge.RemoveSkuRequest.machine_id:type_name -> common.MachineId + 694, // 792: forge.SkuList.skus:type_name -> forge.Sku + 964, // 793: forge.SkuStatus.verify_request_time:type_name -> google.protobuf.Timestamp + 964, // 794: forge.SkuStatus.last_match_attempt:type_name -> google.protobuf.Timestamp + 964, // 795: forge.SkuStatus.last_generate_attempt:type_name -> google.protobuf.Timestamp + 992, // 796: forge.DpaInterface.id:type_name -> common.DpaInterfaceId + 963, // 797: forge.DpaInterface.machine_id:type_name -> common.MachineId + 964, // 798: forge.DpaInterface.created:type_name -> google.protobuf.Timestamp + 964, // 799: forge.DpaInterface.updated:type_name -> google.protobuf.Timestamp + 964, // 800: forge.DpaInterface.deleted:type_name -> google.protobuf.Timestamp + 220, // 801: forge.DpaInterface.history:type_name -> forge.StateHistoryRecord + 964, // 802: forge.DpaInterface.last_hb_time:type_name -> google.protobuf.Timestamp + 56, // 803: forge.DpaInterface.interface_type:type_name -> forge.DpaInterfaceType + 963, // 804: forge.DpaInterfaceCreationRequest.machine_id:type_name -> common.MachineId + 56, // 805: forge.DpaInterfaceCreationRequest.interface_type:type_name -> forge.DpaInterfaceType + 992, // 806: forge.DpaInterfaceIdList.ids:type_name -> common.DpaInterfaceId + 992, // 807: forge.DpaInterfacesByIdsRequest.ids:type_name -> common.DpaInterfaceId + 702, // 808: forge.DpaInterfaceList.interfaces:type_name -> forge.DpaInterface + 992, // 809: forge.DpaNetworkObservationSetRequest.id:type_name -> common.DpaInterfaceId + 992, // 810: forge.DpaInterfaceDeletionRequest.id:type_name -> common.DpaInterfaceId + 963, // 811: forge.PowerOptionRequest.machine_id:type_name -> common.MachineId + 963, // 812: forge.PowerOptionUpdateRequest.machine_id:type_name -> common.MachineId + 57, // 813: forge.PowerOptionUpdateRequest.power_state:type_name -> forge.PowerState + 57, // 814: forge.PowerOptions.desired_state:type_name -> forge.PowerState + 964, // 815: forge.PowerOptions.desired_state_updated_at:type_name -> google.protobuf.Timestamp + 57, // 816: forge.PowerOptions.actual_state:type_name -> forge.PowerState + 964, // 817: forge.PowerOptions.actual_state_updated_at:type_name -> google.protobuf.Timestamp + 963, // 818: forge.PowerOptions.host_id:type_name -> common.MachineId + 964, // 819: forge.PowerOptions.next_power_state_fetch_at:type_name -> google.protobuf.Timestamp + 964, // 820: forge.PowerOptions.tried_triggering_on_at:type_name -> google.protobuf.Timestamp + 964, // 821: forge.PowerOptions.wait_until_time_before_performing_next_power_action:type_name -> google.protobuf.Timestamp + 713, // 822: forge.PowerOptionResponse.response:type_name -> forge.PowerOptions + 993, // 823: forge.ComputeAllocation.id:type_name -> common.ComputeAllocationId + 715, // 824: forge.ComputeAllocation.attributes:type_name -> forge.ComputeAllocationAttributes + 256, // 825: forge.ComputeAllocation.metadata:type_name -> forge.Metadata + 993, // 826: forge.CreateComputeAllocationRequest.id:type_name -> common.ComputeAllocationId + 256, // 827: forge.CreateComputeAllocationRequest.metadata:type_name -> forge.Metadata + 715, // 828: forge.CreateComputeAllocationRequest.attributes:type_name -> forge.ComputeAllocationAttributes + 716, // 829: forge.CreateComputeAllocationResponse.allocation:type_name -> forge.ComputeAllocation + 993, // 830: forge.FindComputeAllocationIdsResponse.ids:type_name -> common.ComputeAllocationId + 993, // 831: forge.FindComputeAllocationsByIdsRequest.ids:type_name -> common.ComputeAllocationId + 716, // 832: forge.FindComputeAllocationsByIdsResponse.allocations:type_name -> forge.ComputeAllocation + 716, // 833: forge.UpdateComputeAllocationResponse.allocation:type_name -> forge.ComputeAllocation + 993, // 834: forge.UpdateComputeAllocationRequest.id:type_name -> common.ComputeAllocationId + 256, // 835: forge.UpdateComputeAllocationRequest.metadata:type_name -> forge.Metadata + 715, // 836: forge.UpdateComputeAllocationRequest.attributes:type_name -> forge.ComputeAllocationAttributes + 993, // 837: forge.DeleteComputeAllocationRequest.id:type_name -> common.ComputeAllocationId + 734, // 838: forge.GetRackResponse.rack:type_name -> forge.Rack + 734, // 839: forge.RackList.racks:type_name -> forge.Rack + 255, // 840: forge.RackSearchFilter.label:type_name -> forge.Label + 973, // 841: forge.RackIdList.rack_ids:type_name -> common.RackId + 973, // 842: forge.RacksByIdsRequest.rack_ids:type_name -> common.RackId + 973, // 843: forge.Rack.id:type_name -> common.RackId + 964, // 844: forge.Rack.created:type_name -> google.protobuf.Timestamp + 964, // 845: forge.Rack.updated:type_name -> google.protobuf.Timestamp + 964, // 846: forge.Rack.deleted:type_name -> google.protobuf.Timestamp + 256, // 847: forge.Rack.metadata:type_name -> forge.Metadata + 735, // 848: forge.Rack.config:type_name -> forge.RackConfig + 736, // 849: forge.Rack.status:type_name -> forge.RackStatus + 971, // 850: forge.RackStatus.health:type_name -> health.HealthReport + 342, // 851: forge.RackStatus.health_sources:type_name -> forge.HealthSourceOrigin + 87, // 852: forge.RackStatus.lifecycle:type_name -> forge.LifecycleStatus + 973, // 853: forge.RackStateHistoriesRequest.rack_ids:type_name -> common.RackId + 973, // 854: forge.AdminForceDeleteRackRequest.rack_id:type_name -> common.RackId + 741, // 855: forge.RackCapabilitiesSet.compute:type_name -> forge.RackCapabilityCompute + 742, // 856: forge.RackCapabilitiesSet.switch:type_name -> forge.RackCapabilitySwitch + 743, // 857: forge.RackCapabilitiesSet.power_shelf:type_name -> forge.RackCapabilityPowerShelf + 994, // 858: forge.RackProfile.rack_hardware_type:type_name -> common.RackHardwareType + 58, // 859: forge.RackProfile.rack_hardware_topology:type_name -> forge.RackHardwareTopology + 60, // 860: forge.RackProfile.rack_hardware_class:type_name -> forge.RackHardwareClass + 744, // 861: forge.RackProfile.capabilities:type_name -> forge.RackCapabilitiesSet + 59, // 862: forge.RackProfile.product_family:type_name -> forge.RackProductFamily + 973, // 863: forge.GetRackProfileRequest.rack_id:type_name -> common.RackId + 973, // 864: forge.GetRackProfileResponse.rack_id:type_name -> common.RackId + 976, // 865: forge.GetRackProfileResponse.rack_profile_id:type_name -> common.RackProfileId + 745, // 866: forge.GetRackProfileResponse.profile:type_name -> forge.RackProfile + 61, // 867: forge.RackManagerForgeRequest.cmd:type_name -> forge.RackManagerForgeCmd + 983, // 868: forge.MachineNVLinkInfo.domain_uuid:type_name -> common.NVLinkDomainId + 754, // 869: forge.MachineNVLinkInfo.gpus:type_name -> forge.NVLinkGpu + 963, // 870: forge.UpdateMachineNvLinkInfoRequest.machine_id:type_name -> common.MachineId + 750, // 871: forge.UpdateMachineNvLinkInfoRequest.nvlink_info:type_name -> forge.MachineNVLinkInfo + 753, // 872: forge.MachineSpxStatusObservation.attachment_status:type_name -> forge.MachineSpxAttachmentStatusObservation + 964, // 873: forge.MachineSpxStatusObservation.observed_at:type_name -> google.protobuf.Timestamp + 982, // 874: forge.MachineSpxAttachmentStatusObservation.partition_id:type_name -> common.SpxPartitionId + 15, // 875: forge.MachineSpxAttachmentStatusObservation.attachment_type:type_name -> forge.SpxAttachmentType + 964, // 876: forge.MachineSpxAttachmentStatusObservation.observed_at:type_name -> google.protobuf.Timestamp + 756, // 877: forge.MachineNVLinkStatusObservation.gpu_status:type_name -> forge.MachineNVLinkGpuStatusObservation + 995, // 878: forge.MachineNVLinkGpuStatusObservation.partition_id:type_name -> common.NVLinkPartitionId + 967, // 879: forge.MachineNVLinkGpuStatusObservation.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 983, // 880: forge.MachineNVLinkGpuStatusObservation.domain_id:type_name -> common.NVLinkDomainId + 62, // 881: forge.NmxcBrowseRequest.operation:type_name -> forge.NmxcBrowseOperation + 961, // 882: forge.NmxcBrowseResponse.headers:type_name -> forge.NmxcBrowseResponse.HeadersEntry + 995, // 883: forge.NVLinkPartition.id:type_name -> common.NVLinkPartitionId + 983, // 884: forge.NVLinkPartition.domain_uuid:type_name -> common.NVLinkDomainId + 967, // 885: forge.NVLinkPartition.logical_partition_id:type_name -> common.NVLinkLogicalPartitionId + 759, // 886: forge.NVLinkPartitionList.partitions:type_name -> forge.NVLinkPartition + 974, // 887: forge.NVLinkPartitionQuery.id:type_name -> common.UUID + 761, // 888: forge.NVLinkPartitionQuery.search_config:type_name -> forge.NVLinkPartitionSearchConfig + 995, // 889: forge.NVLinkPartitionsByIdsRequest.partition_ids:type_name -> common.NVLinkPartitionId + 995, // 890: forge.NVLinkPartitionIdList.partition_ids:type_name -> common.NVLinkPartitionId + 256, // 891: forge.NVLinkLogicalPartitionConfig.metadata:type_name -> forge.Metadata + 7, // 892: forge.NVLinkLogicalPartitionStatus.state:type_name -> forge.TenantState + 967, // 893: forge.NVLinkLogicalPartition.id:type_name -> common.NVLinkLogicalPartitionId + 767, // 894: forge.NVLinkLogicalPartition.config:type_name -> forge.NVLinkLogicalPartitionConfig + 768, // 895: forge.NVLinkLogicalPartition.status:type_name -> forge.NVLinkLogicalPartitionStatus + 964, // 896: forge.NVLinkLogicalPartition.created:type_name -> google.protobuf.Timestamp + 769, // 897: forge.NVLinkLogicalPartitionList.partitions:type_name -> forge.NVLinkLogicalPartition + 767, // 898: forge.NVLinkLogicalPartitionCreationRequest.config:type_name -> forge.NVLinkLogicalPartitionConfig + 967, // 899: forge.NVLinkLogicalPartitionCreationRequest.id:type_name -> common.NVLinkLogicalPartitionId + 967, // 900: forge.NVLinkLogicalPartitionDeletionRequest.id:type_name -> common.NVLinkLogicalPartitionId + 967, // 901: forge.NVLinkLogicalPartitionsByIdsRequest.partition_ids:type_name -> common.NVLinkLogicalPartitionId + 967, // 902: forge.NVLinkLogicalPartitionIdList.partition_ids:type_name -> common.NVLinkLogicalPartitionId + 967, // 903: forge.NVLinkLogicalPartitionUpdateRequest.id:type_name -> common.NVLinkLogicalPartitionId + 767, // 904: forge.NVLinkLogicalPartitionUpdateRequest.config:type_name -> forge.NVLinkLogicalPartitionConfig + 369, // 905: forge.CreateBmcUserRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 369, // 906: forge.DeleteBmcUserRequest.bmc_endpoint_request:type_name -> forge.BmcEndpointRequest + 963, // 907: forge.SetFirmwareUpdateTimeWindowRequest.machine_ids:type_name -> common.MachineId + 964, // 908: forge.SetFirmwareUpdateTimeWindowRequest.start_timestamp:type_name -> google.protobuf.Timestamp + 964, // 909: forge.SetFirmwareUpdateTimeWindowRequest.end_timestamp:type_name -> google.protobuf.Timestamp + 787, // 910: forge.ListHostFirmwareResponse.available:type_name -> forge.AvailableHostFirmware + 63, // 911: forge.TrimTableRequest.target:type_name -> forge.TrimTableTarget + 790, // 912: forge.NvlinkNmxcEndpointList.entries:type_name -> forge.NvlinkNmxcEndpoint + 256, // 913: forge.CreateRemediationRequest.metadata:type_name -> forge.Metadata + 996, // 914: forge.CreateRemediationResponse.remediation_id:type_name -> common.RemediationId + 996, // 915: forge.RemediationIdList.remediation_ids:type_name -> common.RemediationId + 797, // 916: forge.RemediationList.remediations:type_name -> forge.Remediation + 996, // 917: forge.Remediation.id:type_name -> common.RemediationId + 256, // 918: forge.Remediation.metadata:type_name -> forge.Metadata + 964, // 919: forge.Remediation.creation_time:type_name -> google.protobuf.Timestamp + 996, // 920: forge.ApproveRemediationRequest.remediation_id:type_name -> common.RemediationId + 996, // 921: forge.RevokeRemediationRequest.remediation_id:type_name -> common.RemediationId + 996, // 922: forge.EnableRemediationRequest.remediation_id:type_name -> common.RemediationId + 996, // 923: forge.DisableRemediationRequest.remediation_id:type_name -> common.RemediationId + 996, // 924: forge.FindAppliedRemediationIdsRequest.remediation_id:type_name -> common.RemediationId + 963, // 925: forge.FindAppliedRemediationIdsRequest.dpu_machine_id:type_name -> common.MachineId + 996, // 926: forge.AppliedRemediationIdList.remediation_ids:type_name -> common.RemediationId + 963, // 927: forge.AppliedRemediationIdList.dpu_machine_ids:type_name -> common.MachineId + 996, // 928: forge.FindAppliedRemediationsRequest.remediation_id:type_name -> common.RemediationId + 963, // 929: forge.FindAppliedRemediationsRequest.dpu_machine_id:type_name -> common.MachineId + 996, // 930: forge.AppliedRemediation.remediation_id:type_name -> common.RemediationId + 963, // 931: forge.AppliedRemediation.dpu_machine_id:type_name -> common.MachineId + 964, // 932: forge.AppliedRemediation.applied_time:type_name -> google.protobuf.Timestamp + 256, // 933: forge.AppliedRemediation.metadata:type_name -> forge.Metadata + 805, // 934: forge.AppliedRemediationList.applied_remediations:type_name -> forge.AppliedRemediation + 963, // 935: forge.GetNextRemediationForMachineRequest.dpu_machine_id:type_name -> common.MachineId + 996, // 936: forge.GetNextRemediationForMachineResponse.remediation_id:type_name -> common.RemediationId + 996, // 937: forge.RemediationAppliedRequest.remediation_id:type_name -> common.RemediationId + 963, // 938: forge.RemediationAppliedRequest.dpu_machine_id:type_name -> common.MachineId + 810, // 939: forge.RemediationAppliedRequest.status:type_name -> forge.RemediationApplicationStatus + 256, // 940: forge.RemediationApplicationStatus.metadata:type_name -> forge.Metadata + 963, // 941: forge.SetPrimaryDpuRequest.host_machine_id:type_name -> common.MachineId + 963, // 942: forge.SetPrimaryDpuRequest.dpu_machine_id:type_name -> common.MachineId + 963, // 943: forge.SetPrimaryInterfaceRequest.host_machine_id:type_name -> common.MachineId + 984, // 944: forge.SetPrimaryInterfaceRequest.interface_id:type_name -> common.MachineInterfaceId + 813, // 945: forge.DpuExtensionServiceCredential.username_password:type_name -> forge.UsernamePassword + 834, // 946: forge.DpuExtensionServiceVersionInfo.observability:type_name -> forge.DpuExtensionServiceObservability + 64, // 947: forge.DpuExtensionService.service_type:type_name -> forge.DpuExtensionServiceType + 816, // 948: forge.DpuExtensionService.latest_version_info:type_name -> forge.DpuExtensionServiceVersionInfo + 64, // 949: forge.CreateDpuExtensionServiceRequest.service_type:type_name -> forge.DpuExtensionServiceType + 815, // 950: forge.CreateDpuExtensionServiceRequest.credential:type_name -> forge.DpuExtensionServiceCredential + 834, // 951: forge.CreateDpuExtensionServiceRequest.observability:type_name -> forge.DpuExtensionServiceObservability + 815, // 952: forge.UpdateDpuExtensionServiceRequest.credential:type_name -> forge.DpuExtensionServiceCredential + 834, // 953: forge.UpdateDpuExtensionServiceRequest.observability:type_name -> forge.DpuExtensionServiceObservability + 64, // 954: forge.DpuExtensionServiceSearchFilter.service_type:type_name -> forge.DpuExtensionServiceType + 817, // 955: forge.DpuExtensionServiceList.services:type_name -> forge.DpuExtensionService + 816, // 956: forge.DpuExtensionServiceVersionInfoList.version_infos:type_name -> forge.DpuExtensionServiceVersionInfo + 830, // 957: forge.FindInstancesByDpuExtensionServiceResponse.instances:type_name -> forge.InstanceDpuExtensionServiceInfo + 831, // 958: forge.DpuExtensionServiceObservabilityConfig.prometheus:type_name -> forge.DpuExtensionServiceObservabilityConfigPrometheus + 832, // 959: forge.DpuExtensionServiceObservabilityConfig.logging:type_name -> forge.DpuExtensionServiceObservabilityConfigLogging + 833, // 960: forge.DpuExtensionServiceObservability.configs:type_name -> forge.DpuExtensionServiceObservabilityConfig + 974, // 961: forge.ScoutStreamApiBoundMessage.flow_uuid:type_name -> common.UUID + 837, // 962: forge.ScoutStreamApiBoundMessage.init:type_name -> forge.ScoutStreamInitRequest + 997, // 963: forge.ScoutStreamApiBoundMessage.mlx_device_lockdown_response:type_name -> mlx_device.MlxDeviceLockdownResponse + 998, // 964: forge.ScoutStreamApiBoundMessage.mlx_device_profile_sync_response:type_name -> mlx_device.MlxDeviceProfileSyncResponse + 999, // 965: forge.ScoutStreamApiBoundMessage.mlx_device_profile_compare_response:type_name -> mlx_device.MlxDeviceProfileCompareResponse + 1000, // 966: forge.ScoutStreamApiBoundMessage.mlx_device_info_device_response:type_name -> mlx_device.MlxDeviceInfoDeviceResponse + 1001, // 967: forge.ScoutStreamApiBoundMessage.mlx_device_info_report_response:type_name -> mlx_device.MlxDeviceInfoReportResponse + 1002, // 968: forge.ScoutStreamApiBoundMessage.mlx_device_registry_list_response:type_name -> mlx_device.MlxDeviceRegistryListResponse + 1003, // 969: forge.ScoutStreamApiBoundMessage.mlx_device_registry_show_response:type_name -> mlx_device.MlxDeviceRegistryShowResponse + 1004, // 970: forge.ScoutStreamApiBoundMessage.mlx_device_config_query_response:type_name -> mlx_device.MlxDeviceConfigQueryResponse + 1005, // 971: forge.ScoutStreamApiBoundMessage.mlx_device_config_set_response:type_name -> mlx_device.MlxDeviceConfigSetResponse + 1006, // 972: forge.ScoutStreamApiBoundMessage.mlx_device_config_sync_response:type_name -> mlx_device.MlxDeviceConfigSyncResponse + 1007, // 973: forge.ScoutStreamApiBoundMessage.mlx_device_config_compare_response:type_name -> mlx_device.MlxDeviceConfigCompareResponse + 845, // 974: forge.ScoutStreamApiBoundMessage.scout_stream_agent_ping_response:type_name -> forge.ScoutStreamAgentPingResponse + 974, // 975: forge.ScoutStreamScoutBoundMessage.flow_uuid:type_name -> common.UUID + 1008, // 976: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_lock_request:type_name -> mlx_device.MlxDeviceLockdownLockRequest + 1009, // 977: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_unlock_request:type_name -> mlx_device.MlxDeviceLockdownUnlockRequest + 1010, // 978: forge.ScoutStreamScoutBoundMessage.mlx_device_lockdown_status_request:type_name -> mlx_device.MlxDeviceLockdownStatusRequest + 1011, // 979: forge.ScoutStreamScoutBoundMessage.mlx_device_profile_sync_request:type_name -> mlx_device.MlxDeviceProfileSyncRequest + 1012, // 980: forge.ScoutStreamScoutBoundMessage.mlx_device_profile_compare_request:type_name -> mlx_device.MlxDeviceProfileCompareRequest + 1013, // 981: forge.ScoutStreamScoutBoundMessage.mlx_device_info_device_request:type_name -> mlx_device.MlxDeviceInfoDeviceRequest + 1014, // 982: forge.ScoutStreamScoutBoundMessage.mlx_device_info_report_request:type_name -> mlx_device.MlxDeviceInfoReportRequest + 1015, // 983: forge.ScoutStreamScoutBoundMessage.mlx_device_registry_list_request:type_name -> mlx_device.MlxDeviceRegistryListRequest + 1016, // 984: forge.ScoutStreamScoutBoundMessage.mlx_device_registry_show_request:type_name -> mlx_device.MlxDeviceRegistryShowRequest + 1017, // 985: forge.ScoutStreamScoutBoundMessage.mlx_device_config_query_request:type_name -> mlx_device.MlxDeviceConfigQueryRequest + 1018, // 986: forge.ScoutStreamScoutBoundMessage.mlx_device_config_set_request:type_name -> mlx_device.MlxDeviceConfigSetRequest + 1019, // 987: forge.ScoutStreamScoutBoundMessage.mlx_device_config_sync_request:type_name -> mlx_device.MlxDeviceConfigSyncRequest + 1020, // 988: forge.ScoutStreamScoutBoundMessage.mlx_device_config_compare_request:type_name -> mlx_device.MlxDeviceConfigCompareRequest + 844, // 989: forge.ScoutStreamScoutBoundMessage.scout_stream_agent_ping_request:type_name -> forge.ScoutStreamAgentPingRequest + 963, // 990: forge.ScoutStreamInitRequest.machine_id:type_name -> common.MachineId + 846, // 991: forge.ScoutStreamShowConnectionsResponse.scout_stream_connections:type_name -> forge.ScoutStreamConnectionInfo + 963, // 992: forge.ScoutStreamDisconnectRequest.machine_id:type_name -> common.MachineId + 963, // 993: forge.ScoutStreamDisconnectResponse.machine_id:type_name -> common.MachineId + 963, // 994: forge.ScoutStreamAdminPingRequest.machine_id:type_name -> common.MachineId + 847, // 995: forge.ScoutStreamAgentPingResponse.error:type_name -> forge.ScoutStreamError + 963, // 996: forge.ScoutStreamConnectionInfo.machine_id:type_name -> common.MachineId + 66, // 997: forge.ScoutStreamError.status:type_name -> forge.ScoutStreamErrorStatus + 989, // 998: forge.RoutingProfile.route_target_imports:type_name -> common.RouteTarget + 989, // 999: forge.RoutingProfile.route_targets_on_exports:type_name -> common.RouteTarget + 848, // 1000: forge.RoutingProfile.accepted_leaks_from_underlay:type_name -> forge.PrefixFilterPolicyEntry + 848, // 1001: forge.RoutingProfile.allowed_anycast_prefixes:type_name -> forge.PrefixFilterPolicyEntry + 965, // 1002: forge.DomainLegacy.id:type_name -> common.DomainId + 964, // 1003: forge.DomainLegacy.created:type_name -> google.protobuf.Timestamp + 964, // 1004: forge.DomainLegacy.updated:type_name -> google.protobuf.Timestamp + 964, // 1005: forge.DomainLegacy.deleted:type_name -> google.protobuf.Timestamp + 850, // 1006: forge.DomainListLegacy.domains:type_name -> forge.DomainLegacy + 965, // 1007: forge.DomainDeletionLegacy.id:type_name -> common.DomainId + 965, // 1008: forge.DomainSearchQueryLegacy.id:type_name -> common.DomainId + 139, // 1009: forge.PxeDomain.legacy_domain:type_name -> forge.Domain + 963, // 1010: forge.MachinePositionQuery.machine_ids:type_name -> common.MachineId + 858, // 1011: forge.MachinePositionInfoList.machine_position_info:type_name -> forge.MachinePositionInfo + 963, // 1012: forge.MachinePositionInfo.machine_id:type_name -> common.MachineId + 975, // 1013: forge.MachinePositionInfo.switch_id:type_name -> common.SwitchId + 972, // 1014: forge.MachinePositionInfo.power_shelf_id:type_name -> common.PowerShelfId + 963, // 1015: forge.ModifyDPFStateRequest.machine_id:type_name -> common.MachineId + 962, // 1016: forge.DPFStateResponse.dpf_states:type_name -> forge.DPFStateResponse.DPFState + 963, // 1017: forge.GetDPFStateRequest.machine_ids:type_name -> common.MachineId + 963, // 1018: forge.GetDPFHostSnapshotRequest.host_machine_id:type_name -> common.MachineId + 865, // 1019: forge.DPFServiceVersionsResponse.services:type_name -> forge.DPFServiceVersion + 67, // 1020: forge.ComponentResult.status:type_name -> forge.ComponentManagerStatusCode + 975, // 1021: forge.SwitchIdList.ids:type_name -> common.SwitchId + 972, // 1022: forge.PowerShelfIdList.ids:type_name -> common.PowerShelfId + 1021, // 1023: forge.GetComponentInventoryRequest.machine_ids:type_name -> common.MachineIdList + 868, // 1024: forge.GetComponentInventoryRequest.switch_ids:type_name -> forge.SwitchIdList + 869, // 1025: forge.GetComponentInventoryRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList + 867, // 1026: forge.ComponentInventoryEntry.result:type_name -> forge.ComponentResult + 1022, // 1027: forge.ComponentInventoryEntry.report:type_name -> site_explorer.EndpointExplorationReport + 871, // 1028: forge.GetComponentInventoryResponse.entries:type_name -> forge.ComponentInventoryEntry + 1021, // 1029: forge.ComponentPowerControlRequest.machine_ids:type_name -> common.MachineIdList + 868, // 1030: forge.ComponentPowerControlRequest.switch_ids:type_name -> forge.SwitchIdList + 869, // 1031: forge.ComponentPowerControlRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList + 1023, // 1032: forge.ComponentPowerControlRequest.action:type_name -> common.SystemPowerControl + 867, // 1033: forge.ComponentPowerControlResponse.results:type_name -> forge.ComponentResult + 867, // 1034: forge.FirmwareUpdateStatus.result:type_name -> forge.ComponentResult + 68, // 1035: forge.FirmwareUpdateStatus.state:type_name -> forge.FirmwareUpdateState + 964, // 1036: forge.FirmwareUpdateStatus.updated_at:type_name -> google.protobuf.Timestamp + 1021, // 1037: forge.UpdateComputeTrayFirmwareTarget.machine_ids:type_name -> common.MachineIdList + 71, // 1038: forge.UpdateComputeTrayFirmwareTarget.components:type_name -> forge.ComputeTrayComponent + 868, // 1039: forge.UpdateSwitchFirmwareTarget.switch_ids:type_name -> forge.SwitchIdList + 69, // 1040: forge.UpdateSwitchFirmwareTarget.components:type_name -> forge.NvSwitchComponent + 869, // 1041: forge.UpdatePowerShelfFirmwareTarget.power_shelf_ids:type_name -> forge.PowerShelfIdList + 70, // 1042: forge.UpdatePowerShelfFirmwareTarget.components:type_name -> forge.PowerShelfComponent + 732, // 1043: forge.UpdateFirmwareObjectTarget.rack_ids:type_name -> forge.RackIdList + 876, // 1044: forge.UpdateComponentFirmwareRequest.compute_trays:type_name -> forge.UpdateComputeTrayFirmwareTarget + 877, // 1045: forge.UpdateComponentFirmwareRequest.switches:type_name -> forge.UpdateSwitchFirmwareTarget + 878, // 1046: forge.UpdateComponentFirmwareRequest.power_shelves:type_name -> forge.UpdatePowerShelfFirmwareTarget + 879, // 1047: forge.UpdateComponentFirmwareRequest.racks:type_name -> forge.UpdateFirmwareObjectTarget + 867, // 1048: forge.UpdateComponentFirmwareResponse.results:type_name -> forge.ComponentResult + 1021, // 1049: forge.GetComponentFirmwareStatusRequest.machine_ids:type_name -> common.MachineIdList + 868, // 1050: forge.GetComponentFirmwareStatusRequest.switch_ids:type_name -> forge.SwitchIdList + 869, // 1051: forge.GetComponentFirmwareStatusRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList + 732, // 1052: forge.GetComponentFirmwareStatusRequest.rack_ids:type_name -> forge.RackIdList + 875, // 1053: forge.GetComponentFirmwareStatusResponse.statuses:type_name -> forge.FirmwareUpdateStatus + 1021, // 1054: forge.ListComponentFirmwareVersionsRequest.machine_ids:type_name -> common.MachineIdList + 868, // 1055: forge.ListComponentFirmwareVersionsRequest.switch_ids:type_name -> forge.SwitchIdList + 869, // 1056: forge.ListComponentFirmwareVersionsRequest.power_shelf_ids:type_name -> forge.PowerShelfIdList + 732, // 1057: forge.ListComponentFirmwareVersionsRequest.rack_ids:type_name -> forge.RackIdList + 71, // 1058: forge.ComputeTrayFirmwareVersions.component:type_name -> forge.ComputeTrayComponent + 867, // 1059: forge.DeviceFirmwareVersions.result:type_name -> forge.ComponentResult + 885, // 1060: forge.DeviceFirmwareVersions.compute_fw_versions:type_name -> forge.ComputeTrayFirmwareVersions + 886, // 1061: forge.ListComponentFirmwareVersionsResponse.devices:type_name -> forge.DeviceFirmwareVersions + 256, // 1062: forge.SpxPartitionCreationRequest.metadata:type_name -> forge.Metadata + 982, // 1063: forge.SpxPartitionCreationRequest.id:type_name -> common.SpxPartitionId + 256, // 1064: forge.SpxPartition.metadata:type_name -> forge.Metadata + 982, // 1065: forge.SpxPartition.id:type_name -> common.SpxPartitionId + 982, // 1066: forge.SpxPartitionIdList.spx_partition_ids:type_name -> common.SpxPartitionId + 982, // 1067: forge.SpxPartitionDeletionRequest.id:type_name -> common.SpxPartitionId + 255, // 1068: forge.SpxPartitionSearchFilter.label:type_name -> forge.Label + 889, // 1069: forge.SpxPartitionList.spx_partitions:type_name -> forge.SpxPartition + 982, // 1070: forge.SpxPartitionsByIdsRequest.spx_partition_ids:type_name -> common.SpxPartitionId + 975, // 1071: forge.AdminForceDeleteSwitchRequest.switch_id:type_name -> common.SwitchId + 972, // 1072: forge.AdminForceDeletePowerShelfRequest.power_shelf_id:type_name -> common.PowerShelfId + 981, // 1073: forge.OperatingSystem.id:type_name -> common.OperatingSystemId + 72, // 1074: forge.OperatingSystem.type:type_name -> forge.OperatingSystemType + 7, // 1075: forge.OperatingSystem.status:type_name -> forge.TenantState + 980, // 1076: forge.OperatingSystem.ipxe_template_id:type_name -> common.IpxeTemplateId + 263, // 1077: forge.OperatingSystem.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameter + 264, // 1078: forge.OperatingSystem.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifact + 981, // 1079: forge.CreateOperatingSystemRequest.id:type_name -> common.OperatingSystemId + 980, // 1080: forge.CreateOperatingSystemRequest.ipxe_template_id:type_name -> common.IpxeTemplateId + 263, // 1081: forge.CreateOperatingSystemRequest.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameter + 264, // 1082: forge.CreateOperatingSystemRequest.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifact + 263, // 1083: forge.IpxeTemplateParameters.items:type_name -> forge.IpxeTemplateParameter + 264, // 1084: forge.IpxeTemplateArtifacts.items:type_name -> forge.IpxeTemplateArtifact + 981, // 1085: forge.UpdateOperatingSystemRequest.id:type_name -> common.OperatingSystemId + 980, // 1086: forge.UpdateOperatingSystemRequest.ipxe_template_id:type_name -> common.IpxeTemplateId + 902, // 1087: forge.UpdateOperatingSystemRequest.ipxe_template_parameters:type_name -> forge.IpxeTemplateParameters + 903, // 1088: forge.UpdateOperatingSystemRequest.ipxe_template_artifacts:type_name -> forge.IpxeTemplateArtifacts + 981, // 1089: forge.DeleteOperatingSystemRequest.id:type_name -> common.OperatingSystemId + 981, // 1090: forge.OperatingSystemIdList.ids:type_name -> common.OperatingSystemId + 981, // 1091: forge.OperatingSystemsByIdsRequest.ids:type_name -> common.OperatingSystemId + 900, // 1092: forge.OperatingSystemList.operating_systems:type_name -> forge.OperatingSystem + 981, // 1093: forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest.id:type_name -> common.OperatingSystemId + 264, // 1094: forge.IpxeTemplateArtifactList.artifacts:type_name -> forge.IpxeTemplateArtifact + 981, // 1095: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest.id:type_name -> common.OperatingSystemId + 913, // 1096: forge.UpdateOperatingSystemIpxeTemplateArtifactRequest.updates:type_name -> forge.IpxeTemplateArtifactUpdateRequest + 963, // 1097: forge.GetMachineBootInterfacesRequest.machine_id:type_name -> common.MachineId + 964, // 1098: forge.RetainedBootInterface.recorded_at:type_name -> google.protobuf.Timestamp + 963, // 1099: forge.GetMachineBootInterfacesResponse.machine_id:type_name -> common.MachineId + 919, // 1100: forge.GetMachineBootInterfacesResponse.machine_interfaces:type_name -> forge.MachineInterfaceBootInterface + 920, // 1101: forge.GetMachineBootInterfacesResponse.predicted_interfaces:type_name -> forge.PredictedBootInterface + 921, // 1102: forge.GetMachineBootInterfacesResponse.explored_endpoints:type_name -> forge.ExploredBootInterface + 922, // 1103: forge.GetMachineBootInterfacesResponse.retained_interfaces:type_name -> forge.RetainedBootInterface + 927, // 1104: forge.DNSMessage.DNSResponse.rrs:type_name -> forge.DNSMessage.DNSResponse.DNSRR + 221, // 1105: forge.StateHistories.HistoriesEntry.value:type_name -> forge.StateHistoryRecords + 310, // 1106: forge.MachineStateHistories.HistoriesEntry.value:type_name -> forge.MachineStateHistoryRecords + 313, // 1107: forge.HealthHistories.HistoriesEntry.value:type_name -> forge.HealthHistoryRecords + 915, // 1108: forge.TrafficInterceptBridging.HostRepresentorInterceptBridgingEntry.value:type_name -> forge.HostRepresentorInterceptBridging + 75, // 1109: forge.MachineCredentialsUpdateRequest.Credentials.credential_purpose:type_name -> forge.MachineCredentialsUpdateRequest.CredentialPurpose + 952, // 1110: forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.pair:type_name -> forge.ForgeAgentControlResponse.ForgeAgentControlExtraInfo.KeyValuePair + 990, // 1111: forge.ForgeAgentControlResponse.MachineValidation.validation_id:type_name -> common.MachineValidationId + 943, // 1112: forge.ForgeAgentControlResponse.MachineValidation.filter:type_name -> forge.ForgeAgentControlResponse.MachineValidationFilter + 987, // 1113: forge.ForgeAgentControlResponse.MachineValidationFilter.contexts:type_name -> common.StringList + 945, // 1114: forge.ForgeAgentControlResponse.MlxAction.device_actions:type_name -> forge.ForgeAgentControlResponse.MlxDeviceAction + 946, // 1115: forge.ForgeAgentControlResponse.MlxDeviceAction.noop:type_name -> forge.ForgeAgentControlResponse.MlxDeviceNoop + 947, // 1116: forge.ForgeAgentControlResponse.MlxDeviceAction.lock:type_name -> forge.ForgeAgentControlResponse.MlxDeviceLock + 948, // 1117: forge.ForgeAgentControlResponse.MlxDeviceAction.unlock:type_name -> forge.ForgeAgentControlResponse.MlxDeviceUnlock + 949, // 1118: forge.ForgeAgentControlResponse.MlxDeviceAction.apply_profile:type_name -> forge.ForgeAgentControlResponse.MlxDeviceApplyProfile + 950, // 1119: forge.ForgeAgentControlResponse.MlxDeviceAction.apply_firmware:type_name -> forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware + 1024, // 1120: forge.ForgeAgentControlResponse.MlxDeviceApplyProfile.serialized_profile:type_name -> mlx_device.SerializableMlxConfigProfile + 1025, // 1121: forge.ForgeAgentControlResponse.MlxDeviceApplyFirmware.profile:type_name -> mlx_device.FirmwareFlasherProfile + 77, // 1122: forge.MachineCleanupInfo.CleanupStepResult.result:type_name -> forge.MachineCleanupInfo.CleanupResult + 963, // 1123: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.id:type_name -> common.MachineId + 964, // 1124: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.requested_at:type_name -> google.protobuf.Timestamp + 964, // 1125: forge.DpuReprovisioningListResponse.DpuReprovisioningListItem.initiated_at:type_name -> google.protobuf.Timestamp + 963, // 1126: forge.HostReprovisioningListResponse.HostReprovisioningListItem.id:type_name -> common.MachineId + 964, // 1127: forge.HostReprovisioningListResponse.HostReprovisioningListItem.requested_at:type_name -> google.protobuf.Timestamp + 964, // 1128: forge.HostReprovisioningListResponse.HostReprovisioningListItem.initiated_at:type_name -> google.protobuf.Timestamp + 963, // 1129: forge.DPFStateResponse.DPFState.machine_id:type_name -> common.MachineId + 130, // 1130: forge.Forge.Version:input_type -> forge.VersionRequest + 850, // 1131: forge.Forge.CreateDomainLegacy:input_type -> forge.DomainLegacy + 850, // 1132: forge.Forge.UpdateDomainLegacy:input_type -> forge.DomainLegacy + 852, // 1133: forge.Forge.DeleteDomainLegacy:input_type -> forge.DomainDeletionLegacy + 854, // 1134: forge.Forge.FindDomainLegacy:input_type -> forge.DomainSearchQueryLegacy + 154, // 1135: forge.Forge.CreateVpc:input_type -> forge.VpcCreationRequest + 155, // 1136: forge.Forge.UpdateVpc:input_type -> forge.VpcUpdateRequest + 157, // 1137: forge.Forge.UpdateVpcVirtualization:input_type -> forge.VpcUpdateVirtualizationRequest + 159, // 1138: forge.Forge.DeleteVpc:input_type -> forge.VpcDeletionRequest + 147, // 1139: forge.Forge.FindVpcIds:input_type -> forge.VpcSearchFilter + 149, // 1140: forge.Forge.FindVpcsByIds:input_type -> forge.VpcsByIdsRequest + 888, // 1141: forge.Forge.CreateSpxPartition:input_type -> forge.SpxPartitionCreationRequest + 891, // 1142: forge.Forge.DeleteSpxPartition:input_type -> forge.SpxPartitionDeletionRequest + 893, // 1143: forge.Forge.FindSpxPartitionIds:input_type -> forge.SpxPartitionSearchFilter + 895, // 1144: forge.Forge.FindSpxPartitionsByIds:input_type -> forge.SpxPartitionsByIdsRequest + 165, // 1145: forge.Forge.CreateVpcPrefix:input_type -> forge.VpcPrefixCreationRequest + 166, // 1146: forge.Forge.SearchVpcPrefixes:input_type -> forge.VpcPrefixSearchQuery + 167, // 1147: forge.Forge.GetVpcPrefixes:input_type -> forge.VpcPrefixGetRequest + 170, // 1148: forge.Forge.UpdateVpcPrefix:input_type -> forge.VpcPrefixUpdateRequest + 171, // 1149: forge.Forge.DeleteVpcPrefix:input_type -> forge.VpcPrefixDeletionRequest + 177, // 1150: forge.Forge.CreateVpcPeering:input_type -> forge.VpcPeeringCreationRequest + 178, // 1151: forge.Forge.FindVpcPeeringIds:input_type -> forge.VpcPeeringSearchFilter + 179, // 1152: forge.Forge.FindVpcPeeringsByIds:input_type -> forge.VpcPeeringsByIdsRequest + 180, // 1153: forge.Forge.DeleteVpcPeering:input_type -> forge.VpcPeeringDeletionRequest + 247, // 1154: forge.Forge.FindNetworkSegmentIds:input_type -> forge.NetworkSegmentSearchFilter + 249, // 1155: forge.Forge.FindNetworkSegmentsByIds:input_type -> forge.NetworkSegmentsByIdsRequest + 241, // 1156: forge.Forge.CreateNetworkSegment:input_type -> forge.NetworkSegmentCreationRequest + 243, // 1157: forge.Forge.AttachNetworkSegmentToVpc:input_type -> forge.AttachNetworkSegmentToVpcRequest + 242, // 1158: forge.Forge.DeleteNetworkSegment:input_type -> forge.NetworkSegmentDeletionRequest + 146, // 1159: forge.Forge.NetworkSegmentsForVpc:input_type -> forge.VpcSearchQuery + 190, // 1160: forge.Forge.FindIBPartitionIds:input_type -> forge.IBPartitionSearchFilter + 191, // 1161: forge.Forge.FindIBPartitionsByIds:input_type -> forge.IBPartitionsByIdsRequest + 186, // 1162: forge.Forge.CreateIBPartition:input_type -> forge.IBPartitionCreationRequest + 187, // 1163: forge.Forge.UpdateIBPartition:input_type -> forge.IBPartitionUpdateRequest + 188, // 1164: forge.Forge.DeleteIBPartition:input_type -> forge.IBPartitionDeletionRequest + 150, // 1165: forge.Forge.IBPartitionsForTenant:input_type -> forge.TenantSearchQuery + 202, // 1166: forge.Forge.FindPowerShelves:input_type -> forge.PowerShelfQuery + 203, // 1167: forge.Forge.FindPowerShelfIds:input_type -> forge.PowerShelfSearchFilter + 204, // 1168: forge.Forge.FindPowerShelvesByIds:input_type -> forge.PowerShelvesByIdsRequest + 198, // 1169: forge.Forge.DeletePowerShelf:input_type -> forge.PowerShelfDeletionRequest + 898, // 1170: forge.Forge.AdminForceDeletePowerShelf:input_type -> forge.AdminForceDeletePowerShelfRequest + 200, // 1171: forge.Forge.SetPowerShelfMaintenance:input_type -> forge.PowerShelfMaintenanceRequest + 224, // 1172: forge.Forge.FindSwitches:input_type -> forge.SwitchQuery + 225, // 1173: forge.Forge.FindSwitchIds:input_type -> forge.SwitchSearchFilter + 226, // 1174: forge.Forge.FindSwitchesByIds:input_type -> forge.SwitchesByIdsRequest + 218, // 1175: forge.Forge.DeleteSwitch:input_type -> forge.SwitchDeletionRequest + 896, // 1176: forge.Forge.AdminForceDeleteSwitch:input_type -> forge.AdminForceDeleteSwitchRequest + 235, // 1177: forge.Forge.FindIBFabricIds:input_type -> forge.IBFabricSearchFilter + 260, // 1178: forge.Forge.AllocateInstance:input_type -> forge.InstanceAllocationRequest + 261, // 1179: forge.Forge.AllocateInstances:input_type -> forge.BatchInstanceAllocationRequest + 304, // 1180: forge.Forge.ReleaseInstance:input_type -> forge.InstanceReleaseRequest + 278, // 1181: forge.Forge.UpdateInstanceOperatingSystem:input_type -> forge.InstanceOperatingSystemUpdateRequest + 279, // 1182: forge.Forge.UpdateInstanceConfig:input_type -> forge.InstanceConfigUpdateRequest + 257, // 1183: forge.Forge.FindInstanceIds:input_type -> forge.InstanceSearchFilter + 259, // 1184: forge.Forge.FindInstancesByIds:input_type -> forge.InstancesByIdsRequest + 963, // 1185: forge.Forge.FindInstanceByMachineID:input_type -> common.MachineId + 375, // 1186: forge.Forge.GetManagedHostNetworkConfig:input_type -> forge.ManagedHostNetworkConfigRequest + 440, // 1187: forge.Forge.RecordDpuNetworkStatus:input_type -> forge.DpuNetworkStatus + 963, // 1188: forge.Forge.ListMachineHealthReports:input_type -> common.MachineId + 446, // 1189: forge.Forge.InsertMachineHealthReport:input_type -> forge.InsertMachineHealthReportRequest + 457, // 1190: forge.Forge.RemoveMachineHealthReport:input_type -> forge.RemoveMachineHealthReportRequest + 449, // 1191: forge.Forge.ListRackHealthReports:input_type -> forge.ListRackHealthReportsRequest + 447, // 1192: forge.Forge.InsertRackHealthReport:input_type -> forge.InsertRackHealthReportRequest + 448, // 1193: forge.Forge.RemoveRackHealthReport:input_type -> forge.RemoveRackHealthReportRequest + 452, // 1194: forge.Forge.ListSwitchHealthReports:input_type -> forge.ListSwitchHealthReportsRequest + 450, // 1195: forge.Forge.InsertSwitchHealthReport:input_type -> forge.InsertSwitchHealthReportRequest + 451, // 1196: forge.Forge.RemoveSwitchHealthReport:input_type -> forge.RemoveSwitchHealthReportRequest + 455, // 1197: forge.Forge.ListPowerShelfHealthReports:input_type -> forge.ListPowerShelfHealthReportsRequest + 453, // 1198: forge.Forge.InsertPowerShelfHealthReport:input_type -> forge.InsertPowerShelfHealthReportRequest + 454, // 1199: forge.Forge.RemovePowerShelfHealthReport:input_type -> forge.RemovePowerShelfHealthReportRequest + 458, // 1200: forge.Forge.ListNVLinkDomainHealthReports:input_type -> forge.ListNVLinkDomainHealthReportsRequest + 459, // 1201: forge.Forge.InsertNVLinkDomainHealthReport:input_type -> forge.InsertNVLinkDomainHealthReportRequest + 460, // 1202: forge.Forge.RemoveNVLinkDomainHealthReport:input_type -> forge.RemoveNVLinkDomainHealthReportRequest + 963, // 1203: forge.Forge.ListHealthReportOverrides:input_type -> common.MachineId + 446, // 1204: forge.Forge.InsertHealthReportOverride:input_type -> forge.InsertMachineHealthReportRequest + 457, // 1205: forge.Forge.RemoveHealthReportOverride:input_type -> forge.RemoveMachineHealthReportRequest + 394, // 1206: forge.Forge.DpuAgentUpgradeCheck:input_type -> forge.DpuAgentUpgradeCheckRequest + 396, // 1207: forge.Forge.DpuAgentUpgradePolicyAction:input_type -> forge.DpuAgentUpgradePolicyRequest + 252, // 1208: forge.Forge.InvokeInstancePower:input_type -> forge.InstancePowerRequest + 421, // 1209: forge.Forge.ForgeAgentControl:input_type -> forge.ForgeAgentControlRequest + 423, // 1210: forge.Forge.DiscoverMachine:input_type -> forge.MachineDiscoveryInfo + 427, // 1211: forge.Forge.RenewMachineCertificate:input_type -> forge.MachineCertificateRenewRequest + 424, // 1212: forge.Forge.DiscoveryCompleted:input_type -> forge.MachineDiscoveryCompletedRequest + 425, // 1213: forge.Forge.CleanupMachineCompleted:input_type -> forge.MachineCleanupInfo + 432, // 1214: forge.Forge.ReportForgeScoutError:input_type -> forge.ForgeScoutErrorReport + 351, // 1215: forge.Forge.DiscoverDhcp:input_type -> forge.DhcpDiscovery + 352, // 1216: forge.Forge.ExpireDhcpLease:input_type -> forge.ExpireDhcpLeaseRequest + 323, // 1217: forge.Forge.AssignStaticAddress:input_type -> forge.AssignStaticAddressRequest + 325, // 1218: forge.Forge.RemoveStaticAddress:input_type -> forge.RemoveStaticAddressRequest + 327, // 1219: forge.Forge.FindInterfaceAddresses:input_type -> forge.FindInterfaceAddressesRequest + 322, // 1220: forge.Forge.FindInterfaces:input_type -> forge.InterfaceSearchQuery + 321, // 1221: forge.Forge.DeleteInterface:input_type -> forge.InterfaceDeleteQuery + 496, // 1222: forge.Forge.FindIpAddress:input_type -> forge.FindIpAddressRequest + 307, // 1223: forge.Forge.FindMachineIds:input_type -> forge.MachineSearchConfig + 306, // 1224: forge.Forge.FindMachinesByIds:input_type -> forge.MachinesByIdsRequest + 308, // 1225: forge.Forge.FindMachineStateHistories:input_type -> forge.MachineStateHistoriesRequest + 311, // 1226: forge.Forge.FindMachineHealthHistories:input_type -> forge.MachineHealthHistoriesRequest + 201, // 1227: forge.Forge.FindPowerShelfStateHistories:input_type -> forge.PowerShelfStateHistoriesRequest + 737, // 1228: forge.Forge.FindRackStateHistories:input_type -> forge.RackStateHistoriesRequest + 222, // 1229: forge.Forge.FindSwitchStateHistories:input_type -> forge.SwitchStateHistoriesRequest + 245, // 1230: forge.Forge.FindNetworkSegmentStateHistories:input_type -> forge.NetworkSegmentStateHistoriesRequest + 173, // 1231: forge.Forge.FindVpcPrefixStateHistories:input_type -> forge.VpcPrefixStateHistoriesRequest + 316, // 1232: forge.Forge.FindTenantOrganizationIds:input_type -> forge.TenantSearchFilter + 315, // 1233: forge.Forge.FindTenantsByOrganizationIds:input_type -> forge.TenantByOrganizationIdsRequest + 1021, // 1234: forge.Forge.FindConnectedDevicesByDpuMachineIds:input_type -> common.MachineIdList + 521, // 1235: forge.Forge.FindMachineIdsByBmcIps:input_type -> forge.BmcIpList + 522, // 1236: forge.Forge.FindMacAddressByBmcIp:input_type -> forge.BmcIp + 500, // 1237: forge.Forge.FindBmcIps:input_type -> forge.FindBmcIpsRequest + 498, // 1238: forge.Forge.IdentifyUuid:input_type -> forge.IdentifyUuidRequest + 501, // 1239: forge.Forge.IdentifyMac:input_type -> forge.IdentifyMacRequest + 503, // 1240: forge.Forge.IdentifySerial:input_type -> forge.IdentifySerialRequest + 417, // 1241: forge.Forge.GetBMCMetaData:input_type -> forge.BMCMetaDataGetRequest + 419, // 1242: forge.Forge.UpdateMachineCredentials:input_type -> forge.MachineCredentialsUpdateRequest + 434, // 1243: forge.Forge.GetPxeInstructions:input_type -> forge.PxeInstructionRequest + 438, // 1244: forge.Forge.GetCloudInitInstructions:input_type -> forge.CloudInitInstructionsRequest + 133, // 1245: forge.Forge.Echo:input_type -> forge.EchoRequest + 465, // 1246: forge.Forge.CreateTenant:input_type -> forge.CreateTenantRequest + 469, // 1247: forge.Forge.FindTenant:input_type -> forge.FindTenantRequest + 467, // 1248: forge.Forge.UpdateTenant:input_type -> forge.UpdateTenantRequest + 475, // 1249: forge.Forge.CreateTenantKeyset:input_type -> forge.CreateTenantKeysetRequest + 482, // 1250: forge.Forge.FindTenantKeysetIds:input_type -> forge.TenantKeysetSearchFilter + 484, // 1251: forge.Forge.FindTenantKeysetsByIds:input_type -> forge.TenantKeysetsByIdsRequest + 478, // 1252: forge.Forge.UpdateTenantKeyset:input_type -> forge.UpdateTenantKeysetRequest + 480, // 1253: forge.Forge.DeleteTenantKeyset:input_type -> forge.DeleteTenantKeysetRequest + 485, // 1254: forge.Forge.ValidateTenantPublicKey:input_type -> forge.ValidateTenantPublicKeyRequest + 358, // 1255: forge.Forge.GetBmcCredentials:input_type -> forge.GetBmcCredentialsRequest + 359, // 1256: forge.Forge.GetSwitchNvosCredentials:input_type -> forge.GetSwitchNvosCredentialsRequest + 392, // 1257: forge.Forge.GetAllManagedHostNetworkStatus:input_type -> forge.ManagedHostNetworkStatusRequest + 362, // 1258: forge.Forge.GetSiteExplorationReport:input_type -> forge.GetSiteExplorationRequest + 1026, // 1259: forge.Forge.GetSiteExplorerLastRun:input_type -> google.protobuf.Empty + 363, // 1260: forge.Forge.ClearSiteExplorationError:input_type -> forge.ClearSiteExplorationErrorRequest + 369, // 1261: forge.Forge.IsBmcInManagedHost:input_type -> forge.BmcEndpointRequest + 369, // 1262: forge.Forge.BmcCredentialStatus:input_type -> forge.BmcEndpointRequest + 369, // 1263: forge.Forge.Explore:input_type -> forge.BmcEndpointRequest + 364, // 1264: forge.Forge.ReExploreEndpoint:input_type -> forge.ReExploreEndpointRequest + 365, // 1265: forge.Forge.RefreshEndpointReport:input_type -> forge.RefreshEndpointReportRequest + 366, // 1266: forge.Forge.DeleteExploredEndpoint:input_type -> forge.DeleteExploredEndpointRequest + 367, // 1267: forge.Forge.PauseExploredEndpointRemediation:input_type -> forge.PauseExploredEndpointRemediationRequest + 1027, // 1268: forge.Forge.FindExploredEndpointIds:input_type -> site_explorer.ExploredEndpointSearchFilter + 1028, // 1269: forge.Forge.FindExploredEndpointsByIds:input_type -> site_explorer.ExploredEndpointsByIdsRequest + 1029, // 1270: forge.Forge.FindExploredManagedHostIds:input_type -> site_explorer.ExploredManagedHostSearchFilter + 1030, // 1271: forge.Forge.FindExploredManagedHostsByIds:input_type -> site_explorer.ExploredManagedHostsByIdsRequest + 1031, // 1272: forge.Forge.FindExploredMlxDeviceHostIds:input_type -> site_explorer.ExploredMlxDeviceHostSearchFilter + 1032, // 1273: forge.Forge.FindExploredMlxDevicesByIds:input_type -> site_explorer.ExploredMlxDevicesByIdsRequest + 373, // 1274: forge.Forge.UpdateMachineHardwareInfo:input_type -> forge.UpdateMachineHardwareInfoRequest + 398, // 1275: forge.Forge.AdminForceDeleteMachine:input_type -> forge.AdminForceDeleteMachineRequest + 487, // 1276: forge.Forge.AdminListResourcePools:input_type -> forge.ListResourcePoolsRequest + 490, // 1277: forge.Forge.AdminGrowResourcePool:input_type -> forge.GrowResourcePoolRequest + 335, // 1278: forge.Forge.UpdateMachineMetadata:input_type -> forge.MachineMetadataUpdateRequest + 336, // 1279: forge.Forge.UpdateRackMetadata:input_type -> forge.RackMetadataUpdateRequest + 337, // 1280: forge.Forge.UpdateSwitchMetadata:input_type -> forge.SwitchMetadataUpdateRequest + 338, // 1281: forge.Forge.UpdatePowerShelfMetadata:input_type -> forge.PowerShelfMetadataUpdateRequest + 751, // 1282: forge.Forge.UpdateMachineNvLinkInfo:input_type -> forge.UpdateMachineNvLinkInfoRequest + 494, // 1283: forge.Forge.SetMaintenance:input_type -> forge.MaintenanceRequest + 495, // 1284: forge.Forge.SetDynamicConfig:input_type -> forge.SetDynamicConfigRequest + 505, // 1285: forge.Forge.TriggerDpuReprovisioning:input_type -> forge.DpuReprovisioningRequest + 506, // 1286: forge.Forge.ListDpuWaitingForReprovisioning:input_type -> forge.DpuReprovisioningListRequest + 508, // 1287: forge.Forge.TriggerHostReprovisioning:input_type -> forge.HostReprovisioningRequest + 509, // 1288: forge.Forge.ListHostsWaitingForReprovisioning:input_type -> forge.HostReprovisioningListRequest + 963, // 1289: forge.Forge.MarkManualFirmwareUpgradeComplete:input_type -> common.MachineId + 515, // 1290: forge.Forge.GetDpuInfoList:input_type -> forge.GetDpuInfoListRequest + 984, // 1291: forge.Forge.GetMachineBootOverride:input_type -> common.MachineInterfaceId + 518, // 1292: forge.Forge.SetMachineBootOverride:input_type -> forge.MachineBootOverride + 984, // 1293: forge.Forge.ClearMachineBootOverride:input_type -> common.MachineInterfaceId + 918, // 1294: forge.Forge.GetMachineBootInterfaces:input_type -> forge.GetMachineBootInterfacesRequest + 527, // 1295: forge.Forge.GetNetworkTopology:input_type -> forge.NetworkTopologyRequest + 528, // 1296: forge.Forge.FindNetworkDevicesByDeviceIds:input_type -> forge.NetworkDeviceIdList + 126, // 1297: forge.Forge.CreateCredential:input_type -> forge.CredentialCreationRequest + 127, // 1298: forge.Forge.DeleteCredential:input_type -> forge.CredentialDeletionRequest + 1026, // 1299: forge.Forge.GetRouteServers:input_type -> google.protobuf.Empty + 530, // 1300: forge.Forge.AddRouteServers:input_type -> forge.RouteServers + 530, // 1301: forge.Forge.RemoveRouteServers:input_type -> forge.RouteServers + 530, // 1302: forge.Forge.ReplaceRouteServers:input_type -> forge.RouteServers + 339, // 1303: forge.Forge.UpdateAgentReportedInventory:input_type -> forge.DpuAgentInventoryReport + 299, // 1304: forge.Forge.UpdateInstancePhoneHomeLastContact:input_type -> forge.InstancePhoneHomeLastContactRequest + 533, // 1305: forge.Forge.SetHostUefiPassword:input_type -> forge.SetHostUefiPasswordRequest + 535, // 1306: forge.Forge.ClearHostUefiPassword:input_type -> forge.ClearHostUefiPasswordRequest + 548, // 1307: forge.Forge.AddExpectedMachine:input_type -> forge.ExpectedMachine + 549, // 1308: forge.Forge.DeleteExpectedMachine:input_type -> forge.ExpectedMachineRequest + 548, // 1309: forge.Forge.UpdateExpectedMachine:input_type -> forge.ExpectedMachine + 549, // 1310: forge.Forge.GetExpectedMachine:input_type -> forge.ExpectedMachineRequest + 1026, // 1311: forge.Forge.GetAllExpectedMachines:input_type -> google.protobuf.Empty + 550, // 1312: forge.Forge.ReplaceAllExpectedMachines:input_type -> forge.ExpectedMachineList + 1026, // 1313: forge.Forge.DeleteAllExpectedMachines:input_type -> google.protobuf.Empty + 1026, // 1314: forge.Forge.GetAllExpectedMachinesLinked:input_type -> google.protobuf.Empty + 1026, // 1315: forge.Forge.GetAllUnexpectedMachines:input_type -> google.protobuf.Empty + 555, // 1316: forge.Forge.CreateExpectedMachines:input_type -> forge.BatchExpectedMachineOperationRequest + 555, // 1317: forge.Forge.UpdateExpectedMachines:input_type -> forge.BatchExpectedMachineOperationRequest + 205, // 1318: forge.Forge.AddExpectedPowerShelf:input_type -> forge.ExpectedPowerShelf + 206, // 1319: forge.Forge.DeleteExpectedPowerShelf:input_type -> forge.ExpectedPowerShelfRequest + 205, // 1320: forge.Forge.UpdateExpectedPowerShelf:input_type -> forge.ExpectedPowerShelf + 206, // 1321: forge.Forge.GetExpectedPowerShelf:input_type -> forge.ExpectedPowerShelfRequest + 1026, // 1322: forge.Forge.GetAllExpectedPowerShelves:input_type -> google.protobuf.Empty + 207, // 1323: forge.Forge.ReplaceAllExpectedPowerShelves:input_type -> forge.ExpectedPowerShelfList + 1026, // 1324: forge.Forge.DeleteAllExpectedPowerShelves:input_type -> google.protobuf.Empty + 1026, // 1325: forge.Forge.GetAllExpectedPowerShelvesLinked:input_type -> google.protobuf.Empty + 227, // 1326: forge.Forge.AddExpectedSwitch:input_type -> forge.ExpectedSwitch + 228, // 1327: forge.Forge.DeleteExpectedSwitch:input_type -> forge.ExpectedSwitchRequest + 227, // 1328: forge.Forge.UpdateExpectedSwitch:input_type -> forge.ExpectedSwitch + 228, // 1329: forge.Forge.GetExpectedSwitch:input_type -> forge.ExpectedSwitchRequest + 1026, // 1330: forge.Forge.GetAllExpectedSwitches:input_type -> google.protobuf.Empty + 229, // 1331: forge.Forge.ReplaceAllExpectedSwitches:input_type -> forge.ExpectedSwitchList + 1026, // 1332: forge.Forge.DeleteAllExpectedSwitches:input_type -> google.protobuf.Empty + 1026, // 1333: forge.Forge.GetAllExpectedSwitchesLinked:input_type -> google.protobuf.Empty + 232, // 1334: forge.Forge.AddExpectedRack:input_type -> forge.ExpectedRack + 233, // 1335: forge.Forge.DeleteExpectedRack:input_type -> forge.ExpectedRackRequest + 232, // 1336: forge.Forge.UpdateExpectedRack:input_type -> forge.ExpectedRack + 233, // 1337: forge.Forge.GetExpectedRack:input_type -> forge.ExpectedRackRequest + 1026, // 1338: forge.Forge.GetAllExpectedRacks:input_type -> google.protobuf.Empty + 234, // 1339: forge.Forge.ReplaceAllExpectedRacks:input_type -> forge.ExpectedRackList + 1026, // 1340: forge.Forge.DeleteAllExpectedRacks:input_type -> google.protobuf.Empty + 124, // 1341: forge.Forge.AttestQuote:input_type -> forge.AttestQuoteRequest + 630, // 1342: forge.Forge.CreateInstanceType:input_type -> forge.CreateInstanceTypeRequest + 632, // 1343: forge.Forge.FindInstanceTypeIds:input_type -> forge.FindInstanceTypeIdsRequest + 634, // 1344: forge.Forge.FindInstanceTypesByIds:input_type -> forge.FindInstanceTypesByIdsRequest + 639, // 1345: forge.Forge.UpdateInstanceType:input_type -> forge.UpdateInstanceTypeRequest + 636, // 1346: forge.Forge.DeleteInstanceType:input_type -> forge.DeleteInstanceTypeRequest + 640, // 1347: forge.Forge.AssociateMachinesWithInstanceType:input_type -> forge.AssociateMachinesWithInstanceTypeRequest + 642, // 1348: forge.Forge.RemoveMachineInstanceTypeAssociation:input_type -> forge.RemoveMachineInstanceTypeAssociationRequest + 1033, // 1349: forge.Forge.CreateMeasurementBundle:input_type -> measured_boot.CreateMeasurementBundleRequest + 1034, // 1350: forge.Forge.DeleteMeasurementBundle:input_type -> measured_boot.DeleteMeasurementBundleRequest + 1035, // 1351: forge.Forge.RenameMeasurementBundle:input_type -> measured_boot.RenameMeasurementBundleRequest + 1036, // 1352: forge.Forge.UpdateMeasurementBundle:input_type -> measured_boot.UpdateMeasurementBundleRequest + 1037, // 1353: forge.Forge.ShowMeasurementBundle:input_type -> measured_boot.ShowMeasurementBundleRequest + 1038, // 1354: forge.Forge.ShowMeasurementBundles:input_type -> measured_boot.ShowMeasurementBundlesRequest + 1039, // 1355: forge.Forge.ListMeasurementBundles:input_type -> measured_boot.ListMeasurementBundlesRequest + 1040, // 1356: forge.Forge.ListMeasurementBundleMachines:input_type -> measured_boot.ListMeasurementBundleMachinesRequest + 1041, // 1357: forge.Forge.FindClosestBundleMatch:input_type -> measured_boot.FindClosestBundleMatchRequest + 1042, // 1358: forge.Forge.DeleteMeasurementJournal:input_type -> measured_boot.DeleteMeasurementJournalRequest + 1043, // 1359: forge.Forge.ShowMeasurementJournal:input_type -> measured_boot.ShowMeasurementJournalRequest + 1044, // 1360: forge.Forge.ShowMeasurementJournals:input_type -> measured_boot.ShowMeasurementJournalsRequest + 1045, // 1361: forge.Forge.ListMeasurementJournal:input_type -> measured_boot.ListMeasurementJournalRequest + 1046, // 1362: forge.Forge.AttestCandidateMachine:input_type -> measured_boot.AttestCandidateMachineRequest + 1047, // 1363: forge.Forge.ShowCandidateMachine:input_type -> measured_boot.ShowCandidateMachineRequest + 1048, // 1364: forge.Forge.ShowCandidateMachines:input_type -> measured_boot.ShowCandidateMachinesRequest + 1049, // 1365: forge.Forge.ListCandidateMachines:input_type -> measured_boot.ListCandidateMachinesRequest + 1050, // 1366: forge.Forge.CreateMeasurementSystemProfile:input_type -> measured_boot.CreateMeasurementSystemProfileRequest + 1051, // 1367: forge.Forge.DeleteMeasurementSystemProfile:input_type -> measured_boot.DeleteMeasurementSystemProfileRequest + 1052, // 1368: forge.Forge.RenameMeasurementSystemProfile:input_type -> measured_boot.RenameMeasurementSystemProfileRequest + 1053, // 1369: forge.Forge.ShowMeasurementSystemProfile:input_type -> measured_boot.ShowMeasurementSystemProfileRequest + 1054, // 1370: forge.Forge.ShowMeasurementSystemProfiles:input_type -> measured_boot.ShowMeasurementSystemProfilesRequest + 1055, // 1371: forge.Forge.ListMeasurementSystemProfiles:input_type -> measured_boot.ListMeasurementSystemProfilesRequest + 1056, // 1372: forge.Forge.ListMeasurementSystemProfileBundles:input_type -> measured_boot.ListMeasurementSystemProfileBundlesRequest + 1057, // 1373: forge.Forge.ListMeasurementSystemProfileMachines:input_type -> measured_boot.ListMeasurementSystemProfileMachinesRequest + 1058, // 1374: forge.Forge.CreateMeasurementReport:input_type -> measured_boot.CreateMeasurementReportRequest + 1059, // 1375: forge.Forge.DeleteMeasurementReport:input_type -> measured_boot.DeleteMeasurementReportRequest + 1060, // 1376: forge.Forge.PromoteMeasurementReport:input_type -> measured_boot.PromoteMeasurementReportRequest + 1061, // 1377: forge.Forge.RevokeMeasurementReport:input_type -> measured_boot.RevokeMeasurementReportRequest + 1062, // 1378: forge.Forge.ShowMeasurementReportForId:input_type -> measured_boot.ShowMeasurementReportForIdRequest + 1063, // 1379: forge.Forge.ShowMeasurementReportsForMachine:input_type -> measured_boot.ShowMeasurementReportsForMachineRequest + 1064, // 1380: forge.Forge.ShowMeasurementReports:input_type -> measured_boot.ShowMeasurementReportsRequest + 1065, // 1381: forge.Forge.ListMeasurementReport:input_type -> measured_boot.ListMeasurementReportRequest + 1066, // 1382: forge.Forge.MatchMeasurementReport:input_type -> measured_boot.MatchMeasurementReportRequest + 1067, // 1383: forge.Forge.ImportSiteMeasurements:input_type -> measured_boot.ImportSiteMeasurementsRequest + 1068, // 1384: forge.Forge.ExportSiteMeasurements:input_type -> measured_boot.ExportSiteMeasurementsRequest + 1069, // 1385: forge.Forge.AddMeasurementTrustedMachine:input_type -> measured_boot.AddMeasurementTrustedMachineRequest + 1070, // 1386: forge.Forge.RemoveMeasurementTrustedMachine:input_type -> measured_boot.RemoveMeasurementTrustedMachineRequest + 1071, // 1387: forge.Forge.AddMeasurementTrustedProfile:input_type -> measured_boot.AddMeasurementTrustedProfileRequest + 1072, // 1388: forge.Forge.RemoveMeasurementTrustedProfile:input_type -> measured_boot.RemoveMeasurementTrustedProfileRequest + 1073, // 1389: forge.Forge.ListMeasurementTrustedMachines:input_type -> measured_boot.ListMeasurementTrustedMachinesRequest + 1074, // 1390: forge.Forge.ListMeasurementTrustedProfiles:input_type -> measured_boot.ListMeasurementTrustedProfilesRequest + 1075, // 1391: forge.Forge.ListAttestationSummary:input_type -> measured_boot.ListAttestationSummaryRequest + 661, // 1392: forge.Forge.CreateNetworkSecurityGroup:input_type -> forge.CreateNetworkSecurityGroupRequest + 663, // 1393: forge.Forge.FindNetworkSecurityGroupIds:input_type -> forge.FindNetworkSecurityGroupIdsRequest + 665, // 1394: forge.Forge.FindNetworkSecurityGroupsByIds:input_type -> forge.FindNetworkSecurityGroupsByIdsRequest + 668, // 1395: forge.Forge.UpdateNetworkSecurityGroup:input_type -> forge.UpdateNetworkSecurityGroupRequest + 669, // 1396: forge.Forge.DeleteNetworkSecurityGroup:input_type -> forge.DeleteNetworkSecurityGroupRequest + 675, // 1397: forge.Forge.GetNetworkSecurityGroupPropagationStatus:input_type -> forge.GetNetworkSecurityGroupPropagationStatusRequest + 678, // 1398: forge.Forge.GetNetworkSecurityGroupAttachments:input_type -> forge.GetNetworkSecurityGroupAttachmentsRequest + 537, // 1399: forge.Forge.CreateOsImage:input_type -> forge.OsImageAttributes + 541, // 1400: forge.Forge.DeleteOsImage:input_type -> forge.DeleteOsImageRequest + 539, // 1401: forge.Forge.ListOsImage:input_type -> forge.ListOsImageRequest + 974, // 1402: forge.Forge.GetOsImage:input_type -> common.UUID + 537, // 1403: forge.Forge.UpdateOsImage:input_type -> forge.OsImageAttributes + 543, // 1404: forge.Forge.GetIpxeTemplate:input_type -> forge.GetIpxeTemplateRequest + 544, // 1405: forge.Forge.ListIpxeTemplates:input_type -> forge.ListIpxeTemplatesRequest + 559, // 1406: forge.Forge.RebootCompleted:input_type -> forge.MachineRebootCompletedRequest + 564, // 1407: forge.Forge.PersistValidationResult:input_type -> forge.MachineValidationResultPostRequest + 566, // 1408: forge.Forge.GetMachineValidationResults:input_type -> forge.MachineValidationGetRequest + 561, // 1409: forge.Forge.MachineValidationCompleted:input_type -> forge.MachineValidationCompletedRequest + 569, // 1410: forge.Forge.MachineSetAutoUpdate:input_type -> forge.MachineSetAutoUpdateRequest + 571, // 1411: forge.Forge.GetMachineValidationExternalConfig:input_type -> forge.GetMachineValidationExternalConfigRequest + 574, // 1412: forge.Forge.GetMachineValidationExternalConfigs:input_type -> forge.GetMachineValidationExternalConfigsRequest + 576, // 1413: forge.Forge.AddUpdateMachineValidationExternalConfig:input_type -> forge.AddUpdateMachineValidationExternalConfigRequest + 593, // 1414: forge.Forge.GetMachineValidationRuns:input_type -> forge.MachineValidationRunListGetRequest + 594, // 1415: forge.Forge.FindMachineValidationRunItemIds:input_type -> forge.MachineValidationRunItemSearchFilter + 596, // 1416: forge.Forge.FindMachineValidationRunItemsByIds:input_type -> forge.MachineValidationRunItemsByIdsRequest + 599, // 1417: forge.Forge.GetMachineValidationAttempt:input_type -> forge.MachineValidationAttemptGetRequest + 601, // 1418: forge.Forge.HeartbeatMachineValidationRun:input_type -> forge.MachineValidationHeartbeatRequest + 577, // 1419: forge.Forge.RemoveMachineValidationExternalConfig:input_type -> forge.RemoveMachineValidationExternalConfigRequest + 605, // 1420: forge.Forge.GetMachineValidationTests:input_type -> forge.MachineValidationTestsGetRequest + 607, // 1421: forge.Forge.AddMachineValidationTest:input_type -> forge.MachineValidationTestAddRequest + 606, // 1422: forge.Forge.UpdateMachineValidationTest:input_type -> forge.MachineValidationTestUpdateRequest + 610, // 1423: forge.Forge.MachineValidationTestVerfied:input_type -> forge.MachineValidationTestVerfiedRequest + 614, // 1424: forge.Forge.MachineValidationTestNextVersion:input_type -> forge.MachineValidationTestNextVersionRequest + 615, // 1425: forge.Forge.MachineValidationTestEnableDisableTest:input_type -> forge.MachineValidationTestEnableDisableTestRequest + 617, // 1426: forge.Forge.UpdateMachineValidationRun:input_type -> forge.MachineValidationRunRequest + 411, // 1427: forge.Forge.AdminBmcReset:input_type -> forge.AdminBmcResetRequest + 588, // 1428: forge.Forge.AdminPowerControl:input_type -> forge.AdminPowerControlRequest + 369, // 1429: forge.Forge.DisableSecureBoot:input_type -> forge.BmcEndpointRequest + 401, // 1430: forge.Forge.Lockdown:input_type -> forge.LockdownRequest + 403, // 1431: forge.Forge.LockdownStatus:input_type -> forge.LockdownStatusRequest + 405, // 1432: forge.Forge.MachineSetup:input_type -> forge.MachineSetupRequest + 407, // 1433: forge.Forge.SetDpuFirstBootOrder:input_type -> forge.SetDpuFirstBootOrderRequest + 779, // 1434: forge.Forge.CreateBmcUser:input_type -> forge.CreateBmcUserRequest + 781, // 1435: forge.Forge.DeleteBmcUser:input_type -> forge.DeleteBmcUserRequest + 413, // 1436: forge.Forge.EnableInfiniteBoot:input_type -> forge.EnableInfiniteBootRequest + 415, // 1437: forge.Forge.IsInfiniteBootEnabled:input_type -> forge.IsInfiniteBootEnabledRequest + 578, // 1438: forge.Forge.OnDemandMachineValidation:input_type -> forge.MachineValidationOnDemandRequest + 586, // 1439: forge.Forge.OnDemandRackMaintenance:input_type -> forge.RackMaintenanceOnDemandRequest + 120, // 1440: forge.Forge.TpmAddCaCert:input_type -> forge.TpmCaCert + 1026, // 1441: forge.Forge.TpmShowCaCerts:input_type -> google.protobuf.Empty + 1026, // 1442: forge.Forge.TpmShowUnmatchedEkCerts:input_type -> google.protobuf.Empty + 117, // 1443: forge.Forge.TpmDeleteCaCert:input_type -> forge.TpmCaCertId + 644, // 1444: forge.Forge.RedfishBrowse:input_type -> forge.RedfishBrowseRequest + 646, // 1445: forge.Forge.RedfishListActions:input_type -> forge.RedfishListActionsRequest + 651, // 1446: forge.Forge.RedfishCreateAction:input_type -> forge.RedfishCreateActionRequest + 653, // 1447: forge.Forge.RedfishApproveAction:input_type -> forge.RedfishActionID + 653, // 1448: forge.Forge.RedfishApplyAction:input_type -> forge.RedfishActionID + 653, // 1449: forge.Forge.RedfishCancelAction:input_type -> forge.RedfishActionID + 657, // 1450: forge.Forge.UfmBrowse:input_type -> forge.UfmBrowseRequest + 681, // 1451: forge.Forge.GetDesiredFirmwareVersions:input_type -> forge.GetDesiredFirmwareVersionsRequest + 697, // 1452: forge.Forge.CreateSku:input_type -> forge.SkuList + 963, // 1453: forge.Forge.GenerateSkuFromMachine:input_type -> common.MachineId + 963, // 1454: forge.Forge.VerifySkuForMachine:input_type -> common.MachineId + 695, // 1455: forge.Forge.AssignSkuToMachine:input_type -> forge.SkuMachinePair + 696, // 1456: forge.Forge.RemoveSkuAssociation:input_type -> forge.RemoveSkuRequest + 698, // 1457: forge.Forge.DeleteSku:input_type -> forge.SkuIdList + 1026, // 1458: forge.Forge.GetAllSkuIds:input_type -> google.protobuf.Empty + 700, // 1459: forge.Forge.FindSkusByIds:input_type -> forge.SkusByIdsRequest + 710, // 1460: forge.Forge.UpdateSkuMetadata:input_type -> forge.SkuUpdateMetadataRequest + 694, // 1461: forge.Forge.ReplaceSku:input_type -> forge.Sku + 381, // 1462: forge.Forge.GetManagedHostQuarantineState:input_type -> forge.GetManagedHostQuarantineStateRequest + 383, // 1463: forge.Forge.SetManagedHostQuarantineState:input_type -> forge.SetManagedHostQuarantineStateRequest + 385, // 1464: forge.Forge.ClearManagedHostQuarantineState:input_type -> forge.ClearManagedHostQuarantineStateRequest + 963, // 1465: forge.Forge.ResetHostReprovisioning:input_type -> common.MachineId + 372, // 1466: forge.Forge.CopyBfbToDpuRshim:input_type -> forge.CopyBfbToDpuRshimRequest + 1026, // 1467: forge.Forge.GetAllDpaInterfaceIds:input_type -> google.protobuf.Empty + 705, // 1468: forge.Forge.FindDpaInterfacesByIds:input_type -> forge.DpaInterfacesByIdsRequest + 703, // 1469: forge.Forge.CreateDpaInterface:input_type -> forge.DpaInterfaceCreationRequest + 703, // 1470: forge.Forge.EnsureDpaInterface:input_type -> forge.DpaInterfaceCreationRequest + 708, // 1471: forge.Forge.DeleteDpaInterface:input_type -> forge.DpaInterfaceDeletionRequest + 711, // 1472: forge.Forge.GetPowerOptions:input_type -> forge.PowerOptionRequest + 712, // 1473: forge.Forge.UpdatePowerOption:input_type -> forge.PowerOptionUpdateRequest + 369, // 1474: forge.Forge.AllowIngestionAndPowerOn:input_type -> forge.BmcEndpointRequest + 369, // 1475: forge.Forge.DetermineMachineIngestionState:input_type -> forge.BmcEndpointRequest + 731, // 1476: forge.Forge.FindRackIds:input_type -> forge.RackSearchFilter + 733, // 1477: forge.Forge.FindRacksByIds:input_type -> forge.RacksByIdsRequest + 728, // 1478: forge.Forge.GetRack:input_type -> forge.GetRackRequest + 738, // 1479: forge.Forge.DeleteRack:input_type -> forge.DeleteRackRequest + 739, // 1480: forge.Forge.AdminForceDeleteRack:input_type -> forge.AdminForceDeleteRackRequest + 746, // 1481: forge.Forge.GetRackProfile:input_type -> forge.GetRackProfileRequest + 717, // 1482: forge.Forge.CreateComputeAllocation:input_type -> forge.CreateComputeAllocationRequest + 719, // 1483: forge.Forge.FindComputeAllocationIds:input_type -> forge.FindComputeAllocationIdsRequest + 721, // 1484: forge.Forge.FindComputeAllocationsByIds:input_type -> forge.FindComputeAllocationsByIdsRequest + 724, // 1485: forge.Forge.UpdateComputeAllocation:input_type -> forge.UpdateComputeAllocationRequest + 725, // 1486: forge.Forge.DeleteComputeAllocation:input_type -> forge.DeleteComputeAllocationRequest + 783, // 1487: forge.Forge.SetFirmwareUpdateTimeWindow:input_type -> forge.SetFirmwareUpdateTimeWindowRequest + 785, // 1488: forge.Forge.ListHostFirmware:input_type -> forge.ListHostFirmwareRequest + 1076, // 1489: forge.Forge.PublishMlxDeviceReport:input_type -> mlx_device.PublishMlxDeviceReportRequest + 1077, // 1490: forge.Forge.PublishMlxObservationReport:input_type -> mlx_device.PublishMlxObservationReportRequest + 788, // 1491: forge.Forge.TrimTable:input_type -> forge.TrimTableRequest + 1026, // 1492: forge.Forge.ListNvlinkNmxcEndpoints:input_type -> google.protobuf.Empty + 790, // 1493: forge.Forge.CreateNvlinkNmxcEndpoint:input_type -> forge.NvlinkNmxcEndpoint + 790, // 1494: forge.Forge.UpdateNvlinkNmxcEndpoint:input_type -> forge.NvlinkNmxcEndpoint + 792, // 1495: forge.Forge.DeleteNvlinkNmxcEndpoint:input_type -> forge.DeleteNvlinkNmxcEndpointRequest + 793, // 1496: forge.Forge.CreateRemediation:input_type -> forge.CreateRemediationRequest + 798, // 1497: forge.Forge.ApproveRemediation:input_type -> forge.ApproveRemediationRequest + 799, // 1498: forge.Forge.RevokeRemediation:input_type -> forge.RevokeRemediationRequest + 800, // 1499: forge.Forge.EnableRemediation:input_type -> forge.EnableRemediationRequest + 801, // 1500: forge.Forge.DisableRemediation:input_type -> forge.DisableRemediationRequest + 1026, // 1501: forge.Forge.FindRemediationIds:input_type -> google.protobuf.Empty + 795, // 1502: forge.Forge.FindRemediationsByIds:input_type -> forge.RemediationIdList + 802, // 1503: forge.Forge.FindAppliedRemediationIds:input_type -> forge.FindAppliedRemediationIdsRequest + 804, // 1504: forge.Forge.FindAppliedRemediations:input_type -> forge.FindAppliedRemediationsRequest + 807, // 1505: forge.Forge.GetNextRemediationForMachine:input_type -> forge.GetNextRemediationForMachineRequest + 809, // 1506: forge.Forge.RemediationApplied:input_type -> forge.RemediationAppliedRequest + 811, // 1507: forge.Forge.SetPrimaryDpu:input_type -> forge.SetPrimaryDpuRequest + 812, // 1508: forge.Forge.SetPrimaryInterface:input_type -> forge.SetPrimaryInterfaceRequest + 818, // 1509: forge.Forge.CreateDpuExtensionService:input_type -> forge.CreateDpuExtensionServiceRequest + 819, // 1510: forge.Forge.UpdateDpuExtensionService:input_type -> forge.UpdateDpuExtensionServiceRequest + 820, // 1511: forge.Forge.DeleteDpuExtensionService:input_type -> forge.DeleteDpuExtensionServiceRequest + 822, // 1512: forge.Forge.FindDpuExtensionServiceIds:input_type -> forge.DpuExtensionServiceSearchFilter + 824, // 1513: forge.Forge.FindDpuExtensionServicesByIds:input_type -> forge.DpuExtensionServicesByIdsRequest + 826, // 1514: forge.Forge.GetDpuExtensionServiceVersionsInfo:input_type -> forge.GetDpuExtensionServiceVersionsInfoRequest + 828, // 1515: forge.Forge.FindInstancesByDpuExtensionService:input_type -> forge.FindInstancesByDpuExtensionServiceRequest + 92, // 1516: forge.Forge.TriggerMachineAttestation:input_type -> forge.SpdmMachineAttestationTriggerRequest + 963, // 1517: forge.Forge.CancelMachineAttestation:input_type -> common.MachineId + 93, // 1518: forge.Forge.ListAttestationMachines:input_type -> forge.SpdmListAttestationMachinesRequest + 963, // 1519: forge.Forge.GetAttestationMachine:input_type -> common.MachineId + 95, // 1520: forge.Forge.SignMachineIdentity:input_type -> forge.MachineIdentityRequest + 97, // 1521: forge.Forge.GetTenantIdentityConfiguration:input_type -> forge.GetTenantIdentityConfigRequest + 100, // 1522: forge.Forge.SetTenantIdentityConfiguration:input_type -> forge.SetTenantIdentityConfigRequest + 97, // 1523: forge.Forge.DeleteTenantIdentityConfiguration:input_type -> forge.GetTenantIdentityConfigRequest + 105, // 1524: forge.Forge.GetTokenDelegation:input_type -> forge.GetTokenDelegationRequest + 107, // 1525: forge.Forge.SetTokenDelegation:input_type -> forge.TokenDelegationRequest + 105, // 1526: forge.Forge.DeleteTokenDelegation:input_type -> forge.GetTokenDelegationRequest + 108, // 1527: forge.Forge.ReencryptTenantIdentitySecrets:input_type -> forge.ReencryptTenantIdentitySecretsRequest + 113, // 1528: forge.Forge.GetJWKS:input_type -> forge.JwksRequest + 114, // 1529: forge.Forge.GetOpenIDConfiguration:input_type -> forge.OpenIdConfigRequest + 835, // 1530: forge.Forge.ScoutStream:input_type -> forge.ScoutStreamApiBoundMessage + 838, // 1531: forge.Forge.ScoutStreamShowConnections:input_type -> forge.ScoutStreamShowConnectionsRequest + 840, // 1532: forge.Forge.ScoutStreamDisconnect:input_type -> forge.ScoutStreamDisconnectRequest + 842, // 1533: forge.Forge.ScoutStreamPing:input_type -> forge.ScoutStreamAdminPingRequest + 1078, // 1534: forge.Forge.MlxAdminProfileSync:input_type -> mlx_device.MlxAdminProfileSyncRequest + 1079, // 1535: forge.Forge.MlxAdminProfileShow:input_type -> mlx_device.MlxAdminProfileShowRequest + 1080, // 1536: forge.Forge.MlxAdminProfileCompare:input_type -> mlx_device.MlxAdminProfileCompareRequest + 1081, // 1537: forge.Forge.MlxAdminProfileList:input_type -> mlx_device.MlxAdminProfileListRequest + 1082, // 1538: forge.Forge.MlxAdminLockdownLock:input_type -> mlx_device.MlxAdminLockdownLockRequest + 1083, // 1539: forge.Forge.MlxAdminLockdownUnlock:input_type -> mlx_device.MlxAdminLockdownUnlockRequest + 1084, // 1540: forge.Forge.MlxAdminLockdownStatus:input_type -> mlx_device.MlxAdminLockdownStatusRequest + 1085, // 1541: forge.Forge.MlxAdminShowDevice:input_type -> mlx_device.MlxAdminDeviceInfoRequest + 1086, // 1542: forge.Forge.MlxAdminShowMachine:input_type -> mlx_device.MlxAdminDeviceReportRequest + 1087, // 1543: forge.Forge.MlxAdminRegistryList:input_type -> mlx_device.MlxAdminRegistryListRequest + 1088, // 1544: forge.Forge.MlxAdminRegistryShow:input_type -> mlx_device.MlxAdminRegistryShowRequest + 1089, // 1545: forge.Forge.MlxAdminConfigQuery:input_type -> mlx_device.MlxAdminConfigQueryRequest + 1090, // 1546: forge.Forge.MlxAdminConfigSet:input_type -> mlx_device.MlxAdminConfigSetRequest + 1091, // 1547: forge.Forge.MlxAdminConfigSync:input_type -> mlx_device.MlxAdminConfigSyncRequest + 1092, // 1548: forge.Forge.MlxAdminConfigCompare:input_type -> mlx_device.MlxAdminConfigCompareRequest + 763, // 1549: forge.Forge.FindNVLinkPartitionIds:input_type -> forge.NVLinkPartitionSearchFilter + 764, // 1550: forge.Forge.FindNVLinkPartitionsByIds:input_type -> forge.NVLinkPartitionsByIdsRequest + 150, // 1551: forge.Forge.NVLinkPartitionsForTenant:input_type -> forge.TenantSearchQuery + 774, // 1552: forge.Forge.FindNVLinkLogicalPartitionIds:input_type -> forge.NVLinkLogicalPartitionSearchFilter + 775, // 1553: forge.Forge.FindNVLinkLogicalPartitionsByIds:input_type -> forge.NVLinkLogicalPartitionsByIdsRequest + 771, // 1554: forge.Forge.CreateNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionCreationRequest + 777, // 1555: forge.Forge.UpdateNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionUpdateRequest + 772, // 1556: forge.Forge.DeleteNVLinkLogicalPartition:input_type -> forge.NVLinkLogicalPartitionDeletionRequest + 150, // 1557: forge.Forge.NVLinkLogicalPartitionsForTenant:input_type -> forge.TenantSearchQuery + 856, // 1558: forge.Forge.GetMachinePositionInfo:input_type -> forge.MachinePositionQuery + 757, // 1559: forge.Forge.NmxcBrowse:input_type -> forge.NmxcBrowseRequest + 859, // 1560: forge.Forge.ModifyDPFState:input_type -> forge.ModifyDPFStateRequest + 861, // 1561: forge.Forge.GetDPFState:input_type -> forge.GetDPFStateRequest + 862, // 1562: forge.Forge.GetDPFHostSnapshot:input_type -> forge.GetDPFHostSnapshotRequest + 864, // 1563: forge.Forge.GetDPFServiceVersions:input_type -> forge.GetDPFServiceVersionsRequest + 873, // 1564: forge.Forge.ComponentPowerControl:input_type -> forge.ComponentPowerControlRequest + 870, // 1565: forge.Forge.GetComponentInventory:input_type -> forge.GetComponentInventoryRequest + 880, // 1566: forge.Forge.UpdateComponentFirmware:input_type -> forge.UpdateComponentFirmwareRequest + 882, // 1567: forge.Forge.GetComponentFirmwareStatus:input_type -> forge.GetComponentFirmwareStatusRequest + 884, // 1568: forge.Forge.ListComponentFirmwareVersions:input_type -> forge.ListComponentFirmwareVersionsRequest + 901, // 1569: forge.Forge.CreateOperatingSystem:input_type -> forge.CreateOperatingSystemRequest + 981, // 1570: forge.Forge.GetOperatingSystem:input_type -> common.OperatingSystemId + 904, // 1571: forge.Forge.UpdateOperatingSystem:input_type -> forge.UpdateOperatingSystemRequest + 905, // 1572: forge.Forge.DeleteOperatingSystem:input_type -> forge.DeleteOperatingSystemRequest + 907, // 1573: forge.Forge.FindOperatingSystemIds:input_type -> forge.OperatingSystemSearchFilter + 909, // 1574: forge.Forge.FindOperatingSystemsByIds:input_type -> forge.OperatingSystemsByIdsRequest + 911, // 1575: forge.Forge.GetOperatingSystemCachableIpxeTemplateArtifacts:input_type -> forge.GetOperatingSystemCachableIpxeTemplateArtifactsRequest + 914, // 1576: forge.Forge.UpdateOperatingSystemCachableIpxeTemplateArtifacts:input_type -> forge.UpdateOperatingSystemIpxeTemplateArtifactRequest + 916, // 1577: forge.Forge.ReWrapSecrets:input_type -> forge.ReWrapSecretsRequest + 131, // 1578: forge.Forge.Version:output_type -> forge.BuildInfo + 850, // 1579: forge.Forge.CreateDomainLegacy:output_type -> forge.DomainLegacy + 850, // 1580: forge.Forge.UpdateDomainLegacy:output_type -> forge.DomainLegacy + 853, // 1581: forge.Forge.DeleteDomainLegacy:output_type -> forge.DomainDeletionResultLegacy + 851, // 1582: forge.Forge.FindDomainLegacy:output_type -> forge.DomainListLegacy + 153, // 1583: forge.Forge.CreateVpc:output_type -> forge.Vpc + 156, // 1584: forge.Forge.UpdateVpc:output_type -> forge.VpcUpdateResult + 158, // 1585: forge.Forge.UpdateVpcVirtualization:output_type -> forge.VpcUpdateVirtualizationResult + 160, // 1586: forge.Forge.DeleteVpc:output_type -> forge.VpcDeletionResult + 148, // 1587: forge.Forge.FindVpcIds:output_type -> forge.VpcIdList + 161, // 1588: forge.Forge.FindVpcsByIds:output_type -> forge.VpcList + 889, // 1589: forge.Forge.CreateSpxPartition:output_type -> forge.SpxPartition + 892, // 1590: forge.Forge.DeleteSpxPartition:output_type -> forge.SpxPartitionDeletionResult + 890, // 1591: forge.Forge.FindSpxPartitionIds:output_type -> forge.SpxPartitionIdList + 894, // 1592: forge.Forge.FindSpxPartitionsByIds:output_type -> forge.SpxPartitionList + 162, // 1593: forge.Forge.CreateVpcPrefix:output_type -> forge.VpcPrefix + 168, // 1594: forge.Forge.SearchVpcPrefixes:output_type -> forge.VpcPrefixIdList + 169, // 1595: forge.Forge.GetVpcPrefixes:output_type -> forge.VpcPrefixList + 162, // 1596: forge.Forge.UpdateVpcPrefix:output_type -> forge.VpcPrefix + 172, // 1597: forge.Forge.DeleteVpcPrefix:output_type -> forge.VpcPrefixDeletionResult + 174, // 1598: forge.Forge.CreateVpcPeering:output_type -> forge.VpcPeering + 175, // 1599: forge.Forge.FindVpcPeeringIds:output_type -> forge.VpcPeeringIdList + 176, // 1600: forge.Forge.FindVpcPeeringsByIds:output_type -> forge.VpcPeeringList + 181, // 1601: forge.Forge.DeleteVpcPeering:output_type -> forge.VpcPeeringDeletionResult + 248, // 1602: forge.Forge.FindNetworkSegmentIds:output_type -> forge.NetworkSegmentIdList + 355, // 1603: forge.Forge.FindNetworkSegmentsByIds:output_type -> forge.NetworkSegmentList + 240, // 1604: forge.Forge.CreateNetworkSegment:output_type -> forge.NetworkSegment + 240, // 1605: forge.Forge.AttachNetworkSegmentToVpc:output_type -> forge.NetworkSegment + 244, // 1606: forge.Forge.DeleteNetworkSegment:output_type -> forge.NetworkSegmentDeletionResult + 355, // 1607: forge.Forge.NetworkSegmentsForVpc:output_type -> forge.NetworkSegmentList + 192, // 1608: forge.Forge.FindIBPartitionIds:output_type -> forge.IBPartitionIdList + 185, // 1609: forge.Forge.FindIBPartitionsByIds:output_type -> forge.IBPartitionList + 184, // 1610: forge.Forge.CreateIBPartition:output_type -> forge.IBPartition + 184, // 1611: forge.Forge.UpdateIBPartition:output_type -> forge.IBPartition + 189, // 1612: forge.Forge.DeleteIBPartition:output_type -> forge.IBPartitionDeletionResult + 185, // 1613: forge.Forge.IBPartitionsForTenant:output_type -> forge.IBPartitionList + 196, // 1614: forge.Forge.FindPowerShelves:output_type -> forge.PowerShelfList + 869, // 1615: forge.Forge.FindPowerShelfIds:output_type -> forge.PowerShelfIdList + 196, // 1616: forge.Forge.FindPowerShelvesByIds:output_type -> forge.PowerShelfList + 199, // 1617: forge.Forge.DeletePowerShelf:output_type -> forge.PowerShelfDeletionResult + 899, // 1618: forge.Forge.AdminForceDeletePowerShelf:output_type -> forge.AdminForceDeletePowerShelfResponse + 1026, // 1619: forge.Forge.SetPowerShelfMaintenance:output_type -> google.protobuf.Empty + 216, // 1620: forge.Forge.FindSwitches:output_type -> forge.SwitchList + 868, // 1621: forge.Forge.FindSwitchIds:output_type -> forge.SwitchIdList + 216, // 1622: forge.Forge.FindSwitchesByIds:output_type -> forge.SwitchList + 219, // 1623: forge.Forge.DeleteSwitch:output_type -> forge.SwitchDeletionResult + 897, // 1624: forge.Forge.AdminForceDeleteSwitch:output_type -> forge.AdminForceDeleteSwitchResponse + 236, // 1625: forge.Forge.FindIBFabricIds:output_type -> forge.IBFabricIdList + 289, // 1626: forge.Forge.AllocateInstance:output_type -> forge.Instance + 262, // 1627: forge.Forge.AllocateInstances:output_type -> forge.BatchInstanceAllocationResponse + 305, // 1628: forge.Forge.ReleaseInstance:output_type -> forge.InstanceReleaseResult + 289, // 1629: forge.Forge.UpdateInstanceOperatingSystem:output_type -> forge.Instance + 289, // 1630: forge.Forge.UpdateInstanceConfig:output_type -> forge.Instance + 258, // 1631: forge.Forge.FindInstanceIds:output_type -> forge.InstanceIdList + 254, // 1632: forge.Forge.FindInstancesByIds:output_type -> forge.InstanceList + 254, // 1633: forge.Forge.FindInstanceByMachineID:output_type -> forge.InstanceList + 376, // 1634: forge.Forge.GetManagedHostNetworkConfig:output_type -> forge.ManagedHostNetworkConfigResponse + 1026, // 1635: forge.Forge.RecordDpuNetworkStatus:output_type -> google.protobuf.Empty + 456, // 1636: forge.Forge.ListMachineHealthReports:output_type -> forge.ListHealthReportResponse + 1026, // 1637: forge.Forge.InsertMachineHealthReport:output_type -> google.protobuf.Empty + 1026, // 1638: forge.Forge.RemoveMachineHealthReport:output_type -> google.protobuf.Empty + 456, // 1639: forge.Forge.ListRackHealthReports:output_type -> forge.ListHealthReportResponse + 1026, // 1640: forge.Forge.InsertRackHealthReport:output_type -> google.protobuf.Empty + 1026, // 1641: forge.Forge.RemoveRackHealthReport:output_type -> google.protobuf.Empty + 456, // 1642: forge.Forge.ListSwitchHealthReports:output_type -> forge.ListHealthReportResponse + 1026, // 1643: forge.Forge.InsertSwitchHealthReport:output_type -> google.protobuf.Empty + 1026, // 1644: forge.Forge.RemoveSwitchHealthReport:output_type -> google.protobuf.Empty + 456, // 1645: forge.Forge.ListPowerShelfHealthReports:output_type -> forge.ListHealthReportResponse + 1026, // 1646: forge.Forge.InsertPowerShelfHealthReport:output_type -> google.protobuf.Empty + 1026, // 1647: forge.Forge.RemovePowerShelfHealthReport:output_type -> google.protobuf.Empty + 456, // 1648: forge.Forge.ListNVLinkDomainHealthReports:output_type -> forge.ListHealthReportResponse + 1026, // 1649: forge.Forge.InsertNVLinkDomainHealthReport:output_type -> google.protobuf.Empty + 1026, // 1650: forge.Forge.RemoveNVLinkDomainHealthReport:output_type -> google.protobuf.Empty + 456, // 1651: forge.Forge.ListHealthReportOverrides:output_type -> forge.ListHealthReportResponse + 1026, // 1652: forge.Forge.InsertHealthReportOverride:output_type -> google.protobuf.Empty + 1026, // 1653: forge.Forge.RemoveHealthReportOverride:output_type -> google.protobuf.Empty + 395, // 1654: forge.Forge.DpuAgentUpgradeCheck:output_type -> forge.DpuAgentUpgradeCheckResponse + 397, // 1655: forge.Forge.DpuAgentUpgradePolicyAction:output_type -> forge.DpuAgentUpgradePolicyResponse + 253, // 1656: forge.Forge.InvokeInstancePower:output_type -> forge.InstancePowerResult + 422, // 1657: forge.Forge.ForgeAgentControl:output_type -> forge.ForgeAgentControlResponse + 429, // 1658: forge.Forge.DiscoverMachine:output_type -> forge.MachineDiscoveryResult + 428, // 1659: forge.Forge.RenewMachineCertificate:output_type -> forge.MachineCertificateResult + 430, // 1660: forge.Forge.DiscoveryCompleted:output_type -> forge.MachineDiscoveryCompletedResponse + 431, // 1661: forge.Forge.CleanupMachineCompleted:output_type -> forge.MachineCleanupResult + 433, // 1662: forge.Forge.ReportForgeScoutError:output_type -> forge.ForgeScoutErrorReportResult + 354, // 1663: forge.Forge.DiscoverDhcp:output_type -> forge.DhcpRecord + 353, // 1664: forge.Forge.ExpireDhcpLease:output_type -> forge.ExpireDhcpLeaseResponse + 324, // 1665: forge.Forge.AssignStaticAddress:output_type -> forge.AssignStaticAddressResponse + 326, // 1666: forge.Forge.RemoveStaticAddress:output_type -> forge.RemoveStaticAddressResponse + 329, // 1667: forge.Forge.FindInterfaceAddresses:output_type -> forge.FindInterfaceAddressesResponse + 319, // 1668: forge.Forge.FindInterfaces:output_type -> forge.InterfaceList + 1026, // 1669: forge.Forge.DeleteInterface:output_type -> google.protobuf.Empty + 497, // 1670: forge.Forge.FindIpAddress:output_type -> forge.FindIpAddressResponse + 1021, // 1671: forge.Forge.FindMachineIds:output_type -> common.MachineIdList + 320, // 1672: forge.Forge.FindMachinesByIds:output_type -> forge.MachineList + 309, // 1673: forge.Forge.FindMachineStateHistories:output_type -> forge.MachineStateHistories + 312, // 1674: forge.Forge.FindMachineHealthHistories:output_type -> forge.HealthHistories + 223, // 1675: forge.Forge.FindPowerShelfStateHistories:output_type -> forge.StateHistories + 223, // 1676: forge.Forge.FindRackStateHistories:output_type -> forge.StateHistories + 223, // 1677: forge.Forge.FindSwitchStateHistories:output_type -> forge.StateHistories + 223, // 1678: forge.Forge.FindNetworkSegmentStateHistories:output_type -> forge.StateHistories + 223, // 1679: forge.Forge.FindVpcPrefixStateHistories:output_type -> forge.StateHistories + 318, // 1680: forge.Forge.FindTenantOrganizationIds:output_type -> forge.TenantOrganizationIdList + 317, // 1681: forge.Forge.FindTenantsByOrganizationIds:output_type -> forge.TenantList + 520, // 1682: forge.Forge.FindConnectedDevicesByDpuMachineIds:output_type -> forge.ConnectedDeviceList + 524, // 1683: forge.Forge.FindMachineIdsByBmcIps:output_type -> forge.MachineIdBmcIpPairs + 523, // 1684: forge.Forge.FindMacAddressByBmcIp:output_type -> forge.MacAddressBmcIp + 521, // 1685: forge.Forge.FindBmcIps:output_type -> forge.BmcIpList + 499, // 1686: forge.Forge.IdentifyUuid:output_type -> forge.IdentifyUuidResponse + 502, // 1687: forge.Forge.IdentifyMac:output_type -> forge.IdentifyMacResponse + 504, // 1688: forge.Forge.IdentifySerial:output_type -> forge.IdentifySerialResponse + 418, // 1689: forge.Forge.GetBMCMetaData:output_type -> forge.BMCMetaDataGetResponse + 420, // 1690: forge.Forge.UpdateMachineCredentials:output_type -> forge.MachineCredentialsUpdateResponse + 435, // 1691: forge.Forge.GetPxeInstructions:output_type -> forge.PxeInstructions + 439, // 1692: forge.Forge.GetCloudInitInstructions:output_type -> forge.CloudInitInstructions + 134, // 1693: forge.Forge.Echo:output_type -> forge.EchoResponse + 466, // 1694: forge.Forge.CreateTenant:output_type -> forge.CreateTenantResponse + 470, // 1695: forge.Forge.FindTenant:output_type -> forge.FindTenantResponse + 468, // 1696: forge.Forge.UpdateTenant:output_type -> forge.UpdateTenantResponse + 476, // 1697: forge.Forge.CreateTenantKeyset:output_type -> forge.CreateTenantKeysetResponse + 483, // 1698: forge.Forge.FindTenantKeysetIds:output_type -> forge.TenantKeysetIdList + 477, // 1699: forge.Forge.FindTenantKeysetsByIds:output_type -> forge.TenantKeySetList + 479, // 1700: forge.Forge.UpdateTenantKeyset:output_type -> forge.UpdateTenantKeysetResponse + 481, // 1701: forge.Forge.DeleteTenantKeyset:output_type -> forge.DeleteTenantKeysetResponse + 486, // 1702: forge.Forge.ValidateTenantPublicKey:output_type -> forge.ValidateTenantPublicKeyResponse + 360, // 1703: forge.Forge.GetBmcCredentials:output_type -> forge.GetBmcCredentialsResponse + 360, // 1704: forge.Forge.GetSwitchNvosCredentials:output_type -> forge.GetBmcCredentialsResponse + 393, // 1705: forge.Forge.GetAllManagedHostNetworkStatus:output_type -> forge.ManagedHostNetworkStatusResponse + 1093, // 1706: forge.Forge.GetSiteExplorationReport:output_type -> site_explorer.SiteExplorationReport + 1094, // 1707: forge.Forge.GetSiteExplorerLastRun:output_type -> site_explorer.SiteExplorerLastRunResponse + 1026, // 1708: forge.Forge.ClearSiteExplorationError:output_type -> google.protobuf.Empty + 603, // 1709: forge.Forge.IsBmcInManagedHost:output_type -> forge.IsBmcInManagedHostResponse + 604, // 1710: forge.Forge.BmcCredentialStatus:output_type -> forge.BmcCredentialStatusResponse + 1022, // 1711: forge.Forge.Explore:output_type -> site_explorer.EndpointExplorationReport + 1026, // 1712: forge.Forge.ReExploreEndpoint:output_type -> google.protobuf.Empty + 1095, // 1713: forge.Forge.RefreshEndpointReport:output_type -> site_explorer.ExploredEndpoint + 368, // 1714: forge.Forge.DeleteExploredEndpoint:output_type -> forge.DeleteExploredEndpointResponse + 1026, // 1715: forge.Forge.PauseExploredEndpointRemediation:output_type -> google.protobuf.Empty + 1096, // 1716: forge.Forge.FindExploredEndpointIds:output_type -> site_explorer.ExploredEndpointIdList + 1097, // 1717: forge.Forge.FindExploredEndpointsByIds:output_type -> site_explorer.ExploredEndpointList + 1098, // 1718: forge.Forge.FindExploredManagedHostIds:output_type -> site_explorer.ExploredManagedHostIdList + 1099, // 1719: forge.Forge.FindExploredManagedHostsByIds:output_type -> site_explorer.ExploredManagedHostList + 1100, // 1720: forge.Forge.FindExploredMlxDeviceHostIds:output_type -> site_explorer.ExploredMlxDeviceHostIdList + 1101, // 1721: forge.Forge.FindExploredMlxDevicesByIds:output_type -> site_explorer.ExploredMlxDeviceList + 1026, // 1722: forge.Forge.UpdateMachineHardwareInfo:output_type -> google.protobuf.Empty + 399, // 1723: forge.Forge.AdminForceDeleteMachine:output_type -> forge.AdminForceDeleteMachineResponse + 488, // 1724: forge.Forge.AdminListResourcePools:output_type -> forge.ResourcePools + 491, // 1725: forge.Forge.AdminGrowResourcePool:output_type -> forge.GrowResourcePoolResponse + 1026, // 1726: forge.Forge.UpdateMachineMetadata:output_type -> google.protobuf.Empty + 1026, // 1727: forge.Forge.UpdateRackMetadata:output_type -> google.protobuf.Empty + 1026, // 1728: forge.Forge.UpdateSwitchMetadata:output_type -> google.protobuf.Empty + 1026, // 1729: forge.Forge.UpdatePowerShelfMetadata:output_type -> google.protobuf.Empty + 1026, // 1730: forge.Forge.UpdateMachineNvLinkInfo:output_type -> google.protobuf.Empty + 1026, // 1731: forge.Forge.SetMaintenance:output_type -> google.protobuf.Empty + 1026, // 1732: forge.Forge.SetDynamicConfig:output_type -> google.protobuf.Empty + 1026, // 1733: forge.Forge.TriggerDpuReprovisioning:output_type -> google.protobuf.Empty + 507, // 1734: forge.Forge.ListDpuWaitingForReprovisioning:output_type -> forge.DpuReprovisioningListResponse + 1026, // 1735: forge.Forge.TriggerHostReprovisioning:output_type -> google.protobuf.Empty + 510, // 1736: forge.Forge.ListHostsWaitingForReprovisioning:output_type -> forge.HostReprovisioningListResponse + 1026, // 1737: forge.Forge.MarkManualFirmwareUpgradeComplete:output_type -> google.protobuf.Empty + 516, // 1738: forge.Forge.GetDpuInfoList:output_type -> forge.GetDpuInfoListResponse + 518, // 1739: forge.Forge.GetMachineBootOverride:output_type -> forge.MachineBootOverride + 1026, // 1740: forge.Forge.SetMachineBootOverride:output_type -> google.protobuf.Empty + 1026, // 1741: forge.Forge.ClearMachineBootOverride:output_type -> google.protobuf.Empty + 923, // 1742: forge.Forge.GetMachineBootInterfaces:output_type -> forge.GetMachineBootInterfacesResponse + 529, // 1743: forge.Forge.GetNetworkTopology:output_type -> forge.NetworkTopologyData + 529, // 1744: forge.Forge.FindNetworkDevicesByDeviceIds:output_type -> forge.NetworkTopologyData + 128, // 1745: forge.Forge.CreateCredential:output_type -> forge.CredentialCreationResult + 129, // 1746: forge.Forge.DeleteCredential:output_type -> forge.CredentialDeletionResult + 531, // 1747: forge.Forge.GetRouteServers:output_type -> forge.RouteServerEntries + 1026, // 1748: forge.Forge.AddRouteServers:output_type -> google.protobuf.Empty + 1026, // 1749: forge.Forge.RemoveRouteServers:output_type -> google.protobuf.Empty + 1026, // 1750: forge.Forge.ReplaceRouteServers:output_type -> google.protobuf.Empty + 1026, // 1751: forge.Forge.UpdateAgentReportedInventory:output_type -> google.protobuf.Empty + 300, // 1752: forge.Forge.UpdateInstancePhoneHomeLastContact:output_type -> forge.InstancePhoneHomeLastContactResponse + 534, // 1753: forge.Forge.SetHostUefiPassword:output_type -> forge.SetHostUefiPasswordResponse + 536, // 1754: forge.Forge.ClearHostUefiPassword:output_type -> forge.ClearHostUefiPasswordResponse + 1026, // 1755: forge.Forge.AddExpectedMachine:output_type -> google.protobuf.Empty + 1026, // 1756: forge.Forge.DeleteExpectedMachine:output_type -> google.protobuf.Empty + 1026, // 1757: forge.Forge.UpdateExpectedMachine:output_type -> google.protobuf.Empty + 548, // 1758: forge.Forge.GetExpectedMachine:output_type -> forge.ExpectedMachine + 550, // 1759: forge.Forge.GetAllExpectedMachines:output_type -> forge.ExpectedMachineList + 1026, // 1760: forge.Forge.ReplaceAllExpectedMachines:output_type -> google.protobuf.Empty + 1026, // 1761: forge.Forge.DeleteAllExpectedMachines:output_type -> google.protobuf.Empty + 551, // 1762: forge.Forge.GetAllExpectedMachinesLinked:output_type -> forge.LinkedExpectedMachineList + 553, // 1763: forge.Forge.GetAllUnexpectedMachines:output_type -> forge.UnexpectedMachineList + 557, // 1764: forge.Forge.CreateExpectedMachines:output_type -> forge.BatchExpectedMachineOperationResponse + 557, // 1765: forge.Forge.UpdateExpectedMachines:output_type -> forge.BatchExpectedMachineOperationResponse + 1026, // 1766: forge.Forge.AddExpectedPowerShelf:output_type -> google.protobuf.Empty + 1026, // 1767: forge.Forge.DeleteExpectedPowerShelf:output_type -> google.protobuf.Empty + 1026, // 1768: forge.Forge.UpdateExpectedPowerShelf:output_type -> google.protobuf.Empty + 205, // 1769: forge.Forge.GetExpectedPowerShelf:output_type -> forge.ExpectedPowerShelf + 207, // 1770: forge.Forge.GetAllExpectedPowerShelves:output_type -> forge.ExpectedPowerShelfList + 1026, // 1771: forge.Forge.ReplaceAllExpectedPowerShelves:output_type -> google.protobuf.Empty + 1026, // 1772: forge.Forge.DeleteAllExpectedPowerShelves:output_type -> google.protobuf.Empty + 208, // 1773: forge.Forge.GetAllExpectedPowerShelvesLinked:output_type -> forge.LinkedExpectedPowerShelfList + 1026, // 1774: forge.Forge.AddExpectedSwitch:output_type -> google.protobuf.Empty + 1026, // 1775: forge.Forge.DeleteExpectedSwitch:output_type -> google.protobuf.Empty + 1026, // 1776: forge.Forge.UpdateExpectedSwitch:output_type -> google.protobuf.Empty + 227, // 1777: forge.Forge.GetExpectedSwitch:output_type -> forge.ExpectedSwitch + 229, // 1778: forge.Forge.GetAllExpectedSwitches:output_type -> forge.ExpectedSwitchList + 1026, // 1779: forge.Forge.ReplaceAllExpectedSwitches:output_type -> google.protobuf.Empty + 1026, // 1780: forge.Forge.DeleteAllExpectedSwitches:output_type -> google.protobuf.Empty + 230, // 1781: forge.Forge.GetAllExpectedSwitchesLinked:output_type -> forge.LinkedExpectedSwitchList + 1026, // 1782: forge.Forge.AddExpectedRack:output_type -> google.protobuf.Empty + 1026, // 1783: forge.Forge.DeleteExpectedRack:output_type -> google.protobuf.Empty + 1026, // 1784: forge.Forge.UpdateExpectedRack:output_type -> google.protobuf.Empty + 232, // 1785: forge.Forge.GetExpectedRack:output_type -> forge.ExpectedRack + 234, // 1786: forge.Forge.GetAllExpectedRacks:output_type -> forge.ExpectedRackList + 1026, // 1787: forge.Forge.ReplaceAllExpectedRacks:output_type -> google.protobuf.Empty + 1026, // 1788: forge.Forge.DeleteAllExpectedRacks:output_type -> google.protobuf.Empty + 125, // 1789: forge.Forge.AttestQuote:output_type -> forge.AttestQuoteResponse + 631, // 1790: forge.Forge.CreateInstanceType:output_type -> forge.CreateInstanceTypeResponse + 633, // 1791: forge.Forge.FindInstanceTypeIds:output_type -> forge.FindInstanceTypeIdsResponse + 635, // 1792: forge.Forge.FindInstanceTypesByIds:output_type -> forge.FindInstanceTypesByIdsResponse + 638, // 1793: forge.Forge.UpdateInstanceType:output_type -> forge.UpdateInstanceTypeResponse + 637, // 1794: forge.Forge.DeleteInstanceType:output_type -> forge.DeleteInstanceTypeResponse + 641, // 1795: forge.Forge.AssociateMachinesWithInstanceType:output_type -> forge.AssociateMachinesWithInstanceTypeResponse + 643, // 1796: forge.Forge.RemoveMachineInstanceTypeAssociation:output_type -> forge.RemoveMachineInstanceTypeAssociationResponse + 1102, // 1797: forge.Forge.CreateMeasurementBundle:output_type -> measured_boot.CreateMeasurementBundleResponse + 1103, // 1798: forge.Forge.DeleteMeasurementBundle:output_type -> measured_boot.DeleteMeasurementBundleResponse + 1104, // 1799: forge.Forge.RenameMeasurementBundle:output_type -> measured_boot.RenameMeasurementBundleResponse + 1105, // 1800: forge.Forge.UpdateMeasurementBundle:output_type -> measured_boot.UpdateMeasurementBundleResponse + 1106, // 1801: forge.Forge.ShowMeasurementBundle:output_type -> measured_boot.ShowMeasurementBundleResponse + 1107, // 1802: forge.Forge.ShowMeasurementBundles:output_type -> measured_boot.ShowMeasurementBundlesResponse + 1108, // 1803: forge.Forge.ListMeasurementBundles:output_type -> measured_boot.ListMeasurementBundlesResponse + 1109, // 1804: forge.Forge.ListMeasurementBundleMachines:output_type -> measured_boot.ListMeasurementBundleMachinesResponse + 1106, // 1805: forge.Forge.FindClosestBundleMatch:output_type -> measured_boot.ShowMeasurementBundleResponse + 1110, // 1806: forge.Forge.DeleteMeasurementJournal:output_type -> measured_boot.DeleteMeasurementJournalResponse + 1111, // 1807: forge.Forge.ShowMeasurementJournal:output_type -> measured_boot.ShowMeasurementJournalResponse + 1112, // 1808: forge.Forge.ShowMeasurementJournals:output_type -> measured_boot.ShowMeasurementJournalsResponse + 1113, // 1809: forge.Forge.ListMeasurementJournal:output_type -> measured_boot.ListMeasurementJournalResponse + 1114, // 1810: forge.Forge.AttestCandidateMachine:output_type -> measured_boot.AttestCandidateMachineResponse + 1115, // 1811: forge.Forge.ShowCandidateMachine:output_type -> measured_boot.ShowCandidateMachineResponse + 1116, // 1812: forge.Forge.ShowCandidateMachines:output_type -> measured_boot.ShowCandidateMachinesResponse + 1117, // 1813: forge.Forge.ListCandidateMachines:output_type -> measured_boot.ListCandidateMachinesResponse + 1118, // 1814: forge.Forge.CreateMeasurementSystemProfile:output_type -> measured_boot.CreateMeasurementSystemProfileResponse + 1119, // 1815: forge.Forge.DeleteMeasurementSystemProfile:output_type -> measured_boot.DeleteMeasurementSystemProfileResponse + 1120, // 1816: forge.Forge.RenameMeasurementSystemProfile:output_type -> measured_boot.RenameMeasurementSystemProfileResponse + 1121, // 1817: forge.Forge.ShowMeasurementSystemProfile:output_type -> measured_boot.ShowMeasurementSystemProfileResponse + 1122, // 1818: forge.Forge.ShowMeasurementSystemProfiles:output_type -> measured_boot.ShowMeasurementSystemProfilesResponse + 1123, // 1819: forge.Forge.ListMeasurementSystemProfiles:output_type -> measured_boot.ListMeasurementSystemProfilesResponse + 1124, // 1820: forge.Forge.ListMeasurementSystemProfileBundles:output_type -> measured_boot.ListMeasurementSystemProfileBundlesResponse + 1125, // 1821: forge.Forge.ListMeasurementSystemProfileMachines:output_type -> measured_boot.ListMeasurementSystemProfileMachinesResponse + 1126, // 1822: forge.Forge.CreateMeasurementReport:output_type -> measured_boot.CreateMeasurementReportResponse + 1127, // 1823: forge.Forge.DeleteMeasurementReport:output_type -> measured_boot.DeleteMeasurementReportResponse + 1128, // 1824: forge.Forge.PromoteMeasurementReport:output_type -> measured_boot.PromoteMeasurementReportResponse + 1129, // 1825: forge.Forge.RevokeMeasurementReport:output_type -> measured_boot.RevokeMeasurementReportResponse + 1130, // 1826: forge.Forge.ShowMeasurementReportForId:output_type -> measured_boot.ShowMeasurementReportForIdResponse + 1131, // 1827: forge.Forge.ShowMeasurementReportsForMachine:output_type -> measured_boot.ShowMeasurementReportsForMachineResponse + 1132, // 1828: forge.Forge.ShowMeasurementReports:output_type -> measured_boot.ShowMeasurementReportsResponse + 1133, // 1829: forge.Forge.ListMeasurementReport:output_type -> measured_boot.ListMeasurementReportResponse + 1134, // 1830: forge.Forge.MatchMeasurementReport:output_type -> measured_boot.MatchMeasurementReportResponse + 1135, // 1831: forge.Forge.ImportSiteMeasurements:output_type -> measured_boot.ImportSiteMeasurementsResponse + 1136, // 1832: forge.Forge.ExportSiteMeasurements:output_type -> measured_boot.ExportSiteMeasurementsResponse + 1137, // 1833: forge.Forge.AddMeasurementTrustedMachine:output_type -> measured_boot.AddMeasurementTrustedMachineResponse + 1138, // 1834: forge.Forge.RemoveMeasurementTrustedMachine:output_type -> measured_boot.RemoveMeasurementTrustedMachineResponse + 1139, // 1835: forge.Forge.AddMeasurementTrustedProfile:output_type -> measured_boot.AddMeasurementTrustedProfileResponse + 1140, // 1836: forge.Forge.RemoveMeasurementTrustedProfile:output_type -> measured_boot.RemoveMeasurementTrustedProfileResponse + 1141, // 1837: forge.Forge.ListMeasurementTrustedMachines:output_type -> measured_boot.ListMeasurementTrustedMachinesResponse + 1142, // 1838: forge.Forge.ListMeasurementTrustedProfiles:output_type -> measured_boot.ListMeasurementTrustedProfilesResponse + 1143, // 1839: forge.Forge.ListAttestationSummary:output_type -> measured_boot.ListAttestationSummaryResponse + 662, // 1840: forge.Forge.CreateNetworkSecurityGroup:output_type -> forge.CreateNetworkSecurityGroupResponse + 664, // 1841: forge.Forge.FindNetworkSecurityGroupIds:output_type -> forge.FindNetworkSecurityGroupIdsResponse + 666, // 1842: forge.Forge.FindNetworkSecurityGroupsByIds:output_type -> forge.FindNetworkSecurityGroupsByIdsResponse + 667, // 1843: forge.Forge.UpdateNetworkSecurityGroup:output_type -> forge.UpdateNetworkSecurityGroupResponse + 670, // 1844: forge.Forge.DeleteNetworkSecurityGroup:output_type -> forge.DeleteNetworkSecurityGroupResponse + 673, // 1845: forge.Forge.GetNetworkSecurityGroupPropagationStatus:output_type -> forge.GetNetworkSecurityGroupPropagationStatusResponse + 680, // 1846: forge.Forge.GetNetworkSecurityGroupAttachments:output_type -> forge.GetNetworkSecurityGroupAttachmentsResponse + 538, // 1847: forge.Forge.CreateOsImage:output_type -> forge.OsImage + 542, // 1848: forge.Forge.DeleteOsImage:output_type -> forge.DeleteOsImageResponse + 540, // 1849: forge.Forge.ListOsImage:output_type -> forge.ListOsImageResponse + 538, // 1850: forge.Forge.GetOsImage:output_type -> forge.OsImage + 538, // 1851: forge.Forge.UpdateOsImage:output_type -> forge.OsImage + 265, // 1852: forge.Forge.GetIpxeTemplate:output_type -> forge.IpxeTemplate + 545, // 1853: forge.Forge.ListIpxeTemplates:output_type -> forge.IpxeTemplateList + 558, // 1854: forge.Forge.RebootCompleted:output_type -> forge.MachineRebootCompletedResponse + 1026, // 1855: forge.Forge.PersistValidationResult:output_type -> google.protobuf.Empty + 565, // 1856: forge.Forge.GetMachineValidationResults:output_type -> forge.MachineValidationResultList + 562, // 1857: forge.Forge.MachineValidationCompleted:output_type -> forge.MachineValidationCompletedResponse + 570, // 1858: forge.Forge.MachineSetAutoUpdate:output_type -> forge.MachineSetAutoUpdateResponse + 573, // 1859: forge.Forge.GetMachineValidationExternalConfig:output_type -> forge.GetMachineValidationExternalConfigResponse + 575, // 1860: forge.Forge.GetMachineValidationExternalConfigs:output_type -> forge.GetMachineValidationExternalConfigsResponse + 1026, // 1861: forge.Forge.AddUpdateMachineValidationExternalConfig:output_type -> google.protobuf.Empty + 592, // 1862: forge.Forge.GetMachineValidationRuns:output_type -> forge.MachineValidationRunList + 595, // 1863: forge.Forge.FindMachineValidationRunItemIds:output_type -> forge.MachineValidationRunItemIdList + 597, // 1864: forge.Forge.FindMachineValidationRunItemsByIds:output_type -> forge.MachineValidationRunItemList + 600, // 1865: forge.Forge.GetMachineValidationAttempt:output_type -> forge.MachineValidationAttempt + 602, // 1866: forge.Forge.HeartbeatMachineValidationRun:output_type -> forge.MachineValidationHeartbeatResponse + 1026, // 1867: forge.Forge.RemoveMachineValidationExternalConfig:output_type -> google.protobuf.Empty + 609, // 1868: forge.Forge.GetMachineValidationTests:output_type -> forge.MachineValidationTestsGetResponse + 608, // 1869: forge.Forge.AddMachineValidationTest:output_type -> forge.MachineValidationTestAddUpdateResponse + 608, // 1870: forge.Forge.UpdateMachineValidationTest:output_type -> forge.MachineValidationTestAddUpdateResponse + 611, // 1871: forge.Forge.MachineValidationTestVerfied:output_type -> forge.MachineValidationTestVerfiedResponse + 613, // 1872: forge.Forge.MachineValidationTestNextVersion:output_type -> forge.MachineValidationTestNextVersionResponse + 616, // 1873: forge.Forge.MachineValidationTestEnableDisableTest:output_type -> forge.MachineValidationTestEnableDisableTestResponse + 618, // 1874: forge.Forge.UpdateMachineValidationRun:output_type -> forge.MachineValidationRunResponse + 412, // 1875: forge.Forge.AdminBmcReset:output_type -> forge.AdminBmcResetResponse + 589, // 1876: forge.Forge.AdminPowerControl:output_type -> forge.AdminPowerControlResponse + 400, // 1877: forge.Forge.DisableSecureBoot:output_type -> forge.DisableSecureBootResponse + 402, // 1878: forge.Forge.Lockdown:output_type -> forge.LockdownResponse + 1144, // 1879: forge.Forge.LockdownStatus:output_type -> site_explorer.LockdownStatus + 406, // 1880: forge.Forge.MachineSetup:output_type -> forge.MachineSetupResponse + 408, // 1881: forge.Forge.SetDpuFirstBootOrder:output_type -> forge.SetDpuFirstBootOrderResponse + 780, // 1882: forge.Forge.CreateBmcUser:output_type -> forge.CreateBmcUserResponse + 782, // 1883: forge.Forge.DeleteBmcUser:output_type -> forge.DeleteBmcUserResponse + 414, // 1884: forge.Forge.EnableInfiniteBoot:output_type -> forge.EnableInfiniteBootResponse + 416, // 1885: forge.Forge.IsInfiniteBootEnabled:output_type -> forge.IsInfiniteBootEnabledResponse + 579, // 1886: forge.Forge.OnDemandMachineValidation:output_type -> forge.MachineValidationOnDemandResponse + 587, // 1887: forge.Forge.OnDemandRackMaintenance:output_type -> forge.RackMaintenanceOnDemandResponse + 116, // 1888: forge.Forge.TpmAddCaCert:output_type -> forge.TpmCaAddedCaStatus + 122, // 1889: forge.Forge.TpmShowCaCerts:output_type -> forge.TpmCaCertDetailCollection + 119, // 1890: forge.Forge.TpmShowUnmatchedEkCerts:output_type -> forge.TpmEkCertStatusCollection + 1026, // 1891: forge.Forge.TpmDeleteCaCert:output_type -> google.protobuf.Empty + 645, // 1892: forge.Forge.RedfishBrowse:output_type -> forge.RedfishBrowseResponse + 647, // 1893: forge.Forge.RedfishListActions:output_type -> forge.RedfishListActionsResponse + 652, // 1894: forge.Forge.RedfishCreateAction:output_type -> forge.RedfishCreateActionResponse + 654, // 1895: forge.Forge.RedfishApproveAction:output_type -> forge.RedfishApproveActionResponse + 655, // 1896: forge.Forge.RedfishApplyAction:output_type -> forge.RedfishApplyActionResponse + 656, // 1897: forge.Forge.RedfishCancelAction:output_type -> forge.RedfishCancelActionResponse + 658, // 1898: forge.Forge.UfmBrowse:output_type -> forge.UfmBrowseResponse + 682, // 1899: forge.Forge.GetDesiredFirmwareVersions:output_type -> forge.GetDesiredFirmwareVersionsResponse + 698, // 1900: forge.Forge.CreateSku:output_type -> forge.SkuIdList + 694, // 1901: forge.Forge.GenerateSkuFromMachine:output_type -> forge.Sku + 1026, // 1902: forge.Forge.VerifySkuForMachine:output_type -> google.protobuf.Empty + 1026, // 1903: forge.Forge.AssignSkuToMachine:output_type -> google.protobuf.Empty + 1026, // 1904: forge.Forge.RemoveSkuAssociation:output_type -> google.protobuf.Empty + 1026, // 1905: forge.Forge.DeleteSku:output_type -> google.protobuf.Empty + 698, // 1906: forge.Forge.GetAllSkuIds:output_type -> forge.SkuIdList + 697, // 1907: forge.Forge.FindSkusByIds:output_type -> forge.SkuList + 1026, // 1908: forge.Forge.UpdateSkuMetadata:output_type -> google.protobuf.Empty + 694, // 1909: forge.Forge.ReplaceSku:output_type -> forge.Sku + 382, // 1910: forge.Forge.GetManagedHostQuarantineState:output_type -> forge.GetManagedHostQuarantineStateResponse + 384, // 1911: forge.Forge.SetManagedHostQuarantineState:output_type -> forge.SetManagedHostQuarantineStateResponse + 386, // 1912: forge.Forge.ClearManagedHostQuarantineState:output_type -> forge.ClearManagedHostQuarantineStateResponse + 1026, // 1913: forge.Forge.ResetHostReprovisioning:output_type -> google.protobuf.Empty + 1026, // 1914: forge.Forge.CopyBfbToDpuRshim:output_type -> google.protobuf.Empty + 704, // 1915: forge.Forge.GetAllDpaInterfaceIds:output_type -> forge.DpaInterfaceIdList + 706, // 1916: forge.Forge.FindDpaInterfacesByIds:output_type -> forge.DpaInterfaceList + 702, // 1917: forge.Forge.CreateDpaInterface:output_type -> forge.DpaInterface + 702, // 1918: forge.Forge.EnsureDpaInterface:output_type -> forge.DpaInterface + 709, // 1919: forge.Forge.DeleteDpaInterface:output_type -> forge.DpaInterfaceDeletionResult + 714, // 1920: forge.Forge.GetPowerOptions:output_type -> forge.PowerOptionResponse + 714, // 1921: forge.Forge.UpdatePowerOption:output_type -> forge.PowerOptionResponse + 1026, // 1922: forge.Forge.AllowIngestionAndPowerOn:output_type -> google.protobuf.Empty + 115, // 1923: forge.Forge.DetermineMachineIngestionState:output_type -> forge.MachineIngestionStateResponse + 732, // 1924: forge.Forge.FindRackIds:output_type -> forge.RackIdList + 730, // 1925: forge.Forge.FindRacksByIds:output_type -> forge.RackList + 729, // 1926: forge.Forge.GetRack:output_type -> forge.GetRackResponse + 1026, // 1927: forge.Forge.DeleteRack:output_type -> google.protobuf.Empty + 740, // 1928: forge.Forge.AdminForceDeleteRack:output_type -> forge.AdminForceDeleteRackResponse + 747, // 1929: forge.Forge.GetRackProfile:output_type -> forge.GetRackProfileResponse + 718, // 1930: forge.Forge.CreateComputeAllocation:output_type -> forge.CreateComputeAllocationResponse + 720, // 1931: forge.Forge.FindComputeAllocationIds:output_type -> forge.FindComputeAllocationIdsResponse + 722, // 1932: forge.Forge.FindComputeAllocationsByIds:output_type -> forge.FindComputeAllocationsByIdsResponse + 723, // 1933: forge.Forge.UpdateComputeAllocation:output_type -> forge.UpdateComputeAllocationResponse + 726, // 1934: forge.Forge.DeleteComputeAllocation:output_type -> forge.DeleteComputeAllocationResponse + 784, // 1935: forge.Forge.SetFirmwareUpdateTimeWindow:output_type -> forge.SetFirmwareUpdateTimeWindowResponse + 786, // 1936: forge.Forge.ListHostFirmware:output_type -> forge.ListHostFirmwareResponse + 1145, // 1937: forge.Forge.PublishMlxDeviceReport:output_type -> mlx_device.PublishMlxDeviceReportResponse + 1146, // 1938: forge.Forge.PublishMlxObservationReport:output_type -> mlx_device.PublishMlxObservationReportResponse + 789, // 1939: forge.Forge.TrimTable:output_type -> forge.TrimTableResponse + 791, // 1940: forge.Forge.ListNvlinkNmxcEndpoints:output_type -> forge.NvlinkNmxcEndpointList + 790, // 1941: forge.Forge.CreateNvlinkNmxcEndpoint:output_type -> forge.NvlinkNmxcEndpoint + 790, // 1942: forge.Forge.UpdateNvlinkNmxcEndpoint:output_type -> forge.NvlinkNmxcEndpoint + 1026, // 1943: forge.Forge.DeleteNvlinkNmxcEndpoint:output_type -> google.protobuf.Empty + 794, // 1944: forge.Forge.CreateRemediation:output_type -> forge.CreateRemediationResponse + 1026, // 1945: forge.Forge.ApproveRemediation:output_type -> google.protobuf.Empty + 1026, // 1946: forge.Forge.RevokeRemediation:output_type -> google.protobuf.Empty + 1026, // 1947: forge.Forge.EnableRemediation:output_type -> google.protobuf.Empty + 1026, // 1948: forge.Forge.DisableRemediation:output_type -> google.protobuf.Empty + 795, // 1949: forge.Forge.FindRemediationIds:output_type -> forge.RemediationIdList + 796, // 1950: forge.Forge.FindRemediationsByIds:output_type -> forge.RemediationList + 803, // 1951: forge.Forge.FindAppliedRemediationIds:output_type -> forge.AppliedRemediationIdList + 806, // 1952: forge.Forge.FindAppliedRemediations:output_type -> forge.AppliedRemediationList + 808, // 1953: forge.Forge.GetNextRemediationForMachine:output_type -> forge.GetNextRemediationForMachineResponse + 1026, // 1954: forge.Forge.RemediationApplied:output_type -> google.protobuf.Empty + 1026, // 1955: forge.Forge.SetPrimaryDpu:output_type -> google.protobuf.Empty + 1026, // 1956: forge.Forge.SetPrimaryInterface:output_type -> google.protobuf.Empty + 817, // 1957: forge.Forge.CreateDpuExtensionService:output_type -> forge.DpuExtensionService + 817, // 1958: forge.Forge.UpdateDpuExtensionService:output_type -> forge.DpuExtensionService + 821, // 1959: forge.Forge.DeleteDpuExtensionService:output_type -> forge.DeleteDpuExtensionServiceResponse + 823, // 1960: forge.Forge.FindDpuExtensionServiceIds:output_type -> forge.DpuExtensionServiceIdList + 825, // 1961: forge.Forge.FindDpuExtensionServicesByIds:output_type -> forge.DpuExtensionServiceList + 827, // 1962: forge.Forge.GetDpuExtensionServiceVersionsInfo:output_type -> forge.DpuExtensionServiceVersionInfoList + 829, // 1963: forge.Forge.FindInstancesByDpuExtensionService:output_type -> forge.FindInstancesByDpuExtensionServiceResponse + 89, // 1964: forge.Forge.TriggerMachineAttestation:output_type -> forge.SpdmMachineAttestationTriggerResponse + 1026, // 1965: forge.Forge.CancelMachineAttestation:output_type -> google.protobuf.Empty + 94, // 1966: forge.Forge.ListAttestationMachines:output_type -> forge.SpdmListAttestationMachinesResponse + 91, // 1967: forge.Forge.GetAttestationMachine:output_type -> forge.SpdmGetAttestationMachineResponse + 96, // 1968: forge.Forge.SignMachineIdentity:output_type -> forge.MachineIdentityResponse + 101, // 1969: forge.Forge.GetTenantIdentityConfiguration:output_type -> forge.TenantIdentityConfigResponse + 101, // 1970: forge.Forge.SetTenantIdentityConfiguration:output_type -> forge.TenantIdentityConfigResponse + 1026, // 1971: forge.Forge.DeleteTenantIdentityConfiguration:output_type -> google.protobuf.Empty + 104, // 1972: forge.Forge.GetTokenDelegation:output_type -> forge.TokenDelegationResponse + 104, // 1973: forge.Forge.SetTokenDelegation:output_type -> forge.TokenDelegationResponse + 1026, // 1974: forge.Forge.DeleteTokenDelegation:output_type -> google.protobuf.Empty + 110, // 1975: forge.Forge.ReencryptTenantIdentitySecrets:output_type -> forge.ReencryptTenantIdentitySecretsResponse + 111, // 1976: forge.Forge.GetJWKS:output_type -> forge.Jwks + 112, // 1977: forge.Forge.GetOpenIDConfiguration:output_type -> forge.OpenIdConfiguration + 836, // 1978: forge.Forge.ScoutStream:output_type -> forge.ScoutStreamScoutBoundMessage + 839, // 1979: forge.Forge.ScoutStreamShowConnections:output_type -> forge.ScoutStreamShowConnectionsResponse + 841, // 1980: forge.Forge.ScoutStreamDisconnect:output_type -> forge.ScoutStreamDisconnectResponse + 843, // 1981: forge.Forge.ScoutStreamPing:output_type -> forge.ScoutStreamAdminPingResponse + 1147, // 1982: forge.Forge.MlxAdminProfileSync:output_type -> mlx_device.MlxAdminProfileSyncResponse + 1148, // 1983: forge.Forge.MlxAdminProfileShow:output_type -> mlx_device.MlxAdminProfileShowResponse + 1149, // 1984: forge.Forge.MlxAdminProfileCompare:output_type -> mlx_device.MlxAdminProfileCompareResponse + 1150, // 1985: forge.Forge.MlxAdminProfileList:output_type -> mlx_device.MlxAdminProfileListResponse + 1151, // 1986: forge.Forge.MlxAdminLockdownLock:output_type -> mlx_device.MlxAdminLockdownLockResponse + 1152, // 1987: forge.Forge.MlxAdminLockdownUnlock:output_type -> mlx_device.MlxAdminLockdownUnlockResponse + 1153, // 1988: forge.Forge.MlxAdminLockdownStatus:output_type -> mlx_device.MlxAdminLockdownStatusResponse + 1154, // 1989: forge.Forge.MlxAdminShowDevice:output_type -> mlx_device.MlxAdminDeviceInfoResponse + 1155, // 1990: forge.Forge.MlxAdminShowMachine:output_type -> mlx_device.MlxAdminDeviceReportResponse + 1156, // 1991: forge.Forge.MlxAdminRegistryList:output_type -> mlx_device.MlxAdminRegistryListResponse + 1157, // 1992: forge.Forge.MlxAdminRegistryShow:output_type -> mlx_device.MlxAdminRegistryShowResponse + 1158, // 1993: forge.Forge.MlxAdminConfigQuery:output_type -> mlx_device.MlxAdminConfigQueryResponse + 1159, // 1994: forge.Forge.MlxAdminConfigSet:output_type -> mlx_device.MlxAdminConfigSetResponse + 1160, // 1995: forge.Forge.MlxAdminConfigSync:output_type -> mlx_device.MlxAdminConfigSyncResponse + 1161, // 1996: forge.Forge.MlxAdminConfigCompare:output_type -> mlx_device.MlxAdminConfigCompareResponse + 765, // 1997: forge.Forge.FindNVLinkPartitionIds:output_type -> forge.NVLinkPartitionIdList + 760, // 1998: forge.Forge.FindNVLinkPartitionsByIds:output_type -> forge.NVLinkPartitionList + 760, // 1999: forge.Forge.NVLinkPartitionsForTenant:output_type -> forge.NVLinkPartitionList + 776, // 2000: forge.Forge.FindNVLinkLogicalPartitionIds:output_type -> forge.NVLinkLogicalPartitionIdList + 770, // 2001: forge.Forge.FindNVLinkLogicalPartitionsByIds:output_type -> forge.NVLinkLogicalPartitionList + 769, // 2002: forge.Forge.CreateNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartition + 778, // 2003: forge.Forge.UpdateNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartitionUpdateResult + 773, // 2004: forge.Forge.DeleteNVLinkLogicalPartition:output_type -> forge.NVLinkLogicalPartitionDeletionResult + 770, // 2005: forge.Forge.NVLinkLogicalPartitionsForTenant:output_type -> forge.NVLinkLogicalPartitionList + 857, // 2006: forge.Forge.GetMachinePositionInfo:output_type -> forge.MachinePositionInfoList + 758, // 2007: forge.Forge.NmxcBrowse:output_type -> forge.NmxcBrowseResponse + 1026, // 2008: forge.Forge.ModifyDPFState:output_type -> google.protobuf.Empty + 860, // 2009: forge.Forge.GetDPFState:output_type -> forge.DPFStateResponse + 863, // 2010: forge.Forge.GetDPFHostSnapshot:output_type -> forge.DPFHostSnapshotResponse + 866, // 2011: forge.Forge.GetDPFServiceVersions:output_type -> forge.DPFServiceVersionsResponse + 874, // 2012: forge.Forge.ComponentPowerControl:output_type -> forge.ComponentPowerControlResponse + 872, // 2013: forge.Forge.GetComponentInventory:output_type -> forge.GetComponentInventoryResponse + 881, // 2014: forge.Forge.UpdateComponentFirmware:output_type -> forge.UpdateComponentFirmwareResponse + 883, // 2015: forge.Forge.GetComponentFirmwareStatus:output_type -> forge.GetComponentFirmwareStatusResponse + 887, // 2016: forge.Forge.ListComponentFirmwareVersions:output_type -> forge.ListComponentFirmwareVersionsResponse + 900, // 2017: forge.Forge.CreateOperatingSystem:output_type -> forge.OperatingSystem + 900, // 2018: forge.Forge.GetOperatingSystem:output_type -> forge.OperatingSystem + 900, // 2019: forge.Forge.UpdateOperatingSystem:output_type -> forge.OperatingSystem + 906, // 2020: forge.Forge.DeleteOperatingSystem:output_type -> forge.DeleteOperatingSystemResponse + 908, // 2021: forge.Forge.FindOperatingSystemIds:output_type -> forge.OperatingSystemIdList + 910, // 2022: forge.Forge.FindOperatingSystemsByIds:output_type -> forge.OperatingSystemList + 912, // 2023: forge.Forge.GetOperatingSystemCachableIpxeTemplateArtifacts:output_type -> forge.IpxeTemplateArtifactList + 912, // 2024: forge.Forge.UpdateOperatingSystemCachableIpxeTemplateArtifacts:output_type -> forge.IpxeTemplateArtifactList + 917, // 2025: forge.Forge.ReWrapSecrets:output_type -> forge.ReWrapSecretsResponse + 1578, // [1578:2026] is the sub-list for method output_type + 1130, // [1130:1578] is the sub-list for method input_type + 1130, // [1130:1130] is the sub-list for extension type_name + 1130, // [1130:1130] is the sub-list for extension extendee + 0, // [0:1130] is the sub-list for field type_name } func init() { file_nico_proto_init() } @@ -67270,57 +67405,57 @@ func file_nico_proto_init() { file_nico_proto_msgTypes[208].OneofWrappers = []any{} file_nico_proto_msgTypes[209].OneofWrappers = []any{} file_nico_proto_msgTypes[210].OneofWrappers = []any{} - file_nico_proto_msgTypes[215].OneofWrappers = []any{} - file_nico_proto_msgTypes[218].OneofWrappers = []any{} - file_nico_proto_msgTypes[227].OneofWrappers = []any{} - file_nico_proto_msgTypes[233].OneofWrappers = []any{} - file_nico_proto_msgTypes[241].OneofWrappers = []any{} - file_nico_proto_msgTypes[242].OneofWrappers = []any{} + file_nico_proto_msgTypes[217].OneofWrappers = []any{} + file_nico_proto_msgTypes[220].OneofWrappers = []any{} + file_nico_proto_msgTypes[229].OneofWrappers = []any{} + file_nico_proto_msgTypes[235].OneofWrappers = []any{} file_nico_proto_msgTypes[243].OneofWrappers = []any{} - file_nico_proto_msgTypes[246].OneofWrappers = []any{} - file_nico_proto_msgTypes[247].OneofWrappers = []any{} + file_nico_proto_msgTypes[244].OneofWrappers = []any{} + file_nico_proto_msgTypes[245].OneofWrappers = []any{} file_nico_proto_msgTypes[248].OneofWrappers = []any{} file_nico_proto_msgTypes[249].OneofWrappers = []any{} - file_nico_proto_msgTypes[254].OneofWrappers = []any{} - file_nico_proto_msgTypes[259].OneofWrappers = []any{} - file_nico_proto_msgTypes[260].OneofWrappers = []any{} + file_nico_proto_msgTypes[250].OneofWrappers = []any{} + file_nico_proto_msgTypes[251].OneofWrappers = []any{} + file_nico_proto_msgTypes[256].OneofWrappers = []any{} file_nico_proto_msgTypes[261].OneofWrappers = []any{} file_nico_proto_msgTypes[262].OneofWrappers = []any{} file_nico_proto_msgTypes[263].OneofWrappers = []any{} + file_nico_proto_msgTypes[264].OneofWrappers = []any{} file_nico_proto_msgTypes[265].OneofWrappers = []any{} - file_nico_proto_msgTypes[272].OneofWrappers = []any{ + file_nico_proto_msgTypes[267].OneofWrappers = []any{} + file_nico_proto_msgTypes[274].OneofWrappers = []any{ (*BmcCredentials_UsernamePassword)(nil), (*BmcCredentials_SessionToken)(nil), } - file_nico_proto_msgTypes[275].OneofWrappers = []any{} - file_nico_proto_msgTypes[279].OneofWrappers = []any{} - file_nico_proto_msgTypes[280].OneofWrappers = []any{} + file_nico_proto_msgTypes[277].OneofWrappers = []any{} file_nico_proto_msgTypes[281].OneofWrappers = []any{} - file_nico_proto_msgTypes[287].OneofWrappers = []any{} - file_nico_proto_msgTypes[288].OneofWrappers = []any{} + file_nico_proto_msgTypes[282].OneofWrappers = []any{} + file_nico_proto_msgTypes[283].OneofWrappers = []any{} + file_nico_proto_msgTypes[289].OneofWrappers = []any{} file_nico_proto_msgTypes[290].OneofWrappers = []any{} - file_nico_proto_msgTypes[291].OneofWrappers = []any{} + file_nico_proto_msgTypes[292].OneofWrappers = []any{} file_nico_proto_msgTypes[293].OneofWrappers = []any{} file_nico_proto_msgTypes[295].OneofWrappers = []any{} file_nico_proto_msgTypes[297].OneofWrappers = []any{} - file_nico_proto_msgTypes[298].OneofWrappers = []any{} file_nico_proto_msgTypes[299].OneofWrappers = []any{} + file_nico_proto_msgTypes[300].OneofWrappers = []any{} file_nico_proto_msgTypes[301].OneofWrappers = []any{} - file_nico_proto_msgTypes[307].OneofWrappers = []any{} - file_nico_proto_msgTypes[312].OneofWrappers = []any{} + file_nico_proto_msgTypes[303].OneofWrappers = []any{} + file_nico_proto_msgTypes[309].OneofWrappers = []any{} file_nico_proto_msgTypes[314].OneofWrappers = []any{} - file_nico_proto_msgTypes[315].OneofWrappers = []any{} file_nico_proto_msgTypes[316].OneofWrappers = []any{} + file_nico_proto_msgTypes[317].OneofWrappers = []any{} file_nico_proto_msgTypes[318].OneofWrappers = []any{} file_nico_proto_msgTypes[320].OneofWrappers = []any{} file_nico_proto_msgTypes[322].OneofWrappers = []any{} file_nico_proto_msgTypes[324].OneofWrappers = []any{} file_nico_proto_msgTypes[326].OneofWrappers = []any{} - file_nico_proto_msgTypes[327].OneofWrappers = []any{} file_nico_proto_msgTypes[328].OneofWrappers = []any{} file_nico_proto_msgTypes[329].OneofWrappers = []any{} file_nico_proto_msgTypes[330].OneofWrappers = []any{} - file_nico_proto_msgTypes[333].OneofWrappers = []any{ + file_nico_proto_msgTypes[331].OneofWrappers = []any{} + file_nico_proto_msgTypes[332].OneofWrappers = []any{} + file_nico_proto_msgTypes[335].OneofWrappers = []any{ (*ForgeAgentControlResponse_Noop_)(nil), (*ForgeAgentControlResponse_Reset_)(nil), (*ForgeAgentControlResponse_Discovery_)(nil), @@ -67332,160 +67467,160 @@ func file_nico_proto_init() { (*ForgeAgentControlResponse_MlxAction_)(nil), (*ForgeAgentControlResponse_FirmwareUpgrade_)(nil), } - file_nico_proto_msgTypes[334].OneofWrappers = []any{ + file_nico_proto_msgTypes[336].OneofWrappers = []any{ (*MachineDiscoveryInfo_Info)(nil), } - file_nico_proto_msgTypes[345].OneofWrappers = []any{} - file_nico_proto_msgTypes[346].OneofWrappers = []any{} file_nico_proto_msgTypes[347].OneofWrappers = []any{} - file_nico_proto_msgTypes[350].OneofWrappers = []any{} - file_nico_proto_msgTypes[351].OneofWrappers = []any{} + file_nico_proto_msgTypes[348].OneofWrappers = []any{} + file_nico_proto_msgTypes[349].OneofWrappers = []any{} + file_nico_proto_msgTypes[352].OneofWrappers = []any{} file_nico_proto_msgTypes[353].OneofWrappers = []any{} file_nico_proto_msgTypes[355].OneofWrappers = []any{} - file_nico_proto_msgTypes[360].OneofWrappers = []any{} - file_nico_proto_msgTypes[363].OneofWrappers = []any{} - file_nico_proto_msgTypes[366].OneofWrappers = []any{} - file_nico_proto_msgTypes[369].OneofWrappers = []any{} - file_nico_proto_msgTypes[372].OneofWrappers = []any{} + file_nico_proto_msgTypes[357].OneofWrappers = []any{} + file_nico_proto_msgTypes[362].OneofWrappers = []any{} + file_nico_proto_msgTypes[365].OneofWrappers = []any{} + file_nico_proto_msgTypes[368].OneofWrappers = []any{} + file_nico_proto_msgTypes[371].OneofWrappers = []any{} file_nico_proto_msgTypes[374].OneofWrappers = []any{} - file_nico_proto_msgTypes[375].OneofWrappers = []any{} file_nico_proto_msgTypes[376].OneofWrappers = []any{} + file_nico_proto_msgTypes[377].OneofWrappers = []any{} file_nico_proto_msgTypes[378].OneofWrappers = []any{} - file_nico_proto_msgTypes[383].OneofWrappers = []any{} - file_nico_proto_msgTypes[389].OneofWrappers = []any{} - file_nico_proto_msgTypes[393].OneofWrappers = []any{} - file_nico_proto_msgTypes[398].OneofWrappers = []any{} - file_nico_proto_msgTypes[405].OneofWrappers = []any{} - file_nico_proto_msgTypes[406].OneofWrappers = []any{} - file_nico_proto_msgTypes[411].OneofWrappers = []any{ + file_nico_proto_msgTypes[380].OneofWrappers = []any{} + file_nico_proto_msgTypes[385].OneofWrappers = []any{} + file_nico_proto_msgTypes[391].OneofWrappers = []any{} + file_nico_proto_msgTypes[395].OneofWrappers = []any{} + file_nico_proto_msgTypes[400].OneofWrappers = []any{} + file_nico_proto_msgTypes[407].OneofWrappers = []any{} + file_nico_proto_msgTypes[408].OneofWrappers = []any{} + file_nico_proto_msgTypes[413].OneofWrappers = []any{ (*FindBmcIpsRequest_MacAddress)(nil), (*FindBmcIpsRequest_Serial)(nil), } - file_nico_proto_msgTypes[423].OneofWrappers = []any{} - file_nico_proto_msgTypes[424].OneofWrappers = []any{} file_nico_proto_msgTypes[425].OneofWrappers = []any{} - file_nico_proto_msgTypes[428].OneofWrappers = []any{} - file_nico_proto_msgTypes[429].OneofWrappers = []any{} + file_nico_proto_msgTypes[426].OneofWrappers = []any{} + file_nico_proto_msgTypes[427].OneofWrappers = []any{} file_nico_proto_msgTypes[430].OneofWrappers = []any{} - file_nico_proto_msgTypes[437].OneofWrappers = []any{} - file_nico_proto_msgTypes[438].OneofWrappers = []any{} - file_nico_proto_msgTypes[444].OneofWrappers = []any{} - file_nico_proto_msgTypes[445].OneofWrappers = []any{} + file_nico_proto_msgTypes[431].OneofWrappers = []any{} + file_nico_proto_msgTypes[432].OneofWrappers = []any{} + file_nico_proto_msgTypes[439].OneofWrappers = []any{} + file_nico_proto_msgTypes[440].OneofWrappers = []any{} file_nico_proto_msgTypes[446].OneofWrappers = []any{} file_nico_proto_msgTypes[447].OneofWrappers = []any{} file_nico_proto_msgTypes[448].OneofWrappers = []any{} file_nico_proto_msgTypes[449].OneofWrappers = []any{} file_nico_proto_msgTypes[450].OneofWrappers = []any{} - file_nico_proto_msgTypes[457].OneofWrappers = []any{} - file_nico_proto_msgTypes[458].OneofWrappers = []any{} + file_nico_proto_msgTypes[451].OneofWrappers = []any{} + file_nico_proto_msgTypes[452].OneofWrappers = []any{} file_nico_proto_msgTypes[459].OneofWrappers = []any{} file_nico_proto_msgTypes[460].OneofWrappers = []any{} - file_nico_proto_msgTypes[463].OneofWrappers = []any{} + file_nico_proto_msgTypes[461].OneofWrappers = []any{} + file_nico_proto_msgTypes[462].OneofWrappers = []any{} file_nico_proto_msgTypes[465].OneofWrappers = []any{} file_nico_proto_msgTypes[467].OneofWrappers = []any{} - file_nico_proto_msgTypes[472].OneofWrappers = []any{} + file_nico_proto_msgTypes[469].OneofWrappers = []any{} file_nico_proto_msgTypes[474].OneofWrappers = []any{} - file_nico_proto_msgTypes[477].OneofWrappers = []any{} - file_nico_proto_msgTypes[478].OneofWrappers = []any{ + file_nico_proto_msgTypes[476].OneofWrappers = []any{} + file_nico_proto_msgTypes[479].OneofWrappers = []any{} + file_nico_proto_msgTypes[480].OneofWrappers = []any{ (*MachineValidationStatus_OneofStarted)(nil), (*MachineValidationStatus_OneofInProgress)(nil), (*MachineValidationStatus_OneofCompleted)(nil), } - file_nico_proto_msgTypes[479].OneofWrappers = []any{} - file_nico_proto_msgTypes[483].OneofWrappers = []any{} - file_nico_proto_msgTypes[487].OneofWrappers = []any{} - file_nico_proto_msgTypes[491].OneofWrappers = []any{} - file_nico_proto_msgTypes[492].OneofWrappers = []any{} - file_nico_proto_msgTypes[495].OneofWrappers = []any{ + file_nico_proto_msgTypes[481].OneofWrappers = []any{} + file_nico_proto_msgTypes[485].OneofWrappers = []any{} + file_nico_proto_msgTypes[489].OneofWrappers = []any{} + file_nico_proto_msgTypes[493].OneofWrappers = []any{} + file_nico_proto_msgTypes[494].OneofWrappers = []any{} + file_nico_proto_msgTypes[497].OneofWrappers = []any{ (*MaintenanceActivityConfig_FirmwareUpgrade)(nil), (*MaintenanceActivityConfig_ConfigureNmxCluster)(nil), (*MaintenanceActivityConfig_PowerSequence)(nil), (*MaintenanceActivityConfig_NvosUpdate)(nil), } - file_nico_proto_msgTypes[499].OneofWrappers = []any{} - file_nico_proto_msgTypes[500].OneofWrappers = []any{} - file_nico_proto_msgTypes[509].OneofWrappers = []any{} + file_nico_proto_msgTypes[501].OneofWrappers = []any{} + file_nico_proto_msgTypes[502].OneofWrappers = []any{} file_nico_proto_msgTypes[511].OneofWrappers = []any{} - file_nico_proto_msgTypes[512].OneofWrappers = []any{ + file_nico_proto_msgTypes[513].OneofWrappers = []any{} + file_nico_proto_msgTypes[514].OneofWrappers = []any{ (*MachineValidationHeartbeatRequest_RunItemId)(nil), (*MachineValidationHeartbeatRequest_AttemptId)(nil), (*MachineValidationHeartbeatRequest_TestId)(nil), } - file_nico_proto_msgTypes[516].OneofWrappers = []any{} file_nico_proto_msgTypes[518].OneofWrappers = []any{} - file_nico_proto_msgTypes[523].OneofWrappers = []any{} - file_nico_proto_msgTypes[530].OneofWrappers = []any{} - file_nico_proto_msgTypes[531].OneofWrappers = []any{} + file_nico_proto_msgTypes[520].OneofWrappers = []any{} + file_nico_proto_msgTypes[525].OneofWrappers = []any{} file_nico_proto_msgTypes[532].OneofWrappers = []any{} file_nico_proto_msgTypes[533].OneofWrappers = []any{} file_nico_proto_msgTypes[534].OneofWrappers = []any{} file_nico_proto_msgTypes[535].OneofWrappers = []any{} file_nico_proto_msgTypes[536].OneofWrappers = []any{} - file_nico_proto_msgTypes[539].OneofWrappers = []any{} - file_nico_proto_msgTypes[540].OneofWrappers = []any{} + file_nico_proto_msgTypes[537].OneofWrappers = []any{} + file_nico_proto_msgTypes[538].OneofWrappers = []any{} file_nico_proto_msgTypes[541].OneofWrappers = []any{} - file_nico_proto_msgTypes[545].OneofWrappers = []any{} - file_nico_proto_msgTypes[550].OneofWrappers = []any{} - file_nico_proto_msgTypes[557].OneofWrappers = []any{} + file_nico_proto_msgTypes[542].OneofWrappers = []any{} + file_nico_proto_msgTypes[543].OneofWrappers = []any{} + file_nico_proto_msgTypes[547].OneofWrappers = []any{} + file_nico_proto_msgTypes[552].OneofWrappers = []any{} file_nico_proto_msgTypes[559].OneofWrappers = []any{} - file_nico_proto_msgTypes[560].OneofWrappers = []any{} - file_nico_proto_msgTypes[571].OneofWrappers = []any{} - file_nico_proto_msgTypes[572].OneofWrappers = []any{} + file_nico_proto_msgTypes[561].OneofWrappers = []any{} + file_nico_proto_msgTypes[562].OneofWrappers = []any{} + file_nico_proto_msgTypes[573].OneofWrappers = []any{} file_nico_proto_msgTypes[574].OneofWrappers = []any{} file_nico_proto_msgTypes[576].OneofWrappers = []any{} - file_nico_proto_msgTypes[579].OneofWrappers = []any{} - file_nico_proto_msgTypes[583].OneofWrappers = []any{} - file_nico_proto_msgTypes[586].OneofWrappers = []any{} - file_nico_proto_msgTypes[587].OneofWrappers = []any{ + file_nico_proto_msgTypes[578].OneofWrappers = []any{} + file_nico_proto_msgTypes[581].OneofWrappers = []any{} + file_nico_proto_msgTypes[585].OneofWrappers = []any{} + file_nico_proto_msgTypes[588].OneofWrappers = []any{} + file_nico_proto_msgTypes[589].OneofWrappers = []any{ (*NetworkSecurityGroupRuleAttributes_SrcPrefix)(nil), (*NetworkSecurityGroupRuleAttributes_DstPrefix)(nil), } - file_nico_proto_msgTypes[604].OneofWrappers = []any{} - file_nico_proto_msgTypes[605].OneofWrappers = []any{} - file_nico_proto_msgTypes[610].OneofWrappers = []any{} - file_nico_proto_msgTypes[613].OneofWrappers = []any{} - file_nico_proto_msgTypes[614].OneofWrappers = []any{} - file_nico_proto_msgTypes[621].OneofWrappers = []any{} - file_nico_proto_msgTypes[624].OneofWrappers = []any{} - file_nico_proto_msgTypes[627].OneofWrappers = []any{} - file_nico_proto_msgTypes[628].OneofWrappers = []any{} + file_nico_proto_msgTypes[606].OneofWrappers = []any{} + file_nico_proto_msgTypes[607].OneofWrappers = []any{} + file_nico_proto_msgTypes[612].OneofWrappers = []any{} + file_nico_proto_msgTypes[615].OneofWrappers = []any{} + file_nico_proto_msgTypes[616].OneofWrappers = []any{} + file_nico_proto_msgTypes[623].OneofWrappers = []any{} + file_nico_proto_msgTypes[626].OneofWrappers = []any{} + file_nico_proto_msgTypes[629].OneofWrappers = []any{} file_nico_proto_msgTypes[630].OneofWrappers = []any{} - file_nico_proto_msgTypes[635].OneofWrappers = []any{} - file_nico_proto_msgTypes[639].OneofWrappers = []any{} - file_nico_proto_msgTypes[642].OneofWrappers = []any{} - file_nico_proto_msgTypes[652].OneofWrappers = []any{} - file_nico_proto_msgTypes[653].OneofWrappers = []any{} + file_nico_proto_msgTypes[632].OneofWrappers = []any{} + file_nico_proto_msgTypes[637].OneofWrappers = []any{} + file_nico_proto_msgTypes[641].OneofWrappers = []any{} + file_nico_proto_msgTypes[644].OneofWrappers = []any{} file_nico_proto_msgTypes[654].OneofWrappers = []any{} - file_nico_proto_msgTypes[659].OneofWrappers = []any{} - file_nico_proto_msgTypes[660].OneofWrappers = []any{} - file_nico_proto_msgTypes[663].OneofWrappers = []any{} - file_nico_proto_msgTypes[664].OneofWrappers = []any{} - file_nico_proto_msgTypes[667].OneofWrappers = []any{} - file_nico_proto_msgTypes[673].OneofWrappers = []any{} - file_nico_proto_msgTypes[674].OneofWrappers = []any{} - file_nico_proto_msgTypes[682].OneofWrappers = []any{} - file_nico_proto_msgTypes[685].OneofWrappers = []any{} - file_nico_proto_msgTypes[688].OneofWrappers = []any{} + file_nico_proto_msgTypes[655].OneofWrappers = []any{} + file_nico_proto_msgTypes[656].OneofWrappers = []any{} + file_nico_proto_msgTypes[661].OneofWrappers = []any{} + file_nico_proto_msgTypes[662].OneofWrappers = []any{} + file_nico_proto_msgTypes[665].OneofWrappers = []any{} + file_nico_proto_msgTypes[666].OneofWrappers = []any{} + file_nico_proto_msgTypes[669].OneofWrappers = []any{} + file_nico_proto_msgTypes[675].OneofWrappers = []any{} + file_nico_proto_msgTypes[676].OneofWrappers = []any{} + file_nico_proto_msgTypes[684].OneofWrappers = []any{} + file_nico_proto_msgTypes[687].OneofWrappers = []any{} file_nico_proto_msgTypes[690].OneofWrappers = []any{} file_nico_proto_msgTypes[692].OneofWrappers = []any{} - file_nico_proto_msgTypes[708].OneofWrappers = []any{} - file_nico_proto_msgTypes[713].OneofWrappers = []any{} - file_nico_proto_msgTypes[719].OneofWrappers = []any{} - file_nico_proto_msgTypes[726].OneofWrappers = []any{ + file_nico_proto_msgTypes[694].OneofWrappers = []any{} + file_nico_proto_msgTypes[710].OneofWrappers = []any{} + file_nico_proto_msgTypes[715].OneofWrappers = []any{} + file_nico_proto_msgTypes[721].OneofWrappers = []any{} + file_nico_proto_msgTypes[728].OneofWrappers = []any{ (*DpuExtensionServiceCredential_UsernamePassword)(nil), } - file_nico_proto_msgTypes[727].OneofWrappers = []any{} - file_nico_proto_msgTypes[728].OneofWrappers = []any{} file_nico_proto_msgTypes[729].OneofWrappers = []any{} file_nico_proto_msgTypes[730].OneofWrappers = []any{} - file_nico_proto_msgTypes[733].OneofWrappers = []any{} - file_nico_proto_msgTypes[739].OneofWrappers = []any{} + file_nico_proto_msgTypes[731].OneofWrappers = []any{} + file_nico_proto_msgTypes[732].OneofWrappers = []any{} + file_nico_proto_msgTypes[735].OneofWrappers = []any{} file_nico_proto_msgTypes[741].OneofWrappers = []any{} - file_nico_proto_msgTypes[744].OneofWrappers = []any{ + file_nico_proto_msgTypes[743].OneofWrappers = []any{} + file_nico_proto_msgTypes[746].OneofWrappers = []any{ (*DpuExtensionServiceObservabilityConfig_Prometheus)(nil), (*DpuExtensionServiceObservabilityConfig_Logging)(nil), } - file_nico_proto_msgTypes[746].OneofWrappers = []any{ + file_nico_proto_msgTypes[748].OneofWrappers = []any{ (*ScoutStreamApiBoundMessage_Init)(nil), (*ScoutStreamApiBoundMessage_MlxDeviceLockdownResponse)(nil), (*ScoutStreamApiBoundMessage_MlxDeviceProfileSyncResponse)(nil), @@ -67500,7 +67635,7 @@ func file_nico_proto_init() { (*ScoutStreamApiBoundMessage_MlxDeviceConfigCompareResponse)(nil), (*ScoutStreamApiBoundMessage_ScoutStreamAgentPingResponse)(nil), } - file_nico_proto_msgTypes[747].OneofWrappers = []any{ + file_nico_proto_msgTypes[749].OneofWrappers = []any{ (*ScoutStreamScoutBoundMessage_MlxDeviceLockdownLockRequest)(nil), (*ScoutStreamScoutBoundMessage_MlxDeviceLockdownUnlockRequest)(nil), (*ScoutStreamScoutBoundMessage_MlxDeviceLockdownStatusRequest)(nil), @@ -67516,78 +67651,78 @@ func file_nico_proto_init() { (*ScoutStreamScoutBoundMessage_MlxDeviceConfigCompareRequest)(nil), (*ScoutStreamScoutBoundMessage_ScoutStreamAgentPingRequest)(nil), } - file_nico_proto_msgTypes[756].OneofWrappers = []any{ + file_nico_proto_msgTypes[758].OneofWrappers = []any{ (*ScoutStreamAgentPingResponse_Pong)(nil), (*ScoutStreamAgentPingResponse_Error)(nil), } - file_nico_proto_msgTypes[765].OneofWrappers = []any{} - file_nico_proto_msgTypes[766].OneofWrappers = []any{ + file_nico_proto_msgTypes[767].OneofWrappers = []any{} + file_nico_proto_msgTypes[768].OneofWrappers = []any{ (*PxeDomain_LegacyDomain)(nil), } - file_nico_proto_msgTypes[769].OneofWrappers = []any{} - file_nico_proto_msgTypes[781].OneofWrappers = []any{ + file_nico_proto_msgTypes[771].OneofWrappers = []any{} + file_nico_proto_msgTypes[783].OneofWrappers = []any{ (*GetComponentInventoryRequest_MachineIds)(nil), (*GetComponentInventoryRequest_SwitchIds)(nil), (*GetComponentInventoryRequest_PowerShelfIds)(nil), } - file_nico_proto_msgTypes[782].OneofWrappers = []any{} - file_nico_proto_msgTypes[784].OneofWrappers = []any{ + file_nico_proto_msgTypes[784].OneofWrappers = []any{} + file_nico_proto_msgTypes[786].OneofWrappers = []any{ (*ComponentPowerControlRequest_MachineIds)(nil), (*ComponentPowerControlRequest_SwitchIds)(nil), (*ComponentPowerControlRequest_PowerShelfIds)(nil), } - file_nico_proto_msgTypes[791].OneofWrappers = []any{ + file_nico_proto_msgTypes[793].OneofWrappers = []any{ (*UpdateComponentFirmwareRequest_ComputeTrays)(nil), (*UpdateComponentFirmwareRequest_Switches)(nil), (*UpdateComponentFirmwareRequest_PowerShelves)(nil), (*UpdateComponentFirmwareRequest_Racks)(nil), } - file_nico_proto_msgTypes[793].OneofWrappers = []any{ + file_nico_proto_msgTypes[795].OneofWrappers = []any{ (*GetComponentFirmwareStatusRequest_MachineIds)(nil), (*GetComponentFirmwareStatusRequest_SwitchIds)(nil), (*GetComponentFirmwareStatusRequest_PowerShelfIds)(nil), (*GetComponentFirmwareStatusRequest_RackIds)(nil), } - file_nico_proto_msgTypes[795].OneofWrappers = []any{ + file_nico_proto_msgTypes[797].OneofWrappers = []any{ (*ListComponentFirmwareVersionsRequest_MachineIds)(nil), (*ListComponentFirmwareVersionsRequest_SwitchIds)(nil), (*ListComponentFirmwareVersionsRequest_PowerShelfIds)(nil), (*ListComponentFirmwareVersionsRequest_RackIds)(nil), } - file_nico_proto_msgTypes[799].OneofWrappers = []any{} - file_nico_proto_msgTypes[804].OneofWrappers = []any{} - file_nico_proto_msgTypes[811].OneofWrappers = []any{} - file_nico_proto_msgTypes[812].OneofWrappers = []any{} - file_nico_proto_msgTypes[815].OneofWrappers = []any{} - file_nico_proto_msgTypes[818].OneofWrappers = []any{} - file_nico_proto_msgTypes[824].OneofWrappers = []any{} - file_nico_proto_msgTypes[827].OneofWrappers = []any{} - file_nico_proto_msgTypes[830].OneofWrappers = []any{} - file_nico_proto_msgTypes[831].OneofWrappers = []any{} + file_nico_proto_msgTypes[801].OneofWrappers = []any{} + file_nico_proto_msgTypes[806].OneofWrappers = []any{} + file_nico_proto_msgTypes[813].OneofWrappers = []any{} + file_nico_proto_msgTypes[814].OneofWrappers = []any{} + file_nico_proto_msgTypes[817].OneofWrappers = []any{} + file_nico_proto_msgTypes[820].OneofWrappers = []any{} + file_nico_proto_msgTypes[826].OneofWrappers = []any{} + file_nico_proto_msgTypes[829].OneofWrappers = []any{} file_nico_proto_msgTypes[832].OneofWrappers = []any{} + file_nico_proto_msgTypes[833].OneofWrappers = []any{} file_nico_proto_msgTypes[834].OneofWrappers = []any{} file_nico_proto_msgTypes[836].OneofWrappers = []any{} file_nico_proto_msgTypes[838].OneofWrappers = []any{} - file_nico_proto_msgTypes[854].OneofWrappers = []any{} - file_nico_proto_msgTypes[856].OneofWrappers = []any{ + file_nico_proto_msgTypes[840].OneofWrappers = []any{} + file_nico_proto_msgTypes[856].OneofWrappers = []any{} + file_nico_proto_msgTypes[858].OneofWrappers = []any{ (*ForgeAgentControlResponse_MlxDeviceAction_Noop)(nil), (*ForgeAgentControlResponse_MlxDeviceAction_Lock)(nil), (*ForgeAgentControlResponse_MlxDeviceAction_Unlock)(nil), (*ForgeAgentControlResponse_MlxDeviceAction_ApplyProfile)(nil), (*ForgeAgentControlResponse_MlxDeviceAction_ApplyFirmware)(nil), } - file_nico_proto_msgTypes[860].OneofWrappers = []any{} - file_nico_proto_msgTypes[861].OneofWrappers = []any{} - file_nico_proto_msgTypes[865].OneofWrappers = []any{} - file_nico_proto_msgTypes[866].OneofWrappers = []any{} + file_nico_proto_msgTypes[862].OneofWrappers = []any{} + file_nico_proto_msgTypes[863].OneofWrappers = []any{} file_nico_proto_msgTypes[867].OneofWrappers = []any{} + file_nico_proto_msgTypes[868].OneofWrappers = []any{} + file_nico_proto_msgTypes[869].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_nico_proto_rawDesc), len(file_nico_proto_rawDesc)), NumEnums: 87, - NumMessages: 874, + NumMessages: 876, NumExtensions: 0, NumServices: 1, }, diff --git a/rest-api/flow/internal/nicoapi/nicoproto/nico.proto b/rest-api/flow/internal/nicoapi/nicoproto/nico.proto index 2451f2e144..c718c815e3 100644 --- a/rest-api/flow/internal/nicoapi/nicoproto/nico.proto +++ b/rest-api/flow/internal/nicoapi/nicoproto/nico.proto @@ -3315,12 +3315,26 @@ message Issue { string details = 3; // Additional context about the issue } +// Records who initiated an instance delete in the cloud API layer. +message DeleteInitiatedBy { + string org = 1; + string org_display_name = 2; + string user_id = 3; + string tenant_id = 4; +} + +message DeleteAttribution { + DeleteInitiatedBy initiated_by = 1; +} + message InstanceReleaseRequest { common.InstanceId id = 1; // Optional issue information if tenant is reporting a problem optional Issue issue = 2; // Optional flag indicating the call is from repair tenant (default: false) optional bool is_repair_tenant = 3; + // Optional cloud-side attribution for who initiated the delete + optional DeleteAttribution delete_attribution = 4; } message InstanceReleaseResult { diff --git a/rest-api/workflow-schema/flow/protobuf/v1/flow.pb.go b/rest-api/workflow-schema/flow/protobuf/v1/flow.pb.go index bd0aa64b00..dedaaf192b 100644 --- a/rest-api/workflow-schema/flow/protobuf/v1/flow.pb.go +++ b/rest-api/workflow-schema/flow/protobuf/v1/flow.pb.go @@ -12,6 +12,7 @@ package flow import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" + durationpb "google.golang.org/protobuf/types/known/durationpb" emptypb "google.golang.org/protobuf/types/known/emptypb" fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb" timestamppb "google.golang.org/protobuf/types/known/timestamppb" @@ -909,6 +910,342 @@ func (OverlapPolicy) EnumDescriptor() ([]byte, []int) { return file_flow_proto_rawDescGZIP(), []int{15} } +type OperationRunTargetPhaseScope int32 + +const ( + OperationRunTargetPhaseScope_OPERATION_RUN_TARGET_PHASE_SCOPE_UNKNOWN OperationRunTargetPhaseScope = 0 + // Default. Targets in the latest materialized phase. + OperationRunTargetPhaseScope_OPERATION_RUN_TARGET_PHASE_SCOPE_CURRENT_PHASE OperationRunTargetPhaseScope = 1 + // Targets in materialized phases before the current phase. + OperationRunTargetPhaseScope_OPERATION_RUN_TARGET_PHASE_SCOPE_COMPLETED_PHASES OperationRunTargetPhaseScope = 2 + // All materialized targets through the current phase. + OperationRunTargetPhaseScope_OPERATION_RUN_TARGET_PHASE_SCOPE_CURRENT_AND_COMPLETED_PHASES OperationRunTargetPhaseScope = 3 +) + +// Enum value maps for OperationRunTargetPhaseScope. +var ( + OperationRunTargetPhaseScope_name = map[int32]string{ + 0: "OPERATION_RUN_TARGET_PHASE_SCOPE_UNKNOWN", + 1: "OPERATION_RUN_TARGET_PHASE_SCOPE_CURRENT_PHASE", + 2: "OPERATION_RUN_TARGET_PHASE_SCOPE_COMPLETED_PHASES", + 3: "OPERATION_RUN_TARGET_PHASE_SCOPE_CURRENT_AND_COMPLETED_PHASES", + } + OperationRunTargetPhaseScope_value = map[string]int32{ + "OPERATION_RUN_TARGET_PHASE_SCOPE_UNKNOWN": 0, + "OPERATION_RUN_TARGET_PHASE_SCOPE_CURRENT_PHASE": 1, + "OPERATION_RUN_TARGET_PHASE_SCOPE_COMPLETED_PHASES": 2, + "OPERATION_RUN_TARGET_PHASE_SCOPE_CURRENT_AND_COMPLETED_PHASES": 3, + } +) + +func (x OperationRunTargetPhaseScope) Enum() *OperationRunTargetPhaseScope { + p := new(OperationRunTargetPhaseScope) + *p = x + return p +} + +func (x OperationRunTargetPhaseScope) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (OperationRunTargetPhaseScope) Descriptor() protoreflect.EnumDescriptor { + return file_flow_proto_enumTypes[16].Descriptor() +} + +func (OperationRunTargetPhaseScope) Type() protoreflect.EnumType { + return &file_flow_proto_enumTypes[16] +} + +func (x OperationRunTargetPhaseScope) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use OperationRunTargetPhaseScope.Descriptor instead. +func (OperationRunTargetPhaseScope) EnumDescriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{16} +} + +type OperationRunSafetyGateScope int32 + +const ( + OperationRunSafetyGateScope_OPERATION_RUN_SAFETY_GATE_SCOPE_UNKNOWN OperationRunSafetyGateScope = 0 + OperationRunSafetyGateScope_OPERATION_RUN_SAFETY_GATE_SCOPE_CURRENT_PHASE OperationRunSafetyGateScope = 1 + OperationRunSafetyGateScope_OPERATION_RUN_SAFETY_GATE_SCOPE_CUMULATIVE_RUN OperationRunSafetyGateScope = 2 +) + +// Enum value maps for OperationRunSafetyGateScope. +var ( + OperationRunSafetyGateScope_name = map[int32]string{ + 0: "OPERATION_RUN_SAFETY_GATE_SCOPE_UNKNOWN", + 1: "OPERATION_RUN_SAFETY_GATE_SCOPE_CURRENT_PHASE", + 2: "OPERATION_RUN_SAFETY_GATE_SCOPE_CUMULATIVE_RUN", + } + OperationRunSafetyGateScope_value = map[string]int32{ + "OPERATION_RUN_SAFETY_GATE_SCOPE_UNKNOWN": 0, + "OPERATION_RUN_SAFETY_GATE_SCOPE_CURRENT_PHASE": 1, + "OPERATION_RUN_SAFETY_GATE_SCOPE_CUMULATIVE_RUN": 2, + } +) + +func (x OperationRunSafetyGateScope) Enum() *OperationRunSafetyGateScope { + p := new(OperationRunSafetyGateScope) + *p = x + return p +} + +func (x OperationRunSafetyGateScope) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (OperationRunSafetyGateScope) Descriptor() protoreflect.EnumDescriptor { + return file_flow_proto_enumTypes[17].Descriptor() +} + +func (OperationRunSafetyGateScope) Type() protoreflect.EnumType { + return &file_flow_proto_enumTypes[17] +} + +func (x OperationRunSafetyGateScope) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use OperationRunSafetyGateScope.Descriptor instead. +func (OperationRunSafetyGateScope) EnumDescriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{17} +} + +type OperationRunStatus int32 + +const ( + OperationRunStatus_OPERATION_RUN_STATUS_UNKNOWN OperationRunStatus = 0 + OperationRunStatus_OPERATION_RUN_STATUS_PENDING OperationRunStatus = 1 + OperationRunStatus_OPERATION_RUN_STATUS_RUNNING OperationRunStatus = 2 + OperationRunStatus_OPERATION_RUN_STATUS_PAUSED OperationRunStatus = 3 + OperationRunStatus_OPERATION_RUN_STATUS_COMPLETED OperationRunStatus = 4 + OperationRunStatus_OPERATION_RUN_STATUS_CANCELLED OperationRunStatus = 5 + OperationRunStatus_OPERATION_RUN_STATUS_FAILED OperationRunStatus = 6 +) + +// Enum value maps for OperationRunStatus. +var ( + OperationRunStatus_name = map[int32]string{ + 0: "OPERATION_RUN_STATUS_UNKNOWN", + 1: "OPERATION_RUN_STATUS_PENDING", + 2: "OPERATION_RUN_STATUS_RUNNING", + 3: "OPERATION_RUN_STATUS_PAUSED", + 4: "OPERATION_RUN_STATUS_COMPLETED", + 5: "OPERATION_RUN_STATUS_CANCELLED", + 6: "OPERATION_RUN_STATUS_FAILED", + } + OperationRunStatus_value = map[string]int32{ + "OPERATION_RUN_STATUS_UNKNOWN": 0, + "OPERATION_RUN_STATUS_PENDING": 1, + "OPERATION_RUN_STATUS_RUNNING": 2, + "OPERATION_RUN_STATUS_PAUSED": 3, + "OPERATION_RUN_STATUS_COMPLETED": 4, + "OPERATION_RUN_STATUS_CANCELLED": 5, + "OPERATION_RUN_STATUS_FAILED": 6, + } +) + +func (x OperationRunStatus) Enum() *OperationRunStatus { + p := new(OperationRunStatus) + *p = x + return p +} + +func (x OperationRunStatus) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (OperationRunStatus) Descriptor() protoreflect.EnumDescriptor { + return file_flow_proto_enumTypes[18].Descriptor() +} + +func (OperationRunStatus) Type() protoreflect.EnumType { + return &file_flow_proto_enumTypes[18] +} + +func (x OperationRunStatus) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use OperationRunStatus.Descriptor instead. +func (OperationRunStatus) EnumDescriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{18} +} + +type OperationRunStatusReason int32 + +const ( + OperationRunStatusReason_OPERATION_RUN_STATUS_REASON_UNKNOWN OperationRunStatusReason = 0 + OperationRunStatusReason_OPERATION_RUN_STATUS_REASON_NONE OperationRunStatusReason = 1 + OperationRunStatusReason_OPERATION_RUN_STATUS_REASON_OPERATOR_PAUSED OperationRunStatusReason = 2 + OperationRunStatusReason_OPERATION_RUN_STATUS_REASON_PHASE_GATE OperationRunStatusReason = 3 + OperationRunStatusReason_OPERATION_RUN_STATUS_REASON_SAFETY_GATE OperationRunStatusReason = 4 + OperationRunStatusReason_OPERATION_RUN_STATUS_REASON_CONFLICT_RETRY_TIMEOUT OperationRunStatusReason = 5 +) + +// Enum value maps for OperationRunStatusReason. +var ( + OperationRunStatusReason_name = map[int32]string{ + 0: "OPERATION_RUN_STATUS_REASON_UNKNOWN", + 1: "OPERATION_RUN_STATUS_REASON_NONE", + 2: "OPERATION_RUN_STATUS_REASON_OPERATOR_PAUSED", + 3: "OPERATION_RUN_STATUS_REASON_PHASE_GATE", + 4: "OPERATION_RUN_STATUS_REASON_SAFETY_GATE", + 5: "OPERATION_RUN_STATUS_REASON_CONFLICT_RETRY_TIMEOUT", + } + OperationRunStatusReason_value = map[string]int32{ + "OPERATION_RUN_STATUS_REASON_UNKNOWN": 0, + "OPERATION_RUN_STATUS_REASON_NONE": 1, + "OPERATION_RUN_STATUS_REASON_OPERATOR_PAUSED": 2, + "OPERATION_RUN_STATUS_REASON_PHASE_GATE": 3, + "OPERATION_RUN_STATUS_REASON_SAFETY_GATE": 4, + "OPERATION_RUN_STATUS_REASON_CONFLICT_RETRY_TIMEOUT": 5, + } +) + +func (x OperationRunStatusReason) Enum() *OperationRunStatusReason { + p := new(OperationRunStatusReason) + *p = x + return p +} + +func (x OperationRunStatusReason) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (OperationRunStatusReason) Descriptor() protoreflect.EnumDescriptor { + return file_flow_proto_enumTypes[19].Descriptor() +} + +func (OperationRunStatusReason) Type() protoreflect.EnumType { + return &file_flow_proto_enumTypes[19] +} + +func (x OperationRunStatusReason) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use OperationRunStatusReason.Descriptor instead. +func (OperationRunStatusReason) EnumDescriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{19} +} + +type OperationRunTargetStatus int32 + +const ( + OperationRunTargetStatus_OPERATION_RUN_TARGET_STATUS_UNKNOWN OperationRunTargetStatus = 0 + OperationRunTargetStatus_OPERATION_RUN_TARGET_STATUS_PENDING OperationRunTargetStatus = 1 + OperationRunTargetStatus_OPERATION_RUN_TARGET_STATUS_BLOCKED OperationRunTargetStatus = 2 + OperationRunTargetStatus_OPERATION_RUN_TARGET_STATUS_SUBMITTED OperationRunTargetStatus = 3 + OperationRunTargetStatus_OPERATION_RUN_TARGET_STATUS_COMPLETED OperationRunTargetStatus = 4 + OperationRunTargetStatus_OPERATION_RUN_TARGET_STATUS_FAILED OperationRunTargetStatus = 5 + OperationRunTargetStatus_OPERATION_RUN_TARGET_STATUS_TERMINATED OperationRunTargetStatus = 6 + OperationRunTargetStatus_OPERATION_RUN_TARGET_STATUS_SKIPPED OperationRunTargetStatus = 7 +) + +// Enum value maps for OperationRunTargetStatus. +var ( + OperationRunTargetStatus_name = map[int32]string{ + 0: "OPERATION_RUN_TARGET_STATUS_UNKNOWN", + 1: "OPERATION_RUN_TARGET_STATUS_PENDING", + 2: "OPERATION_RUN_TARGET_STATUS_BLOCKED", + 3: "OPERATION_RUN_TARGET_STATUS_SUBMITTED", + 4: "OPERATION_RUN_TARGET_STATUS_COMPLETED", + 5: "OPERATION_RUN_TARGET_STATUS_FAILED", + 6: "OPERATION_RUN_TARGET_STATUS_TERMINATED", + 7: "OPERATION_RUN_TARGET_STATUS_SKIPPED", + } + OperationRunTargetStatus_value = map[string]int32{ + "OPERATION_RUN_TARGET_STATUS_UNKNOWN": 0, + "OPERATION_RUN_TARGET_STATUS_PENDING": 1, + "OPERATION_RUN_TARGET_STATUS_BLOCKED": 2, + "OPERATION_RUN_TARGET_STATUS_SUBMITTED": 3, + "OPERATION_RUN_TARGET_STATUS_COMPLETED": 4, + "OPERATION_RUN_TARGET_STATUS_FAILED": 5, + "OPERATION_RUN_TARGET_STATUS_TERMINATED": 6, + "OPERATION_RUN_TARGET_STATUS_SKIPPED": 7, + } +) + +func (x OperationRunTargetStatus) Enum() *OperationRunTargetStatus { + p := new(OperationRunTargetStatus) + *p = x + return p +} + +func (x OperationRunTargetStatus) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (OperationRunTargetStatus) Descriptor() protoreflect.EnumDescriptor { + return file_flow_proto_enumTypes[20].Descriptor() +} + +func (OperationRunTargetStatus) Type() protoreflect.EnumType { + return &file_flow_proto_enumTypes[20] +} + +func (x OperationRunTargetStatus) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use OperationRunTargetStatus.Descriptor instead. +func (OperationRunTargetStatus) EnumDescriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{20} +} + +type OperationRunPhysicalLocationOrdering_Strategy int32 + +const ( + OperationRunPhysicalLocationOrdering_STRATEGY_UNKNOWN OperationRunPhysicalLocationOrdering_Strategy = 0 + OperationRunPhysicalLocationOrdering_STRATEGY_ROW_BY_ROW OperationRunPhysicalLocationOrdering_Strategy = 1 + OperationRunPhysicalLocationOrdering_STRATEGY_ONE_PER_ROW_ROUND_ROBIN OperationRunPhysicalLocationOrdering_Strategy = 2 +) + +// Enum value maps for OperationRunPhysicalLocationOrdering_Strategy. +var ( + OperationRunPhysicalLocationOrdering_Strategy_name = map[int32]string{ + 0: "STRATEGY_UNKNOWN", + 1: "STRATEGY_ROW_BY_ROW", + 2: "STRATEGY_ONE_PER_ROW_ROUND_ROBIN", + } + OperationRunPhysicalLocationOrdering_Strategy_value = map[string]int32{ + "STRATEGY_UNKNOWN": 0, + "STRATEGY_ROW_BY_ROW": 1, + "STRATEGY_ONE_PER_ROW_ROUND_ROBIN": 2, + } +) + +func (x OperationRunPhysicalLocationOrdering_Strategy) Enum() *OperationRunPhysicalLocationOrdering_Strategy { + p := new(OperationRunPhysicalLocationOrdering_Strategy) + *p = x + return p +} + +func (x OperationRunPhysicalLocationOrdering_Strategy) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (OperationRunPhysicalLocationOrdering_Strategy) Descriptor() protoreflect.EnumDescriptor { + return file_flow_proto_enumTypes[21].Descriptor() +} + +func (OperationRunPhysicalLocationOrdering_Strategy) Type() protoreflect.EnumType { + return &file_flow_proto_enumTypes[21] +} + +func (x OperationRunPhysicalLocationOrdering_Strategy) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use OperationRunPhysicalLocationOrdering_Strategy.Descriptor instead. +func (OperationRunPhysicalLocationOrdering_Strategy) EnumDescriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{142, 0} +} + type UUID struct { state protoimpl.MessageState `protogen:"open.v1"` Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` @@ -1790,35 +2127,33 @@ func (x *ComponentTypes) GetTypes() []ComponentType { return nil } -// RackTarget identifies a rack and optionally filters by component type. -// To target specific components, use the component-level APIs instead. -type RackTarget struct { +// ComponentFilter is a reusable unresolved component filter. It describes +// selection criteria, not the concrete components selected after planning. +type ComponentFilter struct { state protoimpl.MessageState `protogen:"open.v1"` - // Types that are valid to be assigned to Identifier: + // Types that are valid to be assigned to Filter: // - // *RackTarget_Id - // *RackTarget_Name - Identifier isRackTarget_Identifier `protobuf_oneof:"identifier"` - // Optional: filter by component type. Omit (or send empty list) to include all components in the rack. - ComponentTypes []ComponentType `protobuf:"varint,3,rep,packed,name=component_types,json=componentTypes,proto3,enum=v1.ComponentType" json:"component_types,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + // *ComponentFilter_Types + // *ComponentFilter_Components + Filter isComponentFilter_Filter `protobuf_oneof:"filter"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *RackTarget) Reset() { - *x = RackTarget{} +func (x *ComponentFilter) Reset() { + *x = ComponentFilter{} mi := &file_flow_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *RackTarget) String() string { +func (x *ComponentFilter) String() string { return protoimpl.X.MessageStringOf(x) } -func (*RackTarget) ProtoMessage() {} +func (*ComponentFilter) ProtoMessage() {} -func (x *RackTarget) ProtoReflect() protoreflect.Message { +func (x *ComponentFilter) ProtoReflect() protoreflect.Message { mi := &file_flow_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) @@ -1830,85 +2165,74 @@ func (x *RackTarget) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use RackTarget.ProtoReflect.Descriptor instead. -func (*RackTarget) Descriptor() ([]byte, []int) { +// Deprecated: Use ComponentFilter.ProtoReflect.Descriptor instead. +func (*ComponentFilter) Descriptor() ([]byte, []int) { return file_flow_proto_rawDescGZIP(), []int{14} } -func (x *RackTarget) GetIdentifier() isRackTarget_Identifier { +func (x *ComponentFilter) GetFilter() isComponentFilter_Filter { if x != nil { - return x.Identifier + return x.Filter } return nil } -func (x *RackTarget) GetId() *UUID { +func (x *ComponentFilter) GetTypes() *ComponentTypes { if x != nil { - if x, ok := x.Identifier.(*RackTarget_Id); ok { - return x.Id + if x, ok := x.Filter.(*ComponentFilter_Types); ok { + return x.Types } } return nil } -func (x *RackTarget) GetName() string { +func (x *ComponentFilter) GetComponents() *ComponentTargets { if x != nil { - if x, ok := x.Identifier.(*RackTarget_Name); ok { - return x.Name + if x, ok := x.Filter.(*ComponentFilter_Components); ok { + return x.Components } } - return "" -} - -func (x *RackTarget) GetComponentTypes() []ComponentType { - if x != nil { - return x.ComponentTypes - } return nil } -type isRackTarget_Identifier interface { - isRackTarget_Identifier() +type isComponentFilter_Filter interface { + isComponentFilter_Filter() } -type RackTarget_Id struct { - Id *UUID `protobuf:"bytes,1,opt,name=id,proto3,oneof"` // Rack UUID +type ComponentFilter_Types struct { + Types *ComponentTypes `protobuf:"bytes,1,opt,name=types,proto3,oneof"` } -type RackTarget_Name struct { - Name string `protobuf:"bytes,2,opt,name=name,proto3,oneof"` // Rack name +type ComponentFilter_Components struct { + Components *ComponentTargets `protobuf:"bytes,2,opt,name=components,proto3,oneof"` } -func (*RackTarget_Id) isRackTarget_Identifier() {} +func (*ComponentFilter_Types) isComponentFilter_Filter() {} -func (*RackTarget_Name) isRackTarget_Identifier() {} +func (*ComponentFilter_Components) isComponentFilter_Filter() {} -// ComponentTarget identifies a specific component -type ComponentTarget struct { - state protoimpl.MessageState `protogen:"open.v1"` - // Types that are valid to be assigned to Identifier: - // - // *ComponentTarget_Id - // *ComponentTarget_External - Identifier isComponentTarget_Identifier `protobuf_oneof:"identifier"` +// ComponentsByType is the resolved component set selected for execution. +type ComponentsByType struct { + state protoimpl.MessageState `protogen:"open.v1"` + Groups []*ComponentsForType `protobuf:"bytes,1,rep,name=groups,proto3" json:"groups,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } -func (x *ComponentTarget) Reset() { - *x = ComponentTarget{} +func (x *ComponentsByType) Reset() { + *x = ComponentsByType{} mi := &file_flow_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ComponentTarget) String() string { +func (x *ComponentsByType) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ComponentTarget) ProtoMessage() {} +func (*ComponentsByType) ProtoMessage() {} -func (x *ComponentTarget) ProtoReflect() protoreflect.Message { +func (x *ComponentsByType) ProtoReflect() protoreflect.Message { mi := &file_flow_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) @@ -1920,47 +2244,242 @@ func (x *ComponentTarget) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ComponentTarget.ProtoReflect.Descriptor instead. -func (*ComponentTarget) Descriptor() ([]byte, []int) { +// Deprecated: Use ComponentsByType.ProtoReflect.Descriptor instead. +func (*ComponentsByType) Descriptor() ([]byte, []int) { return file_flow_proto_rawDescGZIP(), []int{15} } -func (x *ComponentTarget) GetIdentifier() isComponentTarget_Identifier { +func (x *ComponentsByType) GetGroups() []*ComponentsForType { if x != nil { - return x.Identifier + return x.Groups } return nil } -func (x *ComponentTarget) GetId() *UUID { - if x != nil { - if x, ok := x.Identifier.(*ComponentTarget_Id); ok { - return x.Id - } - } - return nil +// ComponentsForType contains resolved component UUIDs of one component type. +type ComponentsForType struct { + state protoimpl.MessageState `protogen:"open.v1"` + Type ComponentType `protobuf:"varint,1,opt,name=type,proto3,enum=v1.ComponentType" json:"type,omitempty"` + ComponentIds []*UUID `protobuf:"bytes,2,rep,name=component_ids,json=componentIds,proto3" json:"component_ids,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *ComponentTarget) GetExternal() *ExternalRef { +func (x *ComponentsForType) Reset() { + *x = ComponentsForType{} + mi := &file_flow_proto_msgTypes[16] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ComponentsForType) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ComponentsForType) ProtoMessage() {} + +func (x *ComponentsForType) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[16] if x != nil { - if x, ok := x.Identifier.(*ComponentTarget_External); ok { - return x.External + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) } + return ms } - return nil + return mi.MessageOf(x) } -type isComponentTarget_Identifier interface { - isComponentTarget_Identifier() +// Deprecated: Use ComponentsForType.ProtoReflect.Descriptor instead. +func (*ComponentsForType) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{16} } -type ComponentTarget_Id struct { - Id *UUID `protobuf:"bytes,1,opt,name=id,proto3,oneof"` // Component UUID +func (x *ComponentsForType) GetType() ComponentType { + if x != nil { + return x.Type + } + return ComponentType_COMPONENT_TYPE_UNKNOWN } -type ComponentTarget_External struct { - External *ExternalRef `protobuf:"bytes,2,opt,name=external,proto3,oneof"` // External system reference -} +func (x *ComponentsForType) GetComponentIds() []*UUID { + if x != nil { + return x.ComponentIds + } + return nil +} + +// RackTarget identifies a rack and optionally filters by component type. +// To target specific components, use the component-level APIs instead. +type RackTarget struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Types that are valid to be assigned to Identifier: + // + // *RackTarget_Id + // *RackTarget_Name + Identifier isRackTarget_Identifier `protobuf_oneof:"identifier"` + // Optional: filter by component type. Omit (or send empty list) to include all components in the rack. + ComponentTypes []ComponentType `protobuf:"varint,3,rep,packed,name=component_types,json=componentTypes,proto3,enum=v1.ComponentType" json:"component_types,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *RackTarget) Reset() { + *x = RackTarget{} + mi := &file_flow_proto_msgTypes[17] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *RackTarget) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*RackTarget) ProtoMessage() {} + +func (x *RackTarget) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[17] + 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 RackTarget.ProtoReflect.Descriptor instead. +func (*RackTarget) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{17} +} + +func (x *RackTarget) GetIdentifier() isRackTarget_Identifier { + if x != nil { + return x.Identifier + } + return nil +} + +func (x *RackTarget) GetId() *UUID { + if x != nil { + if x, ok := x.Identifier.(*RackTarget_Id); ok { + return x.Id + } + } + return nil +} + +func (x *RackTarget) GetName() string { + if x != nil { + if x, ok := x.Identifier.(*RackTarget_Name); ok { + return x.Name + } + } + return "" +} + +func (x *RackTarget) GetComponentTypes() []ComponentType { + if x != nil { + return x.ComponentTypes + } + return nil +} + +type isRackTarget_Identifier interface { + isRackTarget_Identifier() +} + +type RackTarget_Id struct { + Id *UUID `protobuf:"bytes,1,opt,name=id,proto3,oneof"` // Rack UUID +} + +type RackTarget_Name struct { + Name string `protobuf:"bytes,2,opt,name=name,proto3,oneof"` // Rack name +} + +func (*RackTarget_Id) isRackTarget_Identifier() {} + +func (*RackTarget_Name) isRackTarget_Identifier() {} + +// ComponentTarget identifies a specific component +type ComponentTarget struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Types that are valid to be assigned to Identifier: + // + // *ComponentTarget_Id + // *ComponentTarget_External + Identifier isComponentTarget_Identifier `protobuf_oneof:"identifier"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ComponentTarget) Reset() { + *x = ComponentTarget{} + mi := &file_flow_proto_msgTypes[18] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ComponentTarget) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ComponentTarget) ProtoMessage() {} + +func (x *ComponentTarget) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[18] + 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 ComponentTarget.ProtoReflect.Descriptor instead. +func (*ComponentTarget) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{18} +} + +func (x *ComponentTarget) GetIdentifier() isComponentTarget_Identifier { + if x != nil { + return x.Identifier + } + return nil +} + +func (x *ComponentTarget) GetId() *UUID { + if x != nil { + if x, ok := x.Identifier.(*ComponentTarget_Id); ok { + return x.Id + } + } + return nil +} + +func (x *ComponentTarget) GetExternal() *ExternalRef { + if x != nil { + if x, ok := x.Identifier.(*ComponentTarget_External); ok { + return x.External + } + } + return nil +} + +type isComponentTarget_Identifier interface { + isComponentTarget_Identifier() +} + +type ComponentTarget_Id struct { + Id *UUID `protobuf:"bytes,1,opt,name=id,proto3,oneof"` // Component UUID +} + +type ComponentTarget_External struct { + External *ExternalRef `protobuf:"bytes,2,opt,name=external,proto3,oneof"` // External system reference +} func (*ComponentTarget_Id) isComponentTarget_Identifier() {} @@ -1980,7 +2499,7 @@ type ExternalRef struct { func (x *ExternalRef) Reset() { *x = ExternalRef{} - mi := &file_flow_proto_msgTypes[16] + mi := &file_flow_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1992,7 +2511,7 @@ func (x *ExternalRef) String() string { func (*ExternalRef) ProtoMessage() {} func (x *ExternalRef) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[16] + mi := &file_flow_proto_msgTypes[19] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2005,7 +2524,7 @@ func (x *ExternalRef) ProtoReflect() protoreflect.Message { // Deprecated: Use ExternalRef.ProtoReflect.Descriptor instead. func (*ExternalRef) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{16} + return file_flow_proto_rawDescGZIP(), []int{19} } func (x *ExternalRef) GetType() ComponentType { @@ -2031,7 +2550,7 @@ type NVLDomain struct { func (x *NVLDomain) Reset() { *x = NVLDomain{} - mi := &file_flow_proto_msgTypes[17] + mi := &file_flow_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2043,7 +2562,7 @@ func (x *NVLDomain) String() string { func (*NVLDomain) ProtoMessage() {} func (x *NVLDomain) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[17] + mi := &file_flow_proto_msgTypes[20] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2056,7 +2575,7 @@ func (x *NVLDomain) ProtoReflect() protoreflect.Message { // Deprecated: Use NVLDomain.ProtoReflect.Descriptor instead. func (*NVLDomain) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{17} + return file_flow_proto_rawDescGZIP(), []int{20} } func (x *NVLDomain) GetIdentifier() *Identifier { @@ -2076,7 +2595,7 @@ type Pagination struct { func (x *Pagination) Reset() { *x = Pagination{} - mi := &file_flow_proto_msgTypes[18] + mi := &file_flow_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2088,7 +2607,7 @@ func (x *Pagination) String() string { func (*Pagination) ProtoMessage() {} func (x *Pagination) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[18] + mi := &file_flow_proto_msgTypes[21] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2101,7 +2620,7 @@ func (x *Pagination) ProtoReflect() protoreflect.Message { // Deprecated: Use Pagination.ProtoReflect.Descriptor instead. func (*Pagination) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{18} + return file_flow_proto_rawDescGZIP(), []int{21} } func (x *Pagination) GetOffset() int32 { @@ -2129,7 +2648,7 @@ type StringQueryInfo struct { func (x *StringQueryInfo) Reset() { *x = StringQueryInfo{} - mi := &file_flow_proto_msgTypes[19] + mi := &file_flow_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2141,7 +2660,7 @@ func (x *StringQueryInfo) String() string { func (*StringQueryInfo) ProtoMessage() {} func (x *StringQueryInfo) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[19] + mi := &file_flow_proto_msgTypes[22] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2154,7 +2673,7 @@ func (x *StringQueryInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use StringQueryInfo.ProtoReflect.Descriptor instead. func (*StringQueryInfo) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{19} + return file_flow_proto_rawDescGZIP(), []int{22} } func (x *StringQueryInfo) GetPatterns() []string { @@ -2193,7 +2712,7 @@ type Filter struct { func (x *Filter) Reset() { *x = Filter{} - mi := &file_flow_proto_msgTypes[20] + mi := &file_flow_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2205,7 +2724,7 @@ func (x *Filter) String() string { func (*Filter) ProtoMessage() {} func (x *Filter) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[20] + mi := &file_flow_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2218,7 +2737,7 @@ func (x *Filter) ProtoReflect() protoreflect.Message { // Deprecated: Use Filter.ProtoReflect.Descriptor instead. func (*Filter) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{20} + return file_flow_proto_rawDescGZIP(), []int{23} } func (x *Filter) GetField() isFilter_Field { @@ -2284,7 +2803,7 @@ type OrderBy struct { func (x *OrderBy) Reset() { *x = OrderBy{} - mi := &file_flow_proto_msgTypes[21] + mi := &file_flow_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2296,7 +2815,7 @@ func (x *OrderBy) String() string { func (*OrderBy) ProtoMessage() {} func (x *OrderBy) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[21] + mi := &file_flow_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2309,7 +2828,7 @@ func (x *OrderBy) ProtoReflect() protoreflect.Message { // Deprecated: Use OrderBy.ProtoReflect.Descriptor instead. func (*OrderBy) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{21} + return file_flow_proto_rawDescGZIP(), []int{24} } func (x *OrderBy) GetField() isOrderBy_Field { @@ -2388,7 +2907,7 @@ type Task struct { func (x *Task) Reset() { *x = Task{} - mi := &file_flow_proto_msgTypes[22] + mi := &file_flow_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2400,7 +2919,7 @@ func (x *Task) String() string { func (*Task) ProtoMessage() {} func (x *Task) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[22] + mi := &file_flow_proto_msgTypes[25] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2413,7 +2932,7 @@ func (x *Task) ProtoReflect() protoreflect.Message { // Deprecated: Use Task.ProtoReflect.Descriptor instead. func (*Task) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{22} + return file_flow_proto_rawDescGZIP(), []int{25} } func (x *Task) GetId() *UUID { @@ -2537,7 +3056,7 @@ type CreateExpectedRackRequest struct { func (x *CreateExpectedRackRequest) Reset() { *x = CreateExpectedRackRequest{} - mi := &file_flow_proto_msgTypes[23] + mi := &file_flow_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2549,7 +3068,7 @@ func (x *CreateExpectedRackRequest) String() string { func (*CreateExpectedRackRequest) ProtoMessage() {} func (x *CreateExpectedRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[23] + mi := &file_flow_proto_msgTypes[26] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2562,7 +3081,7 @@ func (x *CreateExpectedRackRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateExpectedRackRequest.ProtoReflect.Descriptor instead. func (*CreateExpectedRackRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{23} + return file_flow_proto_rawDescGZIP(), []int{26} } func (x *CreateExpectedRackRequest) GetRack() *Rack { @@ -2581,7 +3100,7 @@ type CreateExpectedRackResponse struct { func (x *CreateExpectedRackResponse) Reset() { *x = CreateExpectedRackResponse{} - mi := &file_flow_proto_msgTypes[24] + mi := &file_flow_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2593,7 +3112,7 @@ func (x *CreateExpectedRackResponse) String() string { func (*CreateExpectedRackResponse) ProtoMessage() {} func (x *CreateExpectedRackResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[24] + mi := &file_flow_proto_msgTypes[27] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2606,7 +3125,7 @@ func (x *CreateExpectedRackResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateExpectedRackResponse.ProtoReflect.Descriptor instead. func (*CreateExpectedRackResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{24} + return file_flow_proto_rawDescGZIP(), []int{27} } func (x *CreateExpectedRackResponse) GetId() *UUID { @@ -2626,7 +3145,7 @@ type GetRackInfoByIDRequest struct { func (x *GetRackInfoByIDRequest) Reset() { *x = GetRackInfoByIDRequest{} - mi := &file_flow_proto_msgTypes[25] + mi := &file_flow_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2638,7 +3157,7 @@ func (x *GetRackInfoByIDRequest) String() string { func (*GetRackInfoByIDRequest) ProtoMessage() {} func (x *GetRackInfoByIDRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[25] + mi := &file_flow_proto_msgTypes[28] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2651,7 +3170,7 @@ func (x *GetRackInfoByIDRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRackInfoByIDRequest.ProtoReflect.Descriptor instead. func (*GetRackInfoByIDRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{25} + return file_flow_proto_rawDescGZIP(), []int{28} } func (x *GetRackInfoByIDRequest) GetId() *UUID { @@ -2678,7 +3197,7 @@ type GetRackInfoBySerialRequest struct { func (x *GetRackInfoBySerialRequest) Reset() { *x = GetRackInfoBySerialRequest{} - mi := &file_flow_proto_msgTypes[26] + mi := &file_flow_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2690,7 +3209,7 @@ func (x *GetRackInfoBySerialRequest) String() string { func (*GetRackInfoBySerialRequest) ProtoMessage() {} func (x *GetRackInfoBySerialRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[26] + mi := &file_flow_proto_msgTypes[29] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2703,7 +3222,7 @@ func (x *GetRackInfoBySerialRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRackInfoBySerialRequest.ProtoReflect.Descriptor instead. func (*GetRackInfoBySerialRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{26} + return file_flow_proto_rawDescGZIP(), []int{29} } func (x *GetRackInfoBySerialRequest) GetSerialInfo() *DeviceSerialInfo { @@ -2729,7 +3248,7 @@ type GetRackInfoResponse struct { func (x *GetRackInfoResponse) Reset() { *x = GetRackInfoResponse{} - mi := &file_flow_proto_msgTypes[27] + mi := &file_flow_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2741,7 +3260,7 @@ func (x *GetRackInfoResponse) String() string { func (*GetRackInfoResponse) ProtoMessage() {} func (x *GetRackInfoResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[27] + mi := &file_flow_proto_msgTypes[30] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2754,7 +3273,7 @@ func (x *GetRackInfoResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRackInfoResponse.ProtoReflect.Descriptor instead. func (*GetRackInfoResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{27} + return file_flow_proto_rawDescGZIP(), []int{30} } func (x *GetRackInfoResponse) GetRack() *Rack { @@ -2773,7 +3292,7 @@ type PatchRackRequest struct { func (x *PatchRackRequest) Reset() { *x = PatchRackRequest{} - mi := &file_flow_proto_msgTypes[28] + mi := &file_flow_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2785,7 +3304,7 @@ func (x *PatchRackRequest) String() string { func (*PatchRackRequest) ProtoMessage() {} func (x *PatchRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[28] + mi := &file_flow_proto_msgTypes[31] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2798,7 +3317,7 @@ func (x *PatchRackRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchRackRequest.ProtoReflect.Descriptor instead. func (*PatchRackRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{28} + return file_flow_proto_rawDescGZIP(), []int{31} } func (x *PatchRackRequest) GetRack() *Rack { @@ -2817,7 +3336,7 @@ type PatchRackResponse struct { func (x *PatchRackResponse) Reset() { *x = PatchRackResponse{} - mi := &file_flow_proto_msgTypes[29] + mi := &file_flow_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2829,7 +3348,7 @@ func (x *PatchRackResponse) String() string { func (*PatchRackResponse) ProtoMessage() {} func (x *PatchRackResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[29] + mi := &file_flow_proto_msgTypes[32] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2842,7 +3361,7 @@ func (x *PatchRackResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchRackResponse.ProtoReflect.Descriptor instead. func (*PatchRackResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{29} + return file_flow_proto_rawDescGZIP(), []int{32} } func (x *PatchRackResponse) GetReport() string { @@ -2862,7 +3381,7 @@ type GetComponentInfoByIDRequest struct { func (x *GetComponentInfoByIDRequest) Reset() { *x = GetComponentInfoByIDRequest{} - mi := &file_flow_proto_msgTypes[30] + mi := &file_flow_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2874,7 +3393,7 @@ func (x *GetComponentInfoByIDRequest) String() string { func (*GetComponentInfoByIDRequest) ProtoMessage() {} func (x *GetComponentInfoByIDRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[30] + mi := &file_flow_proto_msgTypes[33] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2887,7 +3406,7 @@ func (x *GetComponentInfoByIDRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetComponentInfoByIDRequest.ProtoReflect.Descriptor instead. func (*GetComponentInfoByIDRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{30} + return file_flow_proto_rawDescGZIP(), []int{33} } func (x *GetComponentInfoByIDRequest) GetId() *UUID { @@ -2914,7 +3433,7 @@ type GetComponentInfoBySerialRequest struct { func (x *GetComponentInfoBySerialRequest) Reset() { *x = GetComponentInfoBySerialRequest{} - mi := &file_flow_proto_msgTypes[31] + mi := &file_flow_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2926,7 +3445,7 @@ func (x *GetComponentInfoBySerialRequest) String() string { func (*GetComponentInfoBySerialRequest) ProtoMessage() {} func (x *GetComponentInfoBySerialRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[31] + mi := &file_flow_proto_msgTypes[34] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2939,7 +3458,7 @@ func (x *GetComponentInfoBySerialRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetComponentInfoBySerialRequest.ProtoReflect.Descriptor instead. func (*GetComponentInfoBySerialRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{31} + return file_flow_proto_rawDescGZIP(), []int{34} } func (x *GetComponentInfoBySerialRequest) GetSerialInfo() *DeviceSerialInfo { @@ -2966,7 +3485,7 @@ type GetComponentInfoResponse struct { func (x *GetComponentInfoResponse) Reset() { *x = GetComponentInfoResponse{} - mi := &file_flow_proto_msgTypes[32] + mi := &file_flow_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2978,7 +3497,7 @@ func (x *GetComponentInfoResponse) String() string { func (*GetComponentInfoResponse) ProtoMessage() {} func (x *GetComponentInfoResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[32] + mi := &file_flow_proto_msgTypes[35] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2991,7 +3510,7 @@ func (x *GetComponentInfoResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetComponentInfoResponse.ProtoReflect.Descriptor instead. func (*GetComponentInfoResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{32} + return file_flow_proto_rawDescGZIP(), []int{35} } func (x *GetComponentInfoResponse) GetComponent() *Component { @@ -3020,7 +3539,7 @@ type GetListOfRacksRequest struct { func (x *GetListOfRacksRequest) Reset() { *x = GetListOfRacksRequest{} - mi := &file_flow_proto_msgTypes[33] + mi := &file_flow_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3032,7 +3551,7 @@ func (x *GetListOfRacksRequest) String() string { func (*GetListOfRacksRequest) ProtoMessage() {} func (x *GetListOfRacksRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[33] + mi := &file_flow_proto_msgTypes[36] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3045,7 +3564,7 @@ func (x *GetListOfRacksRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetListOfRacksRequest.ProtoReflect.Descriptor instead. func (*GetListOfRacksRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{33} + return file_flow_proto_rawDescGZIP(), []int{36} } func (x *GetListOfRacksRequest) GetFilters() []*Filter { @@ -3086,7 +3605,7 @@ type GetListOfRacksResponse struct { func (x *GetListOfRacksResponse) Reset() { *x = GetListOfRacksResponse{} - mi := &file_flow_proto_msgTypes[34] + mi := &file_flow_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3098,7 +3617,7 @@ func (x *GetListOfRacksResponse) String() string { func (*GetListOfRacksResponse) ProtoMessage() {} func (x *GetListOfRacksResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[34] + mi := &file_flow_proto_msgTypes[37] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3111,7 +3630,7 @@ func (x *GetListOfRacksResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetListOfRacksResponse.ProtoReflect.Descriptor instead. func (*GetListOfRacksResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{34} + return file_flow_proto_rawDescGZIP(), []int{37} } func (x *GetListOfRacksResponse) GetRacks() []*Rack { @@ -3137,7 +3656,7 @@ type CreateNVLDomainRequest struct { func (x *CreateNVLDomainRequest) Reset() { *x = CreateNVLDomainRequest{} - mi := &file_flow_proto_msgTypes[35] + mi := &file_flow_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3149,7 +3668,7 @@ func (x *CreateNVLDomainRequest) String() string { func (*CreateNVLDomainRequest) ProtoMessage() {} func (x *CreateNVLDomainRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[35] + mi := &file_flow_proto_msgTypes[38] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3162,7 +3681,7 @@ func (x *CreateNVLDomainRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateNVLDomainRequest.ProtoReflect.Descriptor instead. func (*CreateNVLDomainRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{35} + return file_flow_proto_rawDescGZIP(), []int{38} } func (x *CreateNVLDomainRequest) GetNvlDomain() *NVLDomain { @@ -3181,7 +3700,7 @@ type CreateNVLDomainResponse struct { func (x *CreateNVLDomainResponse) Reset() { *x = CreateNVLDomainResponse{} - mi := &file_flow_proto_msgTypes[36] + mi := &file_flow_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3193,7 +3712,7 @@ func (x *CreateNVLDomainResponse) String() string { func (*CreateNVLDomainResponse) ProtoMessage() {} func (x *CreateNVLDomainResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[36] + mi := &file_flow_proto_msgTypes[39] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3206,7 +3725,7 @@ func (x *CreateNVLDomainResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateNVLDomainResponse.ProtoReflect.Descriptor instead. func (*CreateNVLDomainResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{36} + return file_flow_proto_rawDescGZIP(), []int{39} } func (x *CreateNVLDomainResponse) GetId() *UUID { @@ -3226,7 +3745,7 @@ type AttachRacksToNVLDomainRequest struct { func (x *AttachRacksToNVLDomainRequest) Reset() { *x = AttachRacksToNVLDomainRequest{} - mi := &file_flow_proto_msgTypes[37] + mi := &file_flow_proto_msgTypes[40] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3238,7 +3757,7 @@ func (x *AttachRacksToNVLDomainRequest) String() string { func (*AttachRacksToNVLDomainRequest) ProtoMessage() {} func (x *AttachRacksToNVLDomainRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[37] + mi := &file_flow_proto_msgTypes[40] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3251,7 +3770,7 @@ func (x *AttachRacksToNVLDomainRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AttachRacksToNVLDomainRequest.ProtoReflect.Descriptor instead. func (*AttachRacksToNVLDomainRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{37} + return file_flow_proto_rawDescGZIP(), []int{40} } func (x *AttachRacksToNVLDomainRequest) GetNvlDomainIdentifier() *Identifier { @@ -3277,7 +3796,7 @@ type DetachRacksFromNVLDomainRequest struct { func (x *DetachRacksFromNVLDomainRequest) Reset() { *x = DetachRacksFromNVLDomainRequest{} - mi := &file_flow_proto_msgTypes[38] + mi := &file_flow_proto_msgTypes[41] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3289,7 +3808,7 @@ func (x *DetachRacksFromNVLDomainRequest) String() string { func (*DetachRacksFromNVLDomainRequest) ProtoMessage() {} func (x *DetachRacksFromNVLDomainRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[38] + mi := &file_flow_proto_msgTypes[41] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3302,7 +3821,7 @@ func (x *DetachRacksFromNVLDomainRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DetachRacksFromNVLDomainRequest.ProtoReflect.Descriptor instead. func (*DetachRacksFromNVLDomainRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{38} + return file_flow_proto_rawDescGZIP(), []int{41} } func (x *DetachRacksFromNVLDomainRequest) GetRackIdentifiers() []*Identifier { @@ -3322,7 +3841,7 @@ type GetListOfNVLDomainsRequest struct { func (x *GetListOfNVLDomainsRequest) Reset() { *x = GetListOfNVLDomainsRequest{} - mi := &file_flow_proto_msgTypes[39] + mi := &file_flow_proto_msgTypes[42] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3334,7 +3853,7 @@ func (x *GetListOfNVLDomainsRequest) String() string { func (*GetListOfNVLDomainsRequest) ProtoMessage() {} func (x *GetListOfNVLDomainsRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[39] + mi := &file_flow_proto_msgTypes[42] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3347,7 +3866,7 @@ func (x *GetListOfNVLDomainsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetListOfNVLDomainsRequest.ProtoReflect.Descriptor instead. func (*GetListOfNVLDomainsRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{39} + return file_flow_proto_rawDescGZIP(), []int{42} } func (x *GetListOfNVLDomainsRequest) GetInfo() *StringQueryInfo { @@ -3374,7 +3893,7 @@ type GetListOfNVLDomainsResponse struct { func (x *GetListOfNVLDomainsResponse) Reset() { *x = GetListOfNVLDomainsResponse{} - mi := &file_flow_proto_msgTypes[40] + mi := &file_flow_proto_msgTypes[43] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3386,7 +3905,7 @@ func (x *GetListOfNVLDomainsResponse) String() string { func (*GetListOfNVLDomainsResponse) ProtoMessage() {} func (x *GetListOfNVLDomainsResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[40] + mi := &file_flow_proto_msgTypes[43] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3399,7 +3918,7 @@ func (x *GetListOfNVLDomainsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetListOfNVLDomainsResponse.ProtoReflect.Descriptor instead. func (*GetListOfNVLDomainsResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{40} + return file_flow_proto_rawDescGZIP(), []int{43} } func (x *GetListOfNVLDomainsResponse) GetNvlDomains() []*NVLDomain { @@ -3425,7 +3944,7 @@ type GetRacksForNVLDomainRequest struct { func (x *GetRacksForNVLDomainRequest) Reset() { *x = GetRacksForNVLDomainRequest{} - mi := &file_flow_proto_msgTypes[41] + mi := &file_flow_proto_msgTypes[44] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3437,7 +3956,7 @@ func (x *GetRacksForNVLDomainRequest) String() string { func (*GetRacksForNVLDomainRequest) ProtoMessage() {} func (x *GetRacksForNVLDomainRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[41] + mi := &file_flow_proto_msgTypes[44] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3450,7 +3969,7 @@ func (x *GetRacksForNVLDomainRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRacksForNVLDomainRequest.ProtoReflect.Descriptor instead. func (*GetRacksForNVLDomainRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{41} + return file_flow_proto_rawDescGZIP(), []int{44} } func (x *GetRacksForNVLDomainRequest) GetNvlDomainIdentifier() *Identifier { @@ -3469,7 +3988,7 @@ type GetRacksForNVLDomainResponse struct { func (x *GetRacksForNVLDomainResponse) Reset() { *x = GetRacksForNVLDomainResponse{} - mi := &file_flow_proto_msgTypes[42] + mi := &file_flow_proto_msgTypes[45] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3481,7 +4000,7 @@ func (x *GetRacksForNVLDomainResponse) String() string { func (*GetRacksForNVLDomainResponse) ProtoMessage() {} func (x *GetRacksForNVLDomainResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[42] + mi := &file_flow_proto_msgTypes[45] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3494,7 +4013,7 @@ func (x *GetRacksForNVLDomainResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRacksForNVLDomainResponse.ProtoReflect.Descriptor instead. func (*GetRacksForNVLDomainResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{42} + return file_flow_proto_rawDescGZIP(), []int{45} } func (x *GetRacksForNVLDomainResponse) GetRacks() []*Rack { @@ -3537,7 +4056,7 @@ type UpgradeFirmwareRequest struct { func (x *UpgradeFirmwareRequest) Reset() { *x = UpgradeFirmwareRequest{} - mi := &file_flow_proto_msgTypes[43] + mi := &file_flow_proto_msgTypes[46] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3549,7 +4068,7 @@ func (x *UpgradeFirmwareRequest) String() string { func (*UpgradeFirmwareRequest) ProtoMessage() {} func (x *UpgradeFirmwareRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[43] + mi := &file_flow_proto_msgTypes[46] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3562,7 +4081,7 @@ func (x *UpgradeFirmwareRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpgradeFirmwareRequest.ProtoReflect.Descriptor instead. func (*UpgradeFirmwareRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{43} + return file_flow_proto_rawDescGZIP(), []int{46} } func (x *UpgradeFirmwareRequest) GetTargetSpec() *OperationTargetSpec { @@ -3641,7 +4160,7 @@ type GetComponentsRequest struct { func (x *GetComponentsRequest) Reset() { *x = GetComponentsRequest{} - mi := &file_flow_proto_msgTypes[44] + mi := &file_flow_proto_msgTypes[47] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3653,7 +4172,7 @@ func (x *GetComponentsRequest) String() string { func (*GetComponentsRequest) ProtoMessage() {} func (x *GetComponentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[44] + mi := &file_flow_proto_msgTypes[47] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3666,7 +4185,7 @@ func (x *GetComponentsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetComponentsRequest.ProtoReflect.Descriptor instead. func (*GetComponentsRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{44} + return file_flow_proto_rawDescGZIP(), []int{47} } func (x *GetComponentsRequest) GetTargetSpec() *OperationTargetSpec { @@ -3707,7 +4226,7 @@ type GetComponentsResponse struct { func (x *GetComponentsResponse) Reset() { *x = GetComponentsResponse{} - mi := &file_flow_proto_msgTypes[45] + mi := &file_flow_proto_msgTypes[48] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3719,7 +4238,7 @@ func (x *GetComponentsResponse) String() string { func (*GetComponentsResponse) ProtoMessage() {} func (x *GetComponentsResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[45] + mi := &file_flow_proto_msgTypes[48] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3732,7 +4251,7 @@ func (x *GetComponentsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetComponentsResponse.ProtoReflect.Descriptor instead. func (*GetComponentsResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{45} + return file_flow_proto_rawDescGZIP(), []int{48} } func (x *GetComponentsResponse) GetComponents() []*Component { @@ -3761,7 +4280,7 @@ type ValidateComponentsRequest struct { func (x *ValidateComponentsRequest) Reset() { *x = ValidateComponentsRequest{} - mi := &file_flow_proto_msgTypes[46] + mi := &file_flow_proto_msgTypes[49] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3773,7 +4292,7 @@ func (x *ValidateComponentsRequest) String() string { func (*ValidateComponentsRequest) ProtoMessage() {} func (x *ValidateComponentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[46] + mi := &file_flow_proto_msgTypes[49] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3786,7 +4305,7 @@ func (x *ValidateComponentsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ValidateComponentsRequest.ProtoReflect.Descriptor instead. func (*ValidateComponentsRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{46} + return file_flow_proto_rawDescGZIP(), []int{49} } func (x *ValidateComponentsRequest) GetTargetSpec() *OperationTargetSpec { @@ -3832,7 +4351,7 @@ type ValidateComponentsResponse struct { func (x *ValidateComponentsResponse) Reset() { *x = ValidateComponentsResponse{} - mi := &file_flow_proto_msgTypes[47] + mi := &file_flow_proto_msgTypes[50] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3844,7 +4363,7 @@ func (x *ValidateComponentsResponse) String() string { func (*ValidateComponentsResponse) ProtoMessage() {} func (x *ValidateComponentsResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[47] + mi := &file_flow_proto_msgTypes[50] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3857,7 +4376,7 @@ func (x *ValidateComponentsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ValidateComponentsResponse.ProtoReflect.Descriptor instead. func (*ValidateComponentsResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{47} + return file_flow_proto_rawDescGZIP(), []int{50} } func (x *ValidateComponentsResponse) GetDiffs() []*ComponentDiff { @@ -3916,7 +4435,7 @@ type ComponentDiff struct { func (x *ComponentDiff) Reset() { *x = ComponentDiff{} - mi := &file_flow_proto_msgTypes[48] + mi := &file_flow_proto_msgTypes[51] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3928,7 +4447,7 @@ func (x *ComponentDiff) String() string { func (*ComponentDiff) ProtoMessage() {} func (x *ComponentDiff) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[48] + mi := &file_flow_proto_msgTypes[51] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3941,7 +4460,7 @@ func (x *ComponentDiff) ProtoReflect() protoreflect.Message { // Deprecated: Use ComponentDiff.ProtoReflect.Descriptor instead. func (*ComponentDiff) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{48} + return file_flow_proto_rawDescGZIP(), []int{51} } func (x *ComponentDiff) GetType() DiffType { @@ -3997,7 +4516,7 @@ type FieldDiff struct { func (x *FieldDiff) Reset() { *x = FieldDiff{} - mi := &file_flow_proto_msgTypes[49] + mi := &file_flow_proto_msgTypes[52] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4009,7 +4528,7 @@ func (x *FieldDiff) String() string { func (*FieldDiff) ProtoMessage() {} func (x *FieldDiff) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[49] + mi := &file_flow_proto_msgTypes[52] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4022,7 +4541,7 @@ func (x *FieldDiff) ProtoReflect() protoreflect.Message { // Deprecated: Use FieldDiff.ProtoReflect.Descriptor instead. func (*FieldDiff) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{49} + return file_flow_proto_rawDescGZIP(), []int{52} } func (x *FieldDiff) GetFieldName() string { @@ -4059,7 +4578,7 @@ type AddComponentRequest struct { func (x *AddComponentRequest) Reset() { *x = AddComponentRequest{} - mi := &file_flow_proto_msgTypes[50] + mi := &file_flow_proto_msgTypes[53] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4071,7 +4590,7 @@ func (x *AddComponentRequest) String() string { func (*AddComponentRequest) ProtoMessage() {} func (x *AddComponentRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[50] + mi := &file_flow_proto_msgTypes[53] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4084,7 +4603,7 @@ func (x *AddComponentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AddComponentRequest.ProtoReflect.Descriptor instead. func (*AddComponentRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{50} + return file_flow_proto_rawDescGZIP(), []int{53} } func (x *AddComponentRequest) GetComponent() *Component { @@ -4103,7 +4622,7 @@ type AddComponentResponse struct { func (x *AddComponentResponse) Reset() { *x = AddComponentResponse{} - mi := &file_flow_proto_msgTypes[51] + mi := &file_flow_proto_msgTypes[54] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4115,7 +4634,7 @@ func (x *AddComponentResponse) String() string { func (*AddComponentResponse) ProtoMessage() {} func (x *AddComponentResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[51] + mi := &file_flow_proto_msgTypes[54] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4128,7 +4647,7 @@ func (x *AddComponentResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AddComponentResponse.ProtoReflect.Descriptor instead. func (*AddComponentResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{51} + return file_flow_proto_rawDescGZIP(), []int{54} } func (x *AddComponentResponse) GetComponent() *Component { @@ -4148,7 +4667,7 @@ type DeleteComponentRequest struct { func (x *DeleteComponentRequest) Reset() { *x = DeleteComponentRequest{} - mi := &file_flow_proto_msgTypes[52] + mi := &file_flow_proto_msgTypes[55] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4160,7 +4679,7 @@ func (x *DeleteComponentRequest) String() string { func (*DeleteComponentRequest) ProtoMessage() {} func (x *DeleteComponentRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[52] + mi := &file_flow_proto_msgTypes[55] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4173,7 +4692,7 @@ func (x *DeleteComponentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteComponentRequest.ProtoReflect.Descriptor instead. func (*DeleteComponentRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{52} + return file_flow_proto_rawDescGZIP(), []int{55} } func (x *DeleteComponentRequest) GetId() *UUID { @@ -4191,7 +4710,7 @@ type DeleteComponentResponse struct { func (x *DeleteComponentResponse) Reset() { *x = DeleteComponentResponse{} - mi := &file_flow_proto_msgTypes[53] + mi := &file_flow_proto_msgTypes[56] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4203,7 +4722,7 @@ func (x *DeleteComponentResponse) String() string { func (*DeleteComponentResponse) ProtoMessage() {} func (x *DeleteComponentResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[53] + mi := &file_flow_proto_msgTypes[56] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4216,7 +4735,7 @@ func (x *DeleteComponentResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteComponentResponse.ProtoReflect.Descriptor instead. func (*DeleteComponentResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{53} + return file_flow_proto_rawDescGZIP(), []int{56} } // DeleteRack - soft-delete a rack and cascade to its components @@ -4229,7 +4748,7 @@ type DeleteRackRequest struct { func (x *DeleteRackRequest) Reset() { *x = DeleteRackRequest{} - mi := &file_flow_proto_msgTypes[54] + mi := &file_flow_proto_msgTypes[57] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4241,7 +4760,7 @@ func (x *DeleteRackRequest) String() string { func (*DeleteRackRequest) ProtoMessage() {} func (x *DeleteRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[54] + mi := &file_flow_proto_msgTypes[57] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4254,7 +4773,7 @@ func (x *DeleteRackRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteRackRequest.ProtoReflect.Descriptor instead. func (*DeleteRackRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{54} + return file_flow_proto_rawDescGZIP(), []int{57} } func (x *DeleteRackRequest) GetId() *UUID { @@ -4272,7 +4791,7 @@ type DeleteRackResponse struct { func (x *DeleteRackResponse) Reset() { *x = DeleteRackResponse{} - mi := &file_flow_proto_msgTypes[55] + mi := &file_flow_proto_msgTypes[58] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4284,7 +4803,7 @@ func (x *DeleteRackResponse) String() string { func (*DeleteRackResponse) ProtoMessage() {} func (x *DeleteRackResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[55] + mi := &file_flow_proto_msgTypes[58] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4297,7 +4816,7 @@ func (x *DeleteRackResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteRackResponse.ProtoReflect.Descriptor instead. func (*DeleteRackResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{55} + return file_flow_proto_rawDescGZIP(), []int{58} } // PurgeRack - permanently remove a soft-deleted rack and its components @@ -4310,7 +4829,7 @@ type PurgeRackRequest struct { func (x *PurgeRackRequest) Reset() { *x = PurgeRackRequest{} - mi := &file_flow_proto_msgTypes[56] + mi := &file_flow_proto_msgTypes[59] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4322,7 +4841,7 @@ func (x *PurgeRackRequest) String() string { func (*PurgeRackRequest) ProtoMessage() {} func (x *PurgeRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[56] + mi := &file_flow_proto_msgTypes[59] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4335,7 +4854,7 @@ func (x *PurgeRackRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PurgeRackRequest.ProtoReflect.Descriptor instead. func (*PurgeRackRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{56} + return file_flow_proto_rawDescGZIP(), []int{59} } func (x *PurgeRackRequest) GetId() *UUID { @@ -4353,7 +4872,7 @@ type PurgeRackResponse struct { func (x *PurgeRackResponse) Reset() { *x = PurgeRackResponse{} - mi := &file_flow_proto_msgTypes[57] + mi := &file_flow_proto_msgTypes[60] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4365,7 +4884,7 @@ func (x *PurgeRackResponse) String() string { func (*PurgeRackResponse) ProtoMessage() {} func (x *PurgeRackResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[57] + mi := &file_flow_proto_msgTypes[60] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4378,7 +4897,7 @@ func (x *PurgeRackResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use PurgeRackResponse.ProtoReflect.Descriptor instead. func (*PurgeRackResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{57} + return file_flow_proto_rawDescGZIP(), []int{60} } // PurgeComponent - permanently remove a soft-deleted component @@ -4391,7 +4910,7 @@ type PurgeComponentRequest struct { func (x *PurgeComponentRequest) Reset() { *x = PurgeComponentRequest{} - mi := &file_flow_proto_msgTypes[58] + mi := &file_flow_proto_msgTypes[61] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4403,7 +4922,7 @@ func (x *PurgeComponentRequest) String() string { func (*PurgeComponentRequest) ProtoMessage() {} func (x *PurgeComponentRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[58] + mi := &file_flow_proto_msgTypes[61] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4416,7 +4935,7 @@ func (x *PurgeComponentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PurgeComponentRequest.ProtoReflect.Descriptor instead. func (*PurgeComponentRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{58} + return file_flow_proto_rawDescGZIP(), []int{61} } func (x *PurgeComponentRequest) GetId() *UUID { @@ -4434,7 +4953,7 @@ type PurgeComponentResponse struct { func (x *PurgeComponentResponse) Reset() { *x = PurgeComponentResponse{} - mi := &file_flow_proto_msgTypes[59] + mi := &file_flow_proto_msgTypes[62] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4446,7 +4965,7 @@ func (x *PurgeComponentResponse) String() string { func (*PurgeComponentResponse) ProtoMessage() {} func (x *PurgeComponentResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[59] + mi := &file_flow_proto_msgTypes[62] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4459,7 +4978,7 @@ func (x *PurgeComponentResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use PurgeComponentResponse.ProtoReflect.Descriptor instead. func (*PurgeComponentResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{59} + return file_flow_proto_rawDescGZIP(), []int{62} } // PatchComponent - update a single component's fields @@ -4477,7 +4996,7 @@ type PatchComponentRequest struct { func (x *PatchComponentRequest) Reset() { *x = PatchComponentRequest{} - mi := &file_flow_proto_msgTypes[60] + mi := &file_flow_proto_msgTypes[63] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4489,7 +5008,7 @@ func (x *PatchComponentRequest) String() string { func (*PatchComponentRequest) ProtoMessage() {} func (x *PatchComponentRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[60] + mi := &file_flow_proto_msgTypes[63] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4502,7 +5021,7 @@ func (x *PatchComponentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchComponentRequest.ProtoReflect.Descriptor instead. func (*PatchComponentRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{60} + return file_flow_proto_rawDescGZIP(), []int{63} } func (x *PatchComponentRequest) GetId() *UUID { @@ -4556,7 +5075,7 @@ type PatchComponentResponse struct { func (x *PatchComponentResponse) Reset() { *x = PatchComponentResponse{} - mi := &file_flow_proto_msgTypes[61] + mi := &file_flow_proto_msgTypes[64] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4568,7 +5087,7 @@ func (x *PatchComponentResponse) String() string { func (*PatchComponentResponse) ProtoMessage() {} func (x *PatchComponentResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[61] + mi := &file_flow_proto_msgTypes[64] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4581,7 +5100,7 @@ func (x *PatchComponentResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchComponentResponse.ProtoReflect.Descriptor instead. func (*PatchComponentResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{61} + return file_flow_proto_rawDescGZIP(), []int{64} } func (x *PatchComponentResponse) GetComponent() *Component { @@ -4600,7 +5119,7 @@ type SubmitTaskResponse struct { func (x *SubmitTaskResponse) Reset() { *x = SubmitTaskResponse{} - mi := &file_flow_proto_msgTypes[62] + mi := &file_flow_proto_msgTypes[65] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4612,7 +5131,7 @@ func (x *SubmitTaskResponse) String() string { func (*SubmitTaskResponse) ProtoMessage() {} func (x *SubmitTaskResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[62] + mi := &file_flow_proto_msgTypes[65] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4625,7 +5144,7 @@ func (x *SubmitTaskResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SubmitTaskResponse.ProtoReflect.Descriptor instead. func (*SubmitTaskResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{62} + return file_flow_proto_rawDescGZIP(), []int{65} } func (x *SubmitTaskResponse) GetTaskIds() []*UUID { @@ -4651,7 +5170,7 @@ type QueueOptions struct { func (x *QueueOptions) Reset() { *x = QueueOptions{} - mi := &file_flow_proto_msgTypes[63] + mi := &file_flow_proto_msgTypes[66] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4663,7 +5182,7 @@ func (x *QueueOptions) String() string { func (*QueueOptions) ProtoMessage() {} func (x *QueueOptions) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[63] + mi := &file_flow_proto_msgTypes[66] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4676,7 +5195,7 @@ func (x *QueueOptions) ProtoReflect() protoreflect.Message { // Deprecated: Use QueueOptions.ProtoReflect.Descriptor instead. func (*QueueOptions) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{63} + return file_flow_proto_rawDescGZIP(), []int{66} } func (x *QueueOptions) GetConflictStrategy() ConflictStrategy { @@ -4712,7 +5231,7 @@ type PowerOnRackRequest struct { func (x *PowerOnRackRequest) Reset() { *x = PowerOnRackRequest{} - mi := &file_flow_proto_msgTypes[64] + mi := &file_flow_proto_msgTypes[67] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4724,7 +5243,7 @@ func (x *PowerOnRackRequest) String() string { func (*PowerOnRackRequest) ProtoMessage() {} func (x *PowerOnRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[64] + mi := &file_flow_proto_msgTypes[67] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4737,7 +5256,7 @@ func (x *PowerOnRackRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PowerOnRackRequest.ProtoReflect.Descriptor instead. func (*PowerOnRackRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{64} + return file_flow_proto_rawDescGZIP(), []int{67} } func (x *PowerOnRackRequest) GetTargetSpec() *OperationTargetSpec { @@ -4795,7 +5314,7 @@ type PowerOffRackRequest struct { func (x *PowerOffRackRequest) Reset() { *x = PowerOffRackRequest{} - mi := &file_flow_proto_msgTypes[65] + mi := &file_flow_proto_msgTypes[68] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4807,7 +5326,7 @@ func (x *PowerOffRackRequest) String() string { func (*PowerOffRackRequest) ProtoMessage() {} func (x *PowerOffRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[65] + mi := &file_flow_proto_msgTypes[68] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4820,7 +5339,7 @@ func (x *PowerOffRackRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PowerOffRackRequest.ProtoReflect.Descriptor instead. func (*PowerOffRackRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{65} + return file_flow_proto_rawDescGZIP(), []int{68} } func (x *PowerOffRackRequest) GetTargetSpec() *OperationTargetSpec { @@ -4885,7 +5404,7 @@ type PowerResetRackRequest struct { func (x *PowerResetRackRequest) Reset() { *x = PowerResetRackRequest{} - mi := &file_flow_proto_msgTypes[66] + mi := &file_flow_proto_msgTypes[69] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4897,7 +5416,7 @@ func (x *PowerResetRackRequest) String() string { func (*PowerResetRackRequest) ProtoMessage() {} func (x *PowerResetRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[66] + mi := &file_flow_proto_msgTypes[69] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4910,7 +5429,7 @@ func (x *PowerResetRackRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PowerResetRackRequest.ProtoReflect.Descriptor instead. func (*PowerResetRackRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{66} + return file_flow_proto_rawDescGZIP(), []int{69} } func (x *PowerResetRackRequest) GetTargetSpec() *OperationTargetSpec { @@ -4973,7 +5492,7 @@ type BringUpRackRequest struct { func (x *BringUpRackRequest) Reset() { *x = BringUpRackRequest{} - mi := &file_flow_proto_msgTypes[67] + mi := &file_flow_proto_msgTypes[70] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4985,7 +5504,7 @@ func (x *BringUpRackRequest) String() string { func (*BringUpRackRequest) ProtoMessage() {} func (x *BringUpRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[67] + mi := &file_flow_proto_msgTypes[70] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4998,7 +5517,7 @@ func (x *BringUpRackRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BringUpRackRequest.ProtoReflect.Descriptor instead. func (*BringUpRackRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{67} + return file_flow_proto_rawDescGZIP(), []int{70} } func (x *BringUpRackRequest) GetTargetSpec() *OperationTargetSpec { @@ -5041,7 +5560,7 @@ type IngestRackRequest struct { func (x *IngestRackRequest) Reset() { *x = IngestRackRequest{} - mi := &file_flow_proto_msgTypes[68] + mi := &file_flow_proto_msgTypes[71] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5053,7 +5572,7 @@ func (x *IngestRackRequest) String() string { func (*IngestRackRequest) ProtoMessage() {} func (x *IngestRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[68] + mi := &file_flow_proto_msgTypes[71] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5066,7 +5585,7 @@ func (x *IngestRackRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use IngestRackRequest.ProtoReflect.Descriptor instead. func (*IngestRackRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{68} + return file_flow_proto_rawDescGZIP(), []int{71} } func (x *IngestRackRequest) GetTargetSpec() *OperationTargetSpec { @@ -5125,7 +5644,7 @@ type ListTasksRequest struct { func (x *ListTasksRequest) Reset() { *x = ListTasksRequest{} - mi := &file_flow_proto_msgTypes[69] + mi := &file_flow_proto_msgTypes[72] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5137,7 +5656,7 @@ func (x *ListTasksRequest) String() string { func (*ListTasksRequest) ProtoMessage() {} func (x *ListTasksRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[69] + mi := &file_flow_proto_msgTypes[72] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5150,7 +5669,7 @@ func (x *ListTasksRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListTasksRequest.ProtoReflect.Descriptor instead. func (*ListTasksRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{69} + return file_flow_proto_rawDescGZIP(), []int{72} } func (x *ListTasksRequest) GetRackId() *UUID { @@ -5198,7 +5717,7 @@ type ListTasksResponse struct { func (x *ListTasksResponse) Reset() { *x = ListTasksResponse{} - mi := &file_flow_proto_msgTypes[70] + mi := &file_flow_proto_msgTypes[73] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5210,7 +5729,7 @@ func (x *ListTasksResponse) String() string { func (*ListTasksResponse) ProtoMessage() {} func (x *ListTasksResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[70] + mi := &file_flow_proto_msgTypes[73] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5223,7 +5742,7 @@ func (x *ListTasksResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListTasksResponse.ProtoReflect.Descriptor instead. func (*ListTasksResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{70} + return file_flow_proto_rawDescGZIP(), []int{73} } func (x *ListTasksResponse) GetTasks() []*Task { @@ -5249,7 +5768,7 @@ type GetTasksByIDsRequest struct { func (x *GetTasksByIDsRequest) Reset() { *x = GetTasksByIDsRequest{} - mi := &file_flow_proto_msgTypes[71] + mi := &file_flow_proto_msgTypes[74] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5261,7 +5780,7 @@ func (x *GetTasksByIDsRequest) String() string { func (*GetTasksByIDsRequest) ProtoMessage() {} func (x *GetTasksByIDsRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[71] + mi := &file_flow_proto_msgTypes[74] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5274,7 +5793,7 @@ func (x *GetTasksByIDsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetTasksByIDsRequest.ProtoReflect.Descriptor instead. func (*GetTasksByIDsRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{71} + return file_flow_proto_rawDescGZIP(), []int{74} } func (x *GetTasksByIDsRequest) GetTaskIds() []*UUID { @@ -5293,7 +5812,7 @@ type GetTasksByIDsResponse struct { func (x *GetTasksByIDsResponse) Reset() { *x = GetTasksByIDsResponse{} - mi := &file_flow_proto_msgTypes[72] + mi := &file_flow_proto_msgTypes[75] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5305,7 +5824,7 @@ func (x *GetTasksByIDsResponse) String() string { func (*GetTasksByIDsResponse) ProtoMessage() {} func (x *GetTasksByIDsResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[72] + mi := &file_flow_proto_msgTypes[75] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5318,7 +5837,7 @@ func (x *GetTasksByIDsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetTasksByIDsResponse.ProtoReflect.Descriptor instead. func (*GetTasksByIDsResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{72} + return file_flow_proto_rawDescGZIP(), []int{75} } func (x *GetTasksByIDsResponse) GetTasks() []*Task { @@ -5337,7 +5856,7 @@ type CancelTaskRequest struct { func (x *CancelTaskRequest) Reset() { *x = CancelTaskRequest{} - mi := &file_flow_proto_msgTypes[73] + mi := &file_flow_proto_msgTypes[76] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5349,7 +5868,7 @@ func (x *CancelTaskRequest) String() string { func (*CancelTaskRequest) ProtoMessage() {} func (x *CancelTaskRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[73] + mi := &file_flow_proto_msgTypes[76] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5362,7 +5881,7 @@ func (x *CancelTaskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CancelTaskRequest.ProtoReflect.Descriptor instead. func (*CancelTaskRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{73} + return file_flow_proto_rawDescGZIP(), []int{76} } func (x *CancelTaskRequest) GetTaskId() *UUID { @@ -5381,7 +5900,7 @@ type CancelTaskResponse struct { func (x *CancelTaskResponse) Reset() { *x = CancelTaskResponse{} - mi := &file_flow_proto_msgTypes[74] + mi := &file_flow_proto_msgTypes[77] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5393,7 +5912,7 @@ func (x *CancelTaskResponse) String() string { func (*CancelTaskResponse) ProtoMessage() {} func (x *CancelTaskResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[74] + mi := &file_flow_proto_msgTypes[77] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5406,7 +5925,7 @@ func (x *CancelTaskResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CancelTaskResponse.ProtoReflect.Descriptor instead. func (*CancelTaskResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{74} + return file_flow_proto_rawDescGZIP(), []int{77} } func (x *CancelTaskResponse) GetTask() *Task { @@ -5425,7 +5944,7 @@ type VersionRequest struct { func (x *VersionRequest) Reset() { *x = VersionRequest{} - mi := &file_flow_proto_msgTypes[75] + mi := &file_flow_proto_msgTypes[78] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5437,7 +5956,7 @@ func (x *VersionRequest) String() string { func (*VersionRequest) ProtoMessage() {} func (x *VersionRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[75] + mi := &file_flow_proto_msgTypes[78] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5450,7 +5969,7 @@ func (x *VersionRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use VersionRequest.ProtoReflect.Descriptor instead. func (*VersionRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{75} + return file_flow_proto_rawDescGZIP(), []int{78} } type BuildInfo struct { @@ -5464,7 +5983,7 @@ type BuildInfo struct { func (x *BuildInfo) Reset() { *x = BuildInfo{} - mi := &file_flow_proto_msgTypes[76] + mi := &file_flow_proto_msgTypes[79] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5476,7 +5995,7 @@ func (x *BuildInfo) String() string { func (*BuildInfo) ProtoMessage() {} func (x *BuildInfo) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[76] + mi := &file_flow_proto_msgTypes[79] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5489,7 +6008,7 @@ func (x *BuildInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use BuildInfo.ProtoReflect.Descriptor instead. func (*BuildInfo) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{76} + return file_flow_proto_rawDescGZIP(), []int{79} } func (x *BuildInfo) GetVersion() string { @@ -5530,7 +6049,7 @@ type OperationRule struct { func (x *OperationRule) Reset() { *x = OperationRule{} - mi := &file_flow_proto_msgTypes[77] + mi := &file_flow_proto_msgTypes[80] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5542,7 +6061,7 @@ func (x *OperationRule) String() string { func (*OperationRule) ProtoMessage() {} func (x *OperationRule) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[77] + mi := &file_flow_proto_msgTypes[80] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5555,7 +6074,7 @@ func (x *OperationRule) ProtoReflect() protoreflect.Message { // Deprecated: Use OperationRule.ProtoReflect.Descriptor instead. func (*OperationRule) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{77} + return file_flow_proto_rawDescGZIP(), []int{80} } func (x *OperationRule) GetId() *UUID { @@ -5635,7 +6154,7 @@ type CreateOperationRuleRequest struct { func (x *CreateOperationRuleRequest) Reset() { *x = CreateOperationRuleRequest{} - mi := &file_flow_proto_msgTypes[78] + mi := &file_flow_proto_msgTypes[81] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5647,7 +6166,7 @@ func (x *CreateOperationRuleRequest) String() string { func (*CreateOperationRuleRequest) ProtoMessage() {} func (x *CreateOperationRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[78] + mi := &file_flow_proto_msgTypes[81] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5660,7 +6179,7 @@ func (x *CreateOperationRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateOperationRuleRequest.ProtoReflect.Descriptor instead. func (*CreateOperationRuleRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{78} + return file_flow_proto_rawDescGZIP(), []int{81} } func (x *CreateOperationRuleRequest) GetName() string { @@ -5714,7 +6233,7 @@ type CreateOperationRuleResponse struct { func (x *CreateOperationRuleResponse) Reset() { *x = CreateOperationRuleResponse{} - mi := &file_flow_proto_msgTypes[79] + mi := &file_flow_proto_msgTypes[82] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5726,7 +6245,7 @@ func (x *CreateOperationRuleResponse) String() string { func (*CreateOperationRuleResponse) ProtoMessage() {} func (x *CreateOperationRuleResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[79] + mi := &file_flow_proto_msgTypes[82] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5739,7 +6258,7 @@ func (x *CreateOperationRuleResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateOperationRuleResponse.ProtoReflect.Descriptor instead. func (*CreateOperationRuleResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{79} + return file_flow_proto_rawDescGZIP(), []int{82} } func (x *CreateOperationRuleResponse) GetId() *UUID { @@ -5761,7 +6280,7 @@ type UpdateOperationRuleRequest struct { func (x *UpdateOperationRuleRequest) Reset() { *x = UpdateOperationRuleRequest{} - mi := &file_flow_proto_msgTypes[80] + mi := &file_flow_proto_msgTypes[83] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5773,7 +6292,7 @@ func (x *UpdateOperationRuleRequest) String() string { func (*UpdateOperationRuleRequest) ProtoMessage() {} func (x *UpdateOperationRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[80] + mi := &file_flow_proto_msgTypes[83] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5786,7 +6305,7 @@ func (x *UpdateOperationRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateOperationRuleRequest.ProtoReflect.Descriptor instead. func (*UpdateOperationRuleRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{80} + return file_flow_proto_rawDescGZIP(), []int{83} } func (x *UpdateOperationRuleRequest) GetRuleId() *UUID { @@ -5826,7 +6345,7 @@ type DeleteOperationRuleRequest struct { func (x *DeleteOperationRuleRequest) Reset() { *x = DeleteOperationRuleRequest{} - mi := &file_flow_proto_msgTypes[81] + mi := &file_flow_proto_msgTypes[84] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5838,7 +6357,7 @@ func (x *DeleteOperationRuleRequest) String() string { func (*DeleteOperationRuleRequest) ProtoMessage() {} func (x *DeleteOperationRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[81] + mi := &file_flow_proto_msgTypes[84] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5851,7 +6370,7 @@ func (x *DeleteOperationRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteOperationRuleRequest.ProtoReflect.Descriptor instead. func (*DeleteOperationRuleRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{81} + return file_flow_proto_rawDescGZIP(), []int{84} } func (x *DeleteOperationRuleRequest) GetRuleId() *UUID { @@ -5870,7 +6389,7 @@ type SetRuleAsDefaultRequest struct { func (x *SetRuleAsDefaultRequest) Reset() { *x = SetRuleAsDefaultRequest{} - mi := &file_flow_proto_msgTypes[82] + mi := &file_flow_proto_msgTypes[85] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5882,7 +6401,7 @@ func (x *SetRuleAsDefaultRequest) String() string { func (*SetRuleAsDefaultRequest) ProtoMessage() {} func (x *SetRuleAsDefaultRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[82] + mi := &file_flow_proto_msgTypes[85] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5895,7 +6414,7 @@ func (x *SetRuleAsDefaultRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetRuleAsDefaultRequest.ProtoReflect.Descriptor instead. func (*SetRuleAsDefaultRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{82} + return file_flow_proto_rawDescGZIP(), []int{85} } func (x *SetRuleAsDefaultRequest) GetRuleId() *UUID { @@ -5914,7 +6433,7 @@ type GetOperationRuleRequest struct { func (x *GetOperationRuleRequest) Reset() { *x = GetOperationRuleRequest{} - mi := &file_flow_proto_msgTypes[83] + mi := &file_flow_proto_msgTypes[86] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5926,7 +6445,7 @@ func (x *GetOperationRuleRequest) String() string { func (*GetOperationRuleRequest) ProtoMessage() {} func (x *GetOperationRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[83] + mi := &file_flow_proto_msgTypes[86] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5939,7 +6458,7 @@ func (x *GetOperationRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetOperationRuleRequest.ProtoReflect.Descriptor instead. func (*GetOperationRuleRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{83} + return file_flow_proto_rawDescGZIP(), []int{86} } func (x *GetOperationRuleRequest) GetRuleId() *UUID { @@ -5961,7 +6480,7 @@ type ListOperationRulesRequest struct { func (x *ListOperationRulesRequest) Reset() { *x = ListOperationRulesRequest{} - mi := &file_flow_proto_msgTypes[84] + mi := &file_flow_proto_msgTypes[87] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5973,7 +6492,7 @@ func (x *ListOperationRulesRequest) String() string { func (*ListOperationRulesRequest) ProtoMessage() {} func (x *ListOperationRulesRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[84] + mi := &file_flow_proto_msgTypes[87] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5986,7 +6505,7 @@ func (x *ListOperationRulesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListOperationRulesRequest.ProtoReflect.Descriptor instead. func (*ListOperationRulesRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{84} + return file_flow_proto_rawDescGZIP(), []int{87} } func (x *ListOperationRulesRequest) GetOperationType() OperationType { @@ -6027,7 +6546,7 @@ type ListOperationRulesResponse struct { func (x *ListOperationRulesResponse) Reset() { *x = ListOperationRulesResponse{} - mi := &file_flow_proto_msgTypes[85] + mi := &file_flow_proto_msgTypes[88] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6039,7 +6558,7 @@ func (x *ListOperationRulesResponse) String() string { func (*ListOperationRulesResponse) ProtoMessage() {} func (x *ListOperationRulesResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[85] + mi := &file_flow_proto_msgTypes[88] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6052,7 +6571,7 @@ func (x *ListOperationRulesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListOperationRulesResponse.ProtoReflect.Descriptor instead. func (*ListOperationRulesResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{85} + return file_flow_proto_rawDescGZIP(), []int{88} } func (x *ListOperationRulesResponse) GetRules() []*OperationRule { @@ -6079,7 +6598,7 @@ type AssociateRuleWithRackRequest struct { func (x *AssociateRuleWithRackRequest) Reset() { *x = AssociateRuleWithRackRequest{} - mi := &file_flow_proto_msgTypes[86] + mi := &file_flow_proto_msgTypes[89] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6091,7 +6610,7 @@ func (x *AssociateRuleWithRackRequest) String() string { func (*AssociateRuleWithRackRequest) ProtoMessage() {} func (x *AssociateRuleWithRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[86] + mi := &file_flow_proto_msgTypes[89] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6104,7 +6623,7 @@ func (x *AssociateRuleWithRackRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AssociateRuleWithRackRequest.ProtoReflect.Descriptor instead. func (*AssociateRuleWithRackRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{86} + return file_flow_proto_rawDescGZIP(), []int{89} } func (x *AssociateRuleWithRackRequest) GetRackId() *UUID { @@ -6132,7 +6651,7 @@ type DisassociateRuleFromRackRequest struct { func (x *DisassociateRuleFromRackRequest) Reset() { *x = DisassociateRuleFromRackRequest{} - mi := &file_flow_proto_msgTypes[87] + mi := &file_flow_proto_msgTypes[90] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6144,7 +6663,7 @@ func (x *DisassociateRuleFromRackRequest) String() string { func (*DisassociateRuleFromRackRequest) ProtoMessage() {} func (x *DisassociateRuleFromRackRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[87] + mi := &file_flow_proto_msgTypes[90] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6157,7 +6676,7 @@ func (x *DisassociateRuleFromRackRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DisassociateRuleFromRackRequest.ProtoReflect.Descriptor instead. func (*DisassociateRuleFromRackRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{87} + return file_flow_proto_rawDescGZIP(), []int{90} } func (x *DisassociateRuleFromRackRequest) GetRackId() *UUID { @@ -6192,7 +6711,7 @@ type GetRackRuleAssociationRequest struct { func (x *GetRackRuleAssociationRequest) Reset() { *x = GetRackRuleAssociationRequest{} - mi := &file_flow_proto_msgTypes[88] + mi := &file_flow_proto_msgTypes[91] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6204,7 +6723,7 @@ func (x *GetRackRuleAssociationRequest) String() string { func (*GetRackRuleAssociationRequest) ProtoMessage() {} func (x *GetRackRuleAssociationRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[88] + mi := &file_flow_proto_msgTypes[91] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6217,7 +6736,7 @@ func (x *GetRackRuleAssociationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRackRuleAssociationRequest.ProtoReflect.Descriptor instead. func (*GetRackRuleAssociationRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{88} + return file_flow_proto_rawDescGZIP(), []int{91} } func (x *GetRackRuleAssociationRequest) GetRackId() *UUID { @@ -6250,7 +6769,7 @@ type GetRackRuleAssociationResponse struct { func (x *GetRackRuleAssociationResponse) Reset() { *x = GetRackRuleAssociationResponse{} - mi := &file_flow_proto_msgTypes[89] + mi := &file_flow_proto_msgTypes[92] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6262,7 +6781,7 @@ func (x *GetRackRuleAssociationResponse) String() string { func (*GetRackRuleAssociationResponse) ProtoMessage() {} func (x *GetRackRuleAssociationResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[89] + mi := &file_flow_proto_msgTypes[92] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6275,7 +6794,7 @@ func (x *GetRackRuleAssociationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRackRuleAssociationResponse.ProtoReflect.Descriptor instead. func (*GetRackRuleAssociationResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{89} + return file_flow_proto_rawDescGZIP(), []int{92} } func (x *GetRackRuleAssociationResponse) GetRuleId() *UUID { @@ -6294,7 +6813,7 @@ type ListRackRuleAssociationsRequest struct { func (x *ListRackRuleAssociationsRequest) Reset() { *x = ListRackRuleAssociationsRequest{} - mi := &file_flow_proto_msgTypes[90] + mi := &file_flow_proto_msgTypes[93] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6306,7 +6825,7 @@ func (x *ListRackRuleAssociationsRequest) String() string { func (*ListRackRuleAssociationsRequest) ProtoMessage() {} func (x *ListRackRuleAssociationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[90] + mi := &file_flow_proto_msgTypes[93] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6319,7 +6838,7 @@ func (x *ListRackRuleAssociationsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListRackRuleAssociationsRequest.ProtoReflect.Descriptor instead. func (*ListRackRuleAssociationsRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{90} + return file_flow_proto_rawDescGZIP(), []int{93} } func (x *ListRackRuleAssociationsRequest) GetRackId() *UUID { @@ -6343,7 +6862,7 @@ type RackRuleAssociation struct { func (x *RackRuleAssociation) Reset() { *x = RackRuleAssociation{} - mi := &file_flow_proto_msgTypes[91] + mi := &file_flow_proto_msgTypes[94] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6355,7 +6874,7 @@ func (x *RackRuleAssociation) String() string { func (*RackRuleAssociation) ProtoMessage() {} func (x *RackRuleAssociation) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[91] + mi := &file_flow_proto_msgTypes[94] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6368,7 +6887,7 @@ func (x *RackRuleAssociation) ProtoReflect() protoreflect.Message { // Deprecated: Use RackRuleAssociation.ProtoReflect.Descriptor instead. func (*RackRuleAssociation) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{91} + return file_flow_proto_rawDescGZIP(), []int{94} } func (x *RackRuleAssociation) GetRackId() *UUID { @@ -6422,7 +6941,7 @@ type ListRackRuleAssociationsResponse struct { func (x *ListRackRuleAssociationsResponse) Reset() { *x = ListRackRuleAssociationsResponse{} - mi := &file_flow_proto_msgTypes[92] + mi := &file_flow_proto_msgTypes[95] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6434,7 +6953,7 @@ func (x *ListRackRuleAssociationsResponse) String() string { func (*ListRackRuleAssociationsResponse) ProtoMessage() {} func (x *ListRackRuleAssociationsResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[92] + mi := &file_flow_proto_msgTypes[95] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6447,7 +6966,7 @@ func (x *ListRackRuleAssociationsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListRackRuleAssociationsResponse.ProtoReflect.Descriptor instead. func (*ListRackRuleAssociationsResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{92} + return file_flow_proto_rawDescGZIP(), []int{95} } func (x *ListRackRuleAssociationsResponse) GetAssociations() []*RackRuleAssociation { @@ -6470,7 +6989,7 @@ type ScheduleSpec struct { func (x *ScheduleSpec) Reset() { *x = ScheduleSpec{} - mi := &file_flow_proto_msgTypes[93] + mi := &file_flow_proto_msgTypes[96] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6482,7 +7001,7 @@ func (x *ScheduleSpec) String() string { func (*ScheduleSpec) ProtoMessage() {} func (x *ScheduleSpec) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[93] + mi := &file_flow_proto_msgTypes[96] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6495,7 +7014,7 @@ func (x *ScheduleSpec) ProtoReflect() protoreflect.Message { // Deprecated: Use ScheduleSpec.ProtoReflect.Descriptor instead. func (*ScheduleSpec) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{93} + return file_flow_proto_rawDescGZIP(), []int{96} } func (x *ScheduleSpec) GetType() ScheduleSpecType { @@ -6531,7 +7050,7 @@ type ScheduleConfig struct { func (x *ScheduleConfig) Reset() { *x = ScheduleConfig{} - mi := &file_flow_proto_msgTypes[94] + mi := &file_flow_proto_msgTypes[97] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6543,7 +7062,7 @@ func (x *ScheduleConfig) String() string { func (*ScheduleConfig) ProtoMessage() {} func (x *ScheduleConfig) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[94] + mi := &file_flow_proto_msgTypes[97] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6556,7 +7075,7 @@ func (x *ScheduleConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use ScheduleConfig.ProtoReflect.Descriptor instead. func (*ScheduleConfig) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{94} + return file_flow_proto_rawDescGZIP(), []int{97} } func (x *ScheduleConfig) GetName() string { @@ -6608,7 +7127,7 @@ type TaskSchedule struct { func (x *TaskSchedule) Reset() { *x = TaskSchedule{} - mi := &file_flow_proto_msgTypes[95] + mi := &file_flow_proto_msgTypes[98] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6620,7 +7139,7 @@ func (x *TaskSchedule) String() string { func (*TaskSchedule) ProtoMessage() {} func (x *TaskSchedule) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[95] + mi := &file_flow_proto_msgTypes[98] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6633,7 +7152,7 @@ func (x *TaskSchedule) ProtoReflect() protoreflect.Message { // Deprecated: Use TaskSchedule.ProtoReflect.Descriptor instead. func (*TaskSchedule) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{95} + return file_flow_proto_rawDescGZIP(), []int{98} } func (x *TaskSchedule) GetId() *UUID { @@ -6739,7 +7258,7 @@ type ScheduledOperation struct { func (x *ScheduledOperation) Reset() { *x = ScheduledOperation{} - mi := &file_flow_proto_msgTypes[96] + mi := &file_flow_proto_msgTypes[99] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6751,7 +7270,7 @@ func (x *ScheduledOperation) String() string { func (*ScheduledOperation) ProtoMessage() {} func (x *ScheduledOperation) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[96] + mi := &file_flow_proto_msgTypes[99] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6764,7 +7283,7 @@ func (x *ScheduledOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use ScheduledOperation.ProtoReflect.Descriptor instead. func (*ScheduledOperation) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{96} + return file_flow_proto_rawDescGZIP(), []int{99} } func (x *ScheduledOperation) GetOperation() isScheduledOperation_Operation { @@ -6882,7 +7401,7 @@ type CreateTaskScheduleRequest struct { func (x *CreateTaskScheduleRequest) Reset() { *x = CreateTaskScheduleRequest{} - mi := &file_flow_proto_msgTypes[97] + mi := &file_flow_proto_msgTypes[100] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6894,7 +7413,7 @@ func (x *CreateTaskScheduleRequest) String() string { func (*CreateTaskScheduleRequest) ProtoMessage() {} func (x *CreateTaskScheduleRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[97] + mi := &file_flow_proto_msgTypes[100] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6907,7 +7426,7 @@ func (x *CreateTaskScheduleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateTaskScheduleRequest.ProtoReflect.Descriptor instead. func (*CreateTaskScheduleRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{97} + return file_flow_proto_rawDescGZIP(), []int{100} } func (x *CreateTaskScheduleRequest) GetSchedule() *ScheduleConfig { @@ -6933,7 +7452,7 @@ type GetTaskScheduleRequest struct { func (x *GetTaskScheduleRequest) Reset() { *x = GetTaskScheduleRequest{} - mi := &file_flow_proto_msgTypes[98] + mi := &file_flow_proto_msgTypes[101] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6945,7 +7464,7 @@ func (x *GetTaskScheduleRequest) String() string { func (*GetTaskScheduleRequest) ProtoMessage() {} func (x *GetTaskScheduleRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[98] + mi := &file_flow_proto_msgTypes[101] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6958,7 +7477,7 @@ func (x *GetTaskScheduleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetTaskScheduleRequest.ProtoReflect.Descriptor instead. func (*GetTaskScheduleRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{98} + return file_flow_proto_rawDescGZIP(), []int{101} } func (x *GetTaskScheduleRequest) GetId() *UUID { @@ -6981,7 +7500,7 @@ type ListTaskSchedulesRequest struct { func (x *ListTaskSchedulesRequest) Reset() { *x = ListTaskSchedulesRequest{} - mi := &file_flow_proto_msgTypes[99] + mi := &file_flow_proto_msgTypes[102] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6993,7 +7512,7 @@ func (x *ListTaskSchedulesRequest) String() string { func (*ListTaskSchedulesRequest) ProtoMessage() {} func (x *ListTaskSchedulesRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[99] + mi := &file_flow_proto_msgTypes[102] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7006,7 +7525,7 @@ func (x *ListTaskSchedulesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListTaskSchedulesRequest.ProtoReflect.Descriptor instead. func (*ListTaskSchedulesRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{99} + return file_flow_proto_rawDescGZIP(), []int{102} } func (x *ListTaskSchedulesRequest) GetRackId() *UUID { @@ -7040,7 +7559,7 @@ type ListTaskSchedulesResponse struct { func (x *ListTaskSchedulesResponse) Reset() { *x = ListTaskSchedulesResponse{} - mi := &file_flow_proto_msgTypes[100] + mi := &file_flow_proto_msgTypes[103] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7052,7 +7571,7 @@ func (x *ListTaskSchedulesResponse) String() string { func (*ListTaskSchedulesResponse) ProtoMessage() {} func (x *ListTaskSchedulesResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[100] + mi := &file_flow_proto_msgTypes[103] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7065,7 +7584,7 @@ func (x *ListTaskSchedulesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListTaskSchedulesResponse.ProtoReflect.Descriptor instead. func (*ListTaskSchedulesResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{100} + return file_flow_proto_rawDescGZIP(), []int{103} } func (x *ListTaskSchedulesResponse) GetTaskSchedules() []*TaskSchedule { @@ -7103,7 +7622,7 @@ type UpdateTaskScheduleRequest struct { func (x *UpdateTaskScheduleRequest) Reset() { *x = UpdateTaskScheduleRequest{} - mi := &file_flow_proto_msgTypes[101] + mi := &file_flow_proto_msgTypes[104] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7115,7 +7634,7 @@ func (x *UpdateTaskScheduleRequest) String() string { func (*UpdateTaskScheduleRequest) ProtoMessage() {} func (x *UpdateTaskScheduleRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[101] + mi := &file_flow_proto_msgTypes[104] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7128,7 +7647,7 @@ func (x *UpdateTaskScheduleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateTaskScheduleRequest.ProtoReflect.Descriptor instead. func (*UpdateTaskScheduleRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{101} + return file_flow_proto_rawDescGZIP(), []int{104} } func (x *UpdateTaskScheduleRequest) GetId() *UUID { @@ -7164,7 +7683,7 @@ type PauseTaskScheduleRequest struct { func (x *PauseTaskScheduleRequest) Reset() { *x = PauseTaskScheduleRequest{} - mi := &file_flow_proto_msgTypes[102] + mi := &file_flow_proto_msgTypes[105] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7176,7 +7695,7 @@ func (x *PauseTaskScheduleRequest) String() string { func (*PauseTaskScheduleRequest) ProtoMessage() {} func (x *PauseTaskScheduleRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[102] + mi := &file_flow_proto_msgTypes[105] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7189,7 +7708,7 @@ func (x *PauseTaskScheduleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PauseTaskScheduleRequest.ProtoReflect.Descriptor instead. func (*PauseTaskScheduleRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{102} + return file_flow_proto_rawDescGZIP(), []int{105} } func (x *PauseTaskScheduleRequest) GetId() *UUID { @@ -7211,7 +7730,7 @@ type ResumeTaskScheduleRequest struct { func (x *ResumeTaskScheduleRequest) Reset() { *x = ResumeTaskScheduleRequest{} - mi := &file_flow_proto_msgTypes[103] + mi := &file_flow_proto_msgTypes[106] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7223,7 +7742,7 @@ func (x *ResumeTaskScheduleRequest) String() string { func (*ResumeTaskScheduleRequest) ProtoMessage() {} func (x *ResumeTaskScheduleRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[103] + mi := &file_flow_proto_msgTypes[106] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7236,7 +7755,7 @@ func (x *ResumeTaskScheduleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ResumeTaskScheduleRequest.ProtoReflect.Descriptor instead. func (*ResumeTaskScheduleRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{103} + return file_flow_proto_rawDescGZIP(), []int{106} } func (x *ResumeTaskScheduleRequest) GetId() *UUID { @@ -7257,7 +7776,7 @@ type DeleteTaskScheduleRequest struct { func (x *DeleteTaskScheduleRequest) Reset() { *x = DeleteTaskScheduleRequest{} - mi := &file_flow_proto_msgTypes[104] + mi := &file_flow_proto_msgTypes[107] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7269,7 +7788,7 @@ func (x *DeleteTaskScheduleRequest) String() string { func (*DeleteTaskScheduleRequest) ProtoMessage() {} func (x *DeleteTaskScheduleRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[104] + mi := &file_flow_proto_msgTypes[107] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7282,7 +7801,7 @@ func (x *DeleteTaskScheduleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteTaskScheduleRequest.ProtoReflect.Descriptor instead. func (*DeleteTaskScheduleRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{104} + return file_flow_proto_rawDescGZIP(), []int{107} } func (x *DeleteTaskScheduleRequest) GetId() *UUID { @@ -7305,7 +7824,7 @@ type TriggerTaskScheduleRequest struct { func (x *TriggerTaskScheduleRequest) Reset() { *x = TriggerTaskScheduleRequest{} - mi := &file_flow_proto_msgTypes[105] + mi := &file_flow_proto_msgTypes[108] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7317,7 +7836,7 @@ func (x *TriggerTaskScheduleRequest) String() string { func (*TriggerTaskScheduleRequest) ProtoMessage() {} func (x *TriggerTaskScheduleRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[105] + mi := &file_flow_proto_msgTypes[108] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7330,7 +7849,7 @@ func (x *TriggerTaskScheduleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TriggerTaskScheduleRequest.ProtoReflect.Descriptor instead. func (*TriggerTaskScheduleRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{105} + return file_flow_proto_rawDescGZIP(), []int{108} } func (x *TriggerTaskScheduleRequest) GetId() *UUID { @@ -7366,7 +7885,7 @@ type TaskScheduleScope struct { func (x *TaskScheduleScope) Reset() { *x = TaskScheduleScope{} - mi := &file_flow_proto_msgTypes[106] + mi := &file_flow_proto_msgTypes[109] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7378,7 +7897,7 @@ func (x *TaskScheduleScope) String() string { func (*TaskScheduleScope) ProtoMessage() {} func (x *TaskScheduleScope) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[106] + mi := &file_flow_proto_msgTypes[109] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7391,7 +7910,7 @@ func (x *TaskScheduleScope) ProtoReflect() protoreflect.Message { // Deprecated: Use TaskScheduleScope.ProtoReflect.Descriptor instead. func (*TaskScheduleScope) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{106} + return file_flow_proto_rawDescGZIP(), []int{109} } func (x *TaskScheduleScope) GetId() *UUID { @@ -7490,7 +8009,7 @@ type AddTaskScheduleScopeRequest struct { func (x *AddTaskScheduleScopeRequest) Reset() { *x = AddTaskScheduleScopeRequest{} - mi := &file_flow_proto_msgTypes[107] + mi := &file_flow_proto_msgTypes[110] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7502,7 +8021,7 @@ func (x *AddTaskScheduleScopeRequest) String() string { func (*AddTaskScheduleScopeRequest) ProtoMessage() {} func (x *AddTaskScheduleScopeRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[107] + mi := &file_flow_proto_msgTypes[110] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7515,7 +8034,7 @@ func (x *AddTaskScheduleScopeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AddTaskScheduleScopeRequest.ProtoReflect.Descriptor instead. func (*AddTaskScheduleScopeRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{107} + return file_flow_proto_rawDescGZIP(), []int{110} } func (x *AddTaskScheduleScopeRequest) GetScheduleId() *UUID { @@ -7542,7 +8061,7 @@ type AddTaskScheduleScopeResponse struct { func (x *AddTaskScheduleScopeResponse) Reset() { *x = AddTaskScheduleScopeResponse{} - mi := &file_flow_proto_msgTypes[108] + mi := &file_flow_proto_msgTypes[111] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7554,7 +8073,7 @@ func (x *AddTaskScheduleScopeResponse) String() string { func (*AddTaskScheduleScopeResponse) ProtoMessage() {} func (x *AddTaskScheduleScopeResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[108] + mi := &file_flow_proto_msgTypes[111] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7567,7 +8086,7 @@ func (x *AddTaskScheduleScopeResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AddTaskScheduleScopeResponse.ProtoReflect.Descriptor instead. func (*AddTaskScheduleScopeResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{108} + return file_flow_proto_rawDescGZIP(), []int{111} } func (x *AddTaskScheduleScopeResponse) GetScopes() []*TaskScheduleScope { @@ -7588,7 +8107,7 @@ type RemoveTaskScheduleScopeRequest struct { func (x *RemoveTaskScheduleScopeRequest) Reset() { *x = RemoveTaskScheduleScopeRequest{} - mi := &file_flow_proto_msgTypes[109] + mi := &file_flow_proto_msgTypes[112] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7600,7 +8119,7 @@ func (x *RemoveTaskScheduleScopeRequest) String() string { func (*RemoveTaskScheduleScopeRequest) ProtoMessage() {} func (x *RemoveTaskScheduleScopeRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[109] + mi := &file_flow_proto_msgTypes[112] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7613,44 +8132,2680 @@ func (x *RemoveTaskScheduleScopeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveTaskScheduleScopeRequest.ProtoReflect.Descriptor instead. func (*RemoveTaskScheduleScopeRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{109} + return file_flow_proto_rawDescGZIP(), []int{112} +} + +func (x *RemoveTaskScheduleScopeRequest) GetScopeId() *UUID { + if x != nil { + return x.ScopeId + } + return nil +} + +// UpdateTaskScheduleScopeRequest reconciles the schedule's scope against the +// desired target_spec: racks present in desired_scope but not in the current scope +// are added; racks present in the current scope but absent from desired_scope are +// removed; racks present in both have their component_filter updated if changed. +// For component-level targets the server resolves rack membership automatically. +type UpdateTaskScheduleScopeRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + ScheduleId *UUID `protobuf:"bytes,1,opt,name=schedule_id,json=scheduleId,proto3" json:"schedule_id,omitempty"` + DesiredScope *OperationTargetSpec `protobuf:"bytes,2,opt,name=desired_scope,json=desiredScope,proto3" json:"desired_scope,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *UpdateTaskScheduleScopeRequest) Reset() { + *x = UpdateTaskScheduleScopeRequest{} + mi := &file_flow_proto_msgTypes[113] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *UpdateTaskScheduleScopeRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*UpdateTaskScheduleScopeRequest) ProtoMessage() {} + +func (x *UpdateTaskScheduleScopeRequest) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[113] + 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 UpdateTaskScheduleScopeRequest.ProtoReflect.Descriptor instead. +func (*UpdateTaskScheduleScopeRequest) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{113} +} + +func (x *UpdateTaskScheduleScopeRequest) GetScheduleId() *UUID { + if x != nil { + return x.ScheduleId + } + return nil +} + +func (x *UpdateTaskScheduleScopeRequest) GetDesiredScope() *OperationTargetSpec { + if x != nil { + return x.DesiredScope + } + return nil +} + +// UpdateTaskScheduleScopeResponse returns the complete scope after reconciliation. +type UpdateTaskScheduleScopeResponse struct { + state protoimpl.MessageState `protogen:"open.v1"` + Scopes []*TaskScheduleScope `protobuf:"bytes,1,rep,name=scopes,proto3" json:"scopes,omitempty"` + Added int32 `protobuf:"varint,2,opt,name=added,proto3" json:"added,omitempty"` // number of scope entries added + Removed int32 `protobuf:"varint,3,opt,name=removed,proto3" json:"removed,omitempty"` // number of scope entries removed + Updated int32 `protobuf:"varint,4,opt,name=updated,proto3" json:"updated,omitempty"` // number of scope entries with updated component_filter + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *UpdateTaskScheduleScopeResponse) Reset() { + *x = UpdateTaskScheduleScopeResponse{} + mi := &file_flow_proto_msgTypes[114] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *UpdateTaskScheduleScopeResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*UpdateTaskScheduleScopeResponse) ProtoMessage() {} + +func (x *UpdateTaskScheduleScopeResponse) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[114] + 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 UpdateTaskScheduleScopeResponse.ProtoReflect.Descriptor instead. +func (*UpdateTaskScheduleScopeResponse) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{114} +} + +func (x *UpdateTaskScheduleScopeResponse) GetScopes() []*TaskScheduleScope { + if x != nil { + return x.Scopes + } + return nil +} + +func (x *UpdateTaskScheduleScopeResponse) GetAdded() int32 { + if x != nil { + return x.Added + } + return 0 +} + +func (x *UpdateTaskScheduleScopeResponse) GetRemoved() int32 { + if x != nil { + return x.Removed + } + return 0 +} + +func (x *UpdateTaskScheduleScopeResponse) GetUpdated() int32 { + if x != nil { + return x.Updated + } + return 0 +} + +// ListTaskScheduleScopesRequest returns all scope entries for a given schedule. +type ListTaskScheduleScopesRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + ScheduleId *UUID `protobuf:"bytes,1,opt,name=schedule_id,json=scheduleId,proto3" json:"schedule_id,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ListTaskScheduleScopesRequest) Reset() { + *x = ListTaskScheduleScopesRequest{} + mi := &file_flow_proto_msgTypes[115] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ListTaskScheduleScopesRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ListTaskScheduleScopesRequest) ProtoMessage() {} + +func (x *ListTaskScheduleScopesRequest) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[115] + 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 ListTaskScheduleScopesRequest.ProtoReflect.Descriptor instead. +func (*ListTaskScheduleScopesRequest) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{115} +} + +func (x *ListTaskScheduleScopesRequest) GetScheduleId() *UUID { + if x != nil { + return x.ScheduleId + } + return nil +} + +type ListTaskScheduleScopesResponse struct { + state protoimpl.MessageState `protogen:"open.v1"` + Scopes []*TaskScheduleScope `protobuf:"bytes,1,rep,name=scopes,proto3" json:"scopes,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ListTaskScheduleScopesResponse) Reset() { + *x = ListTaskScheduleScopesResponse{} + mi := &file_flow_proto_msgTypes[116] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ListTaskScheduleScopesResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ListTaskScheduleScopesResponse) ProtoMessage() {} + +func (x *ListTaskScheduleScopesResponse) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[116] + 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 ListTaskScheduleScopesResponse.ProtoReflect.Descriptor instead. +func (*ListTaskScheduleScopesResponse) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{116} +} + +func (x *ListTaskScheduleScopesResponse) GetScopes() []*TaskScheduleScope { + if x != nil { + return x.Scopes + } + return nil +} + +// CheckScheduleConflictsRequest checks whether a proposed scheduled operation +// would conflict with any existing enabled schedules. +// The operation oneof mirrors CreateTaskScheduleRequest: the target_spec +// embedded in the operation message defines which racks are checked. +// +// This call is advisory and intentionally coarse: it matches on operation +// type and code only, without intersecting component-type filters or explicit +// component UUID lists. As a result it may return false positives — two +// schedules that target disjoint component sets on the same rack will appear +// to conflict here even if their tasks would never collide at runtime. +// Execution-time conflict detection (the task manager's conflict rules) remains +// the authoritative backstop. The caller may proceed even when conflicts are +// returned. +type CheckScheduleConflictsRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + Operation *ScheduledOperation `protobuf:"bytes,1,opt,name=operation,proto3" json:"operation,omitempty"` + // exclude_schedule_id omits a schedule from the conflict check results. + // Pass the ID of the schedule being updated so its current definition is + // not returned as a conflict against the proposed replacement operation. + ExcludeScheduleId *UUID `protobuf:"bytes,2,opt,name=exclude_schedule_id,json=excludeScheduleId,proto3,oneof" json:"exclude_schedule_id,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CheckScheduleConflictsRequest) Reset() { + *x = CheckScheduleConflictsRequest{} + mi := &file_flow_proto_msgTypes[117] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CheckScheduleConflictsRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CheckScheduleConflictsRequest) ProtoMessage() {} + +func (x *CheckScheduleConflictsRequest) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[117] + 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 CheckScheduleConflictsRequest.ProtoReflect.Descriptor instead. +func (*CheckScheduleConflictsRequest) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{117} +} + +func (x *CheckScheduleConflictsRequest) GetOperation() *ScheduledOperation { + if x != nil { + return x.Operation + } + return nil +} + +func (x *CheckScheduleConflictsRequest) GetExcludeScheduleId() *UUID { + if x != nil { + return x.ExcludeScheduleId + } + return nil +} + +// CheckScheduleConflictsResponse lists the existing enabled schedules whose +// operations may conflict with the proposed operation at execution time. +// An empty list means no conflicts were detected. +type CheckScheduleConflictsResponse struct { + state protoimpl.MessageState `protogen:"open.v1"` + Conflicts []*TaskSchedule `protobuf:"bytes,1,rep,name=conflicts,proto3" json:"conflicts,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CheckScheduleConflictsResponse) Reset() { + *x = CheckScheduleConflictsResponse{} + mi := &file_flow_proto_msgTypes[118] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CheckScheduleConflictsResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CheckScheduleConflictsResponse) ProtoMessage() {} + +func (x *CheckScheduleConflictsResponse) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[118] + 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 CheckScheduleConflictsResponse.ProtoReflect.Descriptor instead. +func (*CheckScheduleConflictsResponse) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{118} +} + +func (x *CheckScheduleConflictsResponse) GetConflicts() []*TaskSchedule { + if x != nil { + return x.Conflicts + } + return nil +} + +// CreateOperationRunRequest creates a durable rollout over a selected set of +// rack execution targets. The operation request's target_spec and target_scope, +// when present, define the candidate scope that selector is applied to. When +// omitted, the service builds the candidate scope from all qualified racks that +// are applicable to the operation. +type CreateOperationRunRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"` + // Required. Reusable rollout configuration for target selection, + // execution policy, and operation template. + Configuration *OperationRunConfiguration `protobuf:"bytes,3,opt,name=configuration,proto3" json:"configuration,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CreateOperationRunRequest) Reset() { + *x = CreateOperationRunRequest{} + mi := &file_flow_proto_msgTypes[119] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CreateOperationRunRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CreateOperationRunRequest) ProtoMessage() {} + +func (x *CreateOperationRunRequest) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[119] + 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 CreateOperationRunRequest.ProtoReflect.Descriptor instead. +func (*CreateOperationRunRequest) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{119} +} + +func (x *CreateOperationRunRequest) GetName() string { + if x != nil { + return x.Name + } + return "" +} + +func (x *CreateOperationRunRequest) GetDescription() string { + if x != nil { + return x.Description + } + return "" +} + +func (x *CreateOperationRunRequest) GetConfiguration() *OperationRunConfiguration { + if x != nil { + return x.Configuration + } + return nil +} + +type CreateOperationRunResponse struct { + state protoimpl.MessageState `protogen:"open.v1"` + Id *UUID `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CreateOperationRunResponse) Reset() { + *x = CreateOperationRunResponse{} + mi := &file_flow_proto_msgTypes[120] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CreateOperationRunResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CreateOperationRunResponse) ProtoMessage() {} + +func (x *CreateOperationRunResponse) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[120] + 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 CreateOperationRunResponse.ProtoReflect.Descriptor instead. +func (*CreateOperationRunResponse) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{120} +} + +func (x *CreateOperationRunResponse) GetId() *UUID { + if x != nil { + return x.Id + } + return nil +} + +// OperationRunConfiguration is the create-time configuration that can be +// returned on detailed OperationRun responses. +type OperationRunConfiguration struct { + state protoimpl.MessageState `protogen:"open.v1"` + Selector *OperationRunSelector `protobuf:"bytes,1,opt,name=selector,proto3" json:"selector,omitempty"` + Options *OperationRunOptions `protobuf:"bytes,2,opt,name=options,proto3" json:"options,omitempty"` + Operation *OperationRunOperation `protobuf:"bytes,3,opt,name=operation,proto3" json:"operation,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunConfiguration) Reset() { + *x = OperationRunConfiguration{} + mi := &file_flow_proto_msgTypes[121] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunConfiguration) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunConfiguration) ProtoMessage() {} + +func (x *OperationRunConfiguration) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[121] + 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 OperationRunConfiguration.ProtoReflect.Descriptor instead. +func (*OperationRunConfiguration) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{121} +} + +func (x *OperationRunConfiguration) GetSelector() *OperationRunSelector { + if x != nil { + return x.Selector + } + return nil +} + +func (x *OperationRunConfiguration) GetOptions() *OperationRunOptions { + if x != nil { + return x.Options + } + return nil +} + +func (x *OperationRunConfiguration) GetOperation() *OperationRunOperation { + if x != nil { + return x.Operation + } + return nil +} + +type GetOperationRunRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + Id *UUID `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` + // When true, Flow computes derived stats from operation_run_target rows + // and returns OperationRun.stats. + IncludeStats bool `protobuf:"varint,2,opt,name=include_stats,json=includeStats,proto3" json:"include_stats,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GetOperationRunRequest) Reset() { + *x = GetOperationRunRequest{} + mi := &file_flow_proto_msgTypes[122] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GetOperationRunRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GetOperationRunRequest) ProtoMessage() {} + +func (x *GetOperationRunRequest) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[122] + 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 GetOperationRunRequest.ProtoReflect.Descriptor instead. +func (*GetOperationRunRequest) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{122} +} + +func (x *GetOperationRunRequest) GetId() *UUID { + if x != nil { + return x.Id + } + return nil +} + +func (x *GetOperationRunRequest) GetIncludeStats() bool { + if x != nil { + return x.IncludeStats + } + return false +} + +type GetOperationRunResponse struct { + state protoimpl.MessageState `protogen:"open.v1"` + OperationRun *OperationRun `protobuf:"bytes,1,opt,name=operation_run,json=operationRun,proto3" json:"operation_run,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GetOperationRunResponse) Reset() { + *x = GetOperationRunResponse{} + mi := &file_flow_proto_msgTypes[123] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GetOperationRunResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GetOperationRunResponse) ProtoMessage() {} + +func (x *GetOperationRunResponse) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[123] + 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 GetOperationRunResponse.ProtoReflect.Descriptor instead. +func (*GetOperationRunResponse) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{123} +} + +func (x *GetOperationRunResponse) GetOperationRun() *OperationRun { + if x != nil { + return x.OperationRun + } + return nil +} + +// ListOperationRunsRequest lists operation runs, newest first by default. +type ListOperationRunsRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + Filter *OperationRunFilter `protobuf:"bytes,1,opt,name=filter,proto3" json:"filter,omitempty"` + Pagination *Pagination `protobuf:"bytes,2,opt,name=pagination,proto3,oneof" json:"pagination,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ListOperationRunsRequest) Reset() { + *x = ListOperationRunsRequest{} + mi := &file_flow_proto_msgTypes[124] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ListOperationRunsRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ListOperationRunsRequest) ProtoMessage() {} + +func (x *ListOperationRunsRequest) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[124] + 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 ListOperationRunsRequest.ProtoReflect.Descriptor instead. +func (*ListOperationRunsRequest) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{124} +} + +func (x *ListOperationRunsRequest) GetFilter() *OperationRunFilter { + if x != nil { + return x.Filter + } + return nil +} + +func (x *ListOperationRunsRequest) GetPagination() *Pagination { + if x != nil { + return x.Pagination + } + return nil +} + +type ListOperationRunsResponse struct { + state protoimpl.MessageState `protogen:"open.v1"` + OperationRuns []*OperationRunSummary `protobuf:"bytes,1,rep,name=operation_runs,json=operationRuns,proto3" json:"operation_runs,omitempty"` + Total int32 `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ListOperationRunsResponse) Reset() { + *x = ListOperationRunsResponse{} + mi := &file_flow_proto_msgTypes[125] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ListOperationRunsResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ListOperationRunsResponse) ProtoMessage() {} + +func (x *ListOperationRunsResponse) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[125] + 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 ListOperationRunsResponse.ProtoReflect.Descriptor instead. +func (*ListOperationRunsResponse) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{125} +} + +func (x *ListOperationRunsResponse) GetOperationRuns() []*OperationRunSummary { + if x != nil { + return x.OperationRuns + } + return nil +} + +func (x *ListOperationRunsResponse) GetTotal() int32 { + if x != nil { + return x.Total + } + return 0 +} + +type OperationRunFilter struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Optional name query. Name is a human label and is not unique. + Name *StringQueryInfo `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + // Empty means all states. Each entry matches by AND-ing the fields set on + // that entry; the entries compose with OR. + States []*OperationRunStateFilter `protobuf:"bytes,2,rep,name=states,proto3" json:"states,omitempty"` + // Empty means all operation kinds. A kind with no code matches all codes + // for the operation type. + OperationKinds []*OperationKind `protobuf:"bytes,3,rep,name=operation_kinds,json=operationKinds,proto3" json:"operation_kinds,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunFilter) Reset() { + *x = OperationRunFilter{} + mi := &file_flow_proto_msgTypes[126] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunFilter) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunFilter) ProtoMessage() {} + +func (x *OperationRunFilter) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[126] + 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 OperationRunFilter.ProtoReflect.Descriptor instead. +func (*OperationRunFilter) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{126} +} + +func (x *OperationRunFilter) GetName() *StringQueryInfo { + if x != nil { + return x.Name + } + return nil +} + +func (x *OperationRunFilter) GetStates() []*OperationRunStateFilter { + if x != nil { + return x.States + } + return nil +} + +func (x *OperationRunFilter) GetOperationKinds() []*OperationKind { + if x != nil { + return x.OperationKinds + } + return nil +} + +type OperationRunStateFilter struct { + state protoimpl.MessageState `protogen:"open.v1"` + Status *OperationRunStatus `protobuf:"varint,1,opt,name=status,proto3,enum=v1.OperationRunStatus,oneof" json:"status,omitempty"` + Reason *OperationRunStatusReason `protobuf:"varint,2,opt,name=reason,proto3,enum=v1.OperationRunStatusReason,oneof" json:"reason,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunStateFilter) Reset() { + *x = OperationRunStateFilter{} + mi := &file_flow_proto_msgTypes[127] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunStateFilter) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunStateFilter) ProtoMessage() {} + +func (x *OperationRunStateFilter) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[127] + 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 OperationRunStateFilter.ProtoReflect.Descriptor instead. +func (*OperationRunStateFilter) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{127} +} + +func (x *OperationRunStateFilter) GetStatus() OperationRunStatus { + if x != nil && x.Status != nil { + return *x.Status + } + return OperationRunStatus_OPERATION_RUN_STATUS_UNKNOWN +} + +func (x *OperationRunStateFilter) GetReason() OperationRunStatusReason { + if x != nil && x.Reason != nil { + return *x.Reason + } + return OperationRunStatusReason_OPERATION_RUN_STATUS_REASON_UNKNOWN +} + +// ListOperationRunTargetsRequest lists materialized rack execution targets for +// one operation run. status UNKNOWN means no target-status filter is applied. +// phase_scope UNKNOWN defaults to CURRENT_PHASE. +type ListOperationRunTargetsRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + OperationRunId *UUID `protobuf:"bytes,1,opt,name=operation_run_id,json=operationRunId,proto3" json:"operation_run_id,omitempty"` + Status OperationRunTargetStatus `protobuf:"varint,2,opt,name=status,proto3,enum=v1.OperationRunTargetStatus" json:"status,omitempty"` + Pagination *Pagination `protobuf:"bytes,3,opt,name=pagination,proto3,oneof" json:"pagination,omitempty"` + PhaseScope OperationRunTargetPhaseScope `protobuf:"varint,4,opt,name=phase_scope,json=phaseScope,proto3,enum=v1.OperationRunTargetPhaseScope" json:"phase_scope,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ListOperationRunTargetsRequest) Reset() { + *x = ListOperationRunTargetsRequest{} + mi := &file_flow_proto_msgTypes[128] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ListOperationRunTargetsRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ListOperationRunTargetsRequest) ProtoMessage() {} + +func (x *ListOperationRunTargetsRequest) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[128] + 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 ListOperationRunTargetsRequest.ProtoReflect.Descriptor instead. +func (*ListOperationRunTargetsRequest) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{128} +} + +func (x *ListOperationRunTargetsRequest) GetOperationRunId() *UUID { + if x != nil { + return x.OperationRunId + } + return nil +} + +func (x *ListOperationRunTargetsRequest) GetStatus() OperationRunTargetStatus { + if x != nil { + return x.Status + } + return OperationRunTargetStatus_OPERATION_RUN_TARGET_STATUS_UNKNOWN +} + +func (x *ListOperationRunTargetsRequest) GetPagination() *Pagination { + if x != nil { + return x.Pagination + } + return nil +} + +func (x *ListOperationRunTargetsRequest) GetPhaseScope() OperationRunTargetPhaseScope { + if x != nil { + return x.PhaseScope + } + return OperationRunTargetPhaseScope_OPERATION_RUN_TARGET_PHASE_SCOPE_UNKNOWN +} + +type ListOperationRunTargetsResponse struct { + state protoimpl.MessageState `protogen:"open.v1"` + Targets []*OperationRunTarget `protobuf:"bytes,1,rep,name=targets,proto3" json:"targets,omitempty"` + Total int32 `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ListOperationRunTargetsResponse) Reset() { + *x = ListOperationRunTargetsResponse{} + mi := &file_flow_proto_msgTypes[129] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ListOperationRunTargetsResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ListOperationRunTargetsResponse) ProtoMessage() {} + +func (x *ListOperationRunTargetsResponse) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[129] + 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 ListOperationRunTargetsResponse.ProtoReflect.Descriptor instead. +func (*ListOperationRunTargetsResponse) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{129} +} + +func (x *ListOperationRunTargetsResponse) GetTargets() []*OperationRunTarget { + if x != nil { + return x.Targets + } + return nil +} + +func (x *ListOperationRunTargetsResponse) GetTotal() int32 { + if x != nil { + return x.Total + } + return 0 +} + +type PauseOperationRunRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + Id *UUID `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *PauseOperationRunRequest) Reset() { + *x = PauseOperationRunRequest{} + mi := &file_flow_proto_msgTypes[130] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *PauseOperationRunRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*PauseOperationRunRequest) ProtoMessage() {} + +func (x *PauseOperationRunRequest) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[130] + 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 PauseOperationRunRequest.ProtoReflect.Descriptor instead. +func (*PauseOperationRunRequest) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{130} +} + +func (x *PauseOperationRunRequest) GetId() *UUID { + if x != nil { + return x.Id + } + return nil +} + +type ResumeOperationRunRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + Id *UUID `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ResumeOperationRunRequest) Reset() { + *x = ResumeOperationRunRequest{} + mi := &file_flow_proto_msgTypes[131] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ResumeOperationRunRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ResumeOperationRunRequest) ProtoMessage() {} + +func (x *ResumeOperationRunRequest) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[131] + 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 ResumeOperationRunRequest.ProtoReflect.Descriptor instead. +func (*ResumeOperationRunRequest) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{131} +} + +func (x *ResumeOperationRunRequest) GetId() *UUID { + if x != nil { + return x.Id + } + return nil +} + +type CancelOperationRunRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + Id *UUID `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` + Reason string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CancelOperationRunRequest) Reset() { + *x = CancelOperationRunRequest{} + mi := &file_flow_proto_msgTypes[132] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CancelOperationRunRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CancelOperationRunRequest) ProtoMessage() {} + +func (x *CancelOperationRunRequest) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[132] + 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 CancelOperationRunRequest.ProtoReflect.Descriptor instead. +func (*CancelOperationRunRequest) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{132} +} + +func (x *CancelOperationRunRequest) GetId() *UUID { + if x != nil { + return x.Id + } + return nil +} + +func (x *CancelOperationRunRequest) GetReason() string { + if x != nil { + return x.Reason + } + return "" +} + +type OperationRunSelector struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Types that are valid to be assigned to Selector: + // + // *OperationRunSelector_Percentage + Selector isOperationRunSelector_Selector `protobuf_oneof:"selector"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunSelector) Reset() { + *x = OperationRunSelector{} + mi := &file_flow_proto_msgTypes[133] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunSelector) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunSelector) ProtoMessage() {} + +func (x *OperationRunSelector) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[133] + 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 OperationRunSelector.ProtoReflect.Descriptor instead. +func (*OperationRunSelector) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{133} +} + +func (x *OperationRunSelector) GetSelector() isOperationRunSelector_Selector { + if x != nil { + return x.Selector + } + return nil +} + +func (x *OperationRunSelector) GetPercentage() *PercentageSelector { + if x != nil { + if x, ok := x.Selector.(*OperationRunSelector_Percentage); ok { + return x.Percentage + } + } + return nil +} + +type isOperationRunSelector_Selector interface { + isOperationRunSelector_Selector() +} + +type OperationRunSelector_Percentage struct { + Percentage *PercentageSelector `protobuf:"bytes,1,opt,name=percentage,proto3,oneof"` +} + +func (*OperationRunSelector_Percentage) isOperationRunSelector_Selector() {} + +type PercentageSelector struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Required. Valid range: 1..100. + Percentage int32 `protobuf:"varint,1,opt,name=percentage,proto3" json:"percentage,omitempty"` + // Optional. If omitted, the service generates one and stores it so the + // selected cohort is deterministic and auditable. + Seed string `protobuf:"bytes,2,opt,name=seed,proto3" json:"seed,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *PercentageSelector) Reset() { + *x = PercentageSelector{} + mi := &file_flow_proto_msgTypes[134] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *PercentageSelector) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*PercentageSelector) ProtoMessage() {} + +func (x *PercentageSelector) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[134] + 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 PercentageSelector.ProtoReflect.Descriptor instead. +func (*PercentageSelector) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{134} +} + +func (x *PercentageSelector) GetPercentage() int32 { + if x != nil { + return x.Percentage + } + return 0 +} + +func (x *PercentageSelector) GetSeed() string { + if x != nil { + return x.Seed + } + return "" +} + +type OperationRunOptions struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Required. Maximum number of operation-run targets that may have active + // child tasks at the same time. + MaxConcurrentTargets int32 `protobuf:"varint,1,opt,name=max_concurrent_targets,json=maxConcurrentTargets,proto3" json:"max_concurrent_targets,omitempty"` + // Required. Composable safety gates for the rollout. + SafetyPolicy *OperationRunSafetyPolicy `protobuf:"bytes,2,opt,name=safety_policy,json=safetyPolicy,proto3" json:"safety_policy,omitempty"` + // Optional. If omitted or partially specified, the service stores and + // returns the effective default policy for the operation type/code. + ConflictPolicy *OperationRunConflictPolicy `protobuf:"bytes,3,opt,name=conflict_policy,json=conflictPolicy,proto3" json:"conflict_policy,omitempty"` + // Optional. If omitted, the service stores and returns the default random + // ordering policy with a generated seed. + OrderingPolicy *OperationRunOrderingPolicy `protobuf:"bytes,4,opt,name=ordering_policy,json=orderingPolicy,proto3" json:"ordering_policy,omitempty"` + // Optional. If omitted, the run has one phase containing all selected + // rack execution targets. + PhasePolicy *OperationRunPhasePolicy `protobuf:"bytes,5,opt,name=phase_policy,json=phasePolicy,proto3" json:"phase_policy,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunOptions) Reset() { + *x = OperationRunOptions{} + mi := &file_flow_proto_msgTypes[135] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunOptions) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunOptions) ProtoMessage() {} + +func (x *OperationRunOptions) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[135] + 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 OperationRunOptions.ProtoReflect.Descriptor instead. +func (*OperationRunOptions) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{135} +} + +func (x *OperationRunOptions) GetMaxConcurrentTargets() int32 { + if x != nil { + return x.MaxConcurrentTargets + } + return 0 +} + +func (x *OperationRunOptions) GetSafetyPolicy() *OperationRunSafetyPolicy { + if x != nil { + return x.SafetyPolicy + } + return nil +} + +func (x *OperationRunOptions) GetConflictPolicy() *OperationRunConflictPolicy { + if x != nil { + return x.ConflictPolicy + } + return nil +} + +func (x *OperationRunOptions) GetOrderingPolicy() *OperationRunOrderingPolicy { + if x != nil { + return x.OrderingPolicy + } + return nil +} + +func (x *OperationRunOptions) GetPhasePolicy() *OperationRunPhasePolicy { + if x != nil { + return x.PhasePolicy + } + return nil +} + +type OperationRunSafetyPolicy struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Gates compose with OR: the dispatcher pauses the run when any gate + // crosses its configured threshold. + Gates []*OperationRunSafetyGate `protobuf:"bytes,1,rep,name=gates,proto3" json:"gates,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunSafetyPolicy) Reset() { + *x = OperationRunSafetyPolicy{} + mi := &file_flow_proto_msgTypes[136] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunSafetyPolicy) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunSafetyPolicy) ProtoMessage() {} + +func (x *OperationRunSafetyPolicy) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[136] + 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 OperationRunSafetyPolicy.ProtoReflect.Descriptor instead. +func (*OperationRunSafetyPolicy) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{136} +} + +func (x *OperationRunSafetyPolicy) GetGates() []*OperationRunSafetyGate { + if x != nil { + return x.Gates + } + return nil +} + +type OperationRunSafetyGate struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Types that are valid to be assigned to Gate: + // + // *OperationRunSafetyGate_FailureRate + // *OperationRunSafetyGate_FailureCount + Gate isOperationRunSafetyGate_Gate `protobuf_oneof:"gate"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunSafetyGate) Reset() { + *x = OperationRunSafetyGate{} + mi := &file_flow_proto_msgTypes[137] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunSafetyGate) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunSafetyGate) ProtoMessage() {} + +func (x *OperationRunSafetyGate) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[137] + 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 OperationRunSafetyGate.ProtoReflect.Descriptor instead. +func (*OperationRunSafetyGate) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{137} +} + +func (x *OperationRunSafetyGate) GetGate() isOperationRunSafetyGate_Gate { + if x != nil { + return x.Gate + } + return nil +} + +func (x *OperationRunSafetyGate) GetFailureRate() *OperationRunFailureRateGate { + if x != nil { + if x, ok := x.Gate.(*OperationRunSafetyGate_FailureRate); ok { + return x.FailureRate + } + } + return nil +} + +func (x *OperationRunSafetyGate) GetFailureCount() *OperationRunFailureCountGate { + if x != nil { + if x, ok := x.Gate.(*OperationRunSafetyGate_FailureCount); ok { + return x.FailureCount + } + } + return nil +} + +type isOperationRunSafetyGate_Gate interface { + isOperationRunSafetyGate_Gate() +} + +type OperationRunSafetyGate_FailureRate struct { + FailureRate *OperationRunFailureRateGate `protobuf:"bytes,1,opt,name=failure_rate,json=failureRate,proto3,oneof"` +} + +type OperationRunSafetyGate_FailureCount struct { + FailureCount *OperationRunFailureCountGate `protobuf:"bytes,2,opt,name=failure_count,json=failureCount,proto3,oneof"` +} + +func (*OperationRunSafetyGate_FailureRate) isOperationRunSafetyGate_Gate() {} + +func (*OperationRunSafetyGate_FailureCount) isOperationRunSafetyGate_Gate() {} + +type OperationRunFailureRateGate struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Optional. Default: CURRENT_PHASE. + Scope OperationRunSafetyGateScope `protobuf:"varint,1,opt,name=scope,proto3,enum=v1.OperationRunSafetyGateScope" json:"scope,omitempty"` + // Required. Valid range: 1..100. The dispatcher pauses when + // failed_targets / planned_targets reaches this threshold for the scope. + FailureThresholdPercent int32 `protobuf:"varint,2,opt,name=failure_threshold_percent,json=failureThresholdPercent,proto3" json:"failure_threshold_percent,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunFailureRateGate) Reset() { + *x = OperationRunFailureRateGate{} + mi := &file_flow_proto_msgTypes[138] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunFailureRateGate) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunFailureRateGate) ProtoMessage() {} + +func (x *OperationRunFailureRateGate) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[138] + 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 OperationRunFailureRateGate.ProtoReflect.Descriptor instead. +func (*OperationRunFailureRateGate) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{138} +} + +func (x *OperationRunFailureRateGate) GetScope() OperationRunSafetyGateScope { + if x != nil { + return x.Scope + } + return OperationRunSafetyGateScope_OPERATION_RUN_SAFETY_GATE_SCOPE_UNKNOWN +} + +func (x *OperationRunFailureRateGate) GetFailureThresholdPercent() int32 { + if x != nil { + return x.FailureThresholdPercent + } + return 0 +} + +type OperationRunFailureCountGate struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Optional. Default: CURRENT_PHASE. + Scope OperationRunSafetyGateScope `protobuf:"varint,1,opt,name=scope,proto3,enum=v1.OperationRunSafetyGateScope" json:"scope,omitempty"` + // Required. The dispatcher pauses when failed_targets reaches this count + // for the scope. + FailureThresholdCount int32 `protobuf:"varint,2,opt,name=failure_threshold_count,json=failureThresholdCount,proto3" json:"failure_threshold_count,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunFailureCountGate) Reset() { + *x = OperationRunFailureCountGate{} + mi := &file_flow_proto_msgTypes[139] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunFailureCountGate) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunFailureCountGate) ProtoMessage() {} + +func (x *OperationRunFailureCountGate) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[139] + 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 OperationRunFailureCountGate.ProtoReflect.Descriptor instead. +func (*OperationRunFailureCountGate) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{139} +} + +func (x *OperationRunFailureCountGate) GetScope() OperationRunSafetyGateScope { + if x != nil { + return x.Scope + } + return OperationRunSafetyGateScope_OPERATION_RUN_SAFETY_GATE_SCOPE_UNKNOWN +} + +func (x *OperationRunFailureCountGate) GetFailureThresholdCount() int32 { + if x != nil { + return x.FailureThresholdCount + } + return 0 +} + +type OperationRunOrderingPolicy struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Types that are valid to be assigned to Ordering: + // + // *OperationRunOrderingPolicy_Random + // *OperationRunOrderingPolicy_PhysicalLocation + Ordering isOperationRunOrderingPolicy_Ordering `protobuf_oneof:"ordering"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunOrderingPolicy) Reset() { + *x = OperationRunOrderingPolicy{} + mi := &file_flow_proto_msgTypes[140] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunOrderingPolicy) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunOrderingPolicy) ProtoMessage() {} + +func (x *OperationRunOrderingPolicy) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[140] + 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 OperationRunOrderingPolicy.ProtoReflect.Descriptor instead. +func (*OperationRunOrderingPolicy) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{140} +} + +func (x *OperationRunOrderingPolicy) GetOrdering() isOperationRunOrderingPolicy_Ordering { + if x != nil { + return x.Ordering + } + return nil +} + +func (x *OperationRunOrderingPolicy) GetRandom() *OperationRunRandomOrdering { + if x != nil { + if x, ok := x.Ordering.(*OperationRunOrderingPolicy_Random); ok { + return x.Random + } + } + return nil +} + +func (x *OperationRunOrderingPolicy) GetPhysicalLocation() *OperationRunPhysicalLocationOrdering { + if x != nil { + if x, ok := x.Ordering.(*OperationRunOrderingPolicy_PhysicalLocation); ok { + return x.PhysicalLocation + } + } + return nil +} + +type isOperationRunOrderingPolicy_Ordering interface { + isOperationRunOrderingPolicy_Ordering() +} + +type OperationRunOrderingPolicy_Random struct { + Random *OperationRunRandomOrdering `protobuf:"bytes,1,opt,name=random,proto3,oneof"` +} + +type OperationRunOrderingPolicy_PhysicalLocation struct { + // Reserved for a later implementation. The first implementation keeps + // this API branch but rejects it as unsupported. + PhysicalLocation *OperationRunPhysicalLocationOrdering `protobuf:"bytes,3,opt,name=physical_location,json=physicalLocation,proto3,oneof"` +} + +func (*OperationRunOrderingPolicy_Random) isOperationRunOrderingPolicy_Ordering() {} + +func (*OperationRunOrderingPolicy_PhysicalLocation) isOperationRunOrderingPolicy_Ordering() {} + +type OperationRunRandomOrdering struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Optional. If omitted, the service generates one and stores it. + Seed string `protobuf:"bytes,1,opt,name=seed,proto3" json:"seed,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunRandomOrdering) Reset() { + *x = OperationRunRandomOrdering{} + mi := &file_flow_proto_msgTypes[141] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunRandomOrdering) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunRandomOrdering) ProtoMessage() {} + +func (x *OperationRunRandomOrdering) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[141] + 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 OperationRunRandomOrdering.ProtoReflect.Descriptor instead. +func (*OperationRunRandomOrdering) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{141} +} + +func (x *OperationRunRandomOrdering) GetSeed() string { + if x != nil { + return x.Seed + } + return "" +} + +type OperationRunPhysicalLocationOrdering struct { + state protoimpl.MessageState `protogen:"open.v1"` + Strategy OperationRunPhysicalLocationOrdering_Strategy `protobuf:"varint,1,opt,name=strategy,proto3,enum=v1.OperationRunPhysicalLocationOrdering_Strategy" json:"strategy,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunPhysicalLocationOrdering) Reset() { + *x = OperationRunPhysicalLocationOrdering{} + mi := &file_flow_proto_msgTypes[142] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunPhysicalLocationOrdering) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunPhysicalLocationOrdering) ProtoMessage() {} + +func (x *OperationRunPhysicalLocationOrdering) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[142] + 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 OperationRunPhysicalLocationOrdering.ProtoReflect.Descriptor instead. +func (*OperationRunPhysicalLocationOrdering) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{142} +} + +func (x *OperationRunPhysicalLocationOrdering) GetStrategy() OperationRunPhysicalLocationOrdering_Strategy { + if x != nil { + return x.Strategy + } + return OperationRunPhysicalLocationOrdering_STRATEGY_UNKNOWN +} + +type OperationRunPhasePolicy struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Types that are valid to be assigned to Plan: + // + // *OperationRunPhasePolicy_Equal + // *OperationRunPhasePolicy_Percentage + // *OperationRunPhasePolicy_Count + Plan isOperationRunPhasePolicy_Plan `protobuf_oneof:"plan"` + // Optional. Default: manual phase advancement. + AdvancePolicy *OperationRunPhaseAdvancePolicy `protobuf:"bytes,4,opt,name=advance_policy,json=advancePolicy,proto3" json:"advance_policy,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunPhasePolicy) Reset() { + *x = OperationRunPhasePolicy{} + mi := &file_flow_proto_msgTypes[143] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunPhasePolicy) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunPhasePolicy) ProtoMessage() {} + +func (x *OperationRunPhasePolicy) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[143] + 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 OperationRunPhasePolicy.ProtoReflect.Descriptor instead. +func (*OperationRunPhasePolicy) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{143} +} + +func (x *OperationRunPhasePolicy) GetPlan() isOperationRunPhasePolicy_Plan { + if x != nil { + return x.Plan + } + return nil +} + +func (x *OperationRunPhasePolicy) GetEqual() *EqualOperationRunPhases { + if x != nil { + if x, ok := x.Plan.(*OperationRunPhasePolicy_Equal); ok { + return x.Equal + } + } + return nil +} + +func (x *OperationRunPhasePolicy) GetPercentage() *PercentageOperationRunPhases { + if x != nil { + if x, ok := x.Plan.(*OperationRunPhasePolicy_Percentage); ok { + return x.Percentage + } + } + return nil +} + +func (x *OperationRunPhasePolicy) GetCount() *CountOperationRunPhases { + if x != nil { + if x, ok := x.Plan.(*OperationRunPhasePolicy_Count); ok { + return x.Count + } + } + return nil +} + +func (x *OperationRunPhasePolicy) GetAdvancePolicy() *OperationRunPhaseAdvancePolicy { + if x != nil { + return x.AdvancePolicy + } + return nil +} + +type isOperationRunPhasePolicy_Plan interface { + isOperationRunPhasePolicy_Plan() +} + +type OperationRunPhasePolicy_Equal struct { + Equal *EqualOperationRunPhases `protobuf:"bytes,1,opt,name=equal,proto3,oneof"` +} + +type OperationRunPhasePolicy_Percentage struct { + Percentage *PercentageOperationRunPhases `protobuf:"bytes,2,opt,name=percentage,proto3,oneof"` +} + +type OperationRunPhasePolicy_Count struct { + Count *CountOperationRunPhases `protobuf:"bytes,3,opt,name=count,proto3,oneof"` +} + +func (*OperationRunPhasePolicy_Equal) isOperationRunPhasePolicy_Plan() {} + +func (*OperationRunPhasePolicy_Percentage) isOperationRunPhasePolicy_Plan() {} + +func (*OperationRunPhasePolicy_Count) isOperationRunPhasePolicy_Plan() {} + +type EqualOperationRunPhases struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Required. Example: 10 means ten roughly equal phases. + PhaseCount int32 `protobuf:"varint,1,opt,name=phase_count,json=phaseCount,proto3" json:"phase_count,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *EqualOperationRunPhases) Reset() { + *x = EqualOperationRunPhases{} + mi := &file_flow_proto_msgTypes[144] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *EqualOperationRunPhases) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*EqualOperationRunPhases) ProtoMessage() {} + +func (x *EqualOperationRunPhases) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[144] + 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 EqualOperationRunPhases.ProtoReflect.Descriptor instead. +func (*EqualOperationRunPhases) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{144} +} + +func (x *EqualOperationRunPhases) GetPhaseCount() int32 { + if x != nil { + return x.PhaseCount + } + return 0 +} + +type PercentageOperationRunPhases struct { + state protoimpl.MessageState `protogen:"open.v1"` + Phases []*OperationRunPercentagePhase `protobuf:"bytes,1,rep,name=phases,proto3" json:"phases,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *PercentageOperationRunPhases) Reset() { + *x = PercentageOperationRunPhases{} + mi := &file_flow_proto_msgTypes[145] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *PercentageOperationRunPhases) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*PercentageOperationRunPhases) ProtoMessage() {} + +func (x *PercentageOperationRunPhases) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[145] + 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 PercentageOperationRunPhases.ProtoReflect.Descriptor instead. +func (*PercentageOperationRunPhases) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{145} +} + +func (x *PercentageOperationRunPhases) GetPhases() []*OperationRunPercentagePhase { + if x != nil { + return x.Phases + } + return nil +} + +type OperationRunPercentagePhase struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Required. Valid range: 1..100. Percentage phase values must sum to 100. + Percentage int32 `protobuf:"varint,1,opt,name=percentage,proto3" json:"percentage,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunPercentagePhase) Reset() { + *x = OperationRunPercentagePhase{} + mi := &file_flow_proto_msgTypes[146] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunPercentagePhase) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunPercentagePhase) ProtoMessage() {} + +func (x *OperationRunPercentagePhase) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[146] + 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 OperationRunPercentagePhase.ProtoReflect.Descriptor instead. +func (*OperationRunPercentagePhase) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{146} +} + +func (x *OperationRunPercentagePhase) GetPercentage() int32 { + if x != nil { + return x.Percentage + } + return 0 +} + +type CountOperationRunPhases struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Counts for phases before the generated final phase. The generated final + // phase covers the remaining candidate scope after all targets assigned by + // these defined count phases. + Phases []*OperationRunCountPhase `protobuf:"bytes,1,rep,name=phases,proto3" json:"phases,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CountOperationRunPhases) Reset() { + *x = CountOperationRunPhases{} + mi := &file_flow_proto_msgTypes[147] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CountOperationRunPhases) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CountOperationRunPhases) ProtoMessage() {} + +func (x *CountOperationRunPhases) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[147] + 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 CountOperationRunPhases.ProtoReflect.Descriptor instead. +func (*CountOperationRunPhases) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{147} +} + +func (x *CountOperationRunPhases) GetPhases() []*OperationRunCountPhase { + if x != nil { + return x.Phases + } + return nil +} + +type OperationRunCountPhase struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Required. Must be greater than 0. + Count int32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunCountPhase) Reset() { + *x = OperationRunCountPhase{} + mi := &file_flow_proto_msgTypes[148] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunCountPhase) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunCountPhase) ProtoMessage() {} + +func (x *OperationRunCountPhase) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[148] + 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 OperationRunCountPhase.ProtoReflect.Descriptor instead. +func (*OperationRunCountPhase) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{148} +} + +func (x *OperationRunCountPhase) GetCount() int32 { + if x != nil { + return x.Count + } + return 0 +} + +type OperationRunPhaseAdvancePolicy struct { + state protoimpl.MessageState `protogen:"open.v1"` + // When false, a completed phase pauses with PHASE_GATE and waits for + // ResumeOperationRun. When true, the dispatcher advances to the next phase + // automatically as long as global safety gates are not tripped. + AutoAdvance bool `protobuf:"varint,1,opt,name=auto_advance,json=autoAdvance,proto3" json:"auto_advance,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunPhaseAdvancePolicy) Reset() { + *x = OperationRunPhaseAdvancePolicy{} + mi := &file_flow_proto_msgTypes[149] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunPhaseAdvancePolicy) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunPhaseAdvancePolicy) ProtoMessage() {} + +func (x *OperationRunPhaseAdvancePolicy) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[149] + 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 OperationRunPhaseAdvancePolicy.ProtoReflect.Descriptor instead. +func (*OperationRunPhaseAdvancePolicy) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{149} +} + +func (x *OperationRunPhaseAdvancePolicy) GetAutoAdvance() bool { + if x != nil { + return x.AutoAdvance + } + return false +} + +type OperationRunConflictPolicy struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Types that are valid to be assigned to Strategy: + // + // *OperationRunConflictPolicy_Retry + Strategy isOperationRunConflictPolicy_Strategy `protobuf_oneof:"strategy"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunConflictPolicy) Reset() { + *x = OperationRunConflictPolicy{} + mi := &file_flow_proto_msgTypes[150] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunConflictPolicy) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunConflictPolicy) ProtoMessage() {} + +func (x *OperationRunConflictPolicy) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[150] + 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 OperationRunConflictPolicy.ProtoReflect.Descriptor instead. +func (*OperationRunConflictPolicy) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{150} +} + +func (x *OperationRunConflictPolicy) GetStrategy() isOperationRunConflictPolicy_Strategy { + if x != nil { + return x.Strategy + } + return nil +} + +func (x *OperationRunConflictPolicy) GetRetry() *OperationRunConflictRetryPolicy { + if x != nil { + if x, ok := x.Strategy.(*OperationRunConflictPolicy_Retry); ok { + return x.Retry + } + } + return nil +} + +type isOperationRunConflictPolicy_Strategy interface { + isOperationRunConflictPolicy_Strategy() +} + +type OperationRunConflictPolicy_Retry struct { + Retry *OperationRunConflictRetryPolicy `protobuf:"bytes,1,opt,name=retry,proto3,oneof"` +} + +func (*OperationRunConflictPolicy_Retry) isOperationRunConflictPolicy_Strategy() {} + +type OperationRunConflictRetryPolicy struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Optional. Missing values are filled from operation-specific defaults. + RetryTimeout *durationpb.Duration `protobuf:"bytes,1,opt,name=retry_timeout,json=retryTimeout,proto3" json:"retry_timeout,omitempty"` + InitialRetryDelay *durationpb.Duration `protobuf:"bytes,2,opt,name=initial_retry_delay,json=initialRetryDelay,proto3" json:"initial_retry_delay,omitempty"` + MaxRetryDelay *durationpb.Duration `protobuf:"bytes,3,opt,name=max_retry_delay,json=maxRetryDelay,proto3" json:"max_retry_delay,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunConflictRetryPolicy) Reset() { + *x = OperationRunConflictRetryPolicy{} + mi := &file_flow_proto_msgTypes[151] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunConflictRetryPolicy) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunConflictRetryPolicy) ProtoMessage() {} + +func (x *OperationRunConflictRetryPolicy) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[151] + 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 OperationRunConflictRetryPolicy.ProtoReflect.Descriptor instead. +func (*OperationRunConflictRetryPolicy) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{151} +} + +func (x *OperationRunConflictRetryPolicy) GetRetryTimeout() *durationpb.Duration { + if x != nil { + return x.RetryTimeout + } + return nil +} + +func (x *OperationRunConflictRetryPolicy) GetInitialRetryDelay() *durationpb.Duration { + if x != nil { + return x.InitialRetryDelay + } + return nil +} + +func (x *OperationRunConflictRetryPolicy) GetMaxRetryDelay() *durationpb.Duration { + if x != nil { + return x.MaxRetryDelay + } + return nil +} + +type OperationRunTargetScope struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Prior operation runs whose materialized rack execution targets should be + // excluded from this run's candidate scope. The base scope is the embedded + // operation target_spec when present; otherwise it is the default + // qualified/applicable scope. + ExcludeOperationRunIds []*UUID `protobuf:"bytes,1,rep,name=exclude_operation_run_ids,json=excludeOperationRunIds,proto3" json:"exclude_operation_run_ids,omitempty"` + // Restricts components when the embedded operation target_spec is omitted + // and the planner uses the default qualified/applicable rack scope. Omit to + // target all applicable components in the default scope. This must not be + // set together with an explicit operation target_spec. + DefaultScopeComponentFilter *ComponentFilter `protobuf:"bytes,2,opt,name=default_scope_component_filter,json=defaultScopeComponentFilter,proto3" json:"default_scope_component_filter,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunTargetScope) Reset() { + *x = OperationRunTargetScope{} + mi := &file_flow_proto_msgTypes[152] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunTargetScope) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunTargetScope) ProtoMessage() {} + +func (x *OperationRunTargetScope) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[152] + 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 OperationRunTargetScope.ProtoReflect.Descriptor instead. +func (*OperationRunTargetScope) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{152} +} + +func (x *OperationRunTargetScope) GetExcludeOperationRunIds() []*UUID { + if x != nil { + return x.ExcludeOperationRunIds + } + return nil +} + +func (x *OperationRunTargetScope) GetDefaultScopeComponentFilter() *ComponentFilter { + if x != nil { + return x.DefaultScopeComponentFilter + } + return nil +} + +type OperationRunOperation struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Types that are valid to be assigned to Operation: + // + // *OperationRunOperation_UpgradeFirmware + Operation isOperationRunOperation_Operation `protobuf_oneof:"operation"` + // Optional exclusions applied after the embedded operation target_spec (or + // default qualified scope) is resolved. + TargetScope *OperationRunTargetScope `protobuf:"bytes,2,opt,name=target_scope,json=targetScope,proto3" json:"target_scope,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunOperation) Reset() { + *x = OperationRunOperation{} + mi := &file_flow_proto_msgTypes[153] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunOperation) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunOperation) ProtoMessage() {} + +func (x *OperationRunOperation) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[153] + 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 OperationRunOperation.ProtoReflect.Descriptor instead. +func (*OperationRunOperation) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{153} +} + +func (x *OperationRunOperation) GetOperation() isOperationRunOperation_Operation { + if x != nil { + return x.Operation + } + return nil +} + +func (x *OperationRunOperation) GetUpgradeFirmware() *UpgradeFirmwareRequest { + if x != nil { + if x, ok := x.Operation.(*OperationRunOperation_UpgradeFirmware); ok { + return x.UpgradeFirmware + } + } + return nil +} + +func (x *OperationRunOperation) GetTargetScope() *OperationRunTargetScope { + if x != nil { + return x.TargetScope + } + return nil +} + +type isOperationRunOperation_Operation interface { + isOperationRunOperation_Operation() +} + +type OperationRunOperation_UpgradeFirmware struct { + // In CreateOperationRun, target_spec is optional and defines candidate + // scope before selector is applied. In the existing UpgradeFirmware RPC, + // target_spec remains required and means "run exactly on these targets". + UpgradeFirmware *UpgradeFirmwareRequest `protobuf:"bytes,1,opt,name=upgrade_firmware,json=upgradeFirmware,proto3,oneof"` +} + +func (*OperationRunOperation_UpgradeFirmware) isOperationRunOperation_Operation() {} + +type OperationRunState struct { + state protoimpl.MessageState `protogen:"open.v1"` + Status OperationRunStatus `protobuf:"varint,1,opt,name=status,proto3,enum=v1.OperationRunStatus" json:"status,omitempty"` + Reason OperationRunStatusReason `protobuf:"varint,2,opt,name=reason,proto3,enum=v1.OperationRunStatusReason" json:"reason,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunState) Reset() { + *x = OperationRunState{} + mi := &file_flow_proto_msgTypes[154] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunState) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunState) ProtoMessage() {} + +func (x *OperationRunState) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[154] + 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 OperationRunState.ProtoReflect.Descriptor instead. +func (*OperationRunState) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{154} +} + +func (x *OperationRunState) GetStatus() OperationRunStatus { + if x != nil { + return x.Status + } + return OperationRunStatus_OPERATION_RUN_STATUS_UNKNOWN +} + +func (x *OperationRunState) GetReason() OperationRunStatusReason { + if x != nil { + return x.Reason + } + return OperationRunStatusReason_OPERATION_RUN_STATUS_REASON_UNKNOWN +} + +type OperationKind struct { + state protoimpl.MessageState `protogen:"open.v1"` + Type OperationType `protobuf:"varint,1,opt,name=type,proto3,enum=v1.OperationType" json:"type,omitempty"` + Code *string `protobuf:"bytes,2,opt,name=code,proto3,oneof" json:"code,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationKind) Reset() { + *x = OperationKind{} + mi := &file_flow_proto_msgTypes[155] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationKind) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationKind) ProtoMessage() {} + +func (x *OperationKind) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[155] + 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 OperationKind.ProtoReflect.Descriptor instead. +func (*OperationKind) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{155} +} + +func (x *OperationKind) GetType() OperationType { + if x != nil { + return x.Type + } + return OperationType_OPERATION_TYPE_UNKNOWN +} + +func (x *OperationKind) GetCode() string { + if x != nil && x.Code != nil { + return *x.Code + } + return "" +} + +type OperationRun struct { + state protoimpl.MessageState `protogen:"open.v1"` + Summary *OperationRunSummary `protobuf:"bytes,1,opt,name=summary,proto3" json:"summary,omitempty"` + Configuration *OperationRunConfiguration `protobuf:"bytes,2,opt,name=configuration,proto3" json:"configuration,omitempty"` + // Present only when the request asks Flow to compute derived stats. + Stats *OperationRunStats `protobuf:"bytes,3,opt,name=stats,proto3" json:"stats,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRun) Reset() { + *x = OperationRun{} + mi := &file_flow_proto_msgTypes[156] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRun) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRun) ProtoMessage() {} + +func (x *OperationRun) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[156] + 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 OperationRun.ProtoReflect.Descriptor instead. +func (*OperationRun) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{156} +} + +func (x *OperationRun) GetSummary() *OperationRunSummary { + if x != nil { + return x.Summary + } + return nil +} + +func (x *OperationRun) GetConfiguration() *OperationRunConfiguration { + if x != nil { + return x.Configuration + } + return nil +} + +func (x *OperationRun) GetStats() *OperationRunStats { + if x != nil { + return x.Stats + } + return nil +} + +// OperationRunSummary is the lightweight representation returned by +// ListOperationRuns. It intentionally omits the full configuration and +// target-derived phase stats; callers can use GetOperationRun for those details. +type OperationRunSummary struct { + state protoimpl.MessageState `protogen:"open.v1"` + Id *UUID `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` + Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` + Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` + OperationKind *OperationKind `protobuf:"bytes,4,opt,name=operation_kind,json=operationKind,proto3" json:"operation_kind,omitempty"` + State *OperationRunState `protobuf:"bytes,5,opt,name=state,proto3" json:"state,omitempty"` + StatusMessage string `protobuf:"bytes,6,opt,name=status_message,json=statusMessage,proto3" json:"status_message,omitempty"` + TotalPhases int32 `protobuf:"varint,7,opt,name=total_phases,json=totalPhases,proto3" json:"total_phases,omitempty"` + CreatedAt *timestamppb.Timestamp `protobuf:"bytes,8,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` + UpdatedAt *timestamppb.Timestamp `protobuf:"bytes,9,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"` + StartedAt *timestamppb.Timestamp `protobuf:"bytes,10,opt,name=started_at,json=startedAt,proto3,oneof" json:"started_at,omitempty"` + FinishedAt *timestamppb.Timestamp `protobuf:"bytes,11,opt,name=finished_at,json=finishedAt,proto3,oneof" json:"finished_at,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunSummary) Reset() { + *x = OperationRunSummary{} + mi := &file_flow_proto_msgTypes[157] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *OperationRunSummary) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*OperationRunSummary) ProtoMessage() {} + +func (x *OperationRunSummary) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[157] + 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 OperationRunSummary.ProtoReflect.Descriptor instead. +func (*OperationRunSummary) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{157} +} + +func (x *OperationRunSummary) GetId() *UUID { + if x != nil { + return x.Id + } + return nil +} + +func (x *OperationRunSummary) GetName() string { + if x != nil { + return x.Name + } + return "" +} + +func (x *OperationRunSummary) GetDescription() string { + if x != nil { + return x.Description + } + return "" +} + +func (x *OperationRunSummary) GetOperationKind() *OperationKind { + if x != nil { + return x.OperationKind + } + return nil +} + +func (x *OperationRunSummary) GetState() *OperationRunState { + if x != nil { + return x.State + } + return nil +} + +func (x *OperationRunSummary) GetStatusMessage() string { + if x != nil { + return x.StatusMessage + } + return "" +} + +func (x *OperationRunSummary) GetTotalPhases() int32 { + if x != nil { + return x.TotalPhases + } + return 0 +} + +func (x *OperationRunSummary) GetCreatedAt() *timestamppb.Timestamp { + if x != nil { + return x.CreatedAt + } + return nil +} + +func (x *OperationRunSummary) GetUpdatedAt() *timestamppb.Timestamp { + if x != nil { + return x.UpdatedAt + } + return nil +} + +func (x *OperationRunSummary) GetStartedAt() *timestamppb.Timestamp { + if x != nil { + return x.StartedAt + } + return nil } -func (x *RemoveTaskScheduleScopeRequest) GetScopeId() *UUID { +func (x *OperationRunSummary) GetFinishedAt() *timestamppb.Timestamp { if x != nil { - return x.ScopeId + return x.FinishedAt } return nil } -// UpdateTaskScheduleScopeRequest reconciles the schedule's scope against the -// desired target_spec: racks present in desired_scope but not in the current scope -// are added; racks present in the current scope but absent from desired_scope are -// removed; racks present in both have their component_filter updated if changed. -// For component-level targets the server resolves rack membership automatically. -type UpdateTaskScheduleScopeRequest struct { - state protoimpl.MessageState `protogen:"open.v1"` - ScheduleId *UUID `protobuf:"bytes,1,opt,name=schedule_id,json=scheduleId,proto3" json:"schedule_id,omitempty"` - DesiredScope *OperationTargetSpec `protobuf:"bytes,2,opt,name=desired_scope,json=desiredScope,proto3" json:"desired_scope,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache +type OperationRunStats struct { + state protoimpl.MessageState `protogen:"open.v1"` + CurrentPhaseStats *OperationRunPhaseStats `protobuf:"bytes,1,opt,name=current_phase_stats,json=currentPhaseStats,proto3" json:"current_phase_stats,omitempty"` + CumulativePhaseStats *OperationRunPhaseStats `protobuf:"bytes,2,opt,name=cumulative_phase_stats,json=cumulativePhaseStats,proto3" json:"cumulative_phase_stats,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *UpdateTaskScheduleScopeRequest) Reset() { - *x = UpdateTaskScheduleScopeRequest{} - mi := &file_flow_proto_msgTypes[110] +func (x *OperationRunStats) Reset() { + *x = OperationRunStats{} + mi := &file_flow_proto_msgTypes[158] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *UpdateTaskScheduleScopeRequest) String() string { +func (x *OperationRunStats) String() string { return protoimpl.X.MessageStringOf(x) } -func (*UpdateTaskScheduleScopeRequest) ProtoMessage() {} +func (*OperationRunStats) ProtoMessage() {} -func (x *UpdateTaskScheduleScopeRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[110] +func (x *OperationRunStats) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[158] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7661,51 +10816,51 @@ func (x *UpdateTaskScheduleScopeRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use UpdateTaskScheduleScopeRequest.ProtoReflect.Descriptor instead. -func (*UpdateTaskScheduleScopeRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{110} +// Deprecated: Use OperationRunStats.ProtoReflect.Descriptor instead. +func (*OperationRunStats) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{158} } -func (x *UpdateTaskScheduleScopeRequest) GetScheduleId() *UUID { +func (x *OperationRunStats) GetCurrentPhaseStats() *OperationRunPhaseStats { if x != nil { - return x.ScheduleId + return x.CurrentPhaseStats } return nil } -func (x *UpdateTaskScheduleScopeRequest) GetDesiredScope() *OperationTargetSpec { +func (x *OperationRunStats) GetCumulativePhaseStats() *OperationRunPhaseStats { if x != nil { - return x.DesiredScope + return x.CumulativePhaseStats } return nil } -// UpdateTaskScheduleScopeResponse returns the complete scope after reconciliation. -type UpdateTaskScheduleScopeResponse struct { - state protoimpl.MessageState `protogen:"open.v1"` - Scopes []*TaskScheduleScope `protobuf:"bytes,1,rep,name=scopes,proto3" json:"scopes,omitempty"` - Added int32 `protobuf:"varint,2,opt,name=added,proto3" json:"added,omitempty"` // number of scope entries added - Removed int32 `protobuf:"varint,3,opt,name=removed,proto3" json:"removed,omitempty"` // number of scope entries removed - Updated int32 `protobuf:"varint,4,opt,name=updated,proto3" json:"updated,omitempty"` // number of scope entries with updated component_filter - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache +type OperationRunPhaseStats struct { + state protoimpl.MessageState `protogen:"open.v1"` + // For current_phase_stats, this is the current phase index. For + // cumulative_phase_stats, this is the latest included phase index. + PhaseIndex int32 `protobuf:"varint,1,opt,name=phase_index,json=phaseIndex,proto3" json:"phase_index,omitempty"` + SelectedTargets int32 `protobuf:"varint,2,opt,name=selected_targets,json=selectedTargets,proto3" json:"selected_targets,omitempty"` + OutcomeCounts *OperationRunTargetOutcomeCounts `protobuf:"bytes,3,opt,name=outcome_counts,json=outcomeCounts,proto3" json:"outcome_counts,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *UpdateTaskScheduleScopeResponse) Reset() { - *x = UpdateTaskScheduleScopeResponse{} - mi := &file_flow_proto_msgTypes[111] +func (x *OperationRunPhaseStats) Reset() { + *x = OperationRunPhaseStats{} + mi := &file_flow_proto_msgTypes[159] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *UpdateTaskScheduleScopeResponse) String() string { +func (x *OperationRunPhaseStats) String() string { return protoimpl.X.MessageStringOf(x) } -func (*UpdateTaskScheduleScopeResponse) ProtoMessage() {} +func (*OperationRunPhaseStats) ProtoMessage() {} -func (x *UpdateTaskScheduleScopeResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[111] +func (x *OperationRunPhaseStats) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[159] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7716,62 +10871,57 @@ func (x *UpdateTaskScheduleScopeResponse) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use UpdateTaskScheduleScopeResponse.ProtoReflect.Descriptor instead. -func (*UpdateTaskScheduleScopeResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{111} -} - -func (x *UpdateTaskScheduleScopeResponse) GetScopes() []*TaskScheduleScope { - if x != nil { - return x.Scopes - } - return nil +// Deprecated: Use OperationRunPhaseStats.ProtoReflect.Descriptor instead. +func (*OperationRunPhaseStats) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{159} } -func (x *UpdateTaskScheduleScopeResponse) GetAdded() int32 { +func (x *OperationRunPhaseStats) GetPhaseIndex() int32 { if x != nil { - return x.Added + return x.PhaseIndex } return 0 } -func (x *UpdateTaskScheduleScopeResponse) GetRemoved() int32 { +func (x *OperationRunPhaseStats) GetSelectedTargets() int32 { if x != nil { - return x.Removed + return x.SelectedTargets } return 0 } -func (x *UpdateTaskScheduleScopeResponse) GetUpdated() int32 { +func (x *OperationRunPhaseStats) GetOutcomeCounts() *OperationRunTargetOutcomeCounts { if x != nil { - return x.Updated + return x.OutcomeCounts } - return 0 + return nil } -// ListTaskScheduleScopesRequest returns all scope entries for a given schedule. -type ListTaskScheduleScopesRequest struct { +type OperationRunTargetOutcomeCounts struct { state protoimpl.MessageState `protogen:"open.v1"` - ScheduleId *UUID `protobuf:"bytes,1,opt,name=schedule_id,json=scheduleId,proto3" json:"schedule_id,omitempty"` + Completed int32 `protobuf:"varint,1,opt,name=completed,proto3" json:"completed,omitempty"` + Failed int32 `protobuf:"varint,2,opt,name=failed,proto3" json:"failed,omitempty"` + Terminated int32 `protobuf:"varint,3,opt,name=terminated,proto3" json:"terminated,omitempty"` + Skipped int32 `protobuf:"varint,4,opt,name=skipped,proto3" json:"skipped,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } -func (x *ListTaskScheduleScopesRequest) Reset() { - *x = ListTaskScheduleScopesRequest{} - mi := &file_flow_proto_msgTypes[112] +func (x *OperationRunTargetOutcomeCounts) Reset() { + *x = OperationRunTargetOutcomeCounts{} + mi := &file_flow_proto_msgTypes[160] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListTaskScheduleScopesRequest) String() string { +func (x *OperationRunTargetOutcomeCounts) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListTaskScheduleScopesRequest) ProtoMessage() {} +func (*OperationRunTargetOutcomeCounts) ProtoMessage() {} -func (x *ListTaskScheduleScopesRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[112] +func (x *OperationRunTargetOutcomeCounts) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[160] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7782,40 +10932,71 @@ func (x *ListTaskScheduleScopesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListTaskScheduleScopesRequest.ProtoReflect.Descriptor instead. -func (*ListTaskScheduleScopesRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{112} +// Deprecated: Use OperationRunTargetOutcomeCounts.ProtoReflect.Descriptor instead. +func (*OperationRunTargetOutcomeCounts) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{160} } -func (x *ListTaskScheduleScopesRequest) GetScheduleId() *UUID { +func (x *OperationRunTargetOutcomeCounts) GetCompleted() int32 { if x != nil { - return x.ScheduleId + return x.Completed } - return nil + return 0 } -type ListTaskScheduleScopesResponse struct { - state protoimpl.MessageState `protogen:"open.v1"` - Scopes []*TaskScheduleScope `protobuf:"bytes,1,rep,name=scopes,proto3" json:"scopes,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache +func (x *OperationRunTargetOutcomeCounts) GetFailed() int32 { + if x != nil { + return x.Failed + } + return 0 } -func (x *ListTaskScheduleScopesResponse) Reset() { - *x = ListTaskScheduleScopesResponse{} - mi := &file_flow_proto_msgTypes[113] +func (x *OperationRunTargetOutcomeCounts) GetTerminated() int32 { + if x != nil { + return x.Terminated + } + return 0 +} + +func (x *OperationRunTargetOutcomeCounts) GetSkipped() int32 { + if x != nil { + return x.Skipped + } + return 0 +} + +type OperationRunTarget struct { + state protoimpl.MessageState `protogen:"open.v1"` + Id *UUID `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` + OperationRunId *UUID `protobuf:"bytes,2,opt,name=operation_run_id,json=operationRunId,proto3" json:"operation_run_id,omitempty"` + RackId *UUID `protobuf:"bytes,3,opt,name=rack_id,json=rackId,proto3" json:"rack_id,omitempty"` + SequenceIndex int32 `protobuf:"varint,4,opt,name=sequence_index,json=sequenceIndex,proto3" json:"sequence_index,omitempty"` + PhaseIndex int32 `protobuf:"varint,5,opt,name=phase_index,json=phaseIndex,proto3" json:"phase_index,omitempty"` + TaskId *UUID `protobuf:"bytes,6,opt,name=task_id,json=taskId,proto3" json:"task_id,omitempty"` // absent until a child task has been submitted + Status OperationRunTargetStatus `protobuf:"varint,7,opt,name=status,proto3,enum=v1.OperationRunTargetStatus" json:"status,omitempty"` + Message string `protobuf:"bytes,8,opt,name=message,proto3" json:"message,omitempty"` + ComponentsByType *ComponentsByType `protobuf:"bytes,9,opt,name=components_by_type,json=componentsByType,proto3" json:"components_by_type,omitempty"` + CreatedAt *timestamppb.Timestamp `protobuf:"bytes,10,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` + UpdatedAt *timestamppb.Timestamp `protobuf:"bytes,11,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *OperationRunTarget) Reset() { + *x = OperationRunTarget{} + mi := &file_flow_proto_msgTypes[161] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListTaskScheduleScopesResponse) String() string { +func (x *OperationRunTarget) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListTaskScheduleScopesResponse) ProtoMessage() {} +func (*OperationRunTarget) ProtoMessage() {} -func (x *ListTaskScheduleScopesResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[113] +func (x *OperationRunTarget) ProtoReflect() protoreflect.Message { + mi := &file_flow_proto_msgTypes[161] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7826,129 +11007,84 @@ func (x *ListTaskScheduleScopesResponse) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListTaskScheduleScopesResponse.ProtoReflect.Descriptor instead. -func (*ListTaskScheduleScopesResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{113} +// Deprecated: Use OperationRunTarget.ProtoReflect.Descriptor instead. +func (*OperationRunTarget) Descriptor() ([]byte, []int) { + return file_flow_proto_rawDescGZIP(), []int{161} } -func (x *ListTaskScheduleScopesResponse) GetScopes() []*TaskScheduleScope { +func (x *OperationRunTarget) GetId() *UUID { if x != nil { - return x.Scopes + return x.Id } return nil } -// CheckScheduleConflictsRequest checks whether a proposed scheduled operation -// would conflict with any existing enabled schedules. -// The operation oneof mirrors CreateTaskScheduleRequest: the target_spec -// embedded in the operation message defines which racks are checked. -// -// This call is advisory and intentionally coarse: it matches on operation -// type and code only, without intersecting component-type filters or explicit -// component UUID lists. As a result it may return false positives — two -// schedules that target disjoint component sets on the same rack will appear -// to conflict here even if their tasks would never collide at runtime. -// Execution-time conflict detection (the task manager's conflict rules) remains -// the authoritative backstop. The caller may proceed even when conflicts are -// returned. -type CheckScheduleConflictsRequest struct { - state protoimpl.MessageState `protogen:"open.v1"` - Operation *ScheduledOperation `protobuf:"bytes,1,opt,name=operation,proto3" json:"operation,omitempty"` - // exclude_schedule_id omits a schedule from the conflict check results. - // Pass the ID of the schedule being updated so its current definition is - // not returned as a conflict against the proposed replacement operation. - ExcludeScheduleId *UUID `protobuf:"bytes,2,opt,name=exclude_schedule_id,json=excludeScheduleId,proto3,oneof" json:"exclude_schedule_id,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache -} - -func (x *CheckScheduleConflictsRequest) Reset() { - *x = CheckScheduleConflictsRequest{} - mi := &file_flow_proto_msgTypes[114] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) -} - -func (x *CheckScheduleConflictsRequest) String() string { - return protoimpl.X.MessageStringOf(x) +func (x *OperationRunTarget) GetOperationRunId() *UUID { + if x != nil { + return x.OperationRunId + } + return nil } -func (*CheckScheduleConflictsRequest) ProtoMessage() {} - -func (x *CheckScheduleConflictsRequest) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[114] +func (x *OperationRunTarget) GetRackId() *UUID { if x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms + return x.RackId } - return mi.MessageOf(x) + return nil } -// Deprecated: Use CheckScheduleConflictsRequest.ProtoReflect.Descriptor instead. -func (*CheckScheduleConflictsRequest) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{114} +func (x *OperationRunTarget) GetSequenceIndex() int32 { + if x != nil { + return x.SequenceIndex + } + return 0 } -func (x *CheckScheduleConflictsRequest) GetOperation() *ScheduledOperation { +func (x *OperationRunTarget) GetPhaseIndex() int32 { if x != nil { - return x.Operation + return x.PhaseIndex } - return nil + return 0 } -func (x *CheckScheduleConflictsRequest) GetExcludeScheduleId() *UUID { +func (x *OperationRunTarget) GetTaskId() *UUID { if x != nil { - return x.ExcludeScheduleId + return x.TaskId } return nil } -// CheckScheduleConflictsResponse lists the existing enabled schedules whose -// operations may conflict with the proposed operation at execution time. -// An empty list means no conflicts were detected. -type CheckScheduleConflictsResponse struct { - state protoimpl.MessageState `protogen:"open.v1"` - Conflicts []*TaskSchedule `protobuf:"bytes,1,rep,name=conflicts,proto3" json:"conflicts,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache -} - -func (x *CheckScheduleConflictsResponse) Reset() { - *x = CheckScheduleConflictsResponse{} - mi := &file_flow_proto_msgTypes[115] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) +func (x *OperationRunTarget) GetStatus() OperationRunTargetStatus { + if x != nil { + return x.Status + } + return OperationRunTargetStatus_OPERATION_RUN_TARGET_STATUS_UNKNOWN } -func (x *CheckScheduleConflictsResponse) String() string { - return protoimpl.X.MessageStringOf(x) +func (x *OperationRunTarget) GetMessage() string { + if x != nil { + return x.Message + } + return "" } -func (*CheckScheduleConflictsResponse) ProtoMessage() {} - -func (x *CheckScheduleConflictsResponse) ProtoReflect() protoreflect.Message { - mi := &file_flow_proto_msgTypes[115] +func (x *OperationRunTarget) GetComponentsByType() *ComponentsByType { if x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms + return x.ComponentsByType } - return mi.MessageOf(x) + return nil } -// Deprecated: Use CheckScheduleConflictsResponse.ProtoReflect.Descriptor instead. -func (*CheckScheduleConflictsResponse) Descriptor() ([]byte, []int) { - return file_flow_proto_rawDescGZIP(), []int{115} +func (x *OperationRunTarget) GetCreatedAt() *timestamppb.Timestamp { + if x != nil { + return x.CreatedAt + } + return nil } -func (x *CheckScheduleConflictsResponse) GetConflicts() []*TaskSchedule { +func (x *OperationRunTarget) GetUpdatedAt() *timestamppb.Timestamp { if x != nil { - return x.Conflicts + return x.UpdatedAt } return nil } @@ -7958,7 +11094,7 @@ var File_flow_proto protoreflect.FileDescriptor const file_flow_proto_rawDesc = "" + "\n" + "\n" + - "flow.proto\x12\x02v1\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x16\n" + + "flow.proto\x12\x02v1\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1egoogle/protobuf/duration.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x16\n" + "\x04UUID\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\"\xdf\x01\n" + "\n" + @@ -8031,7 +11167,18 @@ const file_flow_proto_rawDesc = "" + "\x10ComponentTargets\x12-\n" + "\atargets\x18\x01 \x03(\v2\x13.v1.ComponentTargetR\atargets\"9\n" + "\x0eComponentTypes\x12'\n" + - "\x05types\x18\x01 \x03(\x0e2\x11.v1.ComponentTypeR\x05types\"\x88\x01\n" + + "\x05types\x18\x01 \x03(\x0e2\x11.v1.ComponentTypeR\x05types\"\x7f\n" + + "\x0fComponentFilter\x12*\n" + + "\x05types\x18\x01 \x01(\v2\x12.v1.ComponentTypesH\x00R\x05types\x126\n" + + "\n" + + "components\x18\x02 \x01(\v2\x14.v1.ComponentTargetsH\x00R\n" + + "componentsB\b\n" + + "\x06filter\"A\n" + + "\x10ComponentsByType\x12-\n" + + "\x06groups\x18\x01 \x03(\v2\x15.v1.ComponentsForTypeR\x06groups\"i\n" + + "\x11ComponentsForType\x12%\n" + + "\x04type\x18\x01 \x01(\x0e2\x11.v1.ComponentTypeR\x04type\x12-\n" + + "\rcomponent_ids\x18\x02 \x03(\v2\b.v1.UUIDR\fcomponentIds\"\x88\x01\n" + "\n" + "RackTarget\x12\x1a\n" + "\x02id\x18\x01 \x01(\v2\b.v1.UUIDH\x00R\x02id\x12\x14\n" + @@ -8533,7 +11680,200 @@ const file_flow_proto_rawDesc = "" + "\x13exclude_schedule_id\x18\x02 \x01(\v2\b.v1.UUIDH\x00R\x11excludeScheduleId\x88\x01\x01B\x16\n" + "\x14_exclude_schedule_id\"P\n" + "\x1eCheckScheduleConflictsResponse\x12.\n" + - "\tconflicts\x18\x01 \x03(\v2\x10.v1.TaskScheduleR\tconflicts*D\n" + + "\tconflicts\x18\x01 \x03(\v2\x10.v1.TaskScheduleR\tconflicts\"\x96\x01\n" + + "\x19CreateOperationRunRequest\x12\x12\n" + + "\x04name\x18\x01 \x01(\tR\x04name\x12 \n" + + "\vdescription\x18\x02 \x01(\tR\vdescription\x12C\n" + + "\rconfiguration\x18\x03 \x01(\v2\x1d.v1.OperationRunConfigurationR\rconfiguration\"6\n" + + "\x1aCreateOperationRunResponse\x12\x18\n" + + "\x02id\x18\x01 \x01(\v2\b.v1.UUIDR\x02id\"\xbd\x01\n" + + "\x19OperationRunConfiguration\x124\n" + + "\bselector\x18\x01 \x01(\v2\x18.v1.OperationRunSelectorR\bselector\x121\n" + + "\aoptions\x18\x02 \x01(\v2\x17.v1.OperationRunOptionsR\aoptions\x127\n" + + "\toperation\x18\x03 \x01(\v2\x19.v1.OperationRunOperationR\toperation\"W\n" + + "\x16GetOperationRunRequest\x12\x18\n" + + "\x02id\x18\x01 \x01(\v2\b.v1.UUIDR\x02id\x12#\n" + + "\rinclude_stats\x18\x02 \x01(\bR\fincludeStats\"P\n" + + "\x17GetOperationRunResponse\x125\n" + + "\roperation_run\x18\x01 \x01(\v2\x10.v1.OperationRunR\foperationRun\"\x8e\x01\n" + + "\x18ListOperationRunsRequest\x12.\n" + + "\x06filter\x18\x01 \x01(\v2\x16.v1.OperationRunFilterR\x06filter\x123\n" + + "\n" + + "pagination\x18\x02 \x01(\v2\x0e.v1.PaginationH\x00R\n" + + "pagination\x88\x01\x01B\r\n" + + "\v_pagination\"q\n" + + "\x19ListOperationRunsResponse\x12>\n" + + "\x0eoperation_runs\x18\x01 \x03(\v2\x17.v1.OperationRunSummaryR\roperationRuns\x12\x14\n" + + "\x05total\x18\x02 \x01(\x05R\x05total\"\xae\x01\n" + + "\x12OperationRunFilter\x12'\n" + + "\x04name\x18\x01 \x01(\v2\x13.v1.StringQueryInfoR\x04name\x123\n" + + "\x06states\x18\x02 \x03(\v2\x1b.v1.OperationRunStateFilterR\x06states\x12:\n" + + "\x0foperation_kinds\x18\x03 \x03(\v2\x11.v1.OperationKindR\x0eoperationKinds\"\x9f\x01\n" + + "\x17OperationRunStateFilter\x123\n" + + "\x06status\x18\x01 \x01(\x0e2\x16.v1.OperationRunStatusH\x00R\x06status\x88\x01\x01\x129\n" + + "\x06reason\x18\x02 \x01(\x0e2\x1c.v1.OperationRunStatusReasonH\x01R\x06reason\x88\x01\x01B\t\n" + + "\a_statusB\t\n" + + "\a_reason\"\x91\x02\n" + + "\x1eListOperationRunTargetsRequest\x122\n" + + "\x10operation_run_id\x18\x01 \x01(\v2\b.v1.UUIDR\x0eoperationRunId\x124\n" + + "\x06status\x18\x02 \x01(\x0e2\x1c.v1.OperationRunTargetStatusR\x06status\x123\n" + + "\n" + + "pagination\x18\x03 \x01(\v2\x0e.v1.PaginationH\x00R\n" + + "pagination\x88\x01\x01\x12A\n" + + "\vphase_scope\x18\x04 \x01(\x0e2 .v1.OperationRunTargetPhaseScopeR\n" + + "phaseScopeB\r\n" + + "\v_pagination\"i\n" + + "\x1fListOperationRunTargetsResponse\x120\n" + + "\atargets\x18\x01 \x03(\v2\x16.v1.OperationRunTargetR\atargets\x12\x14\n" + + "\x05total\x18\x02 \x01(\x05R\x05total\"4\n" + + "\x18PauseOperationRunRequest\x12\x18\n" + + "\x02id\x18\x01 \x01(\v2\b.v1.UUIDR\x02id\"5\n" + + "\x19ResumeOperationRunRequest\x12\x18\n" + + "\x02id\x18\x01 \x01(\v2\b.v1.UUIDR\x02id\"M\n" + + "\x19CancelOperationRunRequest\x12\x18\n" + + "\x02id\x18\x01 \x01(\v2\b.v1.UUIDR\x02id\x12\x16\n" + + "\x06reason\x18\x02 \x01(\tR\x06reason\"\\\n" + + "\x14OperationRunSelector\x128\n" + + "\n" + + "percentage\x18\x01 \x01(\v2\x16.v1.PercentageSelectorH\x00R\n" + + "percentageB\n" + + "\n" + + "\bselector\"H\n" + + "\x12PercentageSelector\x12\x1e\n" + + "\n" + + "percentage\x18\x01 \x01(\x05R\n" + + "percentage\x12\x12\n" + + "\x04seed\x18\x02 \x01(\tR\x04seed\"\xe0\x02\n" + + "\x13OperationRunOptions\x124\n" + + "\x16max_concurrent_targets\x18\x01 \x01(\x05R\x14maxConcurrentTargets\x12A\n" + + "\rsafety_policy\x18\x02 \x01(\v2\x1c.v1.OperationRunSafetyPolicyR\fsafetyPolicy\x12G\n" + + "\x0fconflict_policy\x18\x03 \x01(\v2\x1e.v1.OperationRunConflictPolicyR\x0econflictPolicy\x12G\n" + + "\x0fordering_policy\x18\x04 \x01(\v2\x1e.v1.OperationRunOrderingPolicyR\x0eorderingPolicy\x12>\n" + + "\fphase_policy\x18\x05 \x01(\v2\x1b.v1.OperationRunPhasePolicyR\vphasePolicy\"L\n" + + "\x18OperationRunSafetyPolicy\x120\n" + + "\x05gates\x18\x01 \x03(\v2\x1a.v1.OperationRunSafetyGateR\x05gates\"\xaf\x01\n" + + "\x16OperationRunSafetyGate\x12D\n" + + "\ffailure_rate\x18\x01 \x01(\v2\x1f.v1.OperationRunFailureRateGateH\x00R\vfailureRate\x12G\n" + + "\rfailure_count\x18\x02 \x01(\v2 .v1.OperationRunFailureCountGateH\x00R\ffailureCountB\x06\n" + + "\x04gate\"\x90\x01\n" + + "\x1bOperationRunFailureRateGate\x125\n" + + "\x05scope\x18\x01 \x01(\x0e2\x1f.v1.OperationRunSafetyGateScopeR\x05scope\x12:\n" + + "\x19failure_threshold_percent\x18\x02 \x01(\x05R\x17failureThresholdPercent\"\x8d\x01\n" + + "\x1cOperationRunFailureCountGate\x125\n" + + "\x05scope\x18\x01 \x01(\x0e2\x1f.v1.OperationRunSafetyGateScopeR\x05scope\x126\n" + + "\x17failure_threshold_count\x18\x02 \x01(\x05R\x15failureThresholdCount\"\xbb\x01\n" + + "\x1aOperationRunOrderingPolicy\x128\n" + + "\x06random\x18\x01 \x01(\v2\x1e.v1.OperationRunRandomOrderingH\x00R\x06random\x12W\n" + + "\x11physical_location\x18\x03 \x01(\v2(.v1.OperationRunPhysicalLocationOrderingH\x00R\x10physicalLocationB\n" + + "\n" + + "\bordering\"0\n" + + "\x1aOperationRunRandomOrdering\x12\x12\n" + + "\x04seed\x18\x01 \x01(\tR\x04seed\"\xd6\x01\n" + + "$OperationRunPhysicalLocationOrdering\x12M\n" + + "\bstrategy\x18\x01 \x01(\x0e21.v1.OperationRunPhysicalLocationOrdering.StrategyR\bstrategy\"_\n" + + "\bStrategy\x12\x14\n" + + "\x10STRATEGY_UNKNOWN\x10\x00\x12\x17\n" + + "\x13STRATEGY_ROW_BY_ROW\x10\x01\x12$\n" + + " STRATEGY_ONE_PER_ROW_ROUND_ROBIN\x10\x02\"\x9a\x02\n" + + "\x17OperationRunPhasePolicy\x123\n" + + "\x05equal\x18\x01 \x01(\v2\x1b.v1.EqualOperationRunPhasesH\x00R\x05equal\x12B\n" + + "\n" + + "percentage\x18\x02 \x01(\v2 .v1.PercentageOperationRunPhasesH\x00R\n" + + "percentage\x123\n" + + "\x05count\x18\x03 \x01(\v2\x1b.v1.CountOperationRunPhasesH\x00R\x05count\x12I\n" + + "\x0eadvance_policy\x18\x04 \x01(\v2\".v1.OperationRunPhaseAdvancePolicyR\radvancePolicyB\x06\n" + + "\x04plan\":\n" + + "\x17EqualOperationRunPhases\x12\x1f\n" + + "\vphase_count\x18\x01 \x01(\x05R\n" + + "phaseCount\"W\n" + + "\x1cPercentageOperationRunPhases\x127\n" + + "\x06phases\x18\x01 \x03(\v2\x1f.v1.OperationRunPercentagePhaseR\x06phases\"=\n" + + "\x1bOperationRunPercentagePhase\x12\x1e\n" + + "\n" + + "percentage\x18\x01 \x01(\x05R\n" + + "percentage\"M\n" + + "\x17CountOperationRunPhases\x122\n" + + "\x06phases\x18\x01 \x03(\v2\x1a.v1.OperationRunCountPhaseR\x06phases\".\n" + + "\x16OperationRunCountPhase\x12\x14\n" + + "\x05count\x18\x01 \x01(\x05R\x05count\"C\n" + + "\x1eOperationRunPhaseAdvancePolicy\x12!\n" + + "\fauto_advance\x18\x01 \x01(\bR\vautoAdvance\"e\n" + + "\x1aOperationRunConflictPolicy\x12;\n" + + "\x05retry\x18\x01 \x01(\v2#.v1.OperationRunConflictRetryPolicyH\x00R\x05retryB\n" + + "\n" + + "\bstrategy\"\xef\x01\n" + + "\x1fOperationRunConflictRetryPolicy\x12>\n" + + "\rretry_timeout\x18\x01 \x01(\v2\x19.google.protobuf.DurationR\fretryTimeout\x12I\n" + + "\x13initial_retry_delay\x18\x02 \x01(\v2\x19.google.protobuf.DurationR\x11initialRetryDelay\x12A\n" + + "\x0fmax_retry_delay\x18\x03 \x01(\v2\x19.google.protobuf.DurationR\rmaxRetryDelay\"\xb8\x01\n" + + "\x17OperationRunTargetScope\x12C\n" + + "\x19exclude_operation_run_ids\x18\x01 \x03(\v2\b.v1.UUIDR\x16excludeOperationRunIds\x12X\n" + + "\x1edefault_scope_component_filter\x18\x02 \x01(\v2\x13.v1.ComponentFilterR\x1bdefaultScopeComponentFilter\"\xad\x01\n" + + "\x15OperationRunOperation\x12G\n" + + "\x10upgrade_firmware\x18\x01 \x01(\v2\x1a.v1.UpgradeFirmwareRequestH\x00R\x0fupgradeFirmware\x12>\n" + + "\ftarget_scope\x18\x02 \x01(\v2\x1b.v1.OperationRunTargetScopeR\vtargetScopeB\v\n" + + "\toperation\"y\n" + + "\x11OperationRunState\x12.\n" + + "\x06status\x18\x01 \x01(\x0e2\x16.v1.OperationRunStatusR\x06status\x124\n" + + "\x06reason\x18\x02 \x01(\x0e2\x1c.v1.OperationRunStatusReasonR\x06reason\"X\n" + + "\rOperationKind\x12%\n" + + "\x04type\x18\x01 \x01(\x0e2\x11.v1.OperationTypeR\x04type\x12\x17\n" + + "\x04code\x18\x02 \x01(\tH\x00R\x04code\x88\x01\x01B\a\n" + + "\x05_code\"\xb3\x01\n" + + "\fOperationRun\x121\n" + + "\asummary\x18\x01 \x01(\v2\x17.v1.OperationRunSummaryR\asummary\x12C\n" + + "\rconfiguration\x18\x02 \x01(\v2\x1d.v1.OperationRunConfigurationR\rconfiguration\x12+\n" + + "\x05stats\x18\x03 \x01(\v2\x15.v1.OperationRunStatsR\x05stats\"\xad\x04\n" + + "\x13OperationRunSummary\x12\x18\n" + + "\x02id\x18\x01 \x01(\v2\b.v1.UUIDR\x02id\x12\x12\n" + + "\x04name\x18\x02 \x01(\tR\x04name\x12 \n" + + "\vdescription\x18\x03 \x01(\tR\vdescription\x128\n" + + "\x0eoperation_kind\x18\x04 \x01(\v2\x11.v1.OperationKindR\roperationKind\x12+\n" + + "\x05state\x18\x05 \x01(\v2\x15.v1.OperationRunStateR\x05state\x12%\n" + + "\x0estatus_message\x18\x06 \x01(\tR\rstatusMessage\x12!\n" + + "\ftotal_phases\x18\a \x01(\x05R\vtotalPhases\x129\n" + + "\n" + + "created_at\x18\b \x01(\v2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n" + + "\n" + + "updated_at\x18\t \x01(\v2\x1a.google.protobuf.TimestampR\tupdatedAt\x12>\n" + + "\n" + + "started_at\x18\n" + + " \x01(\v2\x1a.google.protobuf.TimestampH\x00R\tstartedAt\x88\x01\x01\x12@\n" + + "\vfinished_at\x18\v \x01(\v2\x1a.google.protobuf.TimestampH\x01R\n" + + "finishedAt\x88\x01\x01B\r\n" + + "\v_started_atB\x0e\n" + + "\f_finished_at\"\xb1\x01\n" + + "\x11OperationRunStats\x12J\n" + + "\x13current_phase_stats\x18\x01 \x01(\v2\x1a.v1.OperationRunPhaseStatsR\x11currentPhaseStats\x12P\n" + + "\x16cumulative_phase_stats\x18\x02 \x01(\v2\x1a.v1.OperationRunPhaseStatsR\x14cumulativePhaseStats\"\xb0\x01\n" + + "\x16OperationRunPhaseStats\x12\x1f\n" + + "\vphase_index\x18\x01 \x01(\x05R\n" + + "phaseIndex\x12)\n" + + "\x10selected_targets\x18\x02 \x01(\x05R\x0fselectedTargets\x12J\n" + + "\x0eoutcome_counts\x18\x03 \x01(\v2#.v1.OperationRunTargetOutcomeCountsR\routcomeCounts\"\x91\x01\n" + + "\x1fOperationRunTargetOutcomeCounts\x12\x1c\n" + + "\tcompleted\x18\x01 \x01(\x05R\tcompleted\x12\x16\n" + + "\x06failed\x18\x02 \x01(\x05R\x06failed\x12\x1e\n" + + "\n" + + "terminated\x18\x03 \x01(\x05R\n" + + "terminated\x12\x18\n" + + "\askipped\x18\x04 \x01(\x05R\askipped\"\xfa\x03\n" + + "\x12OperationRunTarget\x12\x18\n" + + "\x02id\x18\x01 \x01(\v2\b.v1.UUIDR\x02id\x122\n" + + "\x10operation_run_id\x18\x02 \x01(\v2\b.v1.UUIDR\x0eoperationRunId\x12!\n" + + "\arack_id\x18\x03 \x01(\v2\b.v1.UUIDR\x06rackId\x12%\n" + + "\x0esequence_index\x18\x04 \x01(\x05R\rsequenceIndex\x12\x1f\n" + + "\vphase_index\x18\x05 \x01(\x05R\n" + + "phaseIndex\x12!\n" + + "\atask_id\x18\x06 \x01(\v2\b.v1.UUIDR\x06taskId\x124\n" + + "\x06status\x18\a \x01(\x0e2\x1c.v1.OperationRunTargetStatusR\x06status\x12\x18\n" + + "\amessage\x18\b \x01(\tR\amessage\x12B\n" + + "\x12components_by_type\x18\t \x01(\v2\x14.v1.ComponentsByTypeR\x10componentsByType\x129\n" + + "\n" + + "created_at\x18\n" + + " \x01(\v2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n" + + "\n" + + "updated_at\x18\v \x01(\v2\x1a.google.protobuf.TimestampR\tupdatedAt*D\n" + "\aBMCType\x12\x14\n" + "\x10BMC_TYPE_UNKNOWN\x10\x00\x12\x11\n" + "\rBMC_TYPE_HOST\x10\x01\x12\x10\n" + @@ -8623,7 +11963,40 @@ const file_flow_proto_rawDesc = "" + "\rOverlapPolicy\x12\x1e\n" + "\x1aOVERLAP_POLICY_UNSPECIFIED\x10\x00\x12\x17\n" + "\x13OVERLAP_POLICY_SKIP\x10\x01\x12\x18\n" + - "\x14OVERLAP_POLICY_QUEUE\x10\x022\xec\x1f\n" + + "\x14OVERLAP_POLICY_QUEUE\x10\x02*\xfa\x01\n" + + "\x1cOperationRunTargetPhaseScope\x12,\n" + + "(OPERATION_RUN_TARGET_PHASE_SCOPE_UNKNOWN\x10\x00\x122\n" + + ".OPERATION_RUN_TARGET_PHASE_SCOPE_CURRENT_PHASE\x10\x01\x125\n" + + "1OPERATION_RUN_TARGET_PHASE_SCOPE_COMPLETED_PHASES\x10\x02\x12A\n" + + "=OPERATION_RUN_TARGET_PHASE_SCOPE_CURRENT_AND_COMPLETED_PHASES\x10\x03*\xb1\x01\n" + + "\x1bOperationRunSafetyGateScope\x12+\n" + + "'OPERATION_RUN_SAFETY_GATE_SCOPE_UNKNOWN\x10\x00\x121\n" + + "-OPERATION_RUN_SAFETY_GATE_SCOPE_CURRENT_PHASE\x10\x01\x122\n" + + ".OPERATION_RUN_SAFETY_GATE_SCOPE_CUMULATIVE_RUN\x10\x02*\x84\x02\n" + + "\x12OperationRunStatus\x12 \n" + + "\x1cOPERATION_RUN_STATUS_UNKNOWN\x10\x00\x12 \n" + + "\x1cOPERATION_RUN_STATUS_PENDING\x10\x01\x12 \n" + + "\x1cOPERATION_RUN_STATUS_RUNNING\x10\x02\x12\x1f\n" + + "\x1bOPERATION_RUN_STATUS_PAUSED\x10\x03\x12\"\n" + + "\x1eOPERATION_RUN_STATUS_COMPLETED\x10\x04\x12\"\n" + + "\x1eOPERATION_RUN_STATUS_CANCELLED\x10\x05\x12\x1f\n" + + "\x1bOPERATION_RUN_STATUS_FAILED\x10\x06*\xab\x02\n" + + "\x18OperationRunStatusReason\x12'\n" + + "#OPERATION_RUN_STATUS_REASON_UNKNOWN\x10\x00\x12$\n" + + " OPERATION_RUN_STATUS_REASON_NONE\x10\x01\x12/\n" + + "+OPERATION_RUN_STATUS_REASON_OPERATOR_PAUSED\x10\x02\x12*\n" + + "&OPERATION_RUN_STATUS_REASON_PHASE_GATE\x10\x03\x12+\n" + + "'OPERATION_RUN_STATUS_REASON_SAFETY_GATE\x10\x04\x126\n" + + "2OPERATION_RUN_STATUS_REASON_CONFLICT_RETRY_TIMEOUT\x10\x05*\xe8\x02\n" + + "\x18OperationRunTargetStatus\x12'\n" + + "#OPERATION_RUN_TARGET_STATUS_UNKNOWN\x10\x00\x12'\n" + + "#OPERATION_RUN_TARGET_STATUS_PENDING\x10\x01\x12'\n" + + "#OPERATION_RUN_TARGET_STATUS_BLOCKED\x10\x02\x12)\n" + + "%OPERATION_RUN_TARGET_STATUS_SUBMITTED\x10\x03\x12)\n" + + "%OPERATION_RUN_TARGET_STATUS_COMPLETED\x10\x04\x12&\n" + + "\"OPERATION_RUN_TARGET_STATUS_FAILED\x10\x05\x12*\n" + + "&OPERATION_RUN_TARGET_STATUS_TERMINATED\x10\x06\x12'\n" + + "#OPERATION_RUN_TARGET_STATUS_SKIPPED\x10\a2\x96$\n" + "\x04Flow\x12,\n" + "\aVersion\x12\x12.v1.VersionRequest\x1a\r.v1.BuildInfo\x12E\n" + "\x12CreateTaskSchedule\x12\x1d.v1.CreateTaskScheduleRequest\x1a\x10.v1.TaskSchedule\x12?\n" + @@ -8680,7 +12053,14 @@ const file_flow_proto_rawDesc = "" + "\x15AssociateRuleWithRack\x12 .v1.AssociateRuleWithRackRequest\x1a\x16.google.protobuf.Empty\x12W\n" + "\x18DisassociateRuleFromRack\x12#.v1.DisassociateRuleFromRackRequest\x1a\x16.google.protobuf.Empty\x12_\n" + "\x16GetRackRuleAssociation\x12!.v1.GetRackRuleAssociationRequest\x1a\".v1.GetRackRuleAssociationResponse\x12e\n" + - "\x18ListRackRuleAssociations\x12#.v1.ListRackRuleAssociationsRequest\x1a$.v1.ListRackRuleAssociationsResponseBBZ@github.com/NVIDIA/infra-controller/rest-api/workflow-schema/flowb\x06proto3" + "\x18ListRackRuleAssociations\x12#.v1.ListRackRuleAssociationsRequest\x1a$.v1.ListRackRuleAssociationsResponse\x12S\n" + + "\x12CreateOperationRun\x12\x1d.v1.CreateOperationRunRequest\x1a\x1e.v1.CreateOperationRunResponse\x12J\n" + + "\x0fGetOperationRun\x12\x1a.v1.GetOperationRunRequest\x1a\x1b.v1.GetOperationRunResponse\x12P\n" + + "\x11ListOperationRuns\x12\x1c.v1.ListOperationRunsRequest\x1a\x1d.v1.ListOperationRunsResponse\x12b\n" + + "\x17ListOperationRunTargets\x12\".v1.ListOperationRunTargetsRequest\x1a#.v1.ListOperationRunTargetsResponse\x12C\n" + + "\x11PauseOperationRun\x12\x1c.v1.PauseOperationRunRequest\x1a\x10.v1.OperationRun\x12E\n" + + "\x12ResumeOperationRun\x12\x1d.v1.ResumeOperationRunRequest\x1a\x10.v1.OperationRun\x12E\n" + + "\x12CancelOperationRun\x12\x1d.v1.CancelOperationRunRequest\x1a\x10.v1.OperationRunBBZ@github.com/NVIDIA/infra-controller/rest-api/workflow-schema/flowb\x06proto3" var ( file_flow_proto_rawDescOnce sync.Once @@ -8694,452 +12074,598 @@ func file_flow_proto_rawDescGZIP() []byte { return file_flow_proto_rawDescData } -var file_flow_proto_enumTypes = make([]protoimpl.EnumInfo, 16) -var file_flow_proto_msgTypes = make([]protoimpl.MessageInfo, 116) +var file_flow_proto_enumTypes = make([]protoimpl.EnumInfo, 22) +var file_flow_proto_msgTypes = make([]protoimpl.MessageInfo, 162) var file_flow_proto_goTypes = []any{ - (BMCType)(0), // 0: v1.BMCType - (ComponentType)(0), // 1: v1.ComponentType - (RackFilterField)(0), // 2: v1.RackFilterField - (ComponentFilterField)(0), // 3: v1.ComponentFilterField - (ComponentOrderByField)(0), // 4: v1.ComponentOrderByField - (RackOrderByField)(0), // 5: v1.RackOrderByField - (PowerControlOp)(0), // 6: v1.PowerControlOp - (TaskStatus)(0), // 7: v1.TaskStatus - (TaskExecutorType)(0), // 8: v1.TaskExecutorType - (Phase)(0), // 9: v1.Phase - (LeakStatus)(0), // 10: v1.LeakStatus - (DiffType)(0), // 11: v1.DiffType - (ConflictStrategy)(0), // 12: v1.ConflictStrategy - (OperationType)(0), // 13: v1.OperationType - (ScheduleSpecType)(0), // 14: v1.ScheduleSpecType - (OverlapPolicy)(0), // 15: v1.OverlapPolicy - (*UUID)(nil), // 16: v1.UUID - (*DeviceInfo)(nil), // 17: v1.DeviceInfo - (*Location)(nil), // 18: v1.Location - (*DeviceSerialInfo)(nil), // 19: v1.DeviceSerialInfo - (*BMCInfo)(nil), // 20: v1.BMCInfo - (*RackPosition)(nil), // 21: v1.RackPosition - (*ComponentOperationStatus)(nil), // 22: v1.ComponentOperationStatus - (*Component)(nil), // 23: v1.Component - (*Rack)(nil), // 24: v1.Rack - (*Identifier)(nil), // 25: v1.Identifier - (*OperationTargetSpec)(nil), // 26: v1.OperationTargetSpec - (*RackTargets)(nil), // 27: v1.RackTargets - (*ComponentTargets)(nil), // 28: v1.ComponentTargets - (*ComponentTypes)(nil), // 29: v1.ComponentTypes - (*RackTarget)(nil), // 30: v1.RackTarget - (*ComponentTarget)(nil), // 31: v1.ComponentTarget - (*ExternalRef)(nil), // 32: v1.ExternalRef - (*NVLDomain)(nil), // 33: v1.NVLDomain - (*Pagination)(nil), // 34: v1.Pagination - (*StringQueryInfo)(nil), // 35: v1.StringQueryInfo - (*Filter)(nil), // 36: v1.Filter - (*OrderBy)(nil), // 37: v1.OrderBy - (*Task)(nil), // 38: v1.Task - (*CreateExpectedRackRequest)(nil), // 39: v1.CreateExpectedRackRequest - (*CreateExpectedRackResponse)(nil), // 40: v1.CreateExpectedRackResponse - (*GetRackInfoByIDRequest)(nil), // 41: v1.GetRackInfoByIDRequest - (*GetRackInfoBySerialRequest)(nil), // 42: v1.GetRackInfoBySerialRequest - (*GetRackInfoResponse)(nil), // 43: v1.GetRackInfoResponse - (*PatchRackRequest)(nil), // 44: v1.PatchRackRequest - (*PatchRackResponse)(nil), // 45: v1.PatchRackResponse - (*GetComponentInfoByIDRequest)(nil), // 46: v1.GetComponentInfoByIDRequest - (*GetComponentInfoBySerialRequest)(nil), // 47: v1.GetComponentInfoBySerialRequest - (*GetComponentInfoResponse)(nil), // 48: v1.GetComponentInfoResponse - (*GetListOfRacksRequest)(nil), // 49: v1.GetListOfRacksRequest - (*GetListOfRacksResponse)(nil), // 50: v1.GetListOfRacksResponse - (*CreateNVLDomainRequest)(nil), // 51: v1.CreateNVLDomainRequest - (*CreateNVLDomainResponse)(nil), // 52: v1.CreateNVLDomainResponse - (*AttachRacksToNVLDomainRequest)(nil), // 53: v1.AttachRacksToNVLDomainRequest - (*DetachRacksFromNVLDomainRequest)(nil), // 54: v1.DetachRacksFromNVLDomainRequest - (*GetListOfNVLDomainsRequest)(nil), // 55: v1.GetListOfNVLDomainsRequest - (*GetListOfNVLDomainsResponse)(nil), // 56: v1.GetListOfNVLDomainsResponse - (*GetRacksForNVLDomainRequest)(nil), // 57: v1.GetRacksForNVLDomainRequest - (*GetRacksForNVLDomainResponse)(nil), // 58: v1.GetRacksForNVLDomainResponse - (*UpgradeFirmwareRequest)(nil), // 59: v1.UpgradeFirmwareRequest - (*GetComponentsRequest)(nil), // 60: v1.GetComponentsRequest - (*GetComponentsResponse)(nil), // 61: v1.GetComponentsResponse - (*ValidateComponentsRequest)(nil), // 62: v1.ValidateComponentsRequest - (*ValidateComponentsResponse)(nil), // 63: v1.ValidateComponentsResponse - (*ComponentDiff)(nil), // 64: v1.ComponentDiff - (*FieldDiff)(nil), // 65: v1.FieldDiff - (*AddComponentRequest)(nil), // 66: v1.AddComponentRequest - (*AddComponentResponse)(nil), // 67: v1.AddComponentResponse - (*DeleteComponentRequest)(nil), // 68: v1.DeleteComponentRequest - (*DeleteComponentResponse)(nil), // 69: v1.DeleteComponentResponse - (*DeleteRackRequest)(nil), // 70: v1.DeleteRackRequest - (*DeleteRackResponse)(nil), // 71: v1.DeleteRackResponse - (*PurgeRackRequest)(nil), // 72: v1.PurgeRackRequest - (*PurgeRackResponse)(nil), // 73: v1.PurgeRackResponse - (*PurgeComponentRequest)(nil), // 74: v1.PurgeComponentRequest - (*PurgeComponentResponse)(nil), // 75: v1.PurgeComponentResponse - (*PatchComponentRequest)(nil), // 76: v1.PatchComponentRequest - (*PatchComponentResponse)(nil), // 77: v1.PatchComponentResponse - (*SubmitTaskResponse)(nil), // 78: v1.SubmitTaskResponse - (*QueueOptions)(nil), // 79: v1.QueueOptions - (*PowerOnRackRequest)(nil), // 80: v1.PowerOnRackRequest - (*PowerOffRackRequest)(nil), // 81: v1.PowerOffRackRequest - (*PowerResetRackRequest)(nil), // 82: v1.PowerResetRackRequest - (*BringUpRackRequest)(nil), // 83: v1.BringUpRackRequest - (*IngestRackRequest)(nil), // 84: v1.IngestRackRequest - (*ListTasksRequest)(nil), // 85: v1.ListTasksRequest - (*ListTasksResponse)(nil), // 86: v1.ListTasksResponse - (*GetTasksByIDsRequest)(nil), // 87: v1.GetTasksByIDsRequest - (*GetTasksByIDsResponse)(nil), // 88: v1.GetTasksByIDsResponse - (*CancelTaskRequest)(nil), // 89: v1.CancelTaskRequest - (*CancelTaskResponse)(nil), // 90: v1.CancelTaskResponse - (*VersionRequest)(nil), // 91: v1.VersionRequest - (*BuildInfo)(nil), // 92: v1.BuildInfo - (*OperationRule)(nil), // 93: v1.OperationRule - (*CreateOperationRuleRequest)(nil), // 94: v1.CreateOperationRuleRequest - (*CreateOperationRuleResponse)(nil), // 95: v1.CreateOperationRuleResponse - (*UpdateOperationRuleRequest)(nil), // 96: v1.UpdateOperationRuleRequest - (*DeleteOperationRuleRequest)(nil), // 97: v1.DeleteOperationRuleRequest - (*SetRuleAsDefaultRequest)(nil), // 98: v1.SetRuleAsDefaultRequest - (*GetOperationRuleRequest)(nil), // 99: v1.GetOperationRuleRequest - (*ListOperationRulesRequest)(nil), // 100: v1.ListOperationRulesRequest - (*ListOperationRulesResponse)(nil), // 101: v1.ListOperationRulesResponse - (*AssociateRuleWithRackRequest)(nil), // 102: v1.AssociateRuleWithRackRequest - (*DisassociateRuleFromRackRequest)(nil), // 103: v1.DisassociateRuleFromRackRequest - (*GetRackRuleAssociationRequest)(nil), // 104: v1.GetRackRuleAssociationRequest - (*GetRackRuleAssociationResponse)(nil), // 105: v1.GetRackRuleAssociationResponse - (*ListRackRuleAssociationsRequest)(nil), // 106: v1.ListRackRuleAssociationsRequest - (*RackRuleAssociation)(nil), // 107: v1.RackRuleAssociation - (*ListRackRuleAssociationsResponse)(nil), // 108: v1.ListRackRuleAssociationsResponse - (*ScheduleSpec)(nil), // 109: v1.ScheduleSpec - (*ScheduleConfig)(nil), // 110: v1.ScheduleConfig - (*TaskSchedule)(nil), // 111: v1.TaskSchedule - (*ScheduledOperation)(nil), // 112: v1.ScheduledOperation - (*CreateTaskScheduleRequest)(nil), // 113: v1.CreateTaskScheduleRequest - (*GetTaskScheduleRequest)(nil), // 114: v1.GetTaskScheduleRequest - (*ListTaskSchedulesRequest)(nil), // 115: v1.ListTaskSchedulesRequest - (*ListTaskSchedulesResponse)(nil), // 116: v1.ListTaskSchedulesResponse - (*UpdateTaskScheduleRequest)(nil), // 117: v1.UpdateTaskScheduleRequest - (*PauseTaskScheduleRequest)(nil), // 118: v1.PauseTaskScheduleRequest - (*ResumeTaskScheduleRequest)(nil), // 119: v1.ResumeTaskScheduleRequest - (*DeleteTaskScheduleRequest)(nil), // 120: v1.DeleteTaskScheduleRequest - (*TriggerTaskScheduleRequest)(nil), // 121: v1.TriggerTaskScheduleRequest - (*TaskScheduleScope)(nil), // 122: v1.TaskScheduleScope - (*AddTaskScheduleScopeRequest)(nil), // 123: v1.AddTaskScheduleScopeRequest - (*AddTaskScheduleScopeResponse)(nil), // 124: v1.AddTaskScheduleScopeResponse - (*RemoveTaskScheduleScopeRequest)(nil), // 125: v1.RemoveTaskScheduleScopeRequest - (*UpdateTaskScheduleScopeRequest)(nil), // 126: v1.UpdateTaskScheduleScopeRequest - (*UpdateTaskScheduleScopeResponse)(nil), // 127: v1.UpdateTaskScheduleScopeResponse - (*ListTaskScheduleScopesRequest)(nil), // 128: v1.ListTaskScheduleScopesRequest - (*ListTaskScheduleScopesResponse)(nil), // 129: v1.ListTaskScheduleScopesResponse - (*CheckScheduleConflictsRequest)(nil), // 130: v1.CheckScheduleConflictsRequest - (*CheckScheduleConflictsResponse)(nil), // 131: v1.CheckScheduleConflictsResponse - (*timestamppb.Timestamp)(nil), // 132: google.protobuf.Timestamp - (*fieldmaskpb.FieldMask)(nil), // 133: google.protobuf.FieldMask - (*emptypb.Empty)(nil), // 134: google.protobuf.Empty + (BMCType)(0), // 0: v1.BMCType + (ComponentType)(0), // 1: v1.ComponentType + (RackFilterField)(0), // 2: v1.RackFilterField + (ComponentFilterField)(0), // 3: v1.ComponentFilterField + (ComponentOrderByField)(0), // 4: v1.ComponentOrderByField + (RackOrderByField)(0), // 5: v1.RackOrderByField + (PowerControlOp)(0), // 6: v1.PowerControlOp + (TaskStatus)(0), // 7: v1.TaskStatus + (TaskExecutorType)(0), // 8: v1.TaskExecutorType + (Phase)(0), // 9: v1.Phase + (LeakStatus)(0), // 10: v1.LeakStatus + (DiffType)(0), // 11: v1.DiffType + (ConflictStrategy)(0), // 12: v1.ConflictStrategy + (OperationType)(0), // 13: v1.OperationType + (ScheduleSpecType)(0), // 14: v1.ScheduleSpecType + (OverlapPolicy)(0), // 15: v1.OverlapPolicy + (OperationRunTargetPhaseScope)(0), // 16: v1.OperationRunTargetPhaseScope + (OperationRunSafetyGateScope)(0), // 17: v1.OperationRunSafetyGateScope + (OperationRunStatus)(0), // 18: v1.OperationRunStatus + (OperationRunStatusReason)(0), // 19: v1.OperationRunStatusReason + (OperationRunTargetStatus)(0), // 20: v1.OperationRunTargetStatus + (OperationRunPhysicalLocationOrdering_Strategy)(0), // 21: v1.OperationRunPhysicalLocationOrdering.Strategy + (*UUID)(nil), // 22: v1.UUID + (*DeviceInfo)(nil), // 23: v1.DeviceInfo + (*Location)(nil), // 24: v1.Location + (*DeviceSerialInfo)(nil), // 25: v1.DeviceSerialInfo + (*BMCInfo)(nil), // 26: v1.BMCInfo + (*RackPosition)(nil), // 27: v1.RackPosition + (*ComponentOperationStatus)(nil), // 28: v1.ComponentOperationStatus + (*Component)(nil), // 29: v1.Component + (*Rack)(nil), // 30: v1.Rack + (*Identifier)(nil), // 31: v1.Identifier + (*OperationTargetSpec)(nil), // 32: v1.OperationTargetSpec + (*RackTargets)(nil), // 33: v1.RackTargets + (*ComponentTargets)(nil), // 34: v1.ComponentTargets + (*ComponentTypes)(nil), // 35: v1.ComponentTypes + (*ComponentFilter)(nil), // 36: v1.ComponentFilter + (*ComponentsByType)(nil), // 37: v1.ComponentsByType + (*ComponentsForType)(nil), // 38: v1.ComponentsForType + (*RackTarget)(nil), // 39: v1.RackTarget + (*ComponentTarget)(nil), // 40: v1.ComponentTarget + (*ExternalRef)(nil), // 41: v1.ExternalRef + (*NVLDomain)(nil), // 42: v1.NVLDomain + (*Pagination)(nil), // 43: v1.Pagination + (*StringQueryInfo)(nil), // 44: v1.StringQueryInfo + (*Filter)(nil), // 45: v1.Filter + (*OrderBy)(nil), // 46: v1.OrderBy + (*Task)(nil), // 47: v1.Task + (*CreateExpectedRackRequest)(nil), // 48: v1.CreateExpectedRackRequest + (*CreateExpectedRackResponse)(nil), // 49: v1.CreateExpectedRackResponse + (*GetRackInfoByIDRequest)(nil), // 50: v1.GetRackInfoByIDRequest + (*GetRackInfoBySerialRequest)(nil), // 51: v1.GetRackInfoBySerialRequest + (*GetRackInfoResponse)(nil), // 52: v1.GetRackInfoResponse + (*PatchRackRequest)(nil), // 53: v1.PatchRackRequest + (*PatchRackResponse)(nil), // 54: v1.PatchRackResponse + (*GetComponentInfoByIDRequest)(nil), // 55: v1.GetComponentInfoByIDRequest + (*GetComponentInfoBySerialRequest)(nil), // 56: v1.GetComponentInfoBySerialRequest + (*GetComponentInfoResponse)(nil), // 57: v1.GetComponentInfoResponse + (*GetListOfRacksRequest)(nil), // 58: v1.GetListOfRacksRequest + (*GetListOfRacksResponse)(nil), // 59: v1.GetListOfRacksResponse + (*CreateNVLDomainRequest)(nil), // 60: v1.CreateNVLDomainRequest + (*CreateNVLDomainResponse)(nil), // 61: v1.CreateNVLDomainResponse + (*AttachRacksToNVLDomainRequest)(nil), // 62: v1.AttachRacksToNVLDomainRequest + (*DetachRacksFromNVLDomainRequest)(nil), // 63: v1.DetachRacksFromNVLDomainRequest + (*GetListOfNVLDomainsRequest)(nil), // 64: v1.GetListOfNVLDomainsRequest + (*GetListOfNVLDomainsResponse)(nil), // 65: v1.GetListOfNVLDomainsResponse + (*GetRacksForNVLDomainRequest)(nil), // 66: v1.GetRacksForNVLDomainRequest + (*GetRacksForNVLDomainResponse)(nil), // 67: v1.GetRacksForNVLDomainResponse + (*UpgradeFirmwareRequest)(nil), // 68: v1.UpgradeFirmwareRequest + (*GetComponentsRequest)(nil), // 69: v1.GetComponentsRequest + (*GetComponentsResponse)(nil), // 70: v1.GetComponentsResponse + (*ValidateComponentsRequest)(nil), // 71: v1.ValidateComponentsRequest + (*ValidateComponentsResponse)(nil), // 72: v1.ValidateComponentsResponse + (*ComponentDiff)(nil), // 73: v1.ComponentDiff + (*FieldDiff)(nil), // 74: v1.FieldDiff + (*AddComponentRequest)(nil), // 75: v1.AddComponentRequest + (*AddComponentResponse)(nil), // 76: v1.AddComponentResponse + (*DeleteComponentRequest)(nil), // 77: v1.DeleteComponentRequest + (*DeleteComponentResponse)(nil), // 78: v1.DeleteComponentResponse + (*DeleteRackRequest)(nil), // 79: v1.DeleteRackRequest + (*DeleteRackResponse)(nil), // 80: v1.DeleteRackResponse + (*PurgeRackRequest)(nil), // 81: v1.PurgeRackRequest + (*PurgeRackResponse)(nil), // 82: v1.PurgeRackResponse + (*PurgeComponentRequest)(nil), // 83: v1.PurgeComponentRequest + (*PurgeComponentResponse)(nil), // 84: v1.PurgeComponentResponse + (*PatchComponentRequest)(nil), // 85: v1.PatchComponentRequest + (*PatchComponentResponse)(nil), // 86: v1.PatchComponentResponse + (*SubmitTaskResponse)(nil), // 87: v1.SubmitTaskResponse + (*QueueOptions)(nil), // 88: v1.QueueOptions + (*PowerOnRackRequest)(nil), // 89: v1.PowerOnRackRequest + (*PowerOffRackRequest)(nil), // 90: v1.PowerOffRackRequest + (*PowerResetRackRequest)(nil), // 91: v1.PowerResetRackRequest + (*BringUpRackRequest)(nil), // 92: v1.BringUpRackRequest + (*IngestRackRequest)(nil), // 93: v1.IngestRackRequest + (*ListTasksRequest)(nil), // 94: v1.ListTasksRequest + (*ListTasksResponse)(nil), // 95: v1.ListTasksResponse + (*GetTasksByIDsRequest)(nil), // 96: v1.GetTasksByIDsRequest + (*GetTasksByIDsResponse)(nil), // 97: v1.GetTasksByIDsResponse + (*CancelTaskRequest)(nil), // 98: v1.CancelTaskRequest + (*CancelTaskResponse)(nil), // 99: v1.CancelTaskResponse + (*VersionRequest)(nil), // 100: v1.VersionRequest + (*BuildInfo)(nil), // 101: v1.BuildInfo + (*OperationRule)(nil), // 102: v1.OperationRule + (*CreateOperationRuleRequest)(nil), // 103: v1.CreateOperationRuleRequest + (*CreateOperationRuleResponse)(nil), // 104: v1.CreateOperationRuleResponse + (*UpdateOperationRuleRequest)(nil), // 105: v1.UpdateOperationRuleRequest + (*DeleteOperationRuleRequest)(nil), // 106: v1.DeleteOperationRuleRequest + (*SetRuleAsDefaultRequest)(nil), // 107: v1.SetRuleAsDefaultRequest + (*GetOperationRuleRequest)(nil), // 108: v1.GetOperationRuleRequest + (*ListOperationRulesRequest)(nil), // 109: v1.ListOperationRulesRequest + (*ListOperationRulesResponse)(nil), // 110: v1.ListOperationRulesResponse + (*AssociateRuleWithRackRequest)(nil), // 111: v1.AssociateRuleWithRackRequest + (*DisassociateRuleFromRackRequest)(nil), // 112: v1.DisassociateRuleFromRackRequest + (*GetRackRuleAssociationRequest)(nil), // 113: v1.GetRackRuleAssociationRequest + (*GetRackRuleAssociationResponse)(nil), // 114: v1.GetRackRuleAssociationResponse + (*ListRackRuleAssociationsRequest)(nil), // 115: v1.ListRackRuleAssociationsRequest + (*RackRuleAssociation)(nil), // 116: v1.RackRuleAssociation + (*ListRackRuleAssociationsResponse)(nil), // 117: v1.ListRackRuleAssociationsResponse + (*ScheduleSpec)(nil), // 118: v1.ScheduleSpec + (*ScheduleConfig)(nil), // 119: v1.ScheduleConfig + (*TaskSchedule)(nil), // 120: v1.TaskSchedule + (*ScheduledOperation)(nil), // 121: v1.ScheduledOperation + (*CreateTaskScheduleRequest)(nil), // 122: v1.CreateTaskScheduleRequest + (*GetTaskScheduleRequest)(nil), // 123: v1.GetTaskScheduleRequest + (*ListTaskSchedulesRequest)(nil), // 124: v1.ListTaskSchedulesRequest + (*ListTaskSchedulesResponse)(nil), // 125: v1.ListTaskSchedulesResponse + (*UpdateTaskScheduleRequest)(nil), // 126: v1.UpdateTaskScheduleRequest + (*PauseTaskScheduleRequest)(nil), // 127: v1.PauseTaskScheduleRequest + (*ResumeTaskScheduleRequest)(nil), // 128: v1.ResumeTaskScheduleRequest + (*DeleteTaskScheduleRequest)(nil), // 129: v1.DeleteTaskScheduleRequest + (*TriggerTaskScheduleRequest)(nil), // 130: v1.TriggerTaskScheduleRequest + (*TaskScheduleScope)(nil), // 131: v1.TaskScheduleScope + (*AddTaskScheduleScopeRequest)(nil), // 132: v1.AddTaskScheduleScopeRequest + (*AddTaskScheduleScopeResponse)(nil), // 133: v1.AddTaskScheduleScopeResponse + (*RemoveTaskScheduleScopeRequest)(nil), // 134: v1.RemoveTaskScheduleScopeRequest + (*UpdateTaskScheduleScopeRequest)(nil), // 135: v1.UpdateTaskScheduleScopeRequest + (*UpdateTaskScheduleScopeResponse)(nil), // 136: v1.UpdateTaskScheduleScopeResponse + (*ListTaskScheduleScopesRequest)(nil), // 137: v1.ListTaskScheduleScopesRequest + (*ListTaskScheduleScopesResponse)(nil), // 138: v1.ListTaskScheduleScopesResponse + (*CheckScheduleConflictsRequest)(nil), // 139: v1.CheckScheduleConflictsRequest + (*CheckScheduleConflictsResponse)(nil), // 140: v1.CheckScheduleConflictsResponse + (*CreateOperationRunRequest)(nil), // 141: v1.CreateOperationRunRequest + (*CreateOperationRunResponse)(nil), // 142: v1.CreateOperationRunResponse + (*OperationRunConfiguration)(nil), // 143: v1.OperationRunConfiguration + (*GetOperationRunRequest)(nil), // 144: v1.GetOperationRunRequest + (*GetOperationRunResponse)(nil), // 145: v1.GetOperationRunResponse + (*ListOperationRunsRequest)(nil), // 146: v1.ListOperationRunsRequest + (*ListOperationRunsResponse)(nil), // 147: v1.ListOperationRunsResponse + (*OperationRunFilter)(nil), // 148: v1.OperationRunFilter + (*OperationRunStateFilter)(nil), // 149: v1.OperationRunStateFilter + (*ListOperationRunTargetsRequest)(nil), // 150: v1.ListOperationRunTargetsRequest + (*ListOperationRunTargetsResponse)(nil), // 151: v1.ListOperationRunTargetsResponse + (*PauseOperationRunRequest)(nil), // 152: v1.PauseOperationRunRequest + (*ResumeOperationRunRequest)(nil), // 153: v1.ResumeOperationRunRequest + (*CancelOperationRunRequest)(nil), // 154: v1.CancelOperationRunRequest + (*OperationRunSelector)(nil), // 155: v1.OperationRunSelector + (*PercentageSelector)(nil), // 156: v1.PercentageSelector + (*OperationRunOptions)(nil), // 157: v1.OperationRunOptions + (*OperationRunSafetyPolicy)(nil), // 158: v1.OperationRunSafetyPolicy + (*OperationRunSafetyGate)(nil), // 159: v1.OperationRunSafetyGate + (*OperationRunFailureRateGate)(nil), // 160: v1.OperationRunFailureRateGate + (*OperationRunFailureCountGate)(nil), // 161: v1.OperationRunFailureCountGate + (*OperationRunOrderingPolicy)(nil), // 162: v1.OperationRunOrderingPolicy + (*OperationRunRandomOrdering)(nil), // 163: v1.OperationRunRandomOrdering + (*OperationRunPhysicalLocationOrdering)(nil), // 164: v1.OperationRunPhysicalLocationOrdering + (*OperationRunPhasePolicy)(nil), // 165: v1.OperationRunPhasePolicy + (*EqualOperationRunPhases)(nil), // 166: v1.EqualOperationRunPhases + (*PercentageOperationRunPhases)(nil), // 167: v1.PercentageOperationRunPhases + (*OperationRunPercentagePhase)(nil), // 168: v1.OperationRunPercentagePhase + (*CountOperationRunPhases)(nil), // 169: v1.CountOperationRunPhases + (*OperationRunCountPhase)(nil), // 170: v1.OperationRunCountPhase + (*OperationRunPhaseAdvancePolicy)(nil), // 171: v1.OperationRunPhaseAdvancePolicy + (*OperationRunConflictPolicy)(nil), // 172: v1.OperationRunConflictPolicy + (*OperationRunConflictRetryPolicy)(nil), // 173: v1.OperationRunConflictRetryPolicy + (*OperationRunTargetScope)(nil), // 174: v1.OperationRunTargetScope + (*OperationRunOperation)(nil), // 175: v1.OperationRunOperation + (*OperationRunState)(nil), // 176: v1.OperationRunState + (*OperationKind)(nil), // 177: v1.OperationKind + (*OperationRun)(nil), // 178: v1.OperationRun + (*OperationRunSummary)(nil), // 179: v1.OperationRunSummary + (*OperationRunStats)(nil), // 180: v1.OperationRunStats + (*OperationRunPhaseStats)(nil), // 181: v1.OperationRunPhaseStats + (*OperationRunTargetOutcomeCounts)(nil), // 182: v1.OperationRunTargetOutcomeCounts + (*OperationRunTarget)(nil), // 183: v1.OperationRunTarget + (*timestamppb.Timestamp)(nil), // 184: google.protobuf.Timestamp + (*fieldmaskpb.FieldMask)(nil), // 185: google.protobuf.FieldMask + (*durationpb.Duration)(nil), // 186: google.protobuf.Duration + (*emptypb.Empty)(nil), // 187: google.protobuf.Empty } var file_flow_proto_depIdxs = []int32{ - 16, // 0: v1.DeviceInfo.id:type_name -> v1.UUID + 22, // 0: v1.DeviceInfo.id:type_name -> v1.UUID 0, // 1: v1.BMCInfo.type:type_name -> v1.BMCType 9, // 2: v1.ComponentOperationStatus.phase:type_name -> v1.Phase 13, // 3: v1.ComponentOperationStatus.blocked_operations:type_name -> v1.OperationType 1, // 4: v1.Component.type:type_name -> v1.ComponentType - 17, // 5: v1.Component.info:type_name -> v1.DeviceInfo - 21, // 6: v1.Component.position:type_name -> v1.RackPosition - 20, // 7: v1.Component.bmcs:type_name -> v1.BMCInfo - 16, // 8: v1.Component.rack_id:type_name -> v1.UUID - 22, // 9: v1.Component.status:type_name -> v1.ComponentOperationStatus + 23, // 5: v1.Component.info:type_name -> v1.DeviceInfo + 27, // 6: v1.Component.position:type_name -> v1.RackPosition + 26, // 7: v1.Component.bmcs:type_name -> v1.BMCInfo + 22, // 8: v1.Component.rack_id:type_name -> v1.UUID + 28, // 9: v1.Component.status:type_name -> v1.ComponentOperationStatus 10, // 10: v1.Component.leak_status:type_name -> v1.LeakStatus - 17, // 11: v1.Rack.info:type_name -> v1.DeviceInfo - 18, // 12: v1.Rack.location:type_name -> v1.Location - 23, // 13: v1.Rack.components:type_name -> v1.Component - 16, // 14: v1.Identifier.id:type_name -> v1.UUID - 27, // 15: v1.OperationTargetSpec.racks:type_name -> v1.RackTargets - 28, // 16: v1.OperationTargetSpec.components:type_name -> v1.ComponentTargets - 30, // 17: v1.RackTargets.targets:type_name -> v1.RackTarget - 31, // 18: v1.ComponentTargets.targets:type_name -> v1.ComponentTarget + 23, // 11: v1.Rack.info:type_name -> v1.DeviceInfo + 24, // 12: v1.Rack.location:type_name -> v1.Location + 29, // 13: v1.Rack.components:type_name -> v1.Component + 22, // 14: v1.Identifier.id:type_name -> v1.UUID + 33, // 15: v1.OperationTargetSpec.racks:type_name -> v1.RackTargets + 34, // 16: v1.OperationTargetSpec.components:type_name -> v1.ComponentTargets + 39, // 17: v1.RackTargets.targets:type_name -> v1.RackTarget + 40, // 18: v1.ComponentTargets.targets:type_name -> v1.ComponentTarget 1, // 19: v1.ComponentTypes.types:type_name -> v1.ComponentType - 16, // 20: v1.RackTarget.id:type_name -> v1.UUID - 1, // 21: v1.RackTarget.component_types:type_name -> v1.ComponentType - 16, // 22: v1.ComponentTarget.id:type_name -> v1.UUID - 32, // 23: v1.ComponentTarget.external:type_name -> v1.ExternalRef - 1, // 24: v1.ExternalRef.type:type_name -> v1.ComponentType - 25, // 25: v1.NVLDomain.identifier:type_name -> v1.Identifier - 2, // 26: v1.Filter.rack_field:type_name -> v1.RackFilterField - 3, // 27: v1.Filter.component_field:type_name -> v1.ComponentFilterField - 35, // 28: v1.Filter.query_info:type_name -> v1.StringQueryInfo - 5, // 29: v1.OrderBy.rack_field:type_name -> v1.RackOrderByField - 4, // 30: v1.OrderBy.component_field:type_name -> v1.ComponentOrderByField - 16, // 31: v1.Task.id:type_name -> v1.UUID - 16, // 32: v1.Task.rack_id:type_name -> v1.UUID - 16, // 33: v1.Task.component_uuids:type_name -> v1.UUID - 8, // 34: v1.Task.executor_type:type_name -> v1.TaskExecutorType - 7, // 35: v1.Task.status:type_name -> v1.TaskStatus - 132, // 36: v1.Task.queue_expires_at:type_name -> google.protobuf.Timestamp - 132, // 37: v1.Task.created_at:type_name -> google.protobuf.Timestamp - 132, // 38: v1.Task.finished_at:type_name -> google.protobuf.Timestamp - 16, // 39: v1.Task.applied_rule_id:type_name -> v1.UUID - 132, // 40: v1.Task.updated_at:type_name -> google.protobuf.Timestamp - 132, // 41: v1.Task.started_at:type_name -> google.protobuf.Timestamp - 24, // 42: v1.CreateExpectedRackRequest.rack:type_name -> v1.Rack - 16, // 43: v1.CreateExpectedRackResponse.id:type_name -> v1.UUID - 16, // 44: v1.GetRackInfoByIDRequest.id:type_name -> v1.UUID - 19, // 45: v1.GetRackInfoBySerialRequest.serial_info:type_name -> v1.DeviceSerialInfo - 24, // 46: v1.GetRackInfoResponse.rack:type_name -> v1.Rack - 24, // 47: v1.PatchRackRequest.rack:type_name -> v1.Rack - 16, // 48: v1.GetComponentInfoByIDRequest.id:type_name -> v1.UUID - 19, // 49: v1.GetComponentInfoBySerialRequest.serial_info:type_name -> v1.DeviceSerialInfo - 23, // 50: v1.GetComponentInfoResponse.component:type_name -> v1.Component - 24, // 51: v1.GetComponentInfoResponse.rack:type_name -> v1.Rack - 36, // 52: v1.GetListOfRacksRequest.filters:type_name -> v1.Filter - 34, // 53: v1.GetListOfRacksRequest.pagination:type_name -> v1.Pagination - 37, // 54: v1.GetListOfRacksRequest.order_by:type_name -> v1.OrderBy - 24, // 55: v1.GetListOfRacksResponse.racks:type_name -> v1.Rack - 33, // 56: v1.CreateNVLDomainRequest.nvl_domain:type_name -> v1.NVLDomain - 16, // 57: v1.CreateNVLDomainResponse.id:type_name -> v1.UUID - 25, // 58: v1.AttachRacksToNVLDomainRequest.nvl_domain_identifier:type_name -> v1.Identifier - 25, // 59: v1.AttachRacksToNVLDomainRequest.rack_identifiers:type_name -> v1.Identifier - 25, // 60: v1.DetachRacksFromNVLDomainRequest.rack_identifiers:type_name -> v1.Identifier - 35, // 61: v1.GetListOfNVLDomainsRequest.info:type_name -> v1.StringQueryInfo - 34, // 62: v1.GetListOfNVLDomainsRequest.pagination:type_name -> v1.Pagination - 33, // 63: v1.GetListOfNVLDomainsResponse.nvl_domains:type_name -> v1.NVLDomain - 25, // 64: v1.GetRacksForNVLDomainRequest.nvl_domain_identifier:type_name -> v1.Identifier - 24, // 65: v1.GetRacksForNVLDomainResponse.racks:type_name -> v1.Rack - 26, // 66: v1.UpgradeFirmwareRequest.target_spec:type_name -> v1.OperationTargetSpec - 132, // 67: v1.UpgradeFirmwareRequest.start_time:type_name -> google.protobuf.Timestamp - 132, // 68: v1.UpgradeFirmwareRequest.end_time:type_name -> google.protobuf.Timestamp - 79, // 69: v1.UpgradeFirmwareRequest.queue_options:type_name -> v1.QueueOptions - 16, // 70: v1.UpgradeFirmwareRequest.rule_id:type_name -> v1.UUID - 26, // 71: v1.GetComponentsRequest.target_spec:type_name -> v1.OperationTargetSpec - 36, // 72: v1.GetComponentsRequest.filters:type_name -> v1.Filter - 34, // 73: v1.GetComponentsRequest.pagination:type_name -> v1.Pagination - 37, // 74: v1.GetComponentsRequest.order_by:type_name -> v1.OrderBy - 23, // 75: v1.GetComponentsResponse.components:type_name -> v1.Component - 26, // 76: v1.ValidateComponentsRequest.target_spec:type_name -> v1.OperationTargetSpec - 36, // 77: v1.ValidateComponentsRequest.filters:type_name -> v1.Filter - 34, // 78: v1.ValidateComponentsRequest.pagination:type_name -> v1.Pagination - 37, // 79: v1.ValidateComponentsRequest.order_by:type_name -> v1.OrderBy - 64, // 80: v1.ValidateComponentsResponse.diffs:type_name -> v1.ComponentDiff - 11, // 81: v1.ComponentDiff.type:type_name -> v1.DiffType - 23, // 82: v1.ComponentDiff.expected:type_name -> v1.Component - 23, // 83: v1.ComponentDiff.actual:type_name -> v1.Component - 65, // 84: v1.ComponentDiff.field_diffs:type_name -> v1.FieldDiff - 16, // 85: v1.ComponentDiff.id:type_name -> v1.UUID - 23, // 86: v1.AddComponentRequest.component:type_name -> v1.Component - 23, // 87: v1.AddComponentResponse.component:type_name -> v1.Component - 16, // 88: v1.DeleteComponentRequest.id:type_name -> v1.UUID - 16, // 89: v1.DeleteRackRequest.id:type_name -> v1.UUID - 16, // 90: v1.PurgeRackRequest.id:type_name -> v1.UUID - 16, // 91: v1.PurgeComponentRequest.id:type_name -> v1.UUID - 16, // 92: v1.PatchComponentRequest.id:type_name -> v1.UUID - 21, // 93: v1.PatchComponentRequest.position:type_name -> v1.RackPosition - 16, // 94: v1.PatchComponentRequest.rack_id:type_name -> v1.UUID - 20, // 95: v1.PatchComponentRequest.bmcs:type_name -> v1.BMCInfo - 23, // 96: v1.PatchComponentResponse.component:type_name -> v1.Component - 16, // 97: v1.SubmitTaskResponse.task_ids:type_name -> v1.UUID - 12, // 98: v1.QueueOptions.conflict_strategy:type_name -> v1.ConflictStrategy - 26, // 99: v1.PowerOnRackRequest.target_spec:type_name -> v1.OperationTargetSpec - 79, // 100: v1.PowerOnRackRequest.queue_options:type_name -> v1.QueueOptions - 16, // 101: v1.PowerOnRackRequest.rule_id:type_name -> v1.UUID - 26, // 102: v1.PowerOffRackRequest.target_spec:type_name -> v1.OperationTargetSpec - 79, // 103: v1.PowerOffRackRequest.queue_options:type_name -> v1.QueueOptions - 16, // 104: v1.PowerOffRackRequest.rule_id:type_name -> v1.UUID - 26, // 105: v1.PowerResetRackRequest.target_spec:type_name -> v1.OperationTargetSpec - 79, // 106: v1.PowerResetRackRequest.queue_options:type_name -> v1.QueueOptions - 16, // 107: v1.PowerResetRackRequest.rule_id:type_name -> v1.UUID - 26, // 108: v1.BringUpRackRequest.target_spec:type_name -> v1.OperationTargetSpec - 16, // 109: v1.BringUpRackRequest.rule_id:type_name -> v1.UUID - 26, // 110: v1.IngestRackRequest.target_spec:type_name -> v1.OperationTargetSpec - 36, // 111: v1.IngestRackRequest.filters:type_name -> v1.Filter - 16, // 112: v1.IngestRackRequest.rule_id:type_name -> v1.UUID - 16, // 113: v1.ListTasksRequest.rack_id:type_name -> v1.UUID - 34, // 114: v1.ListTasksRequest.pagination:type_name -> v1.Pagination - 16, // 115: v1.ListTasksRequest.component_id:type_name -> v1.UUID - 38, // 116: v1.ListTasksResponse.tasks:type_name -> v1.Task - 16, // 117: v1.GetTasksByIDsRequest.task_ids:type_name -> v1.UUID - 38, // 118: v1.GetTasksByIDsResponse.tasks:type_name -> v1.Task - 16, // 119: v1.CancelTaskRequest.task_id:type_name -> v1.UUID - 38, // 120: v1.CancelTaskResponse.task:type_name -> v1.Task - 16, // 121: v1.OperationRule.id:type_name -> v1.UUID - 13, // 122: v1.OperationRule.operation_type:type_name -> v1.OperationType - 132, // 123: v1.OperationRule.created_at:type_name -> google.protobuf.Timestamp - 132, // 124: v1.OperationRule.updated_at:type_name -> google.protobuf.Timestamp - 13, // 125: v1.CreateOperationRuleRequest.operation_type:type_name -> v1.OperationType - 16, // 126: v1.CreateOperationRuleResponse.id:type_name -> v1.UUID - 16, // 127: v1.UpdateOperationRuleRequest.rule_id:type_name -> v1.UUID - 16, // 128: v1.DeleteOperationRuleRequest.rule_id:type_name -> v1.UUID - 16, // 129: v1.SetRuleAsDefaultRequest.rule_id:type_name -> v1.UUID - 16, // 130: v1.GetOperationRuleRequest.rule_id:type_name -> v1.UUID - 13, // 131: v1.ListOperationRulesRequest.operation_type:type_name -> v1.OperationType - 93, // 132: v1.ListOperationRulesResponse.rules:type_name -> v1.OperationRule - 16, // 133: v1.AssociateRuleWithRackRequest.rack_id:type_name -> v1.UUID - 16, // 134: v1.AssociateRuleWithRackRequest.rule_id:type_name -> v1.UUID - 16, // 135: v1.DisassociateRuleFromRackRequest.rack_id:type_name -> v1.UUID - 13, // 136: v1.DisassociateRuleFromRackRequest.operation_type:type_name -> v1.OperationType - 16, // 137: v1.GetRackRuleAssociationRequest.rack_id:type_name -> v1.UUID - 13, // 138: v1.GetRackRuleAssociationRequest.operation_type:type_name -> v1.OperationType - 16, // 139: v1.GetRackRuleAssociationResponse.rule_id:type_name -> v1.UUID - 16, // 140: v1.ListRackRuleAssociationsRequest.rack_id:type_name -> v1.UUID - 16, // 141: v1.RackRuleAssociation.rack_id:type_name -> v1.UUID - 13, // 142: v1.RackRuleAssociation.operation_type:type_name -> v1.OperationType - 16, // 143: v1.RackRuleAssociation.rule_id:type_name -> v1.UUID - 132, // 144: v1.RackRuleAssociation.created_at:type_name -> google.protobuf.Timestamp - 132, // 145: v1.RackRuleAssociation.updated_at:type_name -> google.protobuf.Timestamp - 107, // 146: v1.ListRackRuleAssociationsResponse.associations:type_name -> v1.RackRuleAssociation - 14, // 147: v1.ScheduleSpec.type:type_name -> v1.ScheduleSpecType - 109, // 148: v1.ScheduleConfig.spec:type_name -> v1.ScheduleSpec - 15, // 149: v1.ScheduleConfig.overlap_policy:type_name -> v1.OverlapPolicy - 16, // 150: v1.TaskSchedule.id:type_name -> v1.UUID - 109, // 151: v1.TaskSchedule.spec:type_name -> v1.ScheduleSpec - 15, // 152: v1.TaskSchedule.overlap_policy:type_name -> v1.OverlapPolicy - 132, // 153: v1.TaskSchedule.next_run_at:type_name -> google.protobuf.Timestamp - 132, // 154: v1.TaskSchedule.last_run_at:type_name -> google.protobuf.Timestamp - 132, // 155: v1.TaskSchedule.created_at:type_name -> google.protobuf.Timestamp - 132, // 156: v1.TaskSchedule.updated_at:type_name -> google.protobuf.Timestamp - 80, // 157: v1.ScheduledOperation.power_on:type_name -> v1.PowerOnRackRequest - 81, // 158: v1.ScheduledOperation.power_off:type_name -> v1.PowerOffRackRequest - 82, // 159: v1.ScheduledOperation.power_reset:type_name -> v1.PowerResetRackRequest - 83, // 160: v1.ScheduledOperation.bring_up:type_name -> v1.BringUpRackRequest - 59, // 161: v1.ScheduledOperation.upgrade_firmware:type_name -> v1.UpgradeFirmwareRequest - 84, // 162: v1.ScheduledOperation.ingest:type_name -> v1.IngestRackRequest - 110, // 163: v1.CreateTaskScheduleRequest.schedule:type_name -> v1.ScheduleConfig - 112, // 164: v1.CreateTaskScheduleRequest.operation:type_name -> v1.ScheduledOperation - 16, // 165: v1.GetTaskScheduleRequest.id:type_name -> v1.UUID - 16, // 166: v1.ListTaskSchedulesRequest.rack_id:type_name -> v1.UUID - 34, // 167: v1.ListTaskSchedulesRequest.pagination:type_name -> v1.Pagination - 111, // 168: v1.ListTaskSchedulesResponse.task_schedules:type_name -> v1.TaskSchedule - 16, // 169: v1.UpdateTaskScheduleRequest.id:type_name -> v1.UUID - 110, // 170: v1.UpdateTaskScheduleRequest.schedule:type_name -> v1.ScheduleConfig - 133, // 171: v1.UpdateTaskScheduleRequest.update_mask:type_name -> google.protobuf.FieldMask - 16, // 172: v1.PauseTaskScheduleRequest.id:type_name -> v1.UUID - 16, // 173: v1.ResumeTaskScheduleRequest.id:type_name -> v1.UUID - 16, // 174: v1.DeleteTaskScheduleRequest.id:type_name -> v1.UUID - 16, // 175: v1.TriggerTaskScheduleRequest.id:type_name -> v1.UUID - 16, // 176: v1.TaskScheduleScope.id:type_name -> v1.UUID - 16, // 177: v1.TaskScheduleScope.schedule_id:type_name -> v1.UUID - 16, // 178: v1.TaskScheduleScope.rack_id:type_name -> v1.UUID - 29, // 179: v1.TaskScheduleScope.types:type_name -> v1.ComponentTypes - 28, // 180: v1.TaskScheduleScope.components:type_name -> v1.ComponentTargets - 16, // 181: v1.TaskScheduleScope.last_task_id:type_name -> v1.UUID - 132, // 182: v1.TaskScheduleScope.created_at:type_name -> google.protobuf.Timestamp - 16, // 183: v1.AddTaskScheduleScopeRequest.schedule_id:type_name -> v1.UUID - 26, // 184: v1.AddTaskScheduleScopeRequest.target_spec:type_name -> v1.OperationTargetSpec - 122, // 185: v1.AddTaskScheduleScopeResponse.scopes:type_name -> v1.TaskScheduleScope - 16, // 186: v1.RemoveTaskScheduleScopeRequest.scope_id:type_name -> v1.UUID - 16, // 187: v1.UpdateTaskScheduleScopeRequest.schedule_id:type_name -> v1.UUID - 26, // 188: v1.UpdateTaskScheduleScopeRequest.desired_scope:type_name -> v1.OperationTargetSpec - 122, // 189: v1.UpdateTaskScheduleScopeResponse.scopes:type_name -> v1.TaskScheduleScope - 16, // 190: v1.ListTaskScheduleScopesRequest.schedule_id:type_name -> v1.UUID - 122, // 191: v1.ListTaskScheduleScopesResponse.scopes:type_name -> v1.TaskScheduleScope - 112, // 192: v1.CheckScheduleConflictsRequest.operation:type_name -> v1.ScheduledOperation - 16, // 193: v1.CheckScheduleConflictsRequest.exclude_schedule_id:type_name -> v1.UUID - 111, // 194: v1.CheckScheduleConflictsResponse.conflicts:type_name -> v1.TaskSchedule - 91, // 195: v1.Flow.Version:input_type -> v1.VersionRequest - 113, // 196: v1.Flow.CreateTaskSchedule:input_type -> v1.CreateTaskScheduleRequest - 114, // 197: v1.Flow.GetTaskSchedule:input_type -> v1.GetTaskScheduleRequest - 115, // 198: v1.Flow.ListTaskSchedules:input_type -> v1.ListTaskSchedulesRequest - 117, // 199: v1.Flow.UpdateTaskSchedule:input_type -> v1.UpdateTaskScheduleRequest - 118, // 200: v1.Flow.PauseTaskSchedule:input_type -> v1.PauseTaskScheduleRequest - 119, // 201: v1.Flow.ResumeTaskSchedule:input_type -> v1.ResumeTaskScheduleRequest - 120, // 202: v1.Flow.DeleteTaskSchedule:input_type -> v1.DeleteTaskScheduleRequest - 121, // 203: v1.Flow.TriggerTaskSchedule:input_type -> v1.TriggerTaskScheduleRequest - 123, // 204: v1.Flow.AddTaskScheduleScope:input_type -> v1.AddTaskScheduleScopeRequest - 125, // 205: v1.Flow.RemoveTaskScheduleScope:input_type -> v1.RemoveTaskScheduleScopeRequest - 126, // 206: v1.Flow.UpdateTaskScheduleScope:input_type -> v1.UpdateTaskScheduleScopeRequest - 128, // 207: v1.Flow.ListTaskScheduleScopes:input_type -> v1.ListTaskScheduleScopesRequest - 130, // 208: v1.Flow.CheckScheduleConflicts:input_type -> v1.CheckScheduleConflictsRequest - 39, // 209: v1.Flow.CreateExpectedRack:input_type -> v1.CreateExpectedRackRequest - 41, // 210: v1.Flow.GetRackInfoByID:input_type -> v1.GetRackInfoByIDRequest - 42, // 211: v1.Flow.GetRackInfoBySerial:input_type -> v1.GetRackInfoBySerialRequest - 49, // 212: v1.Flow.GetListOfRacks:input_type -> v1.GetListOfRacksRequest - 44, // 213: v1.Flow.PatchRack:input_type -> v1.PatchRackRequest - 70, // 214: v1.Flow.DeleteRack:input_type -> v1.DeleteRackRequest - 72, // 215: v1.Flow.PurgeRack:input_type -> v1.PurgeRackRequest - 59, // 216: v1.Flow.UpgradeFirmware:input_type -> v1.UpgradeFirmwareRequest - 83, // 217: v1.Flow.BringUpRack:input_type -> v1.BringUpRackRequest - 84, // 218: v1.Flow.IngestRack:input_type -> v1.IngestRackRequest - 80, // 219: v1.Flow.PowerOnRack:input_type -> v1.PowerOnRackRequest - 81, // 220: v1.Flow.PowerOffRack:input_type -> v1.PowerOffRackRequest - 82, // 221: v1.Flow.PowerResetRack:input_type -> v1.PowerResetRackRequest - 46, // 222: v1.Flow.GetComponentInfoByID:input_type -> v1.GetComponentInfoByIDRequest - 47, // 223: v1.Flow.GetComponentInfoBySerial:input_type -> v1.GetComponentInfoBySerialRequest - 60, // 224: v1.Flow.GetComponents:input_type -> v1.GetComponentsRequest - 62, // 225: v1.Flow.ValidateComponents:input_type -> v1.ValidateComponentsRequest - 66, // 226: v1.Flow.AddComponent:input_type -> v1.AddComponentRequest - 76, // 227: v1.Flow.PatchComponent:input_type -> v1.PatchComponentRequest - 68, // 228: v1.Flow.DeleteComponent:input_type -> v1.DeleteComponentRequest - 74, // 229: v1.Flow.PurgeComponent:input_type -> v1.PurgeComponentRequest - 51, // 230: v1.Flow.CreateNVLDomain:input_type -> v1.CreateNVLDomainRequest - 53, // 231: v1.Flow.AttachRacksToNVLDomain:input_type -> v1.AttachRacksToNVLDomainRequest - 54, // 232: v1.Flow.DetachRacksFromNVLDomain:input_type -> v1.DetachRacksFromNVLDomainRequest - 55, // 233: v1.Flow.GetListOfNVLDomains:input_type -> v1.GetListOfNVLDomainsRequest - 57, // 234: v1.Flow.GetRacksForNVLDomain:input_type -> v1.GetRacksForNVLDomainRequest - 85, // 235: v1.Flow.ListTasks:input_type -> v1.ListTasksRequest - 87, // 236: v1.Flow.GetTasksByIDs:input_type -> v1.GetTasksByIDsRequest - 89, // 237: v1.Flow.CancelTask:input_type -> v1.CancelTaskRequest - 94, // 238: v1.Flow.CreateOperationRule:input_type -> v1.CreateOperationRuleRequest - 96, // 239: v1.Flow.UpdateOperationRule:input_type -> v1.UpdateOperationRuleRequest - 97, // 240: v1.Flow.DeleteOperationRule:input_type -> v1.DeleteOperationRuleRequest - 99, // 241: v1.Flow.GetOperationRule:input_type -> v1.GetOperationRuleRequest - 100, // 242: v1.Flow.ListOperationRules:input_type -> v1.ListOperationRulesRequest - 98, // 243: v1.Flow.SetRuleAsDefault:input_type -> v1.SetRuleAsDefaultRequest - 102, // 244: v1.Flow.AssociateRuleWithRack:input_type -> v1.AssociateRuleWithRackRequest - 103, // 245: v1.Flow.DisassociateRuleFromRack:input_type -> v1.DisassociateRuleFromRackRequest - 104, // 246: v1.Flow.GetRackRuleAssociation:input_type -> v1.GetRackRuleAssociationRequest - 106, // 247: v1.Flow.ListRackRuleAssociations:input_type -> v1.ListRackRuleAssociationsRequest - 92, // 248: v1.Flow.Version:output_type -> v1.BuildInfo - 111, // 249: v1.Flow.CreateTaskSchedule:output_type -> v1.TaskSchedule - 111, // 250: v1.Flow.GetTaskSchedule:output_type -> v1.TaskSchedule - 116, // 251: v1.Flow.ListTaskSchedules:output_type -> v1.ListTaskSchedulesResponse - 111, // 252: v1.Flow.UpdateTaskSchedule:output_type -> v1.TaskSchedule - 111, // 253: v1.Flow.PauseTaskSchedule:output_type -> v1.TaskSchedule - 111, // 254: v1.Flow.ResumeTaskSchedule:output_type -> v1.TaskSchedule - 134, // 255: v1.Flow.DeleteTaskSchedule:output_type -> google.protobuf.Empty - 78, // 256: v1.Flow.TriggerTaskSchedule:output_type -> v1.SubmitTaskResponse - 124, // 257: v1.Flow.AddTaskScheduleScope:output_type -> v1.AddTaskScheduleScopeResponse - 134, // 258: v1.Flow.RemoveTaskScheduleScope:output_type -> google.protobuf.Empty - 127, // 259: v1.Flow.UpdateTaskScheduleScope:output_type -> v1.UpdateTaskScheduleScopeResponse - 129, // 260: v1.Flow.ListTaskScheduleScopes:output_type -> v1.ListTaskScheduleScopesResponse - 131, // 261: v1.Flow.CheckScheduleConflicts:output_type -> v1.CheckScheduleConflictsResponse - 40, // 262: v1.Flow.CreateExpectedRack:output_type -> v1.CreateExpectedRackResponse - 43, // 263: v1.Flow.GetRackInfoByID:output_type -> v1.GetRackInfoResponse - 43, // 264: v1.Flow.GetRackInfoBySerial:output_type -> v1.GetRackInfoResponse - 50, // 265: v1.Flow.GetListOfRacks:output_type -> v1.GetListOfRacksResponse - 45, // 266: v1.Flow.PatchRack:output_type -> v1.PatchRackResponse - 71, // 267: v1.Flow.DeleteRack:output_type -> v1.DeleteRackResponse - 73, // 268: v1.Flow.PurgeRack:output_type -> v1.PurgeRackResponse - 78, // 269: v1.Flow.UpgradeFirmware:output_type -> v1.SubmitTaskResponse - 78, // 270: v1.Flow.BringUpRack:output_type -> v1.SubmitTaskResponse - 78, // 271: v1.Flow.IngestRack:output_type -> v1.SubmitTaskResponse - 78, // 272: v1.Flow.PowerOnRack:output_type -> v1.SubmitTaskResponse - 78, // 273: v1.Flow.PowerOffRack:output_type -> v1.SubmitTaskResponse - 78, // 274: v1.Flow.PowerResetRack:output_type -> v1.SubmitTaskResponse - 48, // 275: v1.Flow.GetComponentInfoByID:output_type -> v1.GetComponentInfoResponse - 48, // 276: v1.Flow.GetComponentInfoBySerial:output_type -> v1.GetComponentInfoResponse - 61, // 277: v1.Flow.GetComponents:output_type -> v1.GetComponentsResponse - 63, // 278: v1.Flow.ValidateComponents:output_type -> v1.ValidateComponentsResponse - 67, // 279: v1.Flow.AddComponent:output_type -> v1.AddComponentResponse - 77, // 280: v1.Flow.PatchComponent:output_type -> v1.PatchComponentResponse - 69, // 281: v1.Flow.DeleteComponent:output_type -> v1.DeleteComponentResponse - 75, // 282: v1.Flow.PurgeComponent:output_type -> v1.PurgeComponentResponse - 52, // 283: v1.Flow.CreateNVLDomain:output_type -> v1.CreateNVLDomainResponse - 134, // 284: v1.Flow.AttachRacksToNVLDomain:output_type -> google.protobuf.Empty - 134, // 285: v1.Flow.DetachRacksFromNVLDomain:output_type -> google.protobuf.Empty - 56, // 286: v1.Flow.GetListOfNVLDomains:output_type -> v1.GetListOfNVLDomainsResponse - 58, // 287: v1.Flow.GetRacksForNVLDomain:output_type -> v1.GetRacksForNVLDomainResponse - 86, // 288: v1.Flow.ListTasks:output_type -> v1.ListTasksResponse - 88, // 289: v1.Flow.GetTasksByIDs:output_type -> v1.GetTasksByIDsResponse - 90, // 290: v1.Flow.CancelTask:output_type -> v1.CancelTaskResponse - 95, // 291: v1.Flow.CreateOperationRule:output_type -> v1.CreateOperationRuleResponse - 134, // 292: v1.Flow.UpdateOperationRule:output_type -> google.protobuf.Empty - 134, // 293: v1.Flow.DeleteOperationRule:output_type -> google.protobuf.Empty - 93, // 294: v1.Flow.GetOperationRule:output_type -> v1.OperationRule - 101, // 295: v1.Flow.ListOperationRules:output_type -> v1.ListOperationRulesResponse - 134, // 296: v1.Flow.SetRuleAsDefault:output_type -> google.protobuf.Empty - 134, // 297: v1.Flow.AssociateRuleWithRack:output_type -> google.protobuf.Empty - 134, // 298: v1.Flow.DisassociateRuleFromRack:output_type -> google.protobuf.Empty - 105, // 299: v1.Flow.GetRackRuleAssociation:output_type -> v1.GetRackRuleAssociationResponse - 108, // 300: v1.Flow.ListRackRuleAssociations:output_type -> v1.ListRackRuleAssociationsResponse - 248, // [248:301] is the sub-list for method output_type - 195, // [195:248] is the sub-list for method input_type - 195, // [195:195] is the sub-list for extension type_name - 195, // [195:195] is the sub-list for extension extendee - 0, // [0:195] is the sub-list for field type_name + 35, // 20: v1.ComponentFilter.types:type_name -> v1.ComponentTypes + 34, // 21: v1.ComponentFilter.components:type_name -> v1.ComponentTargets + 38, // 22: v1.ComponentsByType.groups:type_name -> v1.ComponentsForType + 1, // 23: v1.ComponentsForType.type:type_name -> v1.ComponentType + 22, // 24: v1.ComponentsForType.component_ids:type_name -> v1.UUID + 22, // 25: v1.RackTarget.id:type_name -> v1.UUID + 1, // 26: v1.RackTarget.component_types:type_name -> v1.ComponentType + 22, // 27: v1.ComponentTarget.id:type_name -> v1.UUID + 41, // 28: v1.ComponentTarget.external:type_name -> v1.ExternalRef + 1, // 29: v1.ExternalRef.type:type_name -> v1.ComponentType + 31, // 30: v1.NVLDomain.identifier:type_name -> v1.Identifier + 2, // 31: v1.Filter.rack_field:type_name -> v1.RackFilterField + 3, // 32: v1.Filter.component_field:type_name -> v1.ComponentFilterField + 44, // 33: v1.Filter.query_info:type_name -> v1.StringQueryInfo + 5, // 34: v1.OrderBy.rack_field:type_name -> v1.RackOrderByField + 4, // 35: v1.OrderBy.component_field:type_name -> v1.ComponentOrderByField + 22, // 36: v1.Task.id:type_name -> v1.UUID + 22, // 37: v1.Task.rack_id:type_name -> v1.UUID + 22, // 38: v1.Task.component_uuids:type_name -> v1.UUID + 8, // 39: v1.Task.executor_type:type_name -> v1.TaskExecutorType + 7, // 40: v1.Task.status:type_name -> v1.TaskStatus + 184, // 41: v1.Task.queue_expires_at:type_name -> google.protobuf.Timestamp + 184, // 42: v1.Task.created_at:type_name -> google.protobuf.Timestamp + 184, // 43: v1.Task.finished_at:type_name -> google.protobuf.Timestamp + 22, // 44: v1.Task.applied_rule_id:type_name -> v1.UUID + 184, // 45: v1.Task.updated_at:type_name -> google.protobuf.Timestamp + 184, // 46: v1.Task.started_at:type_name -> google.protobuf.Timestamp + 30, // 47: v1.CreateExpectedRackRequest.rack:type_name -> v1.Rack + 22, // 48: v1.CreateExpectedRackResponse.id:type_name -> v1.UUID + 22, // 49: v1.GetRackInfoByIDRequest.id:type_name -> v1.UUID + 25, // 50: v1.GetRackInfoBySerialRequest.serial_info:type_name -> v1.DeviceSerialInfo + 30, // 51: v1.GetRackInfoResponse.rack:type_name -> v1.Rack + 30, // 52: v1.PatchRackRequest.rack:type_name -> v1.Rack + 22, // 53: v1.GetComponentInfoByIDRequest.id:type_name -> v1.UUID + 25, // 54: v1.GetComponentInfoBySerialRequest.serial_info:type_name -> v1.DeviceSerialInfo + 29, // 55: v1.GetComponentInfoResponse.component:type_name -> v1.Component + 30, // 56: v1.GetComponentInfoResponse.rack:type_name -> v1.Rack + 45, // 57: v1.GetListOfRacksRequest.filters:type_name -> v1.Filter + 43, // 58: v1.GetListOfRacksRequest.pagination:type_name -> v1.Pagination + 46, // 59: v1.GetListOfRacksRequest.order_by:type_name -> v1.OrderBy + 30, // 60: v1.GetListOfRacksResponse.racks:type_name -> v1.Rack + 42, // 61: v1.CreateNVLDomainRequest.nvl_domain:type_name -> v1.NVLDomain + 22, // 62: v1.CreateNVLDomainResponse.id:type_name -> v1.UUID + 31, // 63: v1.AttachRacksToNVLDomainRequest.nvl_domain_identifier:type_name -> v1.Identifier + 31, // 64: v1.AttachRacksToNVLDomainRequest.rack_identifiers:type_name -> v1.Identifier + 31, // 65: v1.DetachRacksFromNVLDomainRequest.rack_identifiers:type_name -> v1.Identifier + 44, // 66: v1.GetListOfNVLDomainsRequest.info:type_name -> v1.StringQueryInfo + 43, // 67: v1.GetListOfNVLDomainsRequest.pagination:type_name -> v1.Pagination + 42, // 68: v1.GetListOfNVLDomainsResponse.nvl_domains:type_name -> v1.NVLDomain + 31, // 69: v1.GetRacksForNVLDomainRequest.nvl_domain_identifier:type_name -> v1.Identifier + 30, // 70: v1.GetRacksForNVLDomainResponse.racks:type_name -> v1.Rack + 32, // 71: v1.UpgradeFirmwareRequest.target_spec:type_name -> v1.OperationTargetSpec + 184, // 72: v1.UpgradeFirmwareRequest.start_time:type_name -> google.protobuf.Timestamp + 184, // 73: v1.UpgradeFirmwareRequest.end_time:type_name -> google.protobuf.Timestamp + 88, // 74: v1.UpgradeFirmwareRequest.queue_options:type_name -> v1.QueueOptions + 22, // 75: v1.UpgradeFirmwareRequest.rule_id:type_name -> v1.UUID + 32, // 76: v1.GetComponentsRequest.target_spec:type_name -> v1.OperationTargetSpec + 45, // 77: v1.GetComponentsRequest.filters:type_name -> v1.Filter + 43, // 78: v1.GetComponentsRequest.pagination:type_name -> v1.Pagination + 46, // 79: v1.GetComponentsRequest.order_by:type_name -> v1.OrderBy + 29, // 80: v1.GetComponentsResponse.components:type_name -> v1.Component + 32, // 81: v1.ValidateComponentsRequest.target_spec:type_name -> v1.OperationTargetSpec + 45, // 82: v1.ValidateComponentsRequest.filters:type_name -> v1.Filter + 43, // 83: v1.ValidateComponentsRequest.pagination:type_name -> v1.Pagination + 46, // 84: v1.ValidateComponentsRequest.order_by:type_name -> v1.OrderBy + 73, // 85: v1.ValidateComponentsResponse.diffs:type_name -> v1.ComponentDiff + 11, // 86: v1.ComponentDiff.type:type_name -> v1.DiffType + 29, // 87: v1.ComponentDiff.expected:type_name -> v1.Component + 29, // 88: v1.ComponentDiff.actual:type_name -> v1.Component + 74, // 89: v1.ComponentDiff.field_diffs:type_name -> v1.FieldDiff + 22, // 90: v1.ComponentDiff.id:type_name -> v1.UUID + 29, // 91: v1.AddComponentRequest.component:type_name -> v1.Component + 29, // 92: v1.AddComponentResponse.component:type_name -> v1.Component + 22, // 93: v1.DeleteComponentRequest.id:type_name -> v1.UUID + 22, // 94: v1.DeleteRackRequest.id:type_name -> v1.UUID + 22, // 95: v1.PurgeRackRequest.id:type_name -> v1.UUID + 22, // 96: v1.PurgeComponentRequest.id:type_name -> v1.UUID + 22, // 97: v1.PatchComponentRequest.id:type_name -> v1.UUID + 27, // 98: v1.PatchComponentRequest.position:type_name -> v1.RackPosition + 22, // 99: v1.PatchComponentRequest.rack_id:type_name -> v1.UUID + 26, // 100: v1.PatchComponentRequest.bmcs:type_name -> v1.BMCInfo + 29, // 101: v1.PatchComponentResponse.component:type_name -> v1.Component + 22, // 102: v1.SubmitTaskResponse.task_ids:type_name -> v1.UUID + 12, // 103: v1.QueueOptions.conflict_strategy:type_name -> v1.ConflictStrategy + 32, // 104: v1.PowerOnRackRequest.target_spec:type_name -> v1.OperationTargetSpec + 88, // 105: v1.PowerOnRackRequest.queue_options:type_name -> v1.QueueOptions + 22, // 106: v1.PowerOnRackRequest.rule_id:type_name -> v1.UUID + 32, // 107: v1.PowerOffRackRequest.target_spec:type_name -> v1.OperationTargetSpec + 88, // 108: v1.PowerOffRackRequest.queue_options:type_name -> v1.QueueOptions + 22, // 109: v1.PowerOffRackRequest.rule_id:type_name -> v1.UUID + 32, // 110: v1.PowerResetRackRequest.target_spec:type_name -> v1.OperationTargetSpec + 88, // 111: v1.PowerResetRackRequest.queue_options:type_name -> v1.QueueOptions + 22, // 112: v1.PowerResetRackRequest.rule_id:type_name -> v1.UUID + 32, // 113: v1.BringUpRackRequest.target_spec:type_name -> v1.OperationTargetSpec + 22, // 114: v1.BringUpRackRequest.rule_id:type_name -> v1.UUID + 32, // 115: v1.IngestRackRequest.target_spec:type_name -> v1.OperationTargetSpec + 45, // 116: v1.IngestRackRequest.filters:type_name -> v1.Filter + 22, // 117: v1.IngestRackRequest.rule_id:type_name -> v1.UUID + 22, // 118: v1.ListTasksRequest.rack_id:type_name -> v1.UUID + 43, // 119: v1.ListTasksRequest.pagination:type_name -> v1.Pagination + 22, // 120: v1.ListTasksRequest.component_id:type_name -> v1.UUID + 47, // 121: v1.ListTasksResponse.tasks:type_name -> v1.Task + 22, // 122: v1.GetTasksByIDsRequest.task_ids:type_name -> v1.UUID + 47, // 123: v1.GetTasksByIDsResponse.tasks:type_name -> v1.Task + 22, // 124: v1.CancelTaskRequest.task_id:type_name -> v1.UUID + 47, // 125: v1.CancelTaskResponse.task:type_name -> v1.Task + 22, // 126: v1.OperationRule.id:type_name -> v1.UUID + 13, // 127: v1.OperationRule.operation_type:type_name -> v1.OperationType + 184, // 128: v1.OperationRule.created_at:type_name -> google.protobuf.Timestamp + 184, // 129: v1.OperationRule.updated_at:type_name -> google.protobuf.Timestamp + 13, // 130: v1.CreateOperationRuleRequest.operation_type:type_name -> v1.OperationType + 22, // 131: v1.CreateOperationRuleResponse.id:type_name -> v1.UUID + 22, // 132: v1.UpdateOperationRuleRequest.rule_id:type_name -> v1.UUID + 22, // 133: v1.DeleteOperationRuleRequest.rule_id:type_name -> v1.UUID + 22, // 134: v1.SetRuleAsDefaultRequest.rule_id:type_name -> v1.UUID + 22, // 135: v1.GetOperationRuleRequest.rule_id:type_name -> v1.UUID + 13, // 136: v1.ListOperationRulesRequest.operation_type:type_name -> v1.OperationType + 102, // 137: v1.ListOperationRulesResponse.rules:type_name -> v1.OperationRule + 22, // 138: v1.AssociateRuleWithRackRequest.rack_id:type_name -> v1.UUID + 22, // 139: v1.AssociateRuleWithRackRequest.rule_id:type_name -> v1.UUID + 22, // 140: v1.DisassociateRuleFromRackRequest.rack_id:type_name -> v1.UUID + 13, // 141: v1.DisassociateRuleFromRackRequest.operation_type:type_name -> v1.OperationType + 22, // 142: v1.GetRackRuleAssociationRequest.rack_id:type_name -> v1.UUID + 13, // 143: v1.GetRackRuleAssociationRequest.operation_type:type_name -> v1.OperationType + 22, // 144: v1.GetRackRuleAssociationResponse.rule_id:type_name -> v1.UUID + 22, // 145: v1.ListRackRuleAssociationsRequest.rack_id:type_name -> v1.UUID + 22, // 146: v1.RackRuleAssociation.rack_id:type_name -> v1.UUID + 13, // 147: v1.RackRuleAssociation.operation_type:type_name -> v1.OperationType + 22, // 148: v1.RackRuleAssociation.rule_id:type_name -> v1.UUID + 184, // 149: v1.RackRuleAssociation.created_at:type_name -> google.protobuf.Timestamp + 184, // 150: v1.RackRuleAssociation.updated_at:type_name -> google.protobuf.Timestamp + 116, // 151: v1.ListRackRuleAssociationsResponse.associations:type_name -> v1.RackRuleAssociation + 14, // 152: v1.ScheduleSpec.type:type_name -> v1.ScheduleSpecType + 118, // 153: v1.ScheduleConfig.spec:type_name -> v1.ScheduleSpec + 15, // 154: v1.ScheduleConfig.overlap_policy:type_name -> v1.OverlapPolicy + 22, // 155: v1.TaskSchedule.id:type_name -> v1.UUID + 118, // 156: v1.TaskSchedule.spec:type_name -> v1.ScheduleSpec + 15, // 157: v1.TaskSchedule.overlap_policy:type_name -> v1.OverlapPolicy + 184, // 158: v1.TaskSchedule.next_run_at:type_name -> google.protobuf.Timestamp + 184, // 159: v1.TaskSchedule.last_run_at:type_name -> google.protobuf.Timestamp + 184, // 160: v1.TaskSchedule.created_at:type_name -> google.protobuf.Timestamp + 184, // 161: v1.TaskSchedule.updated_at:type_name -> google.protobuf.Timestamp + 89, // 162: v1.ScheduledOperation.power_on:type_name -> v1.PowerOnRackRequest + 90, // 163: v1.ScheduledOperation.power_off:type_name -> v1.PowerOffRackRequest + 91, // 164: v1.ScheduledOperation.power_reset:type_name -> v1.PowerResetRackRequest + 92, // 165: v1.ScheduledOperation.bring_up:type_name -> v1.BringUpRackRequest + 68, // 166: v1.ScheduledOperation.upgrade_firmware:type_name -> v1.UpgradeFirmwareRequest + 93, // 167: v1.ScheduledOperation.ingest:type_name -> v1.IngestRackRequest + 119, // 168: v1.CreateTaskScheduleRequest.schedule:type_name -> v1.ScheduleConfig + 121, // 169: v1.CreateTaskScheduleRequest.operation:type_name -> v1.ScheduledOperation + 22, // 170: v1.GetTaskScheduleRequest.id:type_name -> v1.UUID + 22, // 171: v1.ListTaskSchedulesRequest.rack_id:type_name -> v1.UUID + 43, // 172: v1.ListTaskSchedulesRequest.pagination:type_name -> v1.Pagination + 120, // 173: v1.ListTaskSchedulesResponse.task_schedules:type_name -> v1.TaskSchedule + 22, // 174: v1.UpdateTaskScheduleRequest.id:type_name -> v1.UUID + 119, // 175: v1.UpdateTaskScheduleRequest.schedule:type_name -> v1.ScheduleConfig + 185, // 176: v1.UpdateTaskScheduleRequest.update_mask:type_name -> google.protobuf.FieldMask + 22, // 177: v1.PauseTaskScheduleRequest.id:type_name -> v1.UUID + 22, // 178: v1.ResumeTaskScheduleRequest.id:type_name -> v1.UUID + 22, // 179: v1.DeleteTaskScheduleRequest.id:type_name -> v1.UUID + 22, // 180: v1.TriggerTaskScheduleRequest.id:type_name -> v1.UUID + 22, // 181: v1.TaskScheduleScope.id:type_name -> v1.UUID + 22, // 182: v1.TaskScheduleScope.schedule_id:type_name -> v1.UUID + 22, // 183: v1.TaskScheduleScope.rack_id:type_name -> v1.UUID + 35, // 184: v1.TaskScheduleScope.types:type_name -> v1.ComponentTypes + 34, // 185: v1.TaskScheduleScope.components:type_name -> v1.ComponentTargets + 22, // 186: v1.TaskScheduleScope.last_task_id:type_name -> v1.UUID + 184, // 187: v1.TaskScheduleScope.created_at:type_name -> google.protobuf.Timestamp + 22, // 188: v1.AddTaskScheduleScopeRequest.schedule_id:type_name -> v1.UUID + 32, // 189: v1.AddTaskScheduleScopeRequest.target_spec:type_name -> v1.OperationTargetSpec + 131, // 190: v1.AddTaskScheduleScopeResponse.scopes:type_name -> v1.TaskScheduleScope + 22, // 191: v1.RemoveTaskScheduleScopeRequest.scope_id:type_name -> v1.UUID + 22, // 192: v1.UpdateTaskScheduleScopeRequest.schedule_id:type_name -> v1.UUID + 32, // 193: v1.UpdateTaskScheduleScopeRequest.desired_scope:type_name -> v1.OperationTargetSpec + 131, // 194: v1.UpdateTaskScheduleScopeResponse.scopes:type_name -> v1.TaskScheduleScope + 22, // 195: v1.ListTaskScheduleScopesRequest.schedule_id:type_name -> v1.UUID + 131, // 196: v1.ListTaskScheduleScopesResponse.scopes:type_name -> v1.TaskScheduleScope + 121, // 197: v1.CheckScheduleConflictsRequest.operation:type_name -> v1.ScheduledOperation + 22, // 198: v1.CheckScheduleConflictsRequest.exclude_schedule_id:type_name -> v1.UUID + 120, // 199: v1.CheckScheduleConflictsResponse.conflicts:type_name -> v1.TaskSchedule + 143, // 200: v1.CreateOperationRunRequest.configuration:type_name -> v1.OperationRunConfiguration + 22, // 201: v1.CreateOperationRunResponse.id:type_name -> v1.UUID + 155, // 202: v1.OperationRunConfiguration.selector:type_name -> v1.OperationRunSelector + 157, // 203: v1.OperationRunConfiguration.options:type_name -> v1.OperationRunOptions + 175, // 204: v1.OperationRunConfiguration.operation:type_name -> v1.OperationRunOperation + 22, // 205: v1.GetOperationRunRequest.id:type_name -> v1.UUID + 178, // 206: v1.GetOperationRunResponse.operation_run:type_name -> v1.OperationRun + 148, // 207: v1.ListOperationRunsRequest.filter:type_name -> v1.OperationRunFilter + 43, // 208: v1.ListOperationRunsRequest.pagination:type_name -> v1.Pagination + 179, // 209: v1.ListOperationRunsResponse.operation_runs:type_name -> v1.OperationRunSummary + 44, // 210: v1.OperationRunFilter.name:type_name -> v1.StringQueryInfo + 149, // 211: v1.OperationRunFilter.states:type_name -> v1.OperationRunStateFilter + 177, // 212: v1.OperationRunFilter.operation_kinds:type_name -> v1.OperationKind + 18, // 213: v1.OperationRunStateFilter.status:type_name -> v1.OperationRunStatus + 19, // 214: v1.OperationRunStateFilter.reason:type_name -> v1.OperationRunStatusReason + 22, // 215: v1.ListOperationRunTargetsRequest.operation_run_id:type_name -> v1.UUID + 20, // 216: v1.ListOperationRunTargetsRequest.status:type_name -> v1.OperationRunTargetStatus + 43, // 217: v1.ListOperationRunTargetsRequest.pagination:type_name -> v1.Pagination + 16, // 218: v1.ListOperationRunTargetsRequest.phase_scope:type_name -> v1.OperationRunTargetPhaseScope + 183, // 219: v1.ListOperationRunTargetsResponse.targets:type_name -> v1.OperationRunTarget + 22, // 220: v1.PauseOperationRunRequest.id:type_name -> v1.UUID + 22, // 221: v1.ResumeOperationRunRequest.id:type_name -> v1.UUID + 22, // 222: v1.CancelOperationRunRequest.id:type_name -> v1.UUID + 156, // 223: v1.OperationRunSelector.percentage:type_name -> v1.PercentageSelector + 158, // 224: v1.OperationRunOptions.safety_policy:type_name -> v1.OperationRunSafetyPolicy + 172, // 225: v1.OperationRunOptions.conflict_policy:type_name -> v1.OperationRunConflictPolicy + 162, // 226: v1.OperationRunOptions.ordering_policy:type_name -> v1.OperationRunOrderingPolicy + 165, // 227: v1.OperationRunOptions.phase_policy:type_name -> v1.OperationRunPhasePolicy + 159, // 228: v1.OperationRunSafetyPolicy.gates:type_name -> v1.OperationRunSafetyGate + 160, // 229: v1.OperationRunSafetyGate.failure_rate:type_name -> v1.OperationRunFailureRateGate + 161, // 230: v1.OperationRunSafetyGate.failure_count:type_name -> v1.OperationRunFailureCountGate + 17, // 231: v1.OperationRunFailureRateGate.scope:type_name -> v1.OperationRunSafetyGateScope + 17, // 232: v1.OperationRunFailureCountGate.scope:type_name -> v1.OperationRunSafetyGateScope + 163, // 233: v1.OperationRunOrderingPolicy.random:type_name -> v1.OperationRunRandomOrdering + 164, // 234: v1.OperationRunOrderingPolicy.physical_location:type_name -> v1.OperationRunPhysicalLocationOrdering + 21, // 235: v1.OperationRunPhysicalLocationOrdering.strategy:type_name -> v1.OperationRunPhysicalLocationOrdering.Strategy + 166, // 236: v1.OperationRunPhasePolicy.equal:type_name -> v1.EqualOperationRunPhases + 167, // 237: v1.OperationRunPhasePolicy.percentage:type_name -> v1.PercentageOperationRunPhases + 169, // 238: v1.OperationRunPhasePolicy.count:type_name -> v1.CountOperationRunPhases + 171, // 239: v1.OperationRunPhasePolicy.advance_policy:type_name -> v1.OperationRunPhaseAdvancePolicy + 168, // 240: v1.PercentageOperationRunPhases.phases:type_name -> v1.OperationRunPercentagePhase + 170, // 241: v1.CountOperationRunPhases.phases:type_name -> v1.OperationRunCountPhase + 173, // 242: v1.OperationRunConflictPolicy.retry:type_name -> v1.OperationRunConflictRetryPolicy + 186, // 243: v1.OperationRunConflictRetryPolicy.retry_timeout:type_name -> google.protobuf.Duration + 186, // 244: v1.OperationRunConflictRetryPolicy.initial_retry_delay:type_name -> google.protobuf.Duration + 186, // 245: v1.OperationRunConflictRetryPolicy.max_retry_delay:type_name -> google.protobuf.Duration + 22, // 246: v1.OperationRunTargetScope.exclude_operation_run_ids:type_name -> v1.UUID + 36, // 247: v1.OperationRunTargetScope.default_scope_component_filter:type_name -> v1.ComponentFilter + 68, // 248: v1.OperationRunOperation.upgrade_firmware:type_name -> v1.UpgradeFirmwareRequest + 174, // 249: v1.OperationRunOperation.target_scope:type_name -> v1.OperationRunTargetScope + 18, // 250: v1.OperationRunState.status:type_name -> v1.OperationRunStatus + 19, // 251: v1.OperationRunState.reason:type_name -> v1.OperationRunStatusReason + 13, // 252: v1.OperationKind.type:type_name -> v1.OperationType + 179, // 253: v1.OperationRun.summary:type_name -> v1.OperationRunSummary + 143, // 254: v1.OperationRun.configuration:type_name -> v1.OperationRunConfiguration + 180, // 255: v1.OperationRun.stats:type_name -> v1.OperationRunStats + 22, // 256: v1.OperationRunSummary.id:type_name -> v1.UUID + 177, // 257: v1.OperationRunSummary.operation_kind:type_name -> v1.OperationKind + 176, // 258: v1.OperationRunSummary.state:type_name -> v1.OperationRunState + 184, // 259: v1.OperationRunSummary.created_at:type_name -> google.protobuf.Timestamp + 184, // 260: v1.OperationRunSummary.updated_at:type_name -> google.protobuf.Timestamp + 184, // 261: v1.OperationRunSummary.started_at:type_name -> google.protobuf.Timestamp + 184, // 262: v1.OperationRunSummary.finished_at:type_name -> google.protobuf.Timestamp + 181, // 263: v1.OperationRunStats.current_phase_stats:type_name -> v1.OperationRunPhaseStats + 181, // 264: v1.OperationRunStats.cumulative_phase_stats:type_name -> v1.OperationRunPhaseStats + 182, // 265: v1.OperationRunPhaseStats.outcome_counts:type_name -> v1.OperationRunTargetOutcomeCounts + 22, // 266: v1.OperationRunTarget.id:type_name -> v1.UUID + 22, // 267: v1.OperationRunTarget.operation_run_id:type_name -> v1.UUID + 22, // 268: v1.OperationRunTarget.rack_id:type_name -> v1.UUID + 22, // 269: v1.OperationRunTarget.task_id:type_name -> v1.UUID + 20, // 270: v1.OperationRunTarget.status:type_name -> v1.OperationRunTargetStatus + 37, // 271: v1.OperationRunTarget.components_by_type:type_name -> v1.ComponentsByType + 184, // 272: v1.OperationRunTarget.created_at:type_name -> google.protobuf.Timestamp + 184, // 273: v1.OperationRunTarget.updated_at:type_name -> google.protobuf.Timestamp + 100, // 274: v1.Flow.Version:input_type -> v1.VersionRequest + 122, // 275: v1.Flow.CreateTaskSchedule:input_type -> v1.CreateTaskScheduleRequest + 123, // 276: v1.Flow.GetTaskSchedule:input_type -> v1.GetTaskScheduleRequest + 124, // 277: v1.Flow.ListTaskSchedules:input_type -> v1.ListTaskSchedulesRequest + 126, // 278: v1.Flow.UpdateTaskSchedule:input_type -> v1.UpdateTaskScheduleRequest + 127, // 279: v1.Flow.PauseTaskSchedule:input_type -> v1.PauseTaskScheduleRequest + 128, // 280: v1.Flow.ResumeTaskSchedule:input_type -> v1.ResumeTaskScheduleRequest + 129, // 281: v1.Flow.DeleteTaskSchedule:input_type -> v1.DeleteTaskScheduleRequest + 130, // 282: v1.Flow.TriggerTaskSchedule:input_type -> v1.TriggerTaskScheduleRequest + 132, // 283: v1.Flow.AddTaskScheduleScope:input_type -> v1.AddTaskScheduleScopeRequest + 134, // 284: v1.Flow.RemoveTaskScheduleScope:input_type -> v1.RemoveTaskScheduleScopeRequest + 135, // 285: v1.Flow.UpdateTaskScheduleScope:input_type -> v1.UpdateTaskScheduleScopeRequest + 137, // 286: v1.Flow.ListTaskScheduleScopes:input_type -> v1.ListTaskScheduleScopesRequest + 139, // 287: v1.Flow.CheckScheduleConflicts:input_type -> v1.CheckScheduleConflictsRequest + 48, // 288: v1.Flow.CreateExpectedRack:input_type -> v1.CreateExpectedRackRequest + 50, // 289: v1.Flow.GetRackInfoByID:input_type -> v1.GetRackInfoByIDRequest + 51, // 290: v1.Flow.GetRackInfoBySerial:input_type -> v1.GetRackInfoBySerialRequest + 58, // 291: v1.Flow.GetListOfRacks:input_type -> v1.GetListOfRacksRequest + 53, // 292: v1.Flow.PatchRack:input_type -> v1.PatchRackRequest + 79, // 293: v1.Flow.DeleteRack:input_type -> v1.DeleteRackRequest + 81, // 294: v1.Flow.PurgeRack:input_type -> v1.PurgeRackRequest + 68, // 295: v1.Flow.UpgradeFirmware:input_type -> v1.UpgradeFirmwareRequest + 92, // 296: v1.Flow.BringUpRack:input_type -> v1.BringUpRackRequest + 93, // 297: v1.Flow.IngestRack:input_type -> v1.IngestRackRequest + 89, // 298: v1.Flow.PowerOnRack:input_type -> v1.PowerOnRackRequest + 90, // 299: v1.Flow.PowerOffRack:input_type -> v1.PowerOffRackRequest + 91, // 300: v1.Flow.PowerResetRack:input_type -> v1.PowerResetRackRequest + 55, // 301: v1.Flow.GetComponentInfoByID:input_type -> v1.GetComponentInfoByIDRequest + 56, // 302: v1.Flow.GetComponentInfoBySerial:input_type -> v1.GetComponentInfoBySerialRequest + 69, // 303: v1.Flow.GetComponents:input_type -> v1.GetComponentsRequest + 71, // 304: v1.Flow.ValidateComponents:input_type -> v1.ValidateComponentsRequest + 75, // 305: v1.Flow.AddComponent:input_type -> v1.AddComponentRequest + 85, // 306: v1.Flow.PatchComponent:input_type -> v1.PatchComponentRequest + 77, // 307: v1.Flow.DeleteComponent:input_type -> v1.DeleteComponentRequest + 83, // 308: v1.Flow.PurgeComponent:input_type -> v1.PurgeComponentRequest + 60, // 309: v1.Flow.CreateNVLDomain:input_type -> v1.CreateNVLDomainRequest + 62, // 310: v1.Flow.AttachRacksToNVLDomain:input_type -> v1.AttachRacksToNVLDomainRequest + 63, // 311: v1.Flow.DetachRacksFromNVLDomain:input_type -> v1.DetachRacksFromNVLDomainRequest + 64, // 312: v1.Flow.GetListOfNVLDomains:input_type -> v1.GetListOfNVLDomainsRequest + 66, // 313: v1.Flow.GetRacksForNVLDomain:input_type -> v1.GetRacksForNVLDomainRequest + 94, // 314: v1.Flow.ListTasks:input_type -> v1.ListTasksRequest + 96, // 315: v1.Flow.GetTasksByIDs:input_type -> v1.GetTasksByIDsRequest + 98, // 316: v1.Flow.CancelTask:input_type -> v1.CancelTaskRequest + 103, // 317: v1.Flow.CreateOperationRule:input_type -> v1.CreateOperationRuleRequest + 105, // 318: v1.Flow.UpdateOperationRule:input_type -> v1.UpdateOperationRuleRequest + 106, // 319: v1.Flow.DeleteOperationRule:input_type -> v1.DeleteOperationRuleRequest + 108, // 320: v1.Flow.GetOperationRule:input_type -> v1.GetOperationRuleRequest + 109, // 321: v1.Flow.ListOperationRules:input_type -> v1.ListOperationRulesRequest + 107, // 322: v1.Flow.SetRuleAsDefault:input_type -> v1.SetRuleAsDefaultRequest + 111, // 323: v1.Flow.AssociateRuleWithRack:input_type -> v1.AssociateRuleWithRackRequest + 112, // 324: v1.Flow.DisassociateRuleFromRack:input_type -> v1.DisassociateRuleFromRackRequest + 113, // 325: v1.Flow.GetRackRuleAssociation:input_type -> v1.GetRackRuleAssociationRequest + 115, // 326: v1.Flow.ListRackRuleAssociations:input_type -> v1.ListRackRuleAssociationsRequest + 141, // 327: v1.Flow.CreateOperationRun:input_type -> v1.CreateOperationRunRequest + 144, // 328: v1.Flow.GetOperationRun:input_type -> v1.GetOperationRunRequest + 146, // 329: v1.Flow.ListOperationRuns:input_type -> v1.ListOperationRunsRequest + 150, // 330: v1.Flow.ListOperationRunTargets:input_type -> v1.ListOperationRunTargetsRequest + 152, // 331: v1.Flow.PauseOperationRun:input_type -> v1.PauseOperationRunRequest + 153, // 332: v1.Flow.ResumeOperationRun:input_type -> v1.ResumeOperationRunRequest + 154, // 333: v1.Flow.CancelOperationRun:input_type -> v1.CancelOperationRunRequest + 101, // 334: v1.Flow.Version:output_type -> v1.BuildInfo + 120, // 335: v1.Flow.CreateTaskSchedule:output_type -> v1.TaskSchedule + 120, // 336: v1.Flow.GetTaskSchedule:output_type -> v1.TaskSchedule + 125, // 337: v1.Flow.ListTaskSchedules:output_type -> v1.ListTaskSchedulesResponse + 120, // 338: v1.Flow.UpdateTaskSchedule:output_type -> v1.TaskSchedule + 120, // 339: v1.Flow.PauseTaskSchedule:output_type -> v1.TaskSchedule + 120, // 340: v1.Flow.ResumeTaskSchedule:output_type -> v1.TaskSchedule + 187, // 341: v1.Flow.DeleteTaskSchedule:output_type -> google.protobuf.Empty + 87, // 342: v1.Flow.TriggerTaskSchedule:output_type -> v1.SubmitTaskResponse + 133, // 343: v1.Flow.AddTaskScheduleScope:output_type -> v1.AddTaskScheduleScopeResponse + 187, // 344: v1.Flow.RemoveTaskScheduleScope:output_type -> google.protobuf.Empty + 136, // 345: v1.Flow.UpdateTaskScheduleScope:output_type -> v1.UpdateTaskScheduleScopeResponse + 138, // 346: v1.Flow.ListTaskScheduleScopes:output_type -> v1.ListTaskScheduleScopesResponse + 140, // 347: v1.Flow.CheckScheduleConflicts:output_type -> v1.CheckScheduleConflictsResponse + 49, // 348: v1.Flow.CreateExpectedRack:output_type -> v1.CreateExpectedRackResponse + 52, // 349: v1.Flow.GetRackInfoByID:output_type -> v1.GetRackInfoResponse + 52, // 350: v1.Flow.GetRackInfoBySerial:output_type -> v1.GetRackInfoResponse + 59, // 351: v1.Flow.GetListOfRacks:output_type -> v1.GetListOfRacksResponse + 54, // 352: v1.Flow.PatchRack:output_type -> v1.PatchRackResponse + 80, // 353: v1.Flow.DeleteRack:output_type -> v1.DeleteRackResponse + 82, // 354: v1.Flow.PurgeRack:output_type -> v1.PurgeRackResponse + 87, // 355: v1.Flow.UpgradeFirmware:output_type -> v1.SubmitTaskResponse + 87, // 356: v1.Flow.BringUpRack:output_type -> v1.SubmitTaskResponse + 87, // 357: v1.Flow.IngestRack:output_type -> v1.SubmitTaskResponse + 87, // 358: v1.Flow.PowerOnRack:output_type -> v1.SubmitTaskResponse + 87, // 359: v1.Flow.PowerOffRack:output_type -> v1.SubmitTaskResponse + 87, // 360: v1.Flow.PowerResetRack:output_type -> v1.SubmitTaskResponse + 57, // 361: v1.Flow.GetComponentInfoByID:output_type -> v1.GetComponentInfoResponse + 57, // 362: v1.Flow.GetComponentInfoBySerial:output_type -> v1.GetComponentInfoResponse + 70, // 363: v1.Flow.GetComponents:output_type -> v1.GetComponentsResponse + 72, // 364: v1.Flow.ValidateComponents:output_type -> v1.ValidateComponentsResponse + 76, // 365: v1.Flow.AddComponent:output_type -> v1.AddComponentResponse + 86, // 366: v1.Flow.PatchComponent:output_type -> v1.PatchComponentResponse + 78, // 367: v1.Flow.DeleteComponent:output_type -> v1.DeleteComponentResponse + 84, // 368: v1.Flow.PurgeComponent:output_type -> v1.PurgeComponentResponse + 61, // 369: v1.Flow.CreateNVLDomain:output_type -> v1.CreateNVLDomainResponse + 187, // 370: v1.Flow.AttachRacksToNVLDomain:output_type -> google.protobuf.Empty + 187, // 371: v1.Flow.DetachRacksFromNVLDomain:output_type -> google.protobuf.Empty + 65, // 372: v1.Flow.GetListOfNVLDomains:output_type -> v1.GetListOfNVLDomainsResponse + 67, // 373: v1.Flow.GetRacksForNVLDomain:output_type -> v1.GetRacksForNVLDomainResponse + 95, // 374: v1.Flow.ListTasks:output_type -> v1.ListTasksResponse + 97, // 375: v1.Flow.GetTasksByIDs:output_type -> v1.GetTasksByIDsResponse + 99, // 376: v1.Flow.CancelTask:output_type -> v1.CancelTaskResponse + 104, // 377: v1.Flow.CreateOperationRule:output_type -> v1.CreateOperationRuleResponse + 187, // 378: v1.Flow.UpdateOperationRule:output_type -> google.protobuf.Empty + 187, // 379: v1.Flow.DeleteOperationRule:output_type -> google.protobuf.Empty + 102, // 380: v1.Flow.GetOperationRule:output_type -> v1.OperationRule + 110, // 381: v1.Flow.ListOperationRules:output_type -> v1.ListOperationRulesResponse + 187, // 382: v1.Flow.SetRuleAsDefault:output_type -> google.protobuf.Empty + 187, // 383: v1.Flow.AssociateRuleWithRack:output_type -> google.protobuf.Empty + 187, // 384: v1.Flow.DisassociateRuleFromRack:output_type -> google.protobuf.Empty + 114, // 385: v1.Flow.GetRackRuleAssociation:output_type -> v1.GetRackRuleAssociationResponse + 117, // 386: v1.Flow.ListRackRuleAssociations:output_type -> v1.ListRackRuleAssociationsResponse + 142, // 387: v1.Flow.CreateOperationRun:output_type -> v1.CreateOperationRunResponse + 145, // 388: v1.Flow.GetOperationRun:output_type -> v1.GetOperationRunResponse + 147, // 389: v1.Flow.ListOperationRuns:output_type -> v1.ListOperationRunsResponse + 151, // 390: v1.Flow.ListOperationRunTargets:output_type -> v1.ListOperationRunTargetsResponse + 178, // 391: v1.Flow.PauseOperationRun:output_type -> v1.OperationRun + 178, // 392: v1.Flow.ResumeOperationRun:output_type -> v1.OperationRun + 178, // 393: v1.Flow.CancelOperationRun:output_type -> v1.OperationRun + 334, // [334:394] is the sub-list for method output_type + 274, // [274:334] is the sub-list for method input_type + 274, // [274:274] is the sub-list for extension type_name + 274, // [274:274] is the sub-list for extension extendee + 0, // [0:274] is the sub-list for field type_name } func init() { file_flow_proto_init() } @@ -9154,38 +12680,42 @@ func file_flow_proto_init() { (*OperationTargetSpec_Components)(nil), } file_flow_proto_msgTypes[14].OneofWrappers = []any{ + (*ComponentFilter_Types)(nil), + (*ComponentFilter_Components)(nil), + } + file_flow_proto_msgTypes[17].OneofWrappers = []any{ (*RackTarget_Id)(nil), (*RackTarget_Name)(nil), } - file_flow_proto_msgTypes[15].OneofWrappers = []any{ + file_flow_proto_msgTypes[18].OneofWrappers = []any{ (*ComponentTarget_Id)(nil), (*ComponentTarget_External)(nil), } - file_flow_proto_msgTypes[20].OneofWrappers = []any{ + file_flow_proto_msgTypes[23].OneofWrappers = []any{ (*Filter_RackField)(nil), (*Filter_ComponentField)(nil), } - file_flow_proto_msgTypes[21].OneofWrappers = []any{ + file_flow_proto_msgTypes[24].OneofWrappers = []any{ (*OrderBy_RackField)(nil), (*OrderBy_ComponentField)(nil), } - file_flow_proto_msgTypes[22].OneofWrappers = []any{} - file_flow_proto_msgTypes[33].OneofWrappers = []any{} - file_flow_proto_msgTypes[39].OneofWrappers = []any{} - file_flow_proto_msgTypes[43].OneofWrappers = []any{} - file_flow_proto_msgTypes[44].OneofWrappers = []any{} + file_flow_proto_msgTypes[25].OneofWrappers = []any{} + file_flow_proto_msgTypes[36].OneofWrappers = []any{} + file_flow_proto_msgTypes[42].OneofWrappers = []any{} file_flow_proto_msgTypes[46].OneofWrappers = []any{} - file_flow_proto_msgTypes[60].OneofWrappers = []any{} - file_flow_proto_msgTypes[64].OneofWrappers = []any{} - file_flow_proto_msgTypes[65].OneofWrappers = []any{} - file_flow_proto_msgTypes[66].OneofWrappers = []any{} + file_flow_proto_msgTypes[47].OneofWrappers = []any{} + file_flow_proto_msgTypes[49].OneofWrappers = []any{} + file_flow_proto_msgTypes[63].OneofWrappers = []any{} file_flow_proto_msgTypes[67].OneofWrappers = []any{} file_flow_proto_msgTypes[68].OneofWrappers = []any{} file_flow_proto_msgTypes[69].OneofWrappers = []any{} - file_flow_proto_msgTypes[80].OneofWrappers = []any{} - file_flow_proto_msgTypes[84].OneofWrappers = []any{} - file_flow_proto_msgTypes[95].OneofWrappers = []any{} - file_flow_proto_msgTypes[96].OneofWrappers = []any{ + file_flow_proto_msgTypes[70].OneofWrappers = []any{} + file_flow_proto_msgTypes[71].OneofWrappers = []any{} + file_flow_proto_msgTypes[72].OneofWrappers = []any{} + file_flow_proto_msgTypes[83].OneofWrappers = []any{} + file_flow_proto_msgTypes[87].OneofWrappers = []any{} + file_flow_proto_msgTypes[98].OneofWrappers = []any{} + file_flow_proto_msgTypes[99].OneofWrappers = []any{ (*ScheduledOperation_PowerOn)(nil), (*ScheduledOperation_PowerOff)(nil), (*ScheduledOperation_PowerReset)(nil), @@ -9193,19 +12723,46 @@ func file_flow_proto_init() { (*ScheduledOperation_UpgradeFirmware)(nil), (*ScheduledOperation_Ingest)(nil), } - file_flow_proto_msgTypes[99].OneofWrappers = []any{} - file_flow_proto_msgTypes[106].OneofWrappers = []any{ + file_flow_proto_msgTypes[102].OneofWrappers = []any{} + file_flow_proto_msgTypes[109].OneofWrappers = []any{ (*TaskScheduleScope_Types)(nil), (*TaskScheduleScope_Components)(nil), } - file_flow_proto_msgTypes[114].OneofWrappers = []any{} + file_flow_proto_msgTypes[117].OneofWrappers = []any{} + file_flow_proto_msgTypes[124].OneofWrappers = []any{} + file_flow_proto_msgTypes[127].OneofWrappers = []any{} + file_flow_proto_msgTypes[128].OneofWrappers = []any{} + file_flow_proto_msgTypes[133].OneofWrappers = []any{ + (*OperationRunSelector_Percentage)(nil), + } + file_flow_proto_msgTypes[137].OneofWrappers = []any{ + (*OperationRunSafetyGate_FailureRate)(nil), + (*OperationRunSafetyGate_FailureCount)(nil), + } + file_flow_proto_msgTypes[140].OneofWrappers = []any{ + (*OperationRunOrderingPolicy_Random)(nil), + (*OperationRunOrderingPolicy_PhysicalLocation)(nil), + } + file_flow_proto_msgTypes[143].OneofWrappers = []any{ + (*OperationRunPhasePolicy_Equal)(nil), + (*OperationRunPhasePolicy_Percentage)(nil), + (*OperationRunPhasePolicy_Count)(nil), + } + file_flow_proto_msgTypes[150].OneofWrappers = []any{ + (*OperationRunConflictPolicy_Retry)(nil), + } + file_flow_proto_msgTypes[153].OneofWrappers = []any{ + (*OperationRunOperation_UpgradeFirmware)(nil), + } + file_flow_proto_msgTypes[155].OneofWrappers = []any{} + file_flow_proto_msgTypes[157].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_flow_proto_rawDesc), len(file_flow_proto_rawDesc)), - NumEnums: 16, - NumMessages: 116, + NumEnums: 22, + NumMessages: 162, NumExtensions: 0, NumServices: 1, }, diff --git a/rest-api/workflow-schema/flow/protobuf/v1/flow_grpc.pb.go b/rest-api/workflow-schema/flow/protobuf/v1/flow_grpc.pb.go index 2db7331188..616e68326a 100644 --- a/rest-api/workflow-schema/flow/protobuf/v1/flow_grpc.pb.go +++ b/rest-api/workflow-schema/flow/protobuf/v1/flow_grpc.pb.go @@ -3,7 +3,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.6.2 +// - protoc-gen-go-grpc v1.6.1 // - protoc (unknown) // source: flow.proto @@ -76,6 +76,13 @@ const ( Flow_DisassociateRuleFromRack_FullMethodName = "/v1.Flow/DisassociateRuleFromRack" Flow_GetRackRuleAssociation_FullMethodName = "/v1.Flow/GetRackRuleAssociation" Flow_ListRackRuleAssociations_FullMethodName = "/v1.Flow/ListRackRuleAssociations" + Flow_CreateOperationRun_FullMethodName = "/v1.Flow/CreateOperationRun" + Flow_GetOperationRun_FullMethodName = "/v1.Flow/GetOperationRun" + Flow_ListOperationRuns_FullMethodName = "/v1.Flow/ListOperationRuns" + Flow_ListOperationRunTargets_FullMethodName = "/v1.Flow/ListOperationRunTargets" + Flow_PauseOperationRun_FullMethodName = "/v1.Flow/PauseOperationRun" + Flow_ResumeOperationRun_FullMethodName = "/v1.Flow/ResumeOperationRun" + Flow_CancelOperationRun_FullMethodName = "/v1.Flow/CancelOperationRun" ) // FlowClient is the client API for Flow service. @@ -144,6 +151,14 @@ type FlowClient interface { DisassociateRuleFromRack(ctx context.Context, in *DisassociateRuleFromRackRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) GetRackRuleAssociation(ctx context.Context, in *GetRackRuleAssociationRequest, opts ...grpc.CallOption) (*GetRackRuleAssociationResponse, error) ListRackRuleAssociations(ctx context.Context, in *ListRackRuleAssociationsRequest, opts ...grpc.CallOption) (*ListRackRuleAssociationsResponse, error) + // Operation runs + CreateOperationRun(ctx context.Context, in *CreateOperationRunRequest, opts ...grpc.CallOption) (*CreateOperationRunResponse, error) + GetOperationRun(ctx context.Context, in *GetOperationRunRequest, opts ...grpc.CallOption) (*GetOperationRunResponse, error) + ListOperationRuns(ctx context.Context, in *ListOperationRunsRequest, opts ...grpc.CallOption) (*ListOperationRunsResponse, error) + ListOperationRunTargets(ctx context.Context, in *ListOperationRunTargetsRequest, opts ...grpc.CallOption) (*ListOperationRunTargetsResponse, error) + PauseOperationRun(ctx context.Context, in *PauseOperationRunRequest, opts ...grpc.CallOption) (*OperationRun, error) + ResumeOperationRun(ctx context.Context, in *ResumeOperationRunRequest, opts ...grpc.CallOption) (*OperationRun, error) + CancelOperationRun(ctx context.Context, in *CancelOperationRunRequest, opts ...grpc.CallOption) (*OperationRun, error) } type flowClient struct { @@ -684,6 +699,76 @@ func (c *flowClient) ListRackRuleAssociations(ctx context.Context, in *ListRackR return out, nil } +func (c *flowClient) CreateOperationRun(ctx context.Context, in *CreateOperationRunRequest, opts ...grpc.CallOption) (*CreateOperationRunResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + out := new(CreateOperationRunResponse) + err := c.cc.Invoke(ctx, Flow_CreateOperationRun_FullMethodName, in, out, cOpts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *flowClient) GetOperationRun(ctx context.Context, in *GetOperationRunRequest, opts ...grpc.CallOption) (*GetOperationRunResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + out := new(GetOperationRunResponse) + err := c.cc.Invoke(ctx, Flow_GetOperationRun_FullMethodName, in, out, cOpts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *flowClient) ListOperationRuns(ctx context.Context, in *ListOperationRunsRequest, opts ...grpc.CallOption) (*ListOperationRunsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + out := new(ListOperationRunsResponse) + err := c.cc.Invoke(ctx, Flow_ListOperationRuns_FullMethodName, in, out, cOpts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *flowClient) ListOperationRunTargets(ctx context.Context, in *ListOperationRunTargetsRequest, opts ...grpc.CallOption) (*ListOperationRunTargetsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + out := new(ListOperationRunTargetsResponse) + err := c.cc.Invoke(ctx, Flow_ListOperationRunTargets_FullMethodName, in, out, cOpts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *flowClient) PauseOperationRun(ctx context.Context, in *PauseOperationRunRequest, opts ...grpc.CallOption) (*OperationRun, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + out := new(OperationRun) + err := c.cc.Invoke(ctx, Flow_PauseOperationRun_FullMethodName, in, out, cOpts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *flowClient) ResumeOperationRun(ctx context.Context, in *ResumeOperationRunRequest, opts ...grpc.CallOption) (*OperationRun, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + out := new(OperationRun) + err := c.cc.Invoke(ctx, Flow_ResumeOperationRun_FullMethodName, in, out, cOpts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *flowClient) CancelOperationRun(ctx context.Context, in *CancelOperationRunRequest, opts ...grpc.CallOption) (*OperationRun, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + out := new(OperationRun) + err := c.cc.Invoke(ctx, Flow_CancelOperationRun_FullMethodName, in, out, cOpts...) + if err != nil { + return nil, err + } + return out, nil +} + // FlowServer is the server API for Flow service. // All implementations should embed UnimplementedFlowServer // for forward compatibility. @@ -750,6 +835,14 @@ type FlowServer interface { DisassociateRuleFromRack(context.Context, *DisassociateRuleFromRackRequest) (*emptypb.Empty, error) GetRackRuleAssociation(context.Context, *GetRackRuleAssociationRequest) (*GetRackRuleAssociationResponse, error) ListRackRuleAssociations(context.Context, *ListRackRuleAssociationsRequest) (*ListRackRuleAssociationsResponse, error) + // Operation runs + CreateOperationRun(context.Context, *CreateOperationRunRequest) (*CreateOperationRunResponse, error) + GetOperationRun(context.Context, *GetOperationRunRequest) (*GetOperationRunResponse, error) + ListOperationRuns(context.Context, *ListOperationRunsRequest) (*ListOperationRunsResponse, error) + ListOperationRunTargets(context.Context, *ListOperationRunTargetsRequest) (*ListOperationRunTargetsResponse, error) + PauseOperationRun(context.Context, *PauseOperationRunRequest) (*OperationRun, error) + ResumeOperationRun(context.Context, *ResumeOperationRunRequest) (*OperationRun, error) + CancelOperationRun(context.Context, *CancelOperationRunRequest) (*OperationRun, error) } // UnimplementedFlowServer should be embedded to have @@ -918,6 +1011,27 @@ func (UnimplementedFlowServer) GetRackRuleAssociation(context.Context, *GetRackR func (UnimplementedFlowServer) ListRackRuleAssociations(context.Context, *ListRackRuleAssociationsRequest) (*ListRackRuleAssociationsResponse, error) { return nil, status.Error(codes.Unimplemented, "method ListRackRuleAssociations not implemented") } +func (UnimplementedFlowServer) CreateOperationRun(context.Context, *CreateOperationRunRequest) (*CreateOperationRunResponse, error) { + return nil, status.Error(codes.Unimplemented, "method CreateOperationRun not implemented") +} +func (UnimplementedFlowServer) GetOperationRun(context.Context, *GetOperationRunRequest) (*GetOperationRunResponse, error) { + return nil, status.Error(codes.Unimplemented, "method GetOperationRun not implemented") +} +func (UnimplementedFlowServer) ListOperationRuns(context.Context, *ListOperationRunsRequest) (*ListOperationRunsResponse, error) { + return nil, status.Error(codes.Unimplemented, "method ListOperationRuns not implemented") +} +func (UnimplementedFlowServer) ListOperationRunTargets(context.Context, *ListOperationRunTargetsRequest) (*ListOperationRunTargetsResponse, error) { + return nil, status.Error(codes.Unimplemented, "method ListOperationRunTargets not implemented") +} +func (UnimplementedFlowServer) PauseOperationRun(context.Context, *PauseOperationRunRequest) (*OperationRun, error) { + return nil, status.Error(codes.Unimplemented, "method PauseOperationRun not implemented") +} +func (UnimplementedFlowServer) ResumeOperationRun(context.Context, *ResumeOperationRunRequest) (*OperationRun, error) { + return nil, status.Error(codes.Unimplemented, "method ResumeOperationRun not implemented") +} +func (UnimplementedFlowServer) CancelOperationRun(context.Context, *CancelOperationRunRequest) (*OperationRun, error) { + return nil, status.Error(codes.Unimplemented, "method CancelOperationRun not implemented") +} func (UnimplementedFlowServer) testEmbeddedByValue() {} // UnsafeFlowServer may be embedded to opt out of forward compatibility for this service. @@ -1892,6 +2006,132 @@ func _Flow_ListRackRuleAssociations_Handler(srv interface{}, ctx context.Context return interceptor(ctx, in, info, handler) } +func _Flow_CreateOperationRun_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(CreateOperationRunRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(FlowServer).CreateOperationRun(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: Flow_CreateOperationRun_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(FlowServer).CreateOperationRun(ctx, req.(*CreateOperationRunRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Flow_GetOperationRun_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetOperationRunRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(FlowServer).GetOperationRun(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: Flow_GetOperationRun_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(FlowServer).GetOperationRun(ctx, req.(*GetOperationRunRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Flow_ListOperationRuns_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ListOperationRunsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(FlowServer).ListOperationRuns(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: Flow_ListOperationRuns_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(FlowServer).ListOperationRuns(ctx, req.(*ListOperationRunsRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Flow_ListOperationRunTargets_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ListOperationRunTargetsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(FlowServer).ListOperationRunTargets(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: Flow_ListOperationRunTargets_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(FlowServer).ListOperationRunTargets(ctx, req.(*ListOperationRunTargetsRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Flow_PauseOperationRun_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(PauseOperationRunRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(FlowServer).PauseOperationRun(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: Flow_PauseOperationRun_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(FlowServer).PauseOperationRun(ctx, req.(*PauseOperationRunRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Flow_ResumeOperationRun_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ResumeOperationRunRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(FlowServer).ResumeOperationRun(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: Flow_ResumeOperationRun_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(FlowServer).ResumeOperationRun(ctx, req.(*ResumeOperationRunRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Flow_CancelOperationRun_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(CancelOperationRunRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(FlowServer).CancelOperationRun(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: Flow_CancelOperationRun_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(FlowServer).CancelOperationRun(ctx, req.(*CancelOperationRunRequest)) + } + return interceptor(ctx, in, info, handler) +} + // Flow_ServiceDesc is the grpc.ServiceDesc for Flow service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) @@ -2111,6 +2351,34 @@ var Flow_ServiceDesc = grpc.ServiceDesc{ MethodName: "ListRackRuleAssociations", Handler: _Flow_ListRackRuleAssociations_Handler, }, + { + MethodName: "CreateOperationRun", + Handler: _Flow_CreateOperationRun_Handler, + }, + { + MethodName: "GetOperationRun", + Handler: _Flow_GetOperationRun_Handler, + }, + { + MethodName: "ListOperationRuns", + Handler: _Flow_ListOperationRuns_Handler, + }, + { + MethodName: "ListOperationRunTargets", + Handler: _Flow_ListOperationRunTargets_Handler, + }, + { + MethodName: "PauseOperationRun", + Handler: _Flow_PauseOperationRun_Handler, + }, + { + MethodName: "ResumeOperationRun", + Handler: _Flow_ResumeOperationRun_Handler, + }, + { + MethodName: "CancelOperationRun", + Handler: _Flow_CancelOperationRun_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "flow.proto", From f32a75f3e5ad85f362023835e11d4987560ab20e Mon Sep 17 00:00:00 2001 From: Hitesh Wadekar Date: Fri, 26 Jun 2026 17:03:48 -0700 Subject: [PATCH 7/9] sync proto --- .../schema/site-agent/workflows/v1/nico_nico.pb.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rest-api/workflow-schema/schema/site-agent/workflows/v1/nico_nico.pb.go b/rest-api/workflow-schema/schema/site-agent/workflows/v1/nico_nico.pb.go index fa6164ff07..9512dc2c1c 100644 --- a/rest-api/workflow-schema/schema/site-agent/workflows/v1/nico_nico.pb.go +++ b/rest-api/workflow-schema/schema/site-agent/workflows/v1/nico_nico.pb.go @@ -56916,8 +56916,8 @@ func (x *GetMachineBootInterfacesResponse) GetDivergent() bool { type DNSMessage_DNSQuestion struct { state protoimpl.MessageState `protogen:"open.v1"` - QName *string `protobuf:"bytes,1,opt,name=q_name,json=qName,proto3,oneof" json:"q_name,omitempty"` // FQDN including trailing dot - QType *uint32 `protobuf:"varint,2,opt,name=q_type,json=qType,proto3,oneof" json:"q_type,omitempty"` + QName *string `protobuf:"bytes,1,opt,name=q_name,json=qName,proto3,oneof" json:"q_name,omitempty"` // FQDN including trailing dot + QType *uint32 `protobuf:"varint,2,opt,name=q_type,json=qType,proto3,oneof" json:"q_type,omitempty"` // QClass *uint32 `protobuf:"varint,3,opt,name=q_class,json=qClass,proto3,oneof" json:"q_class,omitempty"` // Usually 1 (IN) unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache From b84c724f399a1803ac6fb63be5271ea2d8b3e36b Mon Sep 17 00:00:00 2001 From: Hitesh Wadekar Date: Fri, 26 Jun 2026 17:29:16 -0700 Subject: [PATCH 8/9] chore(rest-api): align nico_nico.pb.go DNS comment formatting with CI buf generate --- .../schema/site-agent/workflows/v1/nico_nico.pb.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rest-api/workflow-schema/schema/site-agent/workflows/v1/nico_nico.pb.go b/rest-api/workflow-schema/schema/site-agent/workflows/v1/nico_nico.pb.go index 9512dc2c1c..fa6164ff07 100644 --- a/rest-api/workflow-schema/schema/site-agent/workflows/v1/nico_nico.pb.go +++ b/rest-api/workflow-schema/schema/site-agent/workflows/v1/nico_nico.pb.go @@ -56916,8 +56916,8 @@ func (x *GetMachineBootInterfacesResponse) GetDivergent() bool { type DNSMessage_DNSQuestion struct { state protoimpl.MessageState `protogen:"open.v1"` - QName *string `protobuf:"bytes,1,opt,name=q_name,json=qName,proto3,oneof" json:"q_name,omitempty"` // FQDN including trailing dot - QType *uint32 `protobuf:"varint,2,opt,name=q_type,json=qType,proto3,oneof" json:"q_type,omitempty"` // + QName *string `protobuf:"bytes,1,opt,name=q_name,json=qName,proto3,oneof" json:"q_name,omitempty"` // FQDN including trailing dot + QType *uint32 `protobuf:"varint,2,opt,name=q_type,json=qType,proto3,oneof" json:"q_type,omitempty"` QClass *uint32 `protobuf:"varint,3,opt,name=q_class,json=qClass,proto3,oneof" json:"q_class,omitempty"` // Usually 1 (IN) unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache From 68815455b62a4a4e6dd3784877feb7055f545a80 Mon Sep 17 00:00:00 2001 From: Hitesh Wadekar Date: Mon, 29 Jun 2026 10:36:36 -0700 Subject: [PATCH 9/9] fix the test cases --- .../src/tests/network_security_group.rs | 58 +++++++------------ 1 file changed, 21 insertions(+), 37 deletions(-) diff --git a/crates/api-core/src/tests/network_security_group.rs b/crates/api-core/src/tests/network_security_group.rs index 12e977ce36..7024fdaa02 100644 --- a/crates/api-core/src/tests/network_security_group.rs +++ b/crates/api-core/src/tests/network_security_group.rs @@ -36,6 +36,7 @@ use crate::tests::common::api_fixtures::instance::{ default_os_config, default_tenant_config, interface_network_config_with_devices, single_interface_network_config, }; +use crate::tests::common::api_fixtures::test_managed_host::TestManagedHost; use crate::tests::common::api_fixtures::{ create_test_env, populate_network_security_groups, site_explorer, }; @@ -1761,7 +1762,6 @@ async fn test_network_security_group_get_attachments( let good_network_security_group_id = "fd3ab096-d811-11ef-8fe9-7be4b2483448"; let vpc_id: VpcId = uuid!("2ff5ba26-da6a-11ef-9c48-5b78e547a5e7").into(); - let instance_id: InstanceId = uuid!("46c555e0-da6a-11ef-b86d-db132142d068").into(); // Check attachments before doing anything else. // There should be no objects with any attached NSG. @@ -1807,32 +1807,23 @@ async fn test_network_security_group_get_attachments( .await .unwrap(); + let test_managed_host = + TestManagedHost::from_rpc_machine(&mh.host_snapshot.clone().into(), env.api.clone()); // Create an Instance - let _ = env - .api - .allocate_instance(tonic::Request::new(rpc::forge::InstanceAllocationRequest { - machine_id: mh.host_snapshot.id.into(), - config: Some(rpc::InstanceConfig { - tenant: Some(default_tenant_config()), - os: Some(default_os_config()), - network: Some(single_interface_network_config(segment_id)), - infiniband: None, - nvlink: None, - spxconfig: None, - network_security_group_id: Some(good_network_security_group_id.to_string()), - dpu_extension_services: None, - }), - instance_id: Some(instance_id), - instance_type_id: None, - metadata: Some(rpc::forge::Metadata { - name: "newinstance".to_string(), - description: "desc".to_string(), - labels: vec![], - }), - allow_unhealthy_machine: false, - })) - .await - .unwrap(); + let instance = test_managed_host + .instance_builer(&env) + .config(rpc::InstanceConfig { + tenant: Some(default_tenant_config()), + os: Some(default_os_config()), + network: Some(single_interface_network_config(segment_id)), + infiniband: None, + nvlink: None, + spxconfig: None, + network_security_group_id: Some(good_network_security_group_id.to_string()), + dpu_extension_services: None, + }) + .build() + .await; // Check attachments let prop_status = env @@ -1850,22 +1841,15 @@ async fn test_network_security_group_get_attachments( attachments: vec![rpc::forge::NetworkSecurityGroupAttachments { network_security_group_id: good_network_security_group_id.to_string(), vpc_ids: vec![vpc_id.to_string()], - instance_ids: vec![instance_id.to_string()], + instance_ids: vec![instance.id.to_string()], }], }; assert_eq!(prop_status, expected_results); - // Delete the instance - env.api - .release_instance(tonic::Request::new(rpc::forge::InstanceReleaseRequest { - id: Some(instance_id), - issue: None, - is_repair_tenant: None, - delete_attribution: None, - })) - .await - .unwrap(); + // Delete the instance and wait for it to be fully gone + test_managed_host.delete_instance(&env, instance.id).await; + // Delete the VPC env.api .delete_vpc(tonic::Request::new(rpc::forge::VpcDeletionRequest {