From 19f14f5ead2c8a2170e5e75d922389f7b4be8905 Mon Sep 17 00:00:00 2001 From: yuanzh Date: Wed, 8 Oct 2025 17:27:11 -0700 Subject: [PATCH 01/16] Add virtualDiskId to VirtualHardDisk --- .../storage/virtualharddisk/moc_nodeagent_virtualharddisk.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/rpc/nodeagent/storage/virtualharddisk/moc_nodeagent_virtualharddisk.proto b/rpc/nodeagent/storage/virtualharddisk/moc_nodeagent_virtualharddisk.proto index 50e58207..43792aa5 100644 --- a/rpc/nodeagent/storage/virtualharddisk/moc_nodeagent_virtualharddisk.proto +++ b/rpc/nodeagent/storage/virtualharddisk/moc_nodeagent_virtualharddisk.proto @@ -92,6 +92,7 @@ message VirtualHardDisk { CloudInitDataSource cloudInitDataSource = 22; DiskFileFormat diskFileFormat = 23; string TargetUrl = 24 [(sensitive) = true]; + string virtualDiskId = 25; } message DiskNotificationRequest { From 00a773aa1e666b68fa2c2ce5825cc840f31ca4b8 Mon Sep 17 00:00:00 2001 From: yuanzh Date: Thu, 9 Oct 2025 13:08:19 -0700 Subject: [PATCH 02/16] Add virtualDiskId for cloudagent --- .../storage/virtualharddisk/moc_cloudagent_virtualharddisk.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/rpc/cloudagent/storage/virtualharddisk/moc_cloudagent_virtualharddisk.proto b/rpc/cloudagent/storage/virtualharddisk/moc_cloudagent_virtualharddisk.proto index 6dd03d43..74f812d8 100644 --- a/rpc/cloudagent/storage/virtualharddisk/moc_cloudagent_virtualharddisk.proto +++ b/rpc/cloudagent/storage/virtualharddisk/moc_cloudagent_virtualharddisk.proto @@ -59,6 +59,7 @@ message VirtualHardDisk { string sourcePath = 24; ImageSource sourceType = 25; string targetUrl = 26 [(sensitive) = true]; + string virtualDiskId = 27; } message VirtualHardDiskPrecheckRequest { From 21abcfb14e623df3bef6a9235b432b93a994bfa4 Mon Sep 17 00:00:00 2001 From: yuanzh Date: Thu, 9 Oct 2025 17:01:38 -0700 Subject: [PATCH 03/16] Rename virtualDiskId into uniqueId --- .../virtualharddisk/moc_cloudagent_virtualharddisk.proto | 2 +- .../storage/virtualharddisk/moc_nodeagent_virtualharddisk.proto | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rpc/cloudagent/storage/virtualharddisk/moc_cloudagent_virtualharddisk.proto b/rpc/cloudagent/storage/virtualharddisk/moc_cloudagent_virtualharddisk.proto index 74f812d8..89515f2b 100644 --- a/rpc/cloudagent/storage/virtualharddisk/moc_cloudagent_virtualharddisk.proto +++ b/rpc/cloudagent/storage/virtualharddisk/moc_cloudagent_virtualharddisk.proto @@ -59,7 +59,7 @@ message VirtualHardDisk { string sourcePath = 24; ImageSource sourceType = 25; string targetUrl = 26 [(sensitive) = true]; - string virtualDiskId = 27; + string uniqueId = 27; } message VirtualHardDiskPrecheckRequest { diff --git a/rpc/nodeagent/storage/virtualharddisk/moc_nodeagent_virtualharddisk.proto b/rpc/nodeagent/storage/virtualharddisk/moc_nodeagent_virtualharddisk.proto index 43792aa5..43a3d277 100644 --- a/rpc/nodeagent/storage/virtualharddisk/moc_nodeagent_virtualharddisk.proto +++ b/rpc/nodeagent/storage/virtualharddisk/moc_nodeagent_virtualharddisk.proto @@ -92,7 +92,7 @@ message VirtualHardDisk { CloudInitDataSource cloudInitDataSource = 22; DiskFileFormat diskFileFormat = 23; string TargetUrl = 24 [(sensitive) = true]; - string virtualDiskId = 25; + string uniqueId = 25; } message DiskNotificationRequest { From 8c2cc59df8f0c5e348c3f94b2bb5036027693e9c Mon Sep 17 00:00:00 2001 From: yuanzh Date: Fri, 10 Oct 2025 10:59:50 -0700 Subject: [PATCH 04/16] Add node agent test --- .../storage/moc_nodeagent_virtualharddisk_test.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go b/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go index b24df9c6..33ac6116 100644 --- a/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go +++ b/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go @@ -26,3 +26,13 @@ func TestRedactedError_VHD(t *testing.T) { assert.False(t, strings.Contains(err.Error(), uri), err.Error()) } + +func TestVHDUniqueId (t *testing.T) { + // Validate the UniqueId field exists and can set GUID value to it + sampleGuid := "00112233-4455-6677-8899-aabbccddeeff" + vhd := VirtualHardDisk{Name: "test", UniqueId: sampleGuid} + t.Logf("Nodeagent VirtualHardDisk UniqueId: %s", vhd.UniqueId) + if vhd.UniqueId != sampleGuid { + t.Fatal("Nodeagent VirtualHardDisk UniqueId does not match expected value") + } +} From 55e3f68abcb7f618a81ba3695d204fbfff596ef4 Mon Sep 17 00:00:00 2001 From: yuanzh Date: Fri, 10 Oct 2025 11:10:03 -0700 Subject: [PATCH 05/16] Add cloud agent test --- .../moc_cloudagent_virtualharddisk_test.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 rpc/cloudagent/storage/moc_cloudagent_virtualharddisk_test.go diff --git a/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk_test.go b/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk_test.go new file mode 100644 index 00000000..a50df333 --- /dev/null +++ b/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk_test.go @@ -0,0 +1,15 @@ +package storage + +import ( + "testing" +) + +func TestVHDUniqueId (t *testing.T) { + // Validate the UniqueId field exists and can set GUID value to it + sampleGuid := "33221100-5544-6677-8899-aabbccddeeff" + vhd := VirtualHardDisk{Name: "test", UniqueId: sampleGuid} + t.Logf("Cloudagent VirtualHardDisk UniqueId: %s", vhd.UniqueId) + if vhd.UniqueId != sampleGuid { + t.Fatal("Cloudagent VirtualHardDisk UniqueId does not match expected value") + } +} From 8576b2738befb9a4a52399010d00ba3372b0f51e Mon Sep 17 00:00:00 2001 From: yuanzh Date: Fri, 10 Oct 2025 21:03:07 -0700 Subject: [PATCH 06/16] Remove test --- .../moc_cloudagent_virtualharddisk_test.go | 15 -------- .../moc_nodeagent_virtualharddisk_test.go | 38 ------------------- 2 files changed, 53 deletions(-) delete mode 100644 rpc/cloudagent/storage/moc_cloudagent_virtualharddisk_test.go delete mode 100644 rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go diff --git a/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk_test.go b/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk_test.go deleted file mode 100644 index a50df333..00000000 --- a/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk_test.go +++ /dev/null @@ -1,15 +0,0 @@ -package storage - -import ( - "testing" -) - -func TestVHDUniqueId (t *testing.T) { - // Validate the UniqueId field exists and can set GUID value to it - sampleGuid := "33221100-5544-6677-8899-aabbccddeeff" - vhd := VirtualHardDisk{Name: "test", UniqueId: sampleGuid} - t.Logf("Cloudagent VirtualHardDisk UniqueId: %s", vhd.UniqueId) - if vhd.UniqueId != sampleGuid { - t.Fatal("Cloudagent VirtualHardDisk UniqueId does not match expected value") - } -} diff --git a/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go b/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go deleted file mode 100644 index 33ac6116..00000000 --- a/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go +++ /dev/null @@ -1,38 +0,0 @@ -package storage - -import ( - "encoding/json" - "errors" - "net/url" - "strings" - "testing" - - "github.com/microsoft/moc/pkg/redact" - "github.com/stretchr/testify/assert" -) - -func TestRedactedError_VHD(t *testing.T) { - // Has issue with ampersand (&); queryescape is needed to pass - uri := url.QueryEscape(`https://test.blob.core.windowssdfsdf.net/testvhd/test.vhdx?sp=r&st=2025-01-31T10:33:25Z&se=2025-01-31T18:33:25Z&spr=https&sv=2022-11-02&sr=b&sig=dfdf`) - - azureProp := AzureGalleryImageProperties{SasURI: uri} - propertiesJson, e := json.Marshal(azureProp) - if e != nil { - t.Error(e) - } - vhd := VirtualHardDisk{Name: "test", Source: string(propertiesJson)} - err := errors.New(uri + " : Unable to reach host") - redact.RedactError(&vhd, &err) - assert.False(t, strings.Contains(err.Error(), uri), err.Error()) - -} - -func TestVHDUniqueId (t *testing.T) { - // Validate the UniqueId field exists and can set GUID value to it - sampleGuid := "00112233-4455-6677-8899-aabbccddeeff" - vhd := VirtualHardDisk{Name: "test", UniqueId: sampleGuid} - t.Logf("Nodeagent VirtualHardDisk UniqueId: %s", vhd.UniqueId) - if vhd.UniqueId != sampleGuid { - t.Fatal("Nodeagent VirtualHardDisk UniqueId does not match expected value") - } -} From b81c550fa3099aaa87d8c2cb9bb625949e75e5cf Mon Sep 17 00:00:00 2001 From: yuanzh Date: Fri, 10 Oct 2025 21:08:59 -0700 Subject: [PATCH 07/16] Restore the node agent test --- .../moc_nodeagent_virtualharddisk_test.go | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go diff --git a/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go b/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go new file mode 100644 index 00000000..72657281 --- /dev/null +++ b/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go @@ -0,0 +1,28 @@ +package storage + +import ( + "encoding/json" + "errors" + "net/url" + "strings" + "testing" + + "github.com/microsoft/moc/pkg/redact" + "github.com/stretchr/testify/assert" +) + +func TestRedactedError_VHD(t *testing.T) { + // Has issue with ampersand (&); queryescape is needed to pass + uri := url.QueryEscape(`https://test.blob.core.windowssdfsdf.net/testvhd/test.vhdx?sp=r&st=2025-01-31T10:33:25Z&se=2025-01-31T18:33:25Z&spr=https&sv=2022-11-02&sr=b&sig=dfdf`) + + azureProp := AzureGalleryImageProperties{SasURI: uri} + propertiesJson, e := json.Marshal(azureProp) + if e != nil { + t.Error(e) + } + vhd := VirtualHardDisk{Name: "test", Source: string(propertiesJson)} + err := errors.New(uri + " : Unable to reach host") + redact.RedactError(&vhd, &err) + assert.False(t, strings.Contains(err.Error(), uri), err.Error()) + +} \ No newline at end of file From e515bf456b165e84cc62c68aed66bebe95cc9416 Mon Sep 17 00:00:00 2001 From: yuanzh Date: Fri, 10 Oct 2025 21:11:03 -0700 Subject: [PATCH 08/16] Revert "Restore the node agent test" This reverts commit b81c550fa3099aaa87d8c2cb9bb625949e75e5cf. --- .../moc_nodeagent_virtualharddisk_test.go | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go diff --git a/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go b/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go deleted file mode 100644 index 72657281..00000000 --- a/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go +++ /dev/null @@ -1,28 +0,0 @@ -package storage - -import ( - "encoding/json" - "errors" - "net/url" - "strings" - "testing" - - "github.com/microsoft/moc/pkg/redact" - "github.com/stretchr/testify/assert" -) - -func TestRedactedError_VHD(t *testing.T) { - // Has issue with ampersand (&); queryescape is needed to pass - uri := url.QueryEscape(`https://test.blob.core.windowssdfsdf.net/testvhd/test.vhdx?sp=r&st=2025-01-31T10:33:25Z&se=2025-01-31T18:33:25Z&spr=https&sv=2022-11-02&sr=b&sig=dfdf`) - - azureProp := AzureGalleryImageProperties{SasURI: uri} - propertiesJson, e := json.Marshal(azureProp) - if e != nil { - t.Error(e) - } - vhd := VirtualHardDisk{Name: "test", Source: string(propertiesJson)} - err := errors.New(uri + " : Unable to reach host") - redact.RedactError(&vhd, &err) - assert.False(t, strings.Contains(err.Error(), uri), err.Error()) - -} \ No newline at end of file From cb9171194fe986d1be344df4c5b82314f5601d3b Mon Sep 17 00:00:00 2001 From: yuanzh Date: Fri, 10 Oct 2025 21:13:12 -0700 Subject: [PATCH 09/16] Revert "Remove test" This reverts commit 8576b2738befb9a4a52399010d00ba3372b0f51e. --- .../moc_cloudagent_virtualharddisk_test.go | 15 ++++++++ .../moc_nodeagent_virtualharddisk_test.go | 38 +++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 rpc/cloudagent/storage/moc_cloudagent_virtualharddisk_test.go create mode 100644 rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go diff --git a/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk_test.go b/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk_test.go new file mode 100644 index 00000000..a50df333 --- /dev/null +++ b/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk_test.go @@ -0,0 +1,15 @@ +package storage + +import ( + "testing" +) + +func TestVHDUniqueId (t *testing.T) { + // Validate the UniqueId field exists and can set GUID value to it + sampleGuid := "33221100-5544-6677-8899-aabbccddeeff" + vhd := VirtualHardDisk{Name: "test", UniqueId: sampleGuid} + t.Logf("Cloudagent VirtualHardDisk UniqueId: %s", vhd.UniqueId) + if vhd.UniqueId != sampleGuid { + t.Fatal("Cloudagent VirtualHardDisk UniqueId does not match expected value") + } +} diff --git a/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go b/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go new file mode 100644 index 00000000..33ac6116 --- /dev/null +++ b/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go @@ -0,0 +1,38 @@ +package storage + +import ( + "encoding/json" + "errors" + "net/url" + "strings" + "testing" + + "github.com/microsoft/moc/pkg/redact" + "github.com/stretchr/testify/assert" +) + +func TestRedactedError_VHD(t *testing.T) { + // Has issue with ampersand (&); queryescape is needed to pass + uri := url.QueryEscape(`https://test.blob.core.windowssdfsdf.net/testvhd/test.vhdx?sp=r&st=2025-01-31T10:33:25Z&se=2025-01-31T18:33:25Z&spr=https&sv=2022-11-02&sr=b&sig=dfdf`) + + azureProp := AzureGalleryImageProperties{SasURI: uri} + propertiesJson, e := json.Marshal(azureProp) + if e != nil { + t.Error(e) + } + vhd := VirtualHardDisk{Name: "test", Source: string(propertiesJson)} + err := errors.New(uri + " : Unable to reach host") + redact.RedactError(&vhd, &err) + assert.False(t, strings.Contains(err.Error(), uri), err.Error()) + +} + +func TestVHDUniqueId (t *testing.T) { + // Validate the UniqueId field exists and can set GUID value to it + sampleGuid := "00112233-4455-6677-8899-aabbccddeeff" + vhd := VirtualHardDisk{Name: "test", UniqueId: sampleGuid} + t.Logf("Nodeagent VirtualHardDisk UniqueId: %s", vhd.UniqueId) + if vhd.UniqueId != sampleGuid { + t.Fatal("Nodeagent VirtualHardDisk UniqueId does not match expected value") + } +} From a392fde6182f35d8c5a1651f8412e28870c97996 Mon Sep 17 00:00:00 2001 From: yuanzh Date: Fri, 10 Oct 2025 21:14:38 -0700 Subject: [PATCH 10/16] Revert "Add cloud agent test" This reverts commit 55e3f68abcb7f618a81ba3695d204fbfff596ef4. --- .../moc_cloudagent_virtualharddisk_test.go | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 rpc/cloudagent/storage/moc_cloudagent_virtualharddisk_test.go diff --git a/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk_test.go b/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk_test.go deleted file mode 100644 index a50df333..00000000 --- a/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk_test.go +++ /dev/null @@ -1,15 +0,0 @@ -package storage - -import ( - "testing" -) - -func TestVHDUniqueId (t *testing.T) { - // Validate the UniqueId field exists and can set GUID value to it - sampleGuid := "33221100-5544-6677-8899-aabbccddeeff" - vhd := VirtualHardDisk{Name: "test", UniqueId: sampleGuid} - t.Logf("Cloudagent VirtualHardDisk UniqueId: %s", vhd.UniqueId) - if vhd.UniqueId != sampleGuid { - t.Fatal("Cloudagent VirtualHardDisk UniqueId does not match expected value") - } -} From a5d2e1bc87205941fd7dd533639cacb4786783fe Mon Sep 17 00:00:00 2001 From: yuanzh Date: Fri, 10 Oct 2025 21:15:18 -0700 Subject: [PATCH 11/16] Revert "Add node agent test" This reverts commit 8c2cc59df8f0c5e348c3f94b2bb5036027693e9c. --- .../storage/moc_nodeagent_virtualharddisk_test.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go b/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go index 33ac6116..b24df9c6 100644 --- a/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go +++ b/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk_test.go @@ -26,13 +26,3 @@ func TestRedactedError_VHD(t *testing.T) { assert.False(t, strings.Contains(err.Error(), uri), err.Error()) } - -func TestVHDUniqueId (t *testing.T) { - // Validate the UniqueId field exists and can set GUID value to it - sampleGuid := "00112233-4455-6677-8899-aabbccddeeff" - vhd := VirtualHardDisk{Name: "test", UniqueId: sampleGuid} - t.Logf("Nodeagent VirtualHardDisk UniqueId: %s", vhd.UniqueId) - if vhd.UniqueId != sampleGuid { - t.Fatal("Nodeagent VirtualHardDisk UniqueId does not match expected value") - } -} From 71ce9cdccdc4c76342e46f55625ff1f139427e72 Mon Sep 17 00:00:00 2001 From: yuanzh Date: Fri, 10 Oct 2025 21:18:01 -0700 Subject: [PATCH 12/16] Check in the auto-generated files --- .../moc_cloudagent_virtualharddisk.pb.go | 120 +++++++------- .../moc_nodeagent_virtualharddisk.pb.go | 154 +++++++++--------- 2 files changed, 145 insertions(+), 129 deletions(-) diff --git a/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk.pb.go b/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk.pb.go index c4ea3ad0..4e01cd53 100644 --- a/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk.pb.go +++ b/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk.pb.go @@ -257,6 +257,7 @@ type VirtualHardDisk struct { SourcePath string `protobuf:"bytes,24,opt,name=sourcePath,proto3" json:"sourcePath,omitempty"` SourceType common.ImageSource `protobuf:"varint,25,opt,name=sourceType,proto3,enum=moc.ImageSource" json:"sourceType,omitempty"` TargetUrl string `protobuf:"bytes,26,opt,name=targetUrl,proto3" json:"targetUrl,omitempty"` + UniqueId string `protobuf:"bytes,27,opt,name=uniqueId,proto3" json:"uniqueId,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -469,6 +470,13 @@ func (m *VirtualHardDisk) GetTargetUrl() string { return "" } +func (m *VirtualHardDisk) GetUniqueId() string { + if m != nil { + return m.UniqueId + } + return "" +} + type VirtualHardDiskPrecheckRequest struct { VirtualHardDisks []*VirtualHardDisk `protobuf:"bytes,1,rep,name=VirtualHardDisks,proto3" json:"VirtualHardDisks,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -572,63 +580,63 @@ func init() { } var fileDescriptor_e3ff93a45373b349 = []byte{ - // 881 bytes of a gzipped FileDescriptorProto + // 896 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x55, 0x41, 0x6f, 0xe3, 0x44, - 0x14, 0xc6, 0x6d, 0x9a, 0x26, 0xaf, 0xdb, 0x6c, 0x98, 0x76, 0xdb, 0xc1, 0x5a, 0x4a, 0x14, 0x56, - 0x10, 0x71, 0xb0, 0x97, 0x80, 0x00, 0x09, 0x09, 0xa9, 0xa5, 0x2c, 0x5b, 0x0e, 0x4b, 0xe5, 0x2e, - 0x3d, 0x70, 0x59, 0x4d, 0xc6, 0xb3, 0xce, 0x28, 0xb6, 0xc7, 0xcc, 0x8c, 0x8b, 0x82, 0x04, 0x07, - 0x4e, 0xfc, 0x0f, 0x4e, 0xfc, 0x00, 0x24, 0xc4, 0x8d, 0x7f, 0x86, 0xfc, 0xec, 0x34, 0xa9, 0x93, - 0xa2, 0xf4, 0xd0, 0x03, 0xa7, 0xc4, 0xdf, 0xf7, 0xbd, 0xef, 0xbd, 0x79, 0xcf, 0xf3, 0x0c, 0x4f, - 0x12, 0xc5, 0x5f, 0xf1, 0x58, 0xe5, 0x21, 0x8b, 0x44, 0x6a, 0x5f, 0x5d, 0x49, 0x6d, 0x73, 0x16, - 0x8f, 0x99, 0x0e, 0x43, 0x69, 0x26, 0x5e, 0xa6, 0x95, 0x55, 0xe4, 0x20, 0x51, 0xdc, 0x9b, 0xab, - 0x3c, 0x63, 0x95, 0x66, 0x91, 0x70, 0x8f, 0x22, 0xa5, 0xa2, 0x58, 0xf8, 0xa8, 0x1a, 0xe5, 0xaf, - 0xfd, 0x1f, 0x35, 0xcb, 0x32, 0xa1, 0x4d, 0x19, 0xe7, 0x1e, 0xa2, 0xbb, 0x4a, 0x12, 0x95, 0x56, - 0x3f, 0x25, 0xd1, 0xff, 0xdd, 0x81, 0x83, 0xcb, 0x32, 0xd5, 0x73, 0xa6, 0xc3, 0x53, 0x69, 0x26, - 0x81, 0xf8, 0x21, 0x17, 0xc6, 0x92, 0x0b, 0xe8, 0xd6, 0x18, 0x43, 0x9d, 0xde, 0xe6, 0x60, 0x67, - 0xf8, 0xbe, 0xb7, 0xba, 0x0c, 0xaf, 0xee, 0xb4, 0x64, 0x40, 0x3e, 0x86, 0xdd, 0x6f, 0x33, 0xa1, - 0x99, 0x95, 0x2a, 0x7d, 0x39, 0xcd, 0x04, 0xdd, 0xe8, 0x39, 0x83, 0xce, 0xb0, 0x83, 0x8e, 0xd7, - 0x4c, 0x70, 0x53, 0xd4, 0xff, 0xcb, 0x81, 0xc3, 0xa5, 0x2a, 0x4d, 0xa6, 0x52, 0x23, 0xee, 0xa7, - 0xcc, 0x21, 0x34, 0x03, 0x61, 0xf2, 0xd8, 0x62, 0x7d, 0x3b, 0x43, 0xd7, 0x2b, 0x1b, 0xec, 0xcd, - 0x1a, 0xec, 0x9d, 0x28, 0x15, 0x5f, 0xb2, 0x38, 0x17, 0x41, 0xa5, 0x24, 0xfb, 0xb0, 0xf5, 0x95, - 0xd6, 0x4a, 0xd3, 0xcd, 0x9e, 0x33, 0x68, 0x07, 0xe5, 0x43, 0xff, 0x6f, 0x07, 0xde, 0xa9, 0xd9, - 0xcf, 0x8f, 0x79, 0x9f, 0x9d, 0x3e, 0x59, 0xdd, 0xe9, 0xc7, 0xe8, 0x78, 0xae, 0xd5, 0x95, 0x0c, - 0x85, 0x3e, 0xe6, 0x5c, 0x18, 0x73, 0x6b, 0xdf, 0xff, 0x71, 0xa0, 0x77, 0x7b, 0xf1, 0xff, 0x8f, - 0x01, 0xfc, 0xd1, 0x82, 0x87, 0x35, 0x7b, 0x42, 0xa0, 0x91, 0xb2, 0x44, 0x50, 0x07, 0x85, 0xf8, - 0x9f, 0x74, 0x60, 0x43, 0x86, 0x98, 0xad, 0x1d, 0x6c, 0xc8, 0x90, 0x3c, 0x81, 0x5d, 0xae, 0x52, - 0xcb, 0x64, 0x2a, 0xf4, 0x8b, 0x42, 0x5c, 0xba, 0xde, 0x04, 0x09, 0x85, 0x46, 0xc6, 0xec, 0x98, - 0x36, 0x0a, 0xf2, 0xa4, 0xf1, 0xdb, 0x9f, 0xd4, 0x09, 0x10, 0x21, 0xef, 0x42, 0xd3, 0x58, 0x66, - 0x73, 0x43, 0xb7, 0xf0, 0x04, 0x3b, 0xd8, 0x8c, 0x0b, 0x84, 0x82, 0x8a, 0x2a, 0x0a, 0x31, 0xf2, - 0x27, 0x41, 0x9b, 0x3d, 0x67, 0xb0, 0x19, 0xe0, 0x7f, 0x42, 0x61, 0x3b, 0x9c, 0xa6, 0x2c, 0x91, - 0x9c, 0x6e, 0xf7, 0x9c, 0x41, 0x2b, 0x98, 0x3d, 0x92, 0xf7, 0xa0, 0x33, 0x8a, 0x15, 0x9f, 0x14, - 0xb2, 0xd1, 0xd4, 0x0a, 0x43, 0x5b, 0x3d, 0x67, 0xb0, 0x15, 0xd4, 0x50, 0xe2, 0x01, 0x89, 0x55, - 0x24, 0x39, 0x8b, 0x8d, 0xe0, 0x56, 0xe9, 0x52, 0xdb, 0x46, 0xed, 0x0a, 0x86, 0x3c, 0x85, 0xbd, - 0x6c, 0x3c, 0x35, 0xf5, 0x00, 0xc0, 0x80, 0x55, 0x14, 0xf9, 0x00, 0xba, 0x45, 0x1f, 0xb4, 0x8a, - 0x63, 0xa1, 0xd3, 0x3c, 0x19, 0x09, 0x4d, 0x77, 0xf0, 0x0c, 0x4b, 0x78, 0x51, 0xcd, 0x1c, 0x8b, - 0x15, 0xc7, 0xb7, 0x87, 0x3e, 0x40, 0xf5, 0x0a, 0x86, 0x1c, 0x01, 0x14, 0x1b, 0xaf, 0x72, 0xdd, - 0x45, 0xdd, 0x02, 0x52, 0xf8, 0x55, 0xcb, 0x31, 0x61, 0x7c, 0x2c, 0x53, 0x81, 0xd3, 0xe9, 0xe0, - 0x74, 0x56, 0x30, 0xc4, 0x85, 0x96, 0xe1, 0x46, 0xe2, 0x98, 0x1e, 0xa2, 0xea, 0xfa, 0x99, 0x7c, - 0x01, 0x2e, 0xb3, 0x96, 0xf1, 0xb1, 0x08, 0x2f, 0x97, 0x3d, 0xbb, 0xa8, 0xfe, 0x0f, 0x45, 0xd1, - 0x87, 0x19, 0xfb, 0x42, 0x85, 0x65, 0xd4, 0x9b, 0x18, 0xb5, 0x84, 0x93, 0xc7, 0xd0, 0x8e, 0xb4, - 0xca, 0x33, 0x14, 0x11, 0x14, 0xcd, 0x01, 0xd2, 0x87, 0x07, 0xb3, 0x0e, 0xa0, 0x60, 0x0f, 0x05, - 0x37, 0x30, 0x72, 0x0c, 0xdd, 0xf1, 0x34, 0x13, 0xfa, 0xf2, 0x6b, 0x91, 0x56, 0xb7, 0x90, 0xee, - 0xe3, 0xad, 0x7e, 0x84, 0x2f, 0xd7, 0xf3, 0x1a, 0x19, 0x2c, 0xc9, 0xc9, 0xe7, 0xd0, 0x29, 0x5a, - 0xf9, 0x4c, 0xc6, 0xe2, 0x99, 0xd2, 0x09, 0xb3, 0xf4, 0x11, 0x1a, 0xec, 0xa1, 0xc1, 0xe9, 0x0d, - 0x2a, 0xa8, 0x49, 0xc9, 0x37, 0xb0, 0x87, 0x97, 0xf9, 0x2c, 0x95, 0xf6, 0x94, 0x59, 0x76, 0xa1, - 0x72, 0xcd, 0x05, 0x3d, 0x40, 0x07, 0x8a, 0x0e, 0x5f, 0x2e, 0xf3, 0xc1, 0xaa, 0x20, 0xf2, 0x36, - 0x34, 0x2c, 0x8b, 0x0c, 0x3d, 0xc4, 0xcb, 0xd1, 0xc6, 0xe0, 0x97, 0x2c, 0x32, 0x01, 0xc2, 0xc5, - 0x4b, 0x60, 0x50, 0x78, 0x5e, 0x8c, 0x8d, 0x62, 0x33, 0x16, 0x10, 0xf2, 0x74, 0xc6, 0xe3, 0x6a, - 0x7b, 0x0b, 0x2b, 0xe8, 0xa2, 0xc9, 0x59, 0xc2, 0x22, 0x51, 0x65, 0x5e, 0xd0, 0x90, 0x3e, 0xb4, - 0x2d, 0xd3, 0x91, 0xb0, 0xdf, 0xe9, 0x98, 0xba, 0x0b, 0xd7, 0x75, 0x0e, 0xf7, 0x73, 0x38, 0xaa, - 0xad, 0x8a, 0x73, 0x2d, 0xf8, 0x58, 0xf0, 0x7b, 0xfd, 0x28, 0xf6, 0x27, 0x4b, 0x9f, 0x88, 0x79, - 0xda, 0x6a, 0xc9, 0xce, 0xf7, 0xa1, 0x73, 0xf7, 0x7d, 0xb8, 0xb1, 0xb0, 0x0f, 0x87, 0xbf, 0x6e, - 0xc2, 0x7e, 0x2d, 0xdb, 0x71, 0x51, 0x2f, 0x99, 0x40, 0xf3, 0x2c, 0xbd, 0x52, 0x13, 0x41, 0xbc, - 0x75, 0x8f, 0x52, 0x36, 0xc5, 0xf5, 0xd7, 0xd6, 0x97, 0xa7, 0xe9, 0xbf, 0x41, 0x7e, 0x86, 0xd6, - 0xec, 0x8c, 0xe4, 0x93, 0x35, 0xc3, 0x6b, 0xb3, 0x70, 0x3f, 0xbd, 0x73, 0xdc, 0x75, 0xfa, 0x5f, - 0x60, 0xbb, 0xfc, 0x90, 0x09, 0xb2, 0xae, 0x4b, 0xfd, 0xab, 0xed, 0x7e, 0x76, 0xf7, 0xc0, 0x59, - 0xfe, 0x93, 0x0f, 0xbf, 0xf7, 0x23, 0x69, 0xc7, 0xf9, 0xc8, 0xe3, 0x2a, 0xf1, 0x13, 0xc9, 0xb5, - 0x32, 0xea, 0xb5, 0xf5, 0x13, 0xc5, 0x7d, 0x9d, 0x71, 0x7f, 0xee, 0xea, 0x57, 0xae, 0xa3, 0x26, - 0x4e, 0xfa, 0xa3, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x4e, 0x2c, 0x01, 0x21, 0x29, 0x0a, 0x00, - 0x00, + 0x14, 0xc6, 0x6d, 0x9a, 0x26, 0xaf, 0xdb, 0x6c, 0x98, 0x76, 0xdb, 0xc1, 0x2c, 0x25, 0x0a, 0x2b, + 0x88, 0x38, 0xd8, 0x4b, 0x40, 0x80, 0x84, 0x84, 0xd4, 0x52, 0x96, 0x2d, 0x87, 0xa5, 0x72, 0x97, + 0x1e, 0xb8, 0xac, 0x26, 0xe3, 0x59, 0x67, 0x14, 0xdb, 0xe3, 0x9d, 0x19, 0x17, 0x05, 0x09, 0x0e, + 0x9c, 0xf8, 0x1f, 0xfc, 0x06, 0x24, 0xc4, 0x8d, 0x03, 0xff, 0x0b, 0xf9, 0xd9, 0x69, 0x52, 0x27, + 0x8b, 0xd2, 0x43, 0x0f, 0x9c, 0xec, 0x79, 0xdf, 0xf7, 0xbe, 0xf7, 0xe6, 0xbd, 0x99, 0x37, 0xf0, + 0x28, 0x51, 0xfc, 0x05, 0x8f, 0x55, 0x1e, 0xb2, 0x48, 0xa4, 0xf6, 0xc5, 0x95, 0xd4, 0x36, 0x67, + 0xf1, 0x98, 0xe9, 0x30, 0x94, 0x66, 0xe2, 0x65, 0x5a, 0x59, 0x45, 0x0e, 0x12, 0xc5, 0xbd, 0x39, + 0xcb, 0x33, 0x56, 0x69, 0x16, 0x09, 0xf7, 0x28, 0x52, 0x2a, 0x8a, 0x85, 0x8f, 0xac, 0x51, 0xfe, + 0xd2, 0xff, 0x51, 0xb3, 0x2c, 0x13, 0xda, 0x94, 0x7e, 0xee, 0x21, 0xaa, 0xab, 0x24, 0x51, 0x69, + 0xf5, 0x29, 0x81, 0xfe, 0xef, 0x0e, 0x1c, 0x5c, 0x96, 0xa1, 0x9e, 0x32, 0x1d, 0x9e, 0x4a, 0x33, + 0x09, 0xc4, 0xab, 0x5c, 0x18, 0x4b, 0x2e, 0xa0, 0x5b, 0x43, 0x0c, 0x75, 0x7a, 0x9b, 0x83, 0x9d, + 0xe1, 0x07, 0xde, 0xea, 0x34, 0xbc, 0xba, 0xd2, 0x92, 0x00, 0xf9, 0x04, 0x76, 0xbf, 0xcb, 0x84, + 0x66, 0x56, 0xaa, 0xf4, 0xf9, 0x34, 0x13, 0x74, 0xa3, 0xe7, 0x0c, 0x3a, 0xc3, 0x0e, 0x2a, 0x5e, + 0x23, 0xc1, 0x4d, 0x52, 0xff, 0x4f, 0x07, 0x0e, 0x97, 0xb2, 0x34, 0x99, 0x4a, 0x8d, 0xb8, 0x9b, + 0x34, 0x87, 0xd0, 0x0c, 0x84, 0xc9, 0x63, 0x8b, 0xf9, 0xed, 0x0c, 0x5d, 0xaf, 0x2c, 0xb0, 0x37, + 0x2b, 0xb0, 0x77, 0xa2, 0x54, 0x7c, 0xc9, 0xe2, 0x5c, 0x04, 0x15, 0x93, 0xec, 0xc3, 0xd6, 0xd7, + 0x5a, 0x2b, 0x4d, 0x37, 0x7b, 0xce, 0xa0, 0x1d, 0x94, 0x8b, 0xfe, 0x5f, 0x0e, 0xbc, 0x5b, 0x93, + 0x9f, 0x6f, 0xf3, 0x2e, 0x2b, 0x7d, 0xb2, 0xba, 0xd2, 0x0f, 0x51, 0xf1, 0x5c, 0xab, 0x2b, 0x19, + 0x0a, 0x7d, 0xcc, 0xb9, 0x30, 0xe6, 0xb5, 0x75, 0xff, 0xdb, 0x81, 0xde, 0xeb, 0x93, 0xff, 0x7f, + 0x34, 0xe0, 0x9f, 0x16, 0xdc, 0xaf, 0xc9, 0x13, 0x02, 0x8d, 0x94, 0x25, 0x82, 0x3a, 0x48, 0xc4, + 0x7f, 0xd2, 0x81, 0x0d, 0x19, 0x62, 0xb4, 0x76, 0xb0, 0x21, 0x43, 0xf2, 0x08, 0x76, 0xb9, 0x4a, + 0x2d, 0x93, 0xa9, 0xd0, 0xcf, 0x0a, 0x72, 0xa9, 0x7a, 0xd3, 0x48, 0x28, 0x34, 0x32, 0x66, 0xc7, + 0xb4, 0x51, 0x80, 0x27, 0x8d, 0xdf, 0xfe, 0xa0, 0x4e, 0x80, 0x16, 0xf2, 0x1e, 0x34, 0x8d, 0x65, + 0x36, 0x37, 0x74, 0x0b, 0x77, 0xb0, 0x83, 0xc5, 0xb8, 0x40, 0x53, 0x50, 0x41, 0x45, 0x22, 0x46, + 0xfe, 0x24, 0x68, 0xb3, 0xe7, 0x0c, 0x36, 0x03, 0xfc, 0x27, 0x14, 0xb6, 0xc3, 0x69, 0xca, 0x12, + 0xc9, 0xe9, 0x76, 0xcf, 0x19, 0xb4, 0x82, 0xd9, 0x92, 0xbc, 0x0f, 0x9d, 0x51, 0xac, 0xf8, 0xa4, + 0xa0, 0x8d, 0xa6, 0x56, 0x18, 0xda, 0xea, 0x39, 0x83, 0xad, 0xa0, 0x66, 0x25, 0x1e, 0x90, 0x58, + 0x45, 0x92, 0xb3, 0xd8, 0x08, 0x6e, 0x95, 0x2e, 0xb9, 0x6d, 0xe4, 0xae, 0x40, 0xc8, 0x63, 0xd8, + 0xcb, 0xc6, 0x53, 0x53, 0x77, 0x00, 0x74, 0x58, 0x05, 0x91, 0x0f, 0xa1, 0x5b, 0xd4, 0x41, 0xab, + 0x38, 0x16, 0x3a, 0xcd, 0x93, 0x91, 0xd0, 0x74, 0x07, 0xf7, 0xb0, 0x64, 0x2f, 0xb2, 0x99, 0xdb, + 0x62, 0xc5, 0xf1, 0xf4, 0xd0, 0x7b, 0xc8, 0x5e, 0x81, 0x90, 0x23, 0x80, 0x62, 0xe2, 0x55, 0xaa, + 0xbb, 0xc8, 0x5b, 0xb0, 0x14, 0x7a, 0xd5, 0x70, 0x4c, 0x18, 0x1f, 0xcb, 0x54, 0x60, 0x77, 0x3a, + 0xd8, 0x9d, 0x15, 0x08, 0x71, 0xa1, 0x65, 0xb8, 0x91, 0xd8, 0xa6, 0xfb, 0xc8, 0xba, 0x5e, 0x93, + 0x2f, 0xc1, 0x65, 0xd6, 0x32, 0x3e, 0x16, 0xe1, 0xe5, 0xb2, 0x66, 0x17, 0xd9, 0xff, 0xc1, 0x28, + 0xea, 0x30, 0x43, 0x9f, 0xa9, 0xb0, 0xf4, 0x7a, 0x13, 0xbd, 0x96, 0xec, 0xe4, 0x21, 0xb4, 0x23, + 0xad, 0xf2, 0x0c, 0x49, 0x04, 0x49, 0x73, 0x03, 0xe9, 0xc3, 0xbd, 0x59, 0x05, 0x90, 0xb0, 0x87, + 0x84, 0x1b, 0x36, 0x72, 0x0c, 0xdd, 0xf1, 0x34, 0x13, 0xfa, 0xf2, 0x1b, 0x91, 0x56, 0xb7, 0x90, + 0xee, 0xe3, 0xad, 0x7e, 0x80, 0x87, 0xeb, 0x69, 0x0d, 0x0c, 0x96, 0xe8, 0xe4, 0x0b, 0xe8, 0x14, + 0xa5, 0x7c, 0x22, 0x63, 0xf1, 0x44, 0xe9, 0x84, 0x59, 0xfa, 0x00, 0x05, 0xf6, 0x50, 0xe0, 0xf4, + 0x06, 0x14, 0xd4, 0xa8, 0xe4, 0x5b, 0xd8, 0xc3, 0xcb, 0x7c, 0x96, 0x4a, 0x7b, 0xca, 0x2c, 0xbb, + 0x50, 0xb9, 0xe6, 0x82, 0x1e, 0xa0, 0x02, 0x45, 0x85, 0xaf, 0x96, 0xf1, 0x60, 0x95, 0x13, 0x79, + 0x07, 0x1a, 0x96, 0x45, 0x86, 0x1e, 0xe2, 0xe5, 0x68, 0xa3, 0xf3, 0x73, 0x16, 0x99, 0x00, 0xcd, + 0xc5, 0x21, 0x30, 0x48, 0x3c, 0x2f, 0xda, 0x46, 0xb1, 0x18, 0x0b, 0x16, 0xf2, 0x78, 0x86, 0xe3, + 0x68, 0x7b, 0x0b, 0x33, 0xe8, 0xa2, 0xc8, 0x59, 0xc2, 0x22, 0x51, 0x45, 0x5e, 0xe0, 0x90, 0x3e, + 0xb4, 0x2d, 0xd3, 0x91, 0xb0, 0xdf, 0xeb, 0x98, 0xba, 0x0b, 0xd7, 0x75, 0x6e, 0x2e, 0x8e, 0x4a, + 0x9e, 0xca, 0x57, 0xb9, 0x38, 0x0b, 0xe9, 0xdb, 0xe5, 0x51, 0x99, 0xad, 0xfb, 0x39, 0x1c, 0xd5, + 0xc6, 0xc8, 0xb9, 0x16, 0x7c, 0x2c, 0xf8, 0x9d, 0x3e, 0x98, 0xfd, 0xc9, 0xd2, 0xf3, 0x31, 0x0f, + 0x5b, 0x0d, 0xe0, 0xf9, 0xac, 0x74, 0x6e, 0x3f, 0x2b, 0x37, 0x16, 0x66, 0xe5, 0xf0, 0xd7, 0x4d, + 0xd8, 0xaf, 0x45, 0x3b, 0x2e, 0xf2, 0x25, 0x13, 0x68, 0x9e, 0xa5, 0x57, 0x6a, 0x22, 0x88, 0xb7, + 0xee, 0x56, 0xca, 0xa2, 0xb8, 0xfe, 0xda, 0xfc, 0x72, 0x37, 0xfd, 0x37, 0xc8, 0xcf, 0xd0, 0x9a, + 0xed, 0x91, 0x7c, 0xba, 0xa6, 0x7b, 0xad, 0x17, 0xee, 0x67, 0xb7, 0xf6, 0xbb, 0x0e, 0xff, 0x0b, + 0x6c, 0x97, 0x8f, 0x9c, 0x20, 0xeb, 0xaa, 0xd4, 0x5f, 0x74, 0xf7, 0xf3, 0xdb, 0x3b, 0xce, 0xe2, + 0x9f, 0x7c, 0xf4, 0x83, 0x1f, 0x49, 0x3b, 0xce, 0x47, 0x1e, 0x57, 0x89, 0x9f, 0x48, 0xae, 0x95, + 0x51, 0x2f, 0xad, 0x9f, 0x28, 0xee, 0xeb, 0x8c, 0xfb, 0x73, 0x55, 0xbf, 0x52, 0x1d, 0x35, 0xb1, + 0xd3, 0x1f, 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x22, 0x0f, 0xc0, 0x3c, 0x45, 0x0a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk.pb.go b/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk.pb.go index b848902a..82550dfc 100644 --- a/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk.pb.go +++ b/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk.pb.go @@ -526,6 +526,7 @@ type VirtualHardDisk struct { CloudInitDataSource common.CloudInitDataSource `protobuf:"varint,22,opt,name=cloudInitDataSource,proto3,enum=moc.CloudInitDataSource" json:"cloudInitDataSource,omitempty"` DiskFileFormat common.DiskFileFormat `protobuf:"varint,23,opt,name=diskFileFormat,proto3,enum=moc.DiskFileFormat" json:"diskFileFormat,omitempty"` TargetUrl string `protobuf:"bytes,24,opt,name=TargetUrl,proto3" json:"TargetUrl,omitempty"` + UniqueId string `protobuf:"bytes,25,opt,name=uniqueId,proto3" json:"uniqueId,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -724,6 +725,13 @@ func (m *VirtualHardDisk) GetTargetUrl() string { return "" } +func (m *VirtualHardDisk) GetUniqueId() string { + if m != nil { + return m.UniqueId + } + return "" +} + type DiskNotificationRequest struct { ResourceType string `protobuf:"bytes,1,opt,name=resourceType,proto3" json:"resourceType,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -783,79 +791,79 @@ func init() { } var fileDescriptor_c1f33a566472b7b7 = []byte{ - // 1137 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xdd, 0x6e, 0x1b, 0x45, - 0x14, 0xee, 0x26, 0x8e, 0xd3, 0x1c, 0x37, 0xae, 0x3b, 0x4e, 0x9b, 0xc5, 0x4d, 0x82, 0xb5, 0x45, - 0x95, 0x15, 0x89, 0x75, 0x64, 0x10, 0x20, 0x21, 0x2e, 0x9c, 0xb8, 0x69, 0x4c, 0xa3, 0x16, 0x8d, - 0x93, 0x5c, 0x20, 0x44, 0x18, 0xaf, 0x27, 0xf6, 0x28, 0xbb, 0x3b, 0xcb, 0xcc, 0x6c, 0x90, 0x2b, - 0x1e, 0x80, 0x47, 0xe0, 0x29, 0xb8, 0xe3, 0x86, 0x2b, 0x24, 0x6e, 0x79, 0x09, 0xde, 0x83, 0x0b, - 0xb4, 0x33, 0x6b, 0x7b, 0xbd, 0x76, 0xa4, 0x54, 0xa2, 0x57, 0xf6, 0x9c, 0xef, 0x3b, 0xdf, 0x39, - 0xf3, 0xcd, 0xdf, 0xc2, 0xb3, 0x80, 0x7b, 0x97, 0x21, 0x1f, 0x50, 0x32, 0xa4, 0xa1, 0xba, 0xbc, - 0x61, 0x42, 0xc5, 0xc4, 0x1f, 0x11, 0x31, 0x18, 0x30, 0x79, 0xed, 0x46, 0x82, 0x2b, 0x8e, 0x1e, - 0x07, 0xdc, 0x73, 0xa7, 0x24, 0x57, 0x2a, 0x2e, 0xc8, 0x90, 0xd6, 0xf6, 0x86, 0x9c, 0x0f, 0x7d, - 0xda, 0xd4, 0xa4, 0x7e, 0x7c, 0xd5, 0xfc, 0x49, 0x90, 0x28, 0xa2, 0x42, 0x9a, 0xb4, 0xda, 0x76, - 0xa2, 0xed, 0xf1, 0x20, 0xe0, 0x61, 0xfa, 0x93, 0x02, 0xbb, 0x19, 0x20, 0xe4, 0x8a, 0x5d, 0x31, - 0x8f, 0x28, 0x36, 0x85, 0x9f, 0xe6, 0x75, 0x69, 0x10, 0xa9, 0x71, 0x0a, 0xee, 0x64, 0x72, 0xd3, - 0x46, 0x58, 0x78, 0xc5, 0x53, 0x74, 0x6f, 0xbe, 0x64, 0x14, 0x2b, 0x3a, 0x57, 0xb9, 0x9e, 0x97, - 0x1e, 0x50, 0xe9, 0x09, 0x16, 0x29, 0x2e, 0x0c, 0xc3, 0xf9, 0xcd, 0x82, 0x27, 0x17, 0xc6, 0x85, - 0x13, 0x22, 0x06, 0x1d, 0x26, 0xaf, 0x31, 0xfd, 0x31, 0xa6, 0x52, 0xa1, 0xef, 0x17, 0x90, 0xde, - 0x58, 0x2a, 0x1a, 0x48, 0xdb, 0xaa, 0xaf, 0x36, 0x4a, 0xad, 0xe7, 0xee, 0x52, 0x9f, 0xdc, 0xbc, - 0xdc, 0x2d, 0x2a, 0xe8, 0x53, 0xd8, 0x7c, 0x13, 0x51, 0xa1, 0xad, 0x38, 0x1b, 0x47, 0xd4, 0x5e, - 0xa9, 0x5b, 0x8d, 0x72, 0xab, 0xac, 0x65, 0xa7, 0x08, 0x9e, 0x27, 0x39, 0x7f, 0x59, 0xb0, 0xbd, - 0xd0, 0xb0, 0x8c, 0x78, 0x28, 0xe9, 0x7b, 0xef, 0xb8, 0x05, 0x45, 0x4c, 0x65, 0xec, 0x2b, 0xdd, - 0x6a, 0xa9, 0x55, 0x73, 0x8d, 0xbf, 0xee, 0xc4, 0x5f, 0xf7, 0x90, 0x73, 0xff, 0x82, 0xf8, 0x31, - 0xc5, 0x29, 0x13, 0x6d, 0xc1, 0xda, 0x0b, 0x21, 0xb8, 0xb0, 0x57, 0xeb, 0x56, 0x63, 0x03, 0x9b, - 0x81, 0xf3, 0x87, 0x05, 0x1f, 0xe6, 0x8a, 0xcc, 0x66, 0x9c, 0xfa, 0x8f, 0xa1, 0x92, 0xa3, 0xbc, - 0xeb, 0x3c, 0x16, 0xf2, 0xd1, 0xd1, 0x72, 0xcf, 0x77, 0xb5, 0xe0, 0xad, 0x0d, 0xe5, 0x96, 0xe0, - 0x4f, 0x0b, 0xea, 0xb7, 0x37, 0x9f, 0xae, 0xc5, 0xfb, 0xe8, 0xfe, 0xff, 0xf3, 0xff, 0x6f, 0x0b, - 0x50, 0xef, 0xb8, 0xd7, 0x0d, 0xc8, 0x90, 0x7e, 0x23, 0x78, 0x44, 0x85, 0x62, 0x54, 0xa2, 0x3a, - 0x94, 0x3c, 0xa2, 0x88, 0xcf, 0x87, 0xaf, 0x49, 0x40, 0x6d, 0x4b, 0xa7, 0x64, 0x43, 0xa8, 0x06, - 0xf7, 0x49, 0x3c, 0x60, 0x34, 0xf4, 0x8c, 0x77, 0x1b, 0x78, 0x3a, 0x46, 0x36, 0xac, 0xdf, 0x50, - 0x21, 0x19, 0x0f, 0xd3, 0x62, 0x93, 0x61, 0xa2, 0x2b, 0xa8, 0x4f, 0x89, 0xa4, 0x5a, 0xb7, 0x60, - 0x74, 0x33, 0xa1, 0xa4, 0xcd, 0x88, 0x08, 0x25, 0xed, 0xb5, 0xba, 0xd5, 0xd8, 0xc4, 0x66, 0x80, - 0x9e, 0x43, 0x79, 0x40, 0xa5, 0x62, 0xa1, 0xf6, 0xb6, 0xc3, 0x84, 0x5d, 0xd4, 0xa9, 0xb9, 0xa8, - 0x73, 0x00, 0x5b, 0xa7, 0xdc, 0x23, 0x7e, 0x7e, 0x3e, 0x36, 0x14, 0x22, 0xa2, 0x46, 0x66, 0x22, - 0x87, 0x85, 0x5f, 0x7e, 0xb7, 0x2d, 0xac, 0x23, 0xce, 0x17, 0xb0, 0x75, 0xe4, 0xf3, 0x90, 0x2e, - 0x73, 0x20, 0x89, 0xf7, 0x78, 0x2c, 0xbc, 0x99, 0x03, 0xb3, 0x90, 0xd3, 0x84, 0xea, 0x89, 0x52, - 0xd1, 0x62, 0xa9, 0xf5, 0x91, 0x52, 0xd1, 0x39, 0x3e, 0x4d, 0x93, 0x26, 0x43, 0xe7, 0x1c, 0x9e, - 0xb6, 0xdf, 0xc6, 0x82, 0xbe, 0x24, 0xbe, 0x4f, 0xc5, 0x38, 0x9f, 0xb8, 0x03, 0x45, 0x49, 0xe4, - 0x39, 0xee, 0xce, 0x75, 0x99, 0xc6, 0xb2, 0x9e, 0xae, 0xcc, 0x79, 0xea, 0xfc, 0xbb, 0x0e, 0x0f, - 0x73, 0x3b, 0x04, 0x21, 0x28, 0x84, 0xb3, 0x85, 0xd3, 0xff, 0x51, 0x19, 0x56, 0xd8, 0x20, 0x4d, - 0x5e, 0x61, 0x03, 0x5d, 0xcf, 0x4c, 0x6e, 0xd5, 0xd4, 0xfb, 0xd5, 0xd4, 0xd3, 0xb1, 0xa9, 0x63, - 0x85, 0xbc, 0x63, 0xe8, 0x23, 0xd8, 0xf4, 0x78, 0xa8, 0x08, 0x0b, 0xa9, 0xd0, 0xab, 0xb8, 0xa6, - 0x25, 0xe7, 0x83, 0xe8, 0x19, 0x14, 0xa5, 0x22, 0x2a, 0x96, 0x7a, 0xa5, 0x4a, 0xad, 0x92, 0xde, - 0xec, 0x3d, 0x1d, 0xc2, 0x29, 0x94, 0xb4, 0x29, 0xd9, 0x5b, 0x6a, 0xaf, 0xd7, 0xad, 0xc6, 0x2a, - 0xd6, 0xff, 0x93, 0x89, 0x0e, 0xc6, 0x21, 0x09, 0x98, 0x67, 0xdf, 0xaf, 0x5b, 0x8d, 0xfb, 0x78, - 0x32, 0x4c, 0x36, 0x41, 0xdf, 0xe7, 0xde, 0x75, 0x42, 0xeb, 0x8f, 0x15, 0x95, 0xf6, 0x46, 0xdd, - 0x6a, 0xac, 0xe1, 0x5c, 0x14, 0xb9, 0x80, 0x7c, 0x3e, 0x64, 0x1e, 0xf1, 0x25, 0xf5, 0x14, 0x17, - 0x86, 0x0b, 0x9a, 0xbb, 0x04, 0x41, 0x07, 0x50, 0x8d, 0x46, 0x63, 0x99, 0x4f, 0x28, 0xe9, 0x84, - 0x65, 0x10, 0xda, 0x87, 0x4a, 0x32, 0x5b, 0xc1, 0x93, 0x85, 0x0c, 0xe3, 0xa0, 0x4f, 0x85, 0xfd, - 0x40, 0xcf, 0x61, 0x21, 0x9e, 0x74, 0x33, 0x8b, 0xf9, 0xdc, 0xbc, 0x78, 0xf6, 0xa6, 0x66, 0x2f, - 0x41, 0xd0, 0x1e, 0x40, 0xf2, 0x04, 0xa7, 0xaa, 0x65, 0xcd, 0xcb, 0x44, 0x12, 0xbd, 0xf4, 0xb5, - 0x0e, 0x88, 0x37, 0x62, 0xa1, 0x39, 0x49, 0x0f, 0xf5, 0x1a, 0x2c, 0x41, 0x92, 0x83, 0x2a, 0x3d, - 0xc9, 0xf4, 0x62, 0x56, 0xcc, 0x41, 0x9d, 0x8c, 0xd1, 0x77, 0x50, 0xcd, 0xbd, 0xfc, 0x2a, 0xb9, - 0x0b, 0x1f, 0xe9, 0xbb, 0x70, 0xff, 0x6e, 0xd7, 0x53, 0x72, 0x13, 0xe2, 0x65, 0x32, 0xc9, 0x16, - 0xa0, 0xa1, 0x62, 0x6a, 0x6c, 0xa3, 0xcc, 0x16, 0x78, 0xa1, 0x43, 0x38, 0x85, 0xd0, 0x2e, 0x14, - 0x14, 0x19, 0x4a, 0xbb, 0xaa, 0x29, 0x1b, 0x9a, 0x72, 0x46, 0x86, 0x12, 0xeb, 0x30, 0x3a, 0x00, - 0x30, 0x1b, 0x52, 0x5f, 0xd2, 0x5b, 0xba, 0xb1, 0x8a, 0x26, 0xe9, 0xe3, 0x63, 0x8e, 0x22, 0xce, - 0x70, 0x50, 0x1b, 0x2a, 0xa3, 0x71, 0x44, 0xc5, 0xc5, 0x4b, 0x1a, 0xa6, 0x77, 0xb1, 0xfd, 0x58, - 0xe7, 0x3d, 0xd6, 0x79, 0x27, 0x39, 0x10, 0x2f, 0xd0, 0xd1, 0xd7, 0x50, 0xf5, 0x7c, 0x1e, 0x0f, - 0xba, 0x21, 0x53, 0x1d, 0xa2, 0x48, 0x7a, 0x07, 0x3c, 0xd1, 0x2a, 0xb6, 0x56, 0x39, 0x5a, 0xc4, - 0xf1, 0xb2, 0x24, 0xf4, 0x25, 0x94, 0x13, 0x43, 0x8e, 0x99, 0x4f, 0x8f, 0xb9, 0x08, 0x88, 0xb2, - 0xb7, 0xb5, 0x4c, 0x55, 0xcb, 0x74, 0xe6, 0x20, 0x9c, 0xa3, 0x22, 0x07, 0x36, 0xce, 0x88, 0x18, - 0x52, 0x75, 0x2e, 0x7c, 0xdb, 0xce, 0x9c, 0xc4, 0x59, 0xd8, 0xf9, 0x0a, 0xb6, 0x13, 0x95, 0xd7, - 0x99, 0xef, 0xa9, 0xc9, 0xc3, 0xe9, 0xc0, 0x03, 0x41, 0x33, 0xf6, 0x99, 0xdb, 0x60, 0x2e, 0xb6, - 0xff, 0x0a, 0xaa, 0x4b, 0x16, 0x14, 0x3d, 0x01, 0xf4, 0xa6, 0x77, 0x79, 0xd1, 0xc5, 0x67, 0xe7, - 0xed, 0xd3, 0x93, 0x36, 0xee, 0x74, 0xba, 0xbd, 0x57, 0x95, 0x7b, 0x68, 0x07, 0xec, 0x4e, 0xfb, - 0xac, 0x9d, 0x8c, 0x16, 0x50, 0xab, 0xf5, 0xcf, 0x0a, 0x6c, 0xe5, 0xd4, 0xda, 0xc9, 0xde, 0x41, - 0x0c, 0x8a, 0xdd, 0xf0, 0x86, 0x5f, 0x53, 0xf4, 0xf1, 0x1d, 0x1f, 0x3d, 0x33, 0x85, 0x9a, 0x7b, - 0x57, 0xba, 0x79, 0x6d, 0x9d, 0x7b, 0xe8, 0x07, 0x78, 0x74, 0x34, 0xa2, 0xde, 0x9c, 0x21, 0xe8, - 0x36, 0x99, 0x5b, 0x9c, 0xab, 0x7d, 0xa0, 0xf9, 0xf3, 0xc8, 0xb4, 0xc2, 0xcf, 0xb0, 0x6e, 0x9e, - 0x79, 0x8a, 0x3e, 0xbb, 0x5b, 0x7b, 0xf9, 0x4f, 0x9a, 0xda, 0xe7, 0xef, 0x9c, 0x37, 0xa9, 0x7e, - 0x78, 0xf0, 0xad, 0x3b, 0x64, 0x6a, 0x14, 0xf7, 0x5d, 0x8f, 0x07, 0xcd, 0x80, 0x79, 0x82, 0x4b, - 0x7e, 0xa5, 0x9a, 0x01, 0xf7, 0x9a, 0x22, 0xf2, 0x9a, 0x53, 0xd1, 0x66, 0x2a, 0xda, 0x2f, 0xea, - 0xaf, 0x82, 0x4f, 0xfe, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x53, 0x8c, 0x46, 0xfc, 0xf4, 0x0b, 0x00, - 0x00, + // 1150 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcd, 0x6e, 0xdb, 0x46, + 0x10, 0x0e, 0x6d, 0x59, 0xb6, 0x47, 0xb1, 0xa2, 0xac, 0x9c, 0x98, 0x51, 0x12, 0x57, 0x60, 0x8a, + 0x40, 0x30, 0x50, 0xca, 0x50, 0x8b, 0xb6, 0x40, 0xd1, 0x83, 0x6c, 0xc5, 0xb1, 0x1a, 0x23, 0x29, + 0x56, 0xb6, 0x0f, 0x45, 0x51, 0x77, 0x45, 0xae, 0xa5, 0x85, 0x49, 0x2e, 0xb3, 0xbb, 0x74, 0xa1, + 0xa0, 0x0f, 0xd0, 0x47, 0xc8, 0x53, 0xf4, 0xd6, 0x4b, 0x4f, 0x05, 0x7a, 0xed, 0x4b, 0xf4, 0x4d, + 0x0a, 0xee, 0x52, 0x7f, 0x94, 0x0c, 0x38, 0x40, 0x73, 0x92, 0x76, 0xe6, 0x9b, 0x6f, 0x66, 0xbe, + 0xd9, 0x1f, 0xc2, 0xb3, 0x90, 0x7b, 0x17, 0x11, 0xf7, 0x29, 0x19, 0xd0, 0x48, 0x5d, 0x5c, 0x33, + 0xa1, 0x12, 0x12, 0x0c, 0x89, 0xf0, 0x7d, 0x26, 0xaf, 0xdc, 0x58, 0x70, 0xc5, 0xd1, 0x83, 0x90, + 0x7b, 0xee, 0x04, 0xe4, 0x4a, 0xc5, 0x05, 0x19, 0xd0, 0xda, 0xee, 0x80, 0xf3, 0x41, 0x40, 0x9b, + 0x1a, 0xd4, 0x4f, 0x2e, 0x9b, 0xbf, 0x08, 0x12, 0xc7, 0x54, 0x48, 0x13, 0x56, 0xdb, 0x49, 0xb9, + 0x3d, 0x1e, 0x86, 0x3c, 0xca, 0x7e, 0x32, 0xc7, 0xd3, 0x19, 0x47, 0xc4, 0x15, 0xbb, 0x64, 0x1e, + 0x51, 0x6c, 0xe2, 0x7e, 0x9c, 0xe7, 0xa5, 0x61, 0xac, 0x46, 0x99, 0xf3, 0xc9, 0x4c, 0x6c, 0x56, + 0x08, 0x8b, 0x2e, 0x79, 0xe6, 0xdd, 0x9d, 0x4f, 0x19, 0x27, 0x8a, 0xce, 0x65, 0xae, 0xe7, 0xa9, + 0x7d, 0x2a, 0x3d, 0xc1, 0x62, 0xc5, 0x85, 0x41, 0x38, 0xbf, 0x5b, 0xf0, 0xf0, 0xdc, 0xa8, 0x70, + 0x4c, 0x84, 0xdf, 0x61, 0xf2, 0x0a, 0xd3, 0xb7, 0x09, 0x95, 0x0a, 0xfd, 0xb4, 0xe0, 0xe9, 0x8d, + 0xa4, 0xa2, 0xa1, 0xb4, 0xad, 0xfa, 0x6a, 0xa3, 0xd4, 0x7a, 0xee, 0x2e, 0xd5, 0xc9, 0xcd, 0xd3, + 0xdd, 0xc0, 0x82, 0xbe, 0x80, 0xad, 0x37, 0x31, 0x15, 0x5a, 0x8a, 0xd3, 0x51, 0x4c, 0xed, 0x95, + 0xba, 0xd5, 0x28, 0xb7, 0xca, 0x9a, 0x76, 0xe2, 0xc1, 0xf3, 0x20, 0xe7, 0x6f, 0x0b, 0x76, 0x16, + 0x0a, 0x96, 0x31, 0x8f, 0x24, 0xfd, 0xe8, 0x15, 0xb7, 0xa0, 0x88, 0xa9, 0x4c, 0x02, 0xa5, 0x4b, + 0x2d, 0xb5, 0x6a, 0xae, 0xd1, 0xd7, 0x1d, 0xeb, 0xeb, 0x1e, 0x70, 0x1e, 0x9c, 0x93, 0x20, 0xa1, + 0x38, 0x43, 0xa2, 0x6d, 0x58, 0x7b, 0x21, 0x04, 0x17, 0xf6, 0x6a, 0xdd, 0x6a, 0x6c, 0x62, 0xb3, + 0x70, 0xfe, 0xb4, 0xe0, 0x93, 0x5c, 0x92, 0x69, 0xc7, 0x99, 0xfe, 0x18, 0x2a, 0x39, 0xc8, 0x87, + 0xf6, 0xb1, 0x10, 0x8f, 0x0e, 0x97, 0x6b, 0xfe, 0x54, 0x13, 0xde, 0x58, 0x50, 0x6e, 0x04, 0x7f, + 0x59, 0x50, 0xbf, 0xb9, 0xf8, 0x6c, 0x16, 0x1f, 0xa3, 0xfa, 0xff, 0x4f, 0xff, 0x7f, 0x2c, 0x40, + 0xbd, 0xa3, 0x5e, 0x37, 0x24, 0x03, 0xfa, 0xbd, 0xe0, 0x31, 0x15, 0x8a, 0x51, 0x89, 0xea, 0x50, + 0xf2, 0x88, 0x22, 0x01, 0x1f, 0xbc, 0x26, 0x21, 0xb5, 0x2d, 0x1d, 0x32, 0x6b, 0x42, 0x35, 0xd8, + 0x20, 0x89, 0xcf, 0x68, 0xe4, 0x19, 0xed, 0x36, 0xf1, 0x64, 0x8d, 0x6c, 0x58, 0xbf, 0xa6, 0x42, + 0x32, 0x1e, 0x65, 0xc9, 0xc6, 0xcb, 0x94, 0x57, 0xd0, 0x80, 0x12, 0x49, 0x35, 0x6f, 0xc1, 0xf0, + 0xce, 0x98, 0xd2, 0x32, 0x63, 0x22, 0x94, 0xb4, 0xd7, 0xea, 0x56, 0x63, 0x0b, 0x9b, 0x05, 0x7a, + 0x0e, 0x65, 0x9f, 0x4a, 0xc5, 0x22, 0xad, 0x6d, 0x87, 0x09, 0xbb, 0xa8, 0x43, 0x73, 0x56, 0x67, + 0x1f, 0xb6, 0x4f, 0xb8, 0x47, 0x82, 0x7c, 0x3f, 0x36, 0x14, 0x62, 0xa2, 0x86, 0xa6, 0x91, 0x83, + 0xc2, 0x6f, 0x7f, 0xd8, 0x16, 0xd6, 0x16, 0xe7, 0x6b, 0xd8, 0x3e, 0x0c, 0x78, 0x44, 0x97, 0x29, + 0x90, 0xda, 0x7b, 0x3c, 0x11, 0xde, 0x54, 0x81, 0xa9, 0xc9, 0x69, 0x42, 0xf5, 0x58, 0xa9, 0x78, + 0x31, 0xd5, 0xfa, 0x50, 0xa9, 0xf8, 0x0c, 0x9f, 0x64, 0x41, 0xe3, 0xa5, 0x73, 0x06, 0x8f, 0xdb, + 0xef, 0x12, 0x41, 0x5f, 0x92, 0x20, 0xa0, 0x62, 0x94, 0x0f, 0x7c, 0x02, 0x45, 0x49, 0xe4, 0x19, + 0xee, 0xce, 0x55, 0x99, 0xd9, 0x66, 0x35, 0x5d, 0x99, 0xd3, 0xd4, 0x79, 0xbf, 0x01, 0xf7, 0x72, + 0x3b, 0x04, 0x21, 0x28, 0x44, 0xd3, 0xc1, 0xe9, 0xff, 0xa8, 0x0c, 0x2b, 0xcc, 0xcf, 0x82, 0x57, + 0x98, 0xaf, 0xf3, 0x99, 0xe6, 0x56, 0x4d, 0xbe, 0xf7, 0x26, 0x9f, 0xb6, 0x4d, 0x14, 0x2b, 0xe4, + 0x15, 0x43, 0x9f, 0xc2, 0x96, 0xc7, 0x23, 0x45, 0x58, 0x44, 0x85, 0x9e, 0xe2, 0x9a, 0xa6, 0x9c, + 0x37, 0xa2, 0x67, 0x50, 0x94, 0x8a, 0xa8, 0x44, 0xea, 0x49, 0x95, 0x5a, 0x25, 0xbd, 0xd9, 0x7b, + 0xda, 0x84, 0x33, 0x57, 0x5a, 0xa6, 0x64, 0xef, 0xa8, 0xbd, 0x5e, 0xb7, 0x1a, 0xab, 0x58, 0xff, + 0x4f, 0x1b, 0xf5, 0x47, 0x11, 0x09, 0x99, 0x67, 0x6f, 0xd4, 0xad, 0xc6, 0x06, 0x1e, 0x2f, 0xd3, + 0x4d, 0xd0, 0x0f, 0xb8, 0x77, 0x95, 0xc2, 0xfa, 0x23, 0x45, 0xa5, 0xbd, 0x59, 0xb7, 0x1a, 0x6b, + 0x38, 0x67, 0x45, 0x2e, 0xa0, 0x80, 0x0f, 0x98, 0x47, 0x02, 0x49, 0x3d, 0xc5, 0x85, 0xc1, 0x82, + 0xc6, 0x2e, 0xf1, 0xa0, 0x7d, 0xa8, 0xc6, 0xc3, 0x91, 0xcc, 0x07, 0x94, 0x74, 0xc0, 0x32, 0x17, + 0xda, 0x83, 0x4a, 0xda, 0xad, 0xe0, 0xe9, 0x20, 0xa3, 0x24, 0xec, 0x53, 0x61, 0xdf, 0xd5, 0x3d, + 0x2c, 0xd8, 0xd3, 0x6a, 0xa6, 0xb6, 0x80, 0x9b, 0x17, 0xcf, 0xde, 0xd2, 0xe8, 0x25, 0x1e, 0xb4, + 0x0b, 0x90, 0x3e, 0xc1, 0x19, 0x6b, 0x59, 0xe3, 0x66, 0x2c, 0x29, 0x5f, 0xf6, 0x5a, 0x87, 0xc4, + 0x1b, 0xb2, 0xc8, 0x9c, 0xa4, 0x7b, 0x7a, 0x06, 0x4b, 0x3c, 0xe9, 0x41, 0x95, 0x9e, 0x64, 0x7a, + 0x98, 0x15, 0x73, 0x50, 0xc7, 0x6b, 0xf4, 0x23, 0x54, 0x73, 0x2f, 0xbf, 0x4a, 0xef, 0xc2, 0xfb, + 0xfa, 0x2e, 0xdc, 0xbb, 0xdd, 0xf5, 0x94, 0xde, 0x84, 0x78, 0x19, 0x4d, 0xba, 0x05, 0x68, 0xa4, + 0x98, 0x1a, 0xd9, 0x68, 0x66, 0x0b, 0xbc, 0xd0, 0x26, 0x9c, 0xb9, 0xd0, 0x53, 0x28, 0x28, 0x32, + 0x90, 0x76, 0x55, 0x43, 0x36, 0x35, 0xe4, 0x94, 0x0c, 0x24, 0xd6, 0x66, 0xb4, 0x0f, 0x60, 0x36, + 0xa4, 0xbe, 0xa4, 0xb7, 0x75, 0x61, 0x15, 0x0d, 0xd2, 0xc7, 0xc7, 0x1c, 0x45, 0x3c, 0x83, 0x41, + 0x6d, 0xa8, 0x0c, 0x47, 0x31, 0x15, 0xe7, 0x2f, 0x69, 0x94, 0xdd, 0xc5, 0xf6, 0x03, 0x1d, 0xf7, + 0x40, 0xc7, 0x1d, 0xe7, 0x9c, 0x78, 0x01, 0x8e, 0xbe, 0x83, 0xaa, 0x17, 0xf0, 0xc4, 0xef, 0x46, + 0x4c, 0x75, 0x88, 0x22, 0xd9, 0x1d, 0xf0, 0x50, 0xb3, 0xd8, 0x9a, 0xe5, 0x70, 0xd1, 0x8f, 0x97, + 0x05, 0xa1, 0x6f, 0xa0, 0x9c, 0x0a, 0x72, 0xc4, 0x02, 0x7a, 0xc4, 0x45, 0x48, 0x94, 0xbd, 0xa3, + 0x69, 0xaa, 0x9a, 0xa6, 0x33, 0xe7, 0xc2, 0x39, 0x28, 0x72, 0x60, 0xf3, 0x94, 0x88, 0x01, 0x55, + 0x67, 0x22, 0xb0, 0xed, 0x99, 0x93, 0x38, 0x35, 0xa7, 0xf3, 0x4d, 0x22, 0xf6, 0x36, 0xa1, 0x5d, + 0xdf, 0x7e, 0x64, 0xe6, 0x3b, 0x5e, 0x3b, 0xdf, 0xc2, 0x4e, 0x9a, 0xe1, 0xf5, 0xcc, 0xb7, 0xd6, + 0xf8, 0x51, 0x75, 0xe0, 0xae, 0xa0, 0x33, 0xd2, 0x9a, 0x9b, 0x62, 0xce, 0xb6, 0xf7, 0x0a, 0xaa, + 0x4b, 0x86, 0x8d, 0x1e, 0x02, 0x7a, 0xd3, 0xbb, 0x38, 0xef, 0xe2, 0xd3, 0xb3, 0xf6, 0xc9, 0x71, + 0x1b, 0x77, 0x3a, 0xdd, 0xde, 0xab, 0xca, 0x1d, 0xf4, 0x04, 0xec, 0x4e, 0xfb, 0xb4, 0x9d, 0xae, + 0x16, 0xbc, 0x56, 0xeb, 0xdf, 0x15, 0xd8, 0xce, 0xb1, 0xb5, 0xd3, 0x7d, 0x85, 0x18, 0x14, 0xbb, + 0xd1, 0x35, 0xbf, 0xa2, 0xe8, 0xb3, 0x5b, 0x3e, 0x88, 0xa6, 0x85, 0x9a, 0x7b, 0x5b, 0xb8, 0x79, + 0x89, 0x9d, 0x3b, 0xe8, 0x67, 0xb8, 0x7f, 0x38, 0xa4, 0xde, 0x9c, 0x20, 0xe8, 0x26, 0x9a, 0x1b, + 0x94, 0xab, 0x3d, 0xd2, 0xf8, 0x79, 0xcf, 0x24, 0xc3, 0xaf, 0xb0, 0x6e, 0x3e, 0x01, 0x28, 0xfa, + 0xf2, 0x76, 0xe5, 0xe5, 0x3f, 0x77, 0x6a, 0x5f, 0x7d, 0x70, 0xdc, 0x38, 0xfb, 0xc1, 0xfe, 0x0f, + 0xee, 0x80, 0xa9, 0x61, 0xd2, 0x77, 0x3d, 0x1e, 0x36, 0x43, 0xe6, 0x09, 0x2e, 0xf9, 0xa5, 0x6a, + 0x86, 0xdc, 0x6b, 0x8a, 0xd8, 0x6b, 0x4e, 0x48, 0x9b, 0x19, 0x69, 0xbf, 0xa8, 0xbf, 0x18, 0x3e, + 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0xfb, 0x41, 0x94, 0xc2, 0x10, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. From b76a852dd9e8bd6830114c6785e84ab8a540f3be Mon Sep 17 00:00:00 2001 From: yuanzh Date: Tue, 14 Oct 2025 10:29:48 -0700 Subject: [PATCH 13/16] Rename uniqueId to PlatformDiskId --- .../moc_cloudagent_virtualharddisk.pb.go | 115 ++++++------- .../moc_cloudagent_virtualharddisk.proto | 2 +- .../moc_nodeagent_virtualharddisk.pb.go | 153 +++++++++--------- .../moc_nodeagent_virtualharddisk.proto | 2 +- 4 files changed, 137 insertions(+), 135 deletions(-) diff --git a/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk.pb.go b/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk.pb.go index 4e01cd53..a7251fe1 100644 --- a/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk.pb.go +++ b/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk.pb.go @@ -257,7 +257,7 @@ type VirtualHardDisk struct { SourcePath string `protobuf:"bytes,24,opt,name=sourcePath,proto3" json:"sourcePath,omitempty"` SourceType common.ImageSource `protobuf:"varint,25,opt,name=sourceType,proto3,enum=moc.ImageSource" json:"sourceType,omitempty"` TargetUrl string `protobuf:"bytes,26,opt,name=targetUrl,proto3" json:"targetUrl,omitempty"` - UniqueId string `protobuf:"bytes,27,opt,name=uniqueId,proto3" json:"uniqueId,omitempty"` + PlatformDiskId string `protobuf:"bytes,27,opt,name=PlatformDiskId,proto3" json:"PlatformDiskId,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -470,9 +470,9 @@ func (m *VirtualHardDisk) GetTargetUrl() string { return "" } -func (m *VirtualHardDisk) GetUniqueId() string { +func (m *VirtualHardDisk) GetPlatformDiskId() string { if m != nil { - return m.UniqueId + return m.PlatformDiskId } return "" } @@ -580,63 +580,64 @@ func init() { } var fileDescriptor_e3ff93a45373b349 = []byte{ - // 896 bytes of a gzipped FileDescriptorProto + // 899 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x55, 0x41, 0x6f, 0xe3, 0x44, 0x14, 0xc6, 0x6d, 0x9a, 0x26, 0xaf, 0xdb, 0x6c, 0x98, 0x76, 0xdb, 0xc1, 0x2c, 0x25, 0x0a, 0x2b, 0x88, 0x38, 0xd8, 0x4b, 0x40, 0x80, 0x84, 0x84, 0xd4, 0x52, 0x96, 0x2d, 0x87, 0xa5, 0x72, 0x97, - 0x1e, 0xb8, 0xac, 0x26, 0xe3, 0x59, 0x67, 0x14, 0xdb, 0xe3, 0x9d, 0x19, 0x17, 0x05, 0x09, 0x0e, - 0x9c, 0xf8, 0x1f, 0xfc, 0x06, 0x24, 0xc4, 0x8d, 0x03, 0xff, 0x0b, 0xf9, 0xd9, 0x69, 0x52, 0x27, - 0x8b, 0xd2, 0x43, 0x0f, 0x9c, 0xec, 0x79, 0xdf, 0xf7, 0xbe, 0xf7, 0xe6, 0xbd, 0x99, 0x37, 0xf0, - 0x28, 0x51, 0xfc, 0x05, 0x8f, 0x55, 0x1e, 0xb2, 0x48, 0xa4, 0xf6, 0xc5, 0x95, 0xd4, 0x36, 0x67, - 0xf1, 0x98, 0xe9, 0x30, 0x94, 0x66, 0xe2, 0x65, 0x5a, 0x59, 0x45, 0x0e, 0x12, 0xc5, 0xbd, 0x39, - 0xcb, 0x33, 0x56, 0x69, 0x16, 0x09, 0xf7, 0x28, 0x52, 0x2a, 0x8a, 0x85, 0x8f, 0xac, 0x51, 0xfe, - 0xd2, 0xff, 0x51, 0xb3, 0x2c, 0x13, 0xda, 0x94, 0x7e, 0xee, 0x21, 0xaa, 0xab, 0x24, 0x51, 0x69, - 0xf5, 0x29, 0x81, 0xfe, 0xef, 0x0e, 0x1c, 0x5c, 0x96, 0xa1, 0x9e, 0x32, 0x1d, 0x9e, 0x4a, 0x33, - 0x09, 0xc4, 0xab, 0x5c, 0x18, 0x4b, 0x2e, 0xa0, 0x5b, 0x43, 0x0c, 0x75, 0x7a, 0x9b, 0x83, 0x9d, - 0xe1, 0x07, 0xde, 0xea, 0x34, 0xbc, 0xba, 0xd2, 0x92, 0x00, 0xf9, 0x04, 0x76, 0xbf, 0xcb, 0x84, - 0x66, 0x56, 0xaa, 0xf4, 0xf9, 0x34, 0x13, 0x74, 0xa3, 0xe7, 0x0c, 0x3a, 0xc3, 0x0e, 0x2a, 0x5e, - 0x23, 0xc1, 0x4d, 0x52, 0xff, 0x4f, 0x07, 0x0e, 0x97, 0xb2, 0x34, 0x99, 0x4a, 0x8d, 0xb8, 0x9b, - 0x34, 0x87, 0xd0, 0x0c, 0x84, 0xc9, 0x63, 0x8b, 0xf9, 0xed, 0x0c, 0x5d, 0xaf, 0x2c, 0xb0, 0x37, - 0x2b, 0xb0, 0x77, 0xa2, 0x54, 0x7c, 0xc9, 0xe2, 0x5c, 0x04, 0x15, 0x93, 0xec, 0xc3, 0xd6, 0xd7, - 0x5a, 0x2b, 0x4d, 0x37, 0x7b, 0xce, 0xa0, 0x1d, 0x94, 0x8b, 0xfe, 0x5f, 0x0e, 0xbc, 0x5b, 0x93, - 0x9f, 0x6f, 0xf3, 0x2e, 0x2b, 0x7d, 0xb2, 0xba, 0xd2, 0x0f, 0x51, 0xf1, 0x5c, 0xab, 0x2b, 0x19, - 0x0a, 0x7d, 0xcc, 0xb9, 0x30, 0xe6, 0xb5, 0x75, 0xff, 0xdb, 0x81, 0xde, 0xeb, 0x93, 0xff, 0x7f, - 0x34, 0xe0, 0x9f, 0x16, 0xdc, 0xaf, 0xc9, 0x13, 0x02, 0x8d, 0x94, 0x25, 0x82, 0x3a, 0x48, 0xc4, - 0x7f, 0xd2, 0x81, 0x0d, 0x19, 0x62, 0xb4, 0x76, 0xb0, 0x21, 0x43, 0xf2, 0x08, 0x76, 0xb9, 0x4a, - 0x2d, 0x93, 0xa9, 0xd0, 0xcf, 0x0a, 0x72, 0xa9, 0x7a, 0xd3, 0x48, 0x28, 0x34, 0x32, 0x66, 0xc7, - 0xb4, 0x51, 0x80, 0x27, 0x8d, 0xdf, 0xfe, 0xa0, 0x4e, 0x80, 0x16, 0xf2, 0x1e, 0x34, 0x8d, 0x65, - 0x36, 0x37, 0x74, 0x0b, 0x77, 0xb0, 0x83, 0xc5, 0xb8, 0x40, 0x53, 0x50, 0x41, 0x45, 0x22, 0x46, - 0xfe, 0x24, 0x68, 0xb3, 0xe7, 0x0c, 0x36, 0x03, 0xfc, 0x27, 0x14, 0xb6, 0xc3, 0x69, 0xca, 0x12, - 0xc9, 0xe9, 0x76, 0xcf, 0x19, 0xb4, 0x82, 0xd9, 0x92, 0xbc, 0x0f, 0x9d, 0x51, 0xac, 0xf8, 0xa4, - 0xa0, 0x8d, 0xa6, 0x56, 0x18, 0xda, 0xea, 0x39, 0x83, 0xad, 0xa0, 0x66, 0x25, 0x1e, 0x90, 0x58, - 0x45, 0x92, 0xb3, 0xd8, 0x08, 0x6e, 0x95, 0x2e, 0xb9, 0x6d, 0xe4, 0xae, 0x40, 0xc8, 0x63, 0xd8, - 0xcb, 0xc6, 0x53, 0x53, 0x77, 0x00, 0x74, 0x58, 0x05, 0x91, 0x0f, 0xa1, 0x5b, 0xd4, 0x41, 0xab, - 0x38, 0x16, 0x3a, 0xcd, 0x93, 0x91, 0xd0, 0x74, 0x07, 0xf7, 0xb0, 0x64, 0x2f, 0xb2, 0x99, 0xdb, - 0x62, 0xc5, 0xf1, 0xf4, 0xd0, 0x7b, 0xc8, 0x5e, 0x81, 0x90, 0x23, 0x80, 0x62, 0xe2, 0x55, 0xaa, - 0xbb, 0xc8, 0x5b, 0xb0, 0x14, 0x7a, 0xd5, 0x70, 0x4c, 0x18, 0x1f, 0xcb, 0x54, 0x60, 0x77, 0x3a, - 0xd8, 0x9d, 0x15, 0x08, 0x71, 0xa1, 0x65, 0xb8, 0x91, 0xd8, 0xa6, 0xfb, 0xc8, 0xba, 0x5e, 0x93, - 0x2f, 0xc1, 0x65, 0xd6, 0x32, 0x3e, 0x16, 0xe1, 0xe5, 0xb2, 0x66, 0x17, 0xd9, 0xff, 0xc1, 0x28, - 0xea, 0x30, 0x43, 0x9f, 0xa9, 0xb0, 0xf4, 0x7a, 0x13, 0xbd, 0x96, 0xec, 0xe4, 0x21, 0xb4, 0x23, - 0xad, 0xf2, 0x0c, 0x49, 0x04, 0x49, 0x73, 0x03, 0xe9, 0xc3, 0xbd, 0x59, 0x05, 0x90, 0xb0, 0x87, - 0x84, 0x1b, 0x36, 0x72, 0x0c, 0xdd, 0xf1, 0x34, 0x13, 0xfa, 0xf2, 0x1b, 0x91, 0x56, 0xb7, 0x90, - 0xee, 0xe3, 0xad, 0x7e, 0x80, 0x87, 0xeb, 0x69, 0x0d, 0x0c, 0x96, 0xe8, 0xe4, 0x0b, 0xe8, 0x14, - 0xa5, 0x7c, 0x22, 0x63, 0xf1, 0x44, 0xe9, 0x84, 0x59, 0xfa, 0x00, 0x05, 0xf6, 0x50, 0xe0, 0xf4, - 0x06, 0x14, 0xd4, 0xa8, 0xe4, 0x5b, 0xd8, 0xc3, 0xcb, 0x7c, 0x96, 0x4a, 0x7b, 0xca, 0x2c, 0xbb, - 0x50, 0xb9, 0xe6, 0x82, 0x1e, 0xa0, 0x02, 0x45, 0x85, 0xaf, 0x96, 0xf1, 0x60, 0x95, 0x13, 0x79, - 0x07, 0x1a, 0x96, 0x45, 0x86, 0x1e, 0xe2, 0xe5, 0x68, 0xa3, 0xf3, 0x73, 0x16, 0x99, 0x00, 0xcd, - 0xc5, 0x21, 0x30, 0x48, 0x3c, 0x2f, 0xda, 0x46, 0xb1, 0x18, 0x0b, 0x16, 0xf2, 0x78, 0x86, 0xe3, - 0x68, 0x7b, 0x0b, 0x33, 0xe8, 0xa2, 0xc8, 0x59, 0xc2, 0x22, 0x51, 0x45, 0x5e, 0xe0, 0x90, 0x3e, - 0xb4, 0x2d, 0xd3, 0x91, 0xb0, 0xdf, 0xeb, 0x98, 0xba, 0x0b, 0xd7, 0x75, 0x6e, 0x2e, 0x8e, 0x4a, - 0x9e, 0xca, 0x57, 0xb9, 0x38, 0x0b, 0xe9, 0xdb, 0xe5, 0x51, 0x99, 0xad, 0xfb, 0x39, 0x1c, 0xd5, - 0xc6, 0xc8, 0xb9, 0x16, 0x7c, 0x2c, 0xf8, 0x9d, 0x3e, 0x98, 0xfd, 0xc9, 0xd2, 0xf3, 0x31, 0x0f, - 0x5b, 0x0d, 0xe0, 0xf9, 0xac, 0x74, 0x6e, 0x3f, 0x2b, 0x37, 0x16, 0x66, 0xe5, 0xf0, 0xd7, 0x4d, - 0xd8, 0xaf, 0x45, 0x3b, 0x2e, 0xf2, 0x25, 0x13, 0x68, 0x9e, 0xa5, 0x57, 0x6a, 0x22, 0x88, 0xb7, - 0xee, 0x56, 0xca, 0xa2, 0xb8, 0xfe, 0xda, 0xfc, 0x72, 0x37, 0xfd, 0x37, 0xc8, 0xcf, 0xd0, 0x9a, - 0xed, 0x91, 0x7c, 0xba, 0xa6, 0x7b, 0xad, 0x17, 0xee, 0x67, 0xb7, 0xf6, 0xbb, 0x0e, 0xff, 0x0b, - 0x6c, 0x97, 0x8f, 0x9c, 0x20, 0xeb, 0xaa, 0xd4, 0x5f, 0x74, 0xf7, 0xf3, 0xdb, 0x3b, 0xce, 0xe2, - 0x9f, 0x7c, 0xf4, 0x83, 0x1f, 0x49, 0x3b, 0xce, 0x47, 0x1e, 0x57, 0x89, 0x9f, 0x48, 0xae, 0x95, - 0x51, 0x2f, 0xad, 0x9f, 0x28, 0xee, 0xeb, 0x8c, 0xfb, 0x73, 0x55, 0xbf, 0x52, 0x1d, 0x35, 0xb1, - 0xd3, 0x1f, 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x22, 0x0f, 0xc0, 0x3c, 0x45, 0x0a, 0x00, 0x00, + 0x1e, 0xb8, 0xac, 0x26, 0xe3, 0xa9, 0x33, 0x8a, 0xed, 0x31, 0x33, 0xe3, 0xa2, 0x20, 0xc1, 0x81, + 0x13, 0xff, 0x83, 0xdf, 0x80, 0x84, 0xb8, 0xf1, 0x13, 0xf8, 0x47, 0xc8, 0xcf, 0x4e, 0x93, 0x3a, + 0x29, 0x6a, 0x0f, 0x3d, 0xec, 0x29, 0xf1, 0xf7, 0x7d, 0xef, 0x7b, 0x6f, 0xde, 0xf3, 0x3c, 0xc3, + 0x93, 0x44, 0xf1, 0x57, 0x3c, 0x56, 0x79, 0xc8, 0x22, 0x91, 0xda, 0x57, 0x97, 0x52, 0xdb, 0x9c, + 0xc5, 0x63, 0xa6, 0xc3, 0x50, 0x9a, 0x89, 0x97, 0x69, 0x65, 0x15, 0xd9, 0x4b, 0x14, 0xf7, 0xe6, + 0x2a, 0xcf, 0x58, 0xa5, 0x59, 0x24, 0xdc, 0x83, 0x48, 0xa9, 0x28, 0x16, 0x3e, 0xaa, 0x46, 0xf9, + 0x85, 0xff, 0x93, 0x66, 0x59, 0x26, 0xb4, 0x29, 0xe3, 0xdc, 0x7d, 0x74, 0x57, 0x49, 0xa2, 0xd2, + 0xea, 0xa7, 0x24, 0xfa, 0x7f, 0x38, 0xb0, 0x77, 0x5e, 0xa6, 0x7a, 0xce, 0x74, 0x78, 0x2c, 0xcd, + 0x24, 0x10, 0x3f, 0xe6, 0xc2, 0x58, 0x72, 0x06, 0xdd, 0x1a, 0x63, 0xa8, 0xd3, 0x5b, 0x1f, 0x6c, + 0x0d, 0x3f, 0xf0, 0x56, 0x97, 0xe1, 0xd5, 0x9d, 0x96, 0x0c, 0xc8, 0x27, 0xb0, 0xfd, 0x5d, 0x26, + 0x34, 0xb3, 0x52, 0xa5, 0x2f, 0xa7, 0x99, 0xa0, 0x6b, 0x3d, 0x67, 0xd0, 0x19, 0x76, 0xd0, 0xf1, + 0x8a, 0x09, 0xae, 0x8b, 0xfa, 0x7f, 0x39, 0xb0, 0xbf, 0x54, 0xa5, 0xc9, 0x54, 0x6a, 0xc4, 0xfd, + 0x94, 0x39, 0x84, 0x66, 0x20, 0x4c, 0x1e, 0x5b, 0xac, 0x6f, 0x6b, 0xe8, 0x7a, 0x65, 0x83, 0xbd, + 0x59, 0x83, 0xbd, 0x23, 0xa5, 0xe2, 0x73, 0x16, 0xe7, 0x22, 0xa8, 0x94, 0x64, 0x17, 0x36, 0xbe, + 0xd6, 0x5a, 0x69, 0xba, 0xde, 0x73, 0x06, 0xed, 0xa0, 0x7c, 0xe8, 0xff, 0xed, 0xc0, 0xbb, 0x35, + 0xfb, 0xf9, 0x31, 0xef, 0xb3, 0xd3, 0x47, 0xab, 0x3b, 0xfd, 0x18, 0x1d, 0x4f, 0xb5, 0xba, 0x94, + 0xa1, 0xd0, 0x87, 0x9c, 0x0b, 0x63, 0x6e, 0xec, 0xfb, 0x3f, 0x0e, 0xf4, 0x6e, 0x2e, 0xfe, 0xf5, + 0x18, 0xc0, 0xbf, 0x2d, 0x78, 0x58, 0xb3, 0x27, 0x04, 0x1a, 0x29, 0x4b, 0x04, 0x75, 0x50, 0x88, + 0xff, 0x49, 0x07, 0xd6, 0x64, 0x88, 0xd9, 0xda, 0xc1, 0x9a, 0x0c, 0xc9, 0x13, 0xd8, 0xe6, 0x2a, + 0xb5, 0x4c, 0xa6, 0x42, 0xbf, 0x28, 0xc4, 0xa5, 0xeb, 0x75, 0x90, 0x50, 0x68, 0x64, 0xcc, 0x8e, + 0x69, 0xa3, 0x20, 0x8f, 0x1a, 0xbf, 0xff, 0x49, 0x9d, 0x00, 0x11, 0xf2, 0x1e, 0x34, 0x8d, 0x65, + 0x36, 0x37, 0x74, 0x03, 0x4f, 0xb0, 0x85, 0xcd, 0x38, 0x43, 0x28, 0xa8, 0xa8, 0xa2, 0x10, 0x23, + 0x7f, 0x16, 0xb4, 0xd9, 0x73, 0x06, 0xeb, 0x01, 0xfe, 0x27, 0x14, 0x36, 0xc3, 0x69, 0xca, 0x12, + 0xc9, 0xe9, 0x66, 0xcf, 0x19, 0xb4, 0x82, 0xd9, 0x23, 0x79, 0x1f, 0x3a, 0xa3, 0x58, 0xf1, 0x49, + 0x21, 0x1b, 0x4d, 0xad, 0x30, 0xb4, 0xd5, 0x73, 0x06, 0x1b, 0x41, 0x0d, 0x25, 0x1e, 0x90, 0x58, + 0x45, 0x92, 0xb3, 0xd8, 0x08, 0x6e, 0x95, 0x2e, 0xb5, 0x6d, 0xd4, 0xae, 0x60, 0xc8, 0x53, 0xd8, + 0xc9, 0xc6, 0x53, 0x53, 0x0f, 0x00, 0x0c, 0x58, 0x45, 0x91, 0x0f, 0xa1, 0x5b, 0xf4, 0x41, 0xab, + 0x38, 0x16, 0x3a, 0xcd, 0x93, 0x91, 0xd0, 0x74, 0x0b, 0xcf, 0xb0, 0x84, 0x17, 0xd5, 0xcc, 0xb1, + 0x58, 0x71, 0x7c, 0x7b, 0xe8, 0x03, 0x54, 0xaf, 0x60, 0xc8, 0x01, 0x40, 0xb1, 0xf1, 0x2a, 0xd7, + 0x6d, 0xd4, 0x2d, 0x20, 0x85, 0x5f, 0xb5, 0x1c, 0x13, 0xc6, 0xc7, 0x32, 0x15, 0x38, 0x9d, 0x0e, + 0x4e, 0x67, 0x05, 0x43, 0x5c, 0x68, 0x19, 0x6e, 0x24, 0x8e, 0xe9, 0x21, 0xaa, 0xae, 0x9e, 0xc9, + 0x97, 0xe0, 0x32, 0x6b, 0x19, 0x1f, 0x8b, 0xf0, 0x7c, 0xd9, 0xb3, 0x8b, 0xea, 0xff, 0x51, 0x14, + 0x7d, 0x98, 0xb1, 0x2f, 0x54, 0x58, 0x46, 0xbd, 0x89, 0x51, 0x4b, 0x38, 0x79, 0x0c, 0xed, 0x48, + 0xab, 0x3c, 0x43, 0x11, 0x41, 0xd1, 0x1c, 0x20, 0x7d, 0x78, 0x30, 0xeb, 0x00, 0x0a, 0x76, 0x50, + 0x70, 0x0d, 0x23, 0x87, 0xd0, 0x1d, 0x4f, 0x33, 0xa1, 0xcf, 0xbf, 0x11, 0x69, 0x75, 0x0b, 0xe9, + 0x2e, 0xde, 0xea, 0x47, 0xf8, 0x72, 0x3d, 0xaf, 0x91, 0xc1, 0x92, 0x9c, 0x7c, 0x01, 0x9d, 0xa2, + 0x95, 0xcf, 0x64, 0x2c, 0x9e, 0x29, 0x9d, 0x30, 0x4b, 0x1f, 0xa1, 0xc1, 0x0e, 0x1a, 0x1c, 0x5f, + 0xa3, 0x82, 0x9a, 0x94, 0x7c, 0x0b, 0x3b, 0x78, 0x99, 0x4f, 0x52, 0x69, 0x8f, 0x99, 0x65, 0x67, + 0x2a, 0xd7, 0x5c, 0xd0, 0x3d, 0x74, 0xa0, 0xe8, 0xf0, 0xd5, 0x32, 0x1f, 0xac, 0x0a, 0x22, 0xef, + 0x40, 0xc3, 0xb2, 0xc8, 0xd0, 0x7d, 0xbc, 0x1c, 0x6d, 0x0c, 0x7e, 0xc9, 0x22, 0x13, 0x20, 0x5c, + 0xbc, 0x04, 0x06, 0x85, 0xa7, 0xc5, 0xd8, 0x28, 0x36, 0x63, 0x01, 0x21, 0x4f, 0x67, 0x3c, 0xae, + 0xb6, 0xb7, 0xb0, 0x82, 0x2e, 0x9a, 0x9c, 0x24, 0x2c, 0x12, 0x55, 0xe6, 0x05, 0x0d, 0xe9, 0x43, + 0xdb, 0x32, 0x1d, 0x09, 0xfb, 0xbd, 0x8e, 0xa9, 0xbb, 0x70, 0x5d, 0xe7, 0x70, 0x71, 0xc1, 0x4e, + 0x63, 0x66, 0x2f, 0x94, 0x4e, 0x8a, 0x56, 0x9c, 0x84, 0xf4, 0x6d, 0xcc, 0x5c, 0x43, 0xfb, 0x39, + 0x1c, 0xd4, 0x56, 0xca, 0xa9, 0x16, 0x7c, 0x2c, 0xf8, 0xbd, 0x7e, 0x3c, 0xfb, 0x93, 0xa5, 0x4f, + 0xc9, 0x3c, 0x6d, 0xb5, 0x8c, 0xe7, 0x7b, 0xd3, 0xb9, 0xfb, 0xde, 0x5c, 0x5b, 0xd8, 0x9b, 0xc3, + 0xdf, 0xd6, 0x61, 0xb7, 0x96, 0xed, 0xb0, 0xa8, 0x97, 0x4c, 0xa0, 0x79, 0x92, 0x5e, 0xaa, 0x89, + 0x20, 0xde, 0x6d, 0x8f, 0x52, 0x36, 0xc5, 0xf5, 0x6f, 0xad, 0x2f, 0x4f, 0xd3, 0x7f, 0x83, 0xfc, + 0x02, 0xad, 0xd9, 0x19, 0xc9, 0xa7, 0xb7, 0x0c, 0xaf, 0xcd, 0xc2, 0xfd, 0xec, 0xce, 0x71, 0x57, + 0xe9, 0x7f, 0x85, 0xcd, 0xf2, 0x83, 0x27, 0xc8, 0x6d, 0x5d, 0xea, 0x5f, 0x77, 0xf7, 0xf3, 0xbb, + 0x07, 0xce, 0xf2, 0x1f, 0x7d, 0xf4, 0x83, 0x1f, 0x49, 0x3b, 0xce, 0x47, 0x1e, 0x57, 0x89, 0x9f, + 0x48, 0xae, 0x95, 0x51, 0x17, 0xd6, 0x4f, 0x14, 0xf7, 0x75, 0xc6, 0xfd, 0xb9, 0xab, 0x5f, 0xb9, + 0x8e, 0x9a, 0x38, 0xe9, 0x8f, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0xbd, 0x64, 0xaa, 0xc0, 0x51, + 0x0a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/rpc/cloudagent/storage/virtualharddisk/moc_cloudagent_virtualharddisk.proto b/rpc/cloudagent/storage/virtualharddisk/moc_cloudagent_virtualharddisk.proto index 89515f2b..f764c055 100644 --- a/rpc/cloudagent/storage/virtualharddisk/moc_cloudagent_virtualharddisk.proto +++ b/rpc/cloudagent/storage/virtualharddisk/moc_cloudagent_virtualharddisk.proto @@ -59,7 +59,7 @@ message VirtualHardDisk { string sourcePath = 24; ImageSource sourceType = 25; string targetUrl = 26 [(sensitive) = true]; - string uniqueId = 27; + string PlatformDiskId = 27; } message VirtualHardDiskPrecheckRequest { diff --git a/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk.pb.go b/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk.pb.go index 82550dfc..2e70bd82 100644 --- a/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk.pb.go +++ b/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk.pb.go @@ -526,7 +526,7 @@ type VirtualHardDisk struct { CloudInitDataSource common.CloudInitDataSource `protobuf:"varint,22,opt,name=cloudInitDataSource,proto3,enum=moc.CloudInitDataSource" json:"cloudInitDataSource,omitempty"` DiskFileFormat common.DiskFileFormat `protobuf:"varint,23,opt,name=diskFileFormat,proto3,enum=moc.DiskFileFormat" json:"diskFileFormat,omitempty"` TargetUrl string `protobuf:"bytes,24,opt,name=TargetUrl,proto3" json:"TargetUrl,omitempty"` - UniqueId string `protobuf:"bytes,25,opt,name=uniqueId,proto3" json:"uniqueId,omitempty"` + PlatformDiskId string `protobuf:"bytes,25,opt,name=PlatformDiskId,proto3" json:"PlatformDiskId,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -725,9 +725,9 @@ func (m *VirtualHardDisk) GetTargetUrl() string { return "" } -func (m *VirtualHardDisk) GetUniqueId() string { +func (m *VirtualHardDisk) GetPlatformDiskId() string { if m != nil { - return m.UniqueId + return m.PlatformDiskId } return "" } @@ -791,79 +791,80 @@ func init() { } var fileDescriptor_c1f33a566472b7b7 = []byte{ - // 1150 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcd, 0x6e, 0xdb, 0x46, - 0x10, 0x0e, 0x6d, 0x59, 0xb6, 0x47, 0xb1, 0xa2, 0xac, 0x9c, 0x98, 0x51, 0x12, 0x57, 0x60, 0x8a, - 0x40, 0x30, 0x50, 0xca, 0x50, 0x8b, 0xb6, 0x40, 0xd1, 0x83, 0x6c, 0xc5, 0xb1, 0x1a, 0x23, 0x29, - 0x56, 0xb6, 0x0f, 0x45, 0x51, 0x77, 0x45, 0xae, 0xa5, 0x85, 0x49, 0x2e, 0xb3, 0xbb, 0x74, 0xa1, - 0xa0, 0x0f, 0xd0, 0x47, 0xc8, 0x53, 0xf4, 0xd6, 0x4b, 0x4f, 0x05, 0x7a, 0xed, 0x4b, 0xf4, 0x4d, - 0x0a, 0xee, 0x52, 0x7f, 0x94, 0x0c, 0x38, 0x40, 0x73, 0x92, 0x76, 0xe6, 0x9b, 0x6f, 0x66, 0xbe, - 0xd9, 0x1f, 0xc2, 0xb3, 0x90, 0x7b, 0x17, 0x11, 0xf7, 0x29, 0x19, 0xd0, 0x48, 0x5d, 0x5c, 0x33, - 0xa1, 0x12, 0x12, 0x0c, 0x89, 0xf0, 0x7d, 0x26, 0xaf, 0xdc, 0x58, 0x70, 0xc5, 0xd1, 0x83, 0x90, - 0x7b, 0xee, 0x04, 0xe4, 0x4a, 0xc5, 0x05, 0x19, 0xd0, 0xda, 0xee, 0x80, 0xf3, 0x41, 0x40, 0x9b, - 0x1a, 0xd4, 0x4f, 0x2e, 0x9b, 0xbf, 0x08, 0x12, 0xc7, 0x54, 0x48, 0x13, 0x56, 0xdb, 0x49, 0xb9, - 0x3d, 0x1e, 0x86, 0x3c, 0xca, 0x7e, 0x32, 0xc7, 0xd3, 0x19, 0x47, 0xc4, 0x15, 0xbb, 0x64, 0x1e, - 0x51, 0x6c, 0xe2, 0x7e, 0x9c, 0xe7, 0xa5, 0x61, 0xac, 0x46, 0x99, 0xf3, 0xc9, 0x4c, 0x6c, 0x56, - 0x08, 0x8b, 0x2e, 0x79, 0xe6, 0xdd, 0x9d, 0x4f, 0x19, 0x27, 0x8a, 0xce, 0x65, 0xae, 0xe7, 0xa9, - 0x7d, 0x2a, 0x3d, 0xc1, 0x62, 0xc5, 0x85, 0x41, 0x38, 0xbf, 0x5b, 0xf0, 0xf0, 0xdc, 0xa8, 0x70, - 0x4c, 0x84, 0xdf, 0x61, 0xf2, 0x0a, 0xd3, 0xb7, 0x09, 0x95, 0x0a, 0xfd, 0xb4, 0xe0, 0xe9, 0x8d, - 0xa4, 0xa2, 0xa1, 0xb4, 0xad, 0xfa, 0x6a, 0xa3, 0xd4, 0x7a, 0xee, 0x2e, 0xd5, 0xc9, 0xcd, 0xd3, - 0xdd, 0xc0, 0x82, 0xbe, 0x80, 0xad, 0x37, 0x31, 0x15, 0x5a, 0x8a, 0xd3, 0x51, 0x4c, 0xed, 0x95, - 0xba, 0xd5, 0x28, 0xb7, 0xca, 0x9a, 0x76, 0xe2, 0xc1, 0xf3, 0x20, 0xe7, 0x6f, 0x0b, 0x76, 0x16, - 0x0a, 0x96, 0x31, 0x8f, 0x24, 0xfd, 0xe8, 0x15, 0xb7, 0xa0, 0x88, 0xa9, 0x4c, 0x02, 0xa5, 0x4b, - 0x2d, 0xb5, 0x6a, 0xae, 0xd1, 0xd7, 0x1d, 0xeb, 0xeb, 0x1e, 0x70, 0x1e, 0x9c, 0x93, 0x20, 0xa1, - 0x38, 0x43, 0xa2, 0x6d, 0x58, 0x7b, 0x21, 0x04, 0x17, 0xf6, 0x6a, 0xdd, 0x6a, 0x6c, 0x62, 0xb3, - 0x70, 0xfe, 0xb4, 0xe0, 0x93, 0x5c, 0x92, 0x69, 0xc7, 0x99, 0xfe, 0x18, 0x2a, 0x39, 0xc8, 0x87, - 0xf6, 0xb1, 0x10, 0x8f, 0x0e, 0x97, 0x6b, 0xfe, 0x54, 0x13, 0xde, 0x58, 0x50, 0x6e, 0x04, 0x7f, - 0x59, 0x50, 0xbf, 0xb9, 0xf8, 0x6c, 0x16, 0x1f, 0xa3, 0xfa, 0xff, 0x4f, 0xff, 0x7f, 0x2c, 0x40, - 0xbd, 0xa3, 0x5e, 0x37, 0x24, 0x03, 0xfa, 0xbd, 0xe0, 0x31, 0x15, 0x8a, 0x51, 0x89, 0xea, 0x50, - 0xf2, 0x88, 0x22, 0x01, 0x1f, 0xbc, 0x26, 0x21, 0xb5, 0x2d, 0x1d, 0x32, 0x6b, 0x42, 0x35, 0xd8, - 0x20, 0x89, 0xcf, 0x68, 0xe4, 0x19, 0xed, 0x36, 0xf1, 0x64, 0x8d, 0x6c, 0x58, 0xbf, 0xa6, 0x42, - 0x32, 0x1e, 0x65, 0xc9, 0xc6, 0xcb, 0x94, 0x57, 0xd0, 0x80, 0x12, 0x49, 0x35, 0x6f, 0xc1, 0xf0, - 0xce, 0x98, 0xd2, 0x32, 0x63, 0x22, 0x94, 0xb4, 0xd7, 0xea, 0x56, 0x63, 0x0b, 0x9b, 0x05, 0x7a, - 0x0e, 0x65, 0x9f, 0x4a, 0xc5, 0x22, 0xad, 0x6d, 0x87, 0x09, 0xbb, 0xa8, 0x43, 0x73, 0x56, 0x67, - 0x1f, 0xb6, 0x4f, 0xb8, 0x47, 0x82, 0x7c, 0x3f, 0x36, 0x14, 0x62, 0xa2, 0x86, 0xa6, 0x91, 0x83, - 0xc2, 0x6f, 0x7f, 0xd8, 0x16, 0xd6, 0x16, 0xe7, 0x6b, 0xd8, 0x3e, 0x0c, 0x78, 0x44, 0x97, 0x29, - 0x90, 0xda, 0x7b, 0x3c, 0x11, 0xde, 0x54, 0x81, 0xa9, 0xc9, 0x69, 0x42, 0xf5, 0x58, 0xa9, 0x78, - 0x31, 0xd5, 0xfa, 0x50, 0xa9, 0xf8, 0x0c, 0x9f, 0x64, 0x41, 0xe3, 0xa5, 0x73, 0x06, 0x8f, 0xdb, - 0xef, 0x12, 0x41, 0x5f, 0x92, 0x20, 0xa0, 0x62, 0x94, 0x0f, 0x7c, 0x02, 0x45, 0x49, 0xe4, 0x19, - 0xee, 0xce, 0x55, 0x99, 0xd9, 0x66, 0x35, 0x5d, 0x99, 0xd3, 0xd4, 0x79, 0xbf, 0x01, 0xf7, 0x72, - 0x3b, 0x04, 0x21, 0x28, 0x44, 0xd3, 0xc1, 0xe9, 0xff, 0xa8, 0x0c, 0x2b, 0xcc, 0xcf, 0x82, 0x57, - 0x98, 0xaf, 0xf3, 0x99, 0xe6, 0x56, 0x4d, 0xbe, 0xf7, 0x26, 0x9f, 0xb6, 0x4d, 0x14, 0x2b, 0xe4, - 0x15, 0x43, 0x9f, 0xc2, 0x96, 0xc7, 0x23, 0x45, 0x58, 0x44, 0x85, 0x9e, 0xe2, 0x9a, 0xa6, 0x9c, - 0x37, 0xa2, 0x67, 0x50, 0x94, 0x8a, 0xa8, 0x44, 0xea, 0x49, 0x95, 0x5a, 0x25, 0xbd, 0xd9, 0x7b, - 0xda, 0x84, 0x33, 0x57, 0x5a, 0xa6, 0x64, 0xef, 0xa8, 0xbd, 0x5e, 0xb7, 0x1a, 0xab, 0x58, 0xff, - 0x4f, 0x1b, 0xf5, 0x47, 0x11, 0x09, 0x99, 0x67, 0x6f, 0xd4, 0xad, 0xc6, 0x06, 0x1e, 0x2f, 0xd3, - 0x4d, 0xd0, 0x0f, 0xb8, 0x77, 0x95, 0xc2, 0xfa, 0x23, 0x45, 0xa5, 0xbd, 0x59, 0xb7, 0x1a, 0x6b, - 0x38, 0x67, 0x45, 0x2e, 0xa0, 0x80, 0x0f, 0x98, 0x47, 0x02, 0x49, 0x3d, 0xc5, 0x85, 0xc1, 0x82, - 0xc6, 0x2e, 0xf1, 0xa0, 0x7d, 0xa8, 0xc6, 0xc3, 0x91, 0xcc, 0x07, 0x94, 0x74, 0xc0, 0x32, 0x17, - 0xda, 0x83, 0x4a, 0xda, 0xad, 0xe0, 0xe9, 0x20, 0xa3, 0x24, 0xec, 0x53, 0x61, 0xdf, 0xd5, 0x3d, - 0x2c, 0xd8, 0xd3, 0x6a, 0xa6, 0xb6, 0x80, 0x9b, 0x17, 0xcf, 0xde, 0xd2, 0xe8, 0x25, 0x1e, 0xb4, - 0x0b, 0x90, 0x3e, 0xc1, 0x19, 0x6b, 0x59, 0xe3, 0x66, 0x2c, 0x29, 0x5f, 0xf6, 0x5a, 0x87, 0xc4, - 0x1b, 0xb2, 0xc8, 0x9c, 0xa4, 0x7b, 0x7a, 0x06, 0x4b, 0x3c, 0xe9, 0x41, 0x95, 0x9e, 0x64, 0x7a, - 0x98, 0x15, 0x73, 0x50, 0xc7, 0x6b, 0xf4, 0x23, 0x54, 0x73, 0x2f, 0xbf, 0x4a, 0xef, 0xc2, 0xfb, - 0xfa, 0x2e, 0xdc, 0xbb, 0xdd, 0xf5, 0x94, 0xde, 0x84, 0x78, 0x19, 0x4d, 0xba, 0x05, 0x68, 0xa4, - 0x98, 0x1a, 0xd9, 0x68, 0x66, 0x0b, 0xbc, 0xd0, 0x26, 0x9c, 0xb9, 0xd0, 0x53, 0x28, 0x28, 0x32, - 0x90, 0x76, 0x55, 0x43, 0x36, 0x35, 0xe4, 0x94, 0x0c, 0x24, 0xd6, 0x66, 0xb4, 0x0f, 0x60, 0x36, - 0xa4, 0xbe, 0xa4, 0xb7, 0x75, 0x61, 0x15, 0x0d, 0xd2, 0xc7, 0xc7, 0x1c, 0x45, 0x3c, 0x83, 0x41, - 0x6d, 0xa8, 0x0c, 0x47, 0x31, 0x15, 0xe7, 0x2f, 0x69, 0x94, 0xdd, 0xc5, 0xf6, 0x03, 0x1d, 0xf7, - 0x40, 0xc7, 0x1d, 0xe7, 0x9c, 0x78, 0x01, 0x8e, 0xbe, 0x83, 0xaa, 0x17, 0xf0, 0xc4, 0xef, 0x46, - 0x4c, 0x75, 0x88, 0x22, 0xd9, 0x1d, 0xf0, 0x50, 0xb3, 0xd8, 0x9a, 0xe5, 0x70, 0xd1, 0x8f, 0x97, - 0x05, 0xa1, 0x6f, 0xa0, 0x9c, 0x0a, 0x72, 0xc4, 0x02, 0x7a, 0xc4, 0x45, 0x48, 0x94, 0xbd, 0xa3, - 0x69, 0xaa, 0x9a, 0xa6, 0x33, 0xe7, 0xc2, 0x39, 0x28, 0x72, 0x60, 0xf3, 0x94, 0x88, 0x01, 0x55, - 0x67, 0x22, 0xb0, 0xed, 0x99, 0x93, 0x38, 0x35, 0xa7, 0xf3, 0x4d, 0x22, 0xf6, 0x36, 0xa1, 0x5d, - 0xdf, 0x7e, 0x64, 0xe6, 0x3b, 0x5e, 0x3b, 0xdf, 0xc2, 0x4e, 0x9a, 0xe1, 0xf5, 0xcc, 0xb7, 0xd6, - 0xf8, 0x51, 0x75, 0xe0, 0xae, 0xa0, 0x33, 0xd2, 0x9a, 0x9b, 0x62, 0xce, 0xb6, 0xf7, 0x0a, 0xaa, - 0x4b, 0x86, 0x8d, 0x1e, 0x02, 0x7a, 0xd3, 0xbb, 0x38, 0xef, 0xe2, 0xd3, 0xb3, 0xf6, 0xc9, 0x71, - 0x1b, 0x77, 0x3a, 0xdd, 0xde, 0xab, 0xca, 0x1d, 0xf4, 0x04, 0xec, 0x4e, 0xfb, 0xb4, 0x9d, 0xae, - 0x16, 0xbc, 0x56, 0xeb, 0xdf, 0x15, 0xd8, 0xce, 0xb1, 0xb5, 0xd3, 0x7d, 0x85, 0x18, 0x14, 0xbb, - 0xd1, 0x35, 0xbf, 0xa2, 0xe8, 0xb3, 0x5b, 0x3e, 0x88, 0xa6, 0x85, 0x9a, 0x7b, 0x5b, 0xb8, 0x79, - 0x89, 0x9d, 0x3b, 0xe8, 0x67, 0xb8, 0x7f, 0x38, 0xa4, 0xde, 0x9c, 0x20, 0xe8, 0x26, 0x9a, 0x1b, - 0x94, 0xab, 0x3d, 0xd2, 0xf8, 0x79, 0xcf, 0x24, 0xc3, 0xaf, 0xb0, 0x6e, 0x3e, 0x01, 0x28, 0xfa, - 0xf2, 0x76, 0xe5, 0xe5, 0x3f, 0x77, 0x6a, 0x5f, 0x7d, 0x70, 0xdc, 0x38, 0xfb, 0xc1, 0xfe, 0x0f, - 0xee, 0x80, 0xa9, 0x61, 0xd2, 0x77, 0x3d, 0x1e, 0x36, 0x43, 0xe6, 0x09, 0x2e, 0xf9, 0xa5, 0x6a, - 0x86, 0xdc, 0x6b, 0x8a, 0xd8, 0x6b, 0x4e, 0x48, 0x9b, 0x19, 0x69, 0xbf, 0xa8, 0xbf, 0x18, 0x3e, - 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0xfb, 0x41, 0x94, 0xc2, 0x10, 0x0c, 0x00, 0x00, + // 1155 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xdd, 0x6e, 0x1b, 0x45, + 0x14, 0xee, 0x26, 0x8e, 0x93, 0x1c, 0x37, 0xae, 0x3b, 0x4e, 0x9b, 0xad, 0xdb, 0x06, 0x6b, 0x8b, + 0x2a, 0x2b, 0x12, 0xeb, 0xc8, 0x20, 0x40, 0x42, 0x5c, 0x38, 0x71, 0xd3, 0x98, 0x46, 0x6d, 0x35, + 0x4e, 0x72, 0x81, 0x10, 0x61, 0xbc, 0x3b, 0xb1, 0x47, 0xd9, 0xdd, 0x59, 0x66, 0x66, 0x83, 0x5c, + 0xf1, 0x00, 0x3c, 0x02, 0x0f, 0xc0, 0x35, 0x77, 0xdc, 0x70, 0x85, 0xc4, 0x2d, 0x2f, 0xc1, 0x9b, + 0xa0, 0x9d, 0x59, 0xff, 0xad, 0x1d, 0x29, 0x95, 0xe8, 0x95, 0x3d, 0xdf, 0xf9, 0xce, 0x77, 0xce, + 0x7c, 0xf3, 0xb7, 0xf0, 0x2c, 0xe4, 0xde, 0x45, 0xc4, 0x7d, 0x4a, 0x06, 0x34, 0x52, 0x17, 0xd7, + 0x4c, 0xa8, 0x84, 0x04, 0x43, 0x22, 0x7c, 0x9f, 0xc9, 0x2b, 0x37, 0x16, 0x5c, 0x71, 0xf4, 0x20, + 0xe4, 0x9e, 0x3b, 0x21, 0xb9, 0x52, 0x71, 0x41, 0x06, 0xb4, 0xb6, 0x3b, 0xe0, 0x7c, 0x10, 0xd0, + 0xa6, 0x26, 0xf5, 0x93, 0xcb, 0xe6, 0x4f, 0x82, 0xc4, 0x31, 0x15, 0xd2, 0xa4, 0xd5, 0x76, 0x52, + 0x6d, 0x8f, 0x87, 0x21, 0x8f, 0xb2, 0x9f, 0x2c, 0xf0, 0x74, 0x26, 0x10, 0x71, 0xc5, 0x2e, 0x99, + 0x47, 0x14, 0x9b, 0x84, 0x1f, 0xe7, 0x75, 0x69, 0x18, 0xab, 0x51, 0x16, 0x7c, 0x32, 0x93, 0x9b, + 0x35, 0xc2, 0xa2, 0x4b, 0x9e, 0x45, 0x77, 0xe7, 0x4b, 0xc6, 0x89, 0xa2, 0x73, 0x95, 0xeb, 0x79, + 0x69, 0x9f, 0x4a, 0x4f, 0xb0, 0x58, 0x71, 0x61, 0x18, 0xce, 0xef, 0x16, 0x3c, 0x3c, 0x37, 0x2e, + 0x1c, 0x13, 0xe1, 0x77, 0x98, 0xbc, 0xc2, 0xf4, 0xc7, 0x84, 0x4a, 0x85, 0xbe, 0x5f, 0x88, 0xf4, + 0x46, 0x52, 0xd1, 0x50, 0xda, 0x56, 0x7d, 0xb5, 0x51, 0x6a, 0x3d, 0x77, 0x97, 0xfa, 0xe4, 0xe6, + 0xe5, 0x6e, 0x50, 0x41, 0x9f, 0xc1, 0xd6, 0x9b, 0x98, 0x0a, 0x6d, 0xc5, 0xe9, 0x28, 0xa6, 0xf6, + 0x4a, 0xdd, 0x6a, 0x94, 0x5b, 0x65, 0x2d, 0x3b, 0x89, 0xe0, 0x79, 0x92, 0xf3, 0xb7, 0x05, 0x3b, + 0x0b, 0x0d, 0xcb, 0x98, 0x47, 0x92, 0x7e, 0xf0, 0x8e, 0x5b, 0x50, 0xc4, 0x54, 0x26, 0x81, 0xd2, + 0xad, 0x96, 0x5a, 0x35, 0xd7, 0xf8, 0xeb, 0x8e, 0xfd, 0x75, 0x0f, 0x38, 0x0f, 0xce, 0x49, 0x90, + 0x50, 0x9c, 0x31, 0xd1, 0x36, 0xac, 0xbd, 0x10, 0x82, 0x0b, 0x7b, 0xb5, 0x6e, 0x35, 0x36, 0xb1, + 0x19, 0x38, 0x7f, 0x5a, 0xf0, 0x51, 0xae, 0xc8, 0x74, 0xc6, 0x99, 0xff, 0x18, 0x2a, 0x39, 0xca, + 0xfb, 0xce, 0x63, 0x21, 0x1f, 0x1d, 0x2e, 0xf7, 0xfc, 0xa9, 0x16, 0xbc, 0xb1, 0xa1, 0xdc, 0x12, + 0xfc, 0x65, 0x41, 0xfd, 0xe6, 0xe6, 0xb3, 0xb5, 0xf8, 0x10, 0xdd, 0xff, 0x7f, 0xfe, 0xff, 0x63, + 0x01, 0xea, 0x1d, 0xf5, 0xba, 0x21, 0x19, 0xd0, 0xb7, 0x82, 0xc7, 0x54, 0x28, 0x46, 0x25, 0xaa, + 0x43, 0xc9, 0x23, 0x8a, 0x04, 0x7c, 0xf0, 0x9a, 0x84, 0xd4, 0xb6, 0x74, 0xca, 0x2c, 0x84, 0x6a, + 0xb0, 0x41, 0x12, 0x9f, 0xd1, 0xc8, 0x33, 0xde, 0x6d, 0xe2, 0xc9, 0x18, 0xd9, 0xb0, 0x7e, 0x4d, + 0x85, 0x64, 0x3c, 0xca, 0x8a, 0x8d, 0x87, 0xa9, 0xae, 0xa0, 0x01, 0x25, 0x92, 0x6a, 0xdd, 0x82, + 0xd1, 0x9d, 0x81, 0xd2, 0x36, 0x63, 0x22, 0x94, 0xb4, 0xd7, 0xea, 0x56, 0x63, 0x0b, 0x9b, 0x01, + 0x7a, 0x0e, 0x65, 0x9f, 0x4a, 0xc5, 0x22, 0xed, 0x6d, 0x87, 0x09, 0xbb, 0xa8, 0x53, 0x73, 0xa8, + 0xb3, 0x0f, 0xdb, 0x27, 0xdc, 0x23, 0x41, 0x7e, 0x3e, 0x36, 0x14, 0x62, 0xa2, 0x86, 0x66, 0x22, + 0x07, 0x85, 0x5f, 0xfe, 0xb0, 0x2d, 0xac, 0x11, 0xe7, 0x4b, 0xd8, 0x3e, 0x0c, 0x78, 0x44, 0x97, + 0x39, 0x90, 0xe2, 0x3d, 0x9e, 0x08, 0x6f, 0xea, 0xc0, 0x14, 0x72, 0x9a, 0x50, 0x3d, 0x56, 0x2a, + 0x5e, 0x2c, 0xb5, 0x3e, 0x54, 0x2a, 0x3e, 0xc3, 0x27, 0x59, 0xd2, 0x78, 0xe8, 0x9c, 0xc1, 0xe3, + 0xf6, 0xbb, 0x44, 0xd0, 0x97, 0x24, 0x08, 0xa8, 0x18, 0xe5, 0x13, 0x9f, 0x40, 0x51, 0x12, 0x79, + 0x86, 0xbb, 0x73, 0x5d, 0x66, 0xd8, 0xac, 0xa7, 0x2b, 0x73, 0x9e, 0x3a, 0xbf, 0x6d, 0xc0, 0xbd, + 0xdc, 0x0e, 0x41, 0x08, 0x0a, 0xd1, 0x74, 0xe1, 0xf4, 0x7f, 0x54, 0x86, 0x15, 0xe6, 0x67, 0xc9, + 0x2b, 0xcc, 0xd7, 0xf5, 0xcc, 0xe4, 0x56, 0x4d, 0xbd, 0x5f, 0x4d, 0x3d, 0x8d, 0x4d, 0x1c, 0x2b, + 0xe4, 0x1d, 0x43, 0x1f, 0xc3, 0x96, 0xc7, 0x23, 0x45, 0x58, 0x44, 0x85, 0x5e, 0xc5, 0x35, 0x2d, + 0x39, 0x0f, 0xa2, 0x67, 0x50, 0x94, 0x8a, 0xa8, 0x44, 0xea, 0x95, 0x2a, 0xb5, 0x4a, 0x7a, 0xb3, + 0xf7, 0x34, 0x84, 0xb3, 0x50, 0xda, 0xa6, 0x64, 0xef, 0xa8, 0xbd, 0x5e, 0xb7, 0x1a, 0xab, 0x58, + 0xff, 0x4f, 0x27, 0xea, 0x8f, 0x22, 0x12, 0x32, 0xcf, 0xde, 0xa8, 0x5b, 0x8d, 0x0d, 0x3c, 0x1e, + 0xa6, 0x9b, 0xa0, 0x1f, 0x70, 0xef, 0x2a, 0xa5, 0xf5, 0x47, 0x8a, 0x4a, 0x7b, 0xb3, 0x6e, 0x35, + 0xd6, 0x70, 0x0e, 0x45, 0x2e, 0xa0, 0x80, 0x0f, 0x98, 0x47, 0x02, 0x49, 0x3d, 0xc5, 0x85, 0xe1, + 0x82, 0xe6, 0x2e, 0x89, 0xa0, 0x7d, 0xa8, 0xc6, 0xc3, 0x91, 0xcc, 0x27, 0x94, 0x74, 0xc2, 0xb2, + 0x10, 0xda, 0x83, 0x4a, 0x3a, 0x5b, 0xc1, 0xd3, 0x85, 0x8c, 0x92, 0xb0, 0x4f, 0x85, 0x7d, 0x57, + 0xcf, 0x61, 0x01, 0x4f, 0xbb, 0x99, 0x62, 0x01, 0x37, 0x2f, 0x9e, 0xbd, 0xa5, 0xd9, 0x4b, 0x22, + 0x68, 0x17, 0x20, 0x7d, 0x82, 0x33, 0xd5, 0xb2, 0xe6, 0xcd, 0x20, 0xa9, 0x5e, 0xf6, 0x5a, 0x87, + 0xc4, 0x1b, 0xb2, 0xc8, 0x9c, 0xa4, 0x7b, 0x7a, 0x0d, 0x96, 0x44, 0xd2, 0x83, 0x2a, 0x3d, 0xc9, + 0xf4, 0x62, 0x56, 0xcc, 0x41, 0x1d, 0x8f, 0xd1, 0x77, 0x50, 0xcd, 0xbd, 0xfc, 0x2a, 0xbd, 0x0b, + 0xef, 0xeb, 0xbb, 0x70, 0xef, 0x76, 0xd7, 0x53, 0x7a, 0x13, 0xe2, 0x65, 0x32, 0xe9, 0x16, 0xa0, + 0x91, 0x62, 0x6a, 0x64, 0xa3, 0x99, 0x2d, 0xf0, 0x42, 0x43, 0x38, 0x0b, 0xa1, 0xa7, 0x50, 0x50, + 0x64, 0x20, 0xed, 0xaa, 0xa6, 0x6c, 0x6a, 0xca, 0x29, 0x19, 0x48, 0xac, 0x61, 0xb4, 0x0f, 0x60, + 0x36, 0xa4, 0xbe, 0xa4, 0xb7, 0x75, 0x63, 0x15, 0x4d, 0xd2, 0xc7, 0xc7, 0x1c, 0x45, 0x3c, 0xc3, + 0x41, 0x6d, 0xa8, 0x0c, 0x47, 0x31, 0x15, 0xe7, 0x2f, 0x69, 0x94, 0xdd, 0xc5, 0xf6, 0x03, 0x9d, + 0xf7, 0x40, 0xe7, 0x1d, 0xe7, 0x82, 0x78, 0x81, 0x8e, 0xbe, 0x81, 0xaa, 0x17, 0xf0, 0xc4, 0xef, + 0x46, 0x4c, 0x75, 0x88, 0x22, 0xd9, 0x1d, 0xf0, 0x50, 0xab, 0xd8, 0x5a, 0xe5, 0x70, 0x31, 0x8e, + 0x97, 0x25, 0xa1, 0xaf, 0xa0, 0x9c, 0x1a, 0x72, 0xc4, 0x02, 0x7a, 0xc4, 0x45, 0x48, 0x94, 0xbd, + 0xa3, 0x65, 0xaa, 0x5a, 0xa6, 0x33, 0x17, 0xc2, 0x39, 0x2a, 0x72, 0x60, 0xf3, 0x94, 0x88, 0x01, + 0x55, 0x67, 0x22, 0xb0, 0xed, 0x99, 0x93, 0x38, 0x85, 0xd3, 0x53, 0xf1, 0x36, 0x20, 0xea, 0x92, + 0x8b, 0x30, 0x55, 0xeb, 0xfa, 0xf6, 0x23, 0x73, 0x35, 0xce, 0xa3, 0xce, 0xd7, 0xb0, 0x93, 0xfe, + 0x7b, 0x3d, 0xf3, 0xdd, 0x35, 0x7e, 0x60, 0x1d, 0xb8, 0x2b, 0xe8, 0x8c, 0xcd, 0xe6, 0xd6, 0x98, + 0xc3, 0xf6, 0x5e, 0x41, 0x75, 0xc9, 0xc2, 0xa3, 0x87, 0x80, 0xde, 0xf4, 0x2e, 0xce, 0xbb, 0xf8, + 0xf4, 0xac, 0x7d, 0x72, 0xdc, 0xc6, 0x9d, 0x4e, 0xb7, 0xf7, 0xaa, 0x72, 0x07, 0x3d, 0x01, 0xbb, + 0xd3, 0x3e, 0x6d, 0xa7, 0xa3, 0x85, 0xa8, 0xd5, 0xfa, 0x77, 0x05, 0xb6, 0x73, 0x6a, 0xed, 0x74, + 0x8f, 0x21, 0x06, 0xc5, 0x6e, 0x74, 0xcd, 0xaf, 0x28, 0xfa, 0xe4, 0x96, 0x8f, 0xa3, 0x99, 0x42, + 0xcd, 0xbd, 0x2d, 0xdd, 0xbc, 0xca, 0xce, 0x1d, 0xf4, 0x03, 0xdc, 0x3f, 0x1c, 0x52, 0x6f, 0xce, + 0x10, 0x74, 0x93, 0xcc, 0x0d, 0xce, 0xd5, 0x1e, 0x69, 0xfe, 0x7c, 0x64, 0x52, 0xe1, 0x67, 0x58, + 0x37, 0x9f, 0x03, 0x14, 0x7d, 0x7e, 0xbb, 0xf6, 0xf2, 0x9f, 0x3e, 0xb5, 0x2f, 0xde, 0x3b, 0x6f, + 0x5c, 0xfd, 0x60, 0xff, 0x5b, 0x77, 0xc0, 0xd4, 0x30, 0xe9, 0xbb, 0x1e, 0x0f, 0x9b, 0x21, 0xf3, + 0x04, 0x97, 0xfc, 0x52, 0x35, 0x43, 0xee, 0x35, 0x45, 0xec, 0x35, 0x27, 0xa2, 0xcd, 0x4c, 0xb4, + 0x5f, 0xd4, 0x5f, 0x0f, 0x9f, 0xfe, 0x17, 0x00, 0x00, 0xff, 0xff, 0x94, 0x50, 0x27, 0x79, 0x1c, + 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/rpc/nodeagent/storage/virtualharddisk/moc_nodeagent_virtualharddisk.proto b/rpc/nodeagent/storage/virtualharddisk/moc_nodeagent_virtualharddisk.proto index 43a3d277..fa528973 100644 --- a/rpc/nodeagent/storage/virtualharddisk/moc_nodeagent_virtualharddisk.proto +++ b/rpc/nodeagent/storage/virtualharddisk/moc_nodeagent_virtualharddisk.proto @@ -92,7 +92,7 @@ message VirtualHardDisk { CloudInitDataSource cloudInitDataSource = 22; DiskFileFormat diskFileFormat = 23; string TargetUrl = 24 [(sensitive) = true]; - string uniqueId = 25; + string PlatformDiskId = 25; } message DiskNotificationRequest { From 4f7f3123b6deaf1c7e19ac975722a1d1575cc0bb Mon Sep 17 00:00:00 2001 From: yuanzh Date: Thu, 16 Oct 2025 02:54:04 -0700 Subject: [PATCH 14/16] Fix case --- go.mod | 12 +- go.sum | 34 +--- .../moc_cloudagent_virtualharddisk.pb.go | 24 +-- .../moc_cloudagent_virtualharddisk.proto | 2 +- .../moc_nodeagent_virtualharddisk.pb.go | 150 +++++++++--------- .../moc_nodeagent_virtualharddisk.proto | 2 +- 6 files changed, 104 insertions(+), 120 deletions(-) diff --git a/go.mod b/go.mod index 677b1f4b..29b79ca2 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,8 @@ module github.com/microsoft/moc -go 1.23.0 +go 1.24.0 + +toolchain go1.24.7 require ( github.com/go-logr/logr v1.4.3 @@ -12,7 +14,7 @@ require ( github.com/pkg/errors v0.9.1 github.com/stretchr/testify v1.8.3 go.uber.org/multierr v1.11.0 - google.golang.org/grpc v1.75.1 + google.golang.org/grpc v1.59.0 gopkg.in/yaml.v3 v3.0.1 ) @@ -21,9 +23,9 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect golang.org/x/net v0.41.0 // indirect golang.org/x/sys v0.33.0 // indirect - golang.org/x/text v0.26.0 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7 // indirect - google.golang.org/protobuf v1.36.6 // indirect + golang.org/x/text v0.30.0 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20251014184007-4626949a642f // indirect + google.golang.org/protobuf v1.36.10 // indirect ) replace ( diff --git a/go.sum b/go.sum index ee49e9a3..d85a655c 100644 --- a/go.sum +++ b/go.sum @@ -3,8 +3,6 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/go-logr/logr v1.4.3 h1:CjnDlHq8ikf6E492q6eKboGOC0T8CDaOvkHCIg8idEI= github.com/go-logr/logr v1.4.3/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= -github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= -github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= github.com/golang-jwt/jwt/v4 v4.5.2 h1:YtQM7lnr8iZ+j5q71MGKkNw9Mn7AjHM68uc9g5fXeUI= github.com/golang-jwt/jwt/v4 v4.5.2/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc= @@ -14,8 +12,6 @@ github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6 github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= -github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= -github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/hectane/go-acl v0.0.0-20230122075934-ca0b05cb1adb h1:PGufWXXDq9yaev6xX1YQauaO1MV90e6Mpoq1I7Lz/VM= github.com/hectane/go-acl v0.0.0-20230122075934-ca0b05cb1adb/go.mod h1:QiyDdbZLaJ/mZP4Zwc9g2QsfaEA4o7XvvgZegSci5/E= github.com/jmespath/go-jmespath v0.4.0 h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg= @@ -31,18 +27,6 @@ github.com/stretchr/testify v1.8.3 h1:RP3t2pwF7cMEbC1dqtB6poj3niw/9gnV4Cjg5oW5gt github.com/stretchr/testify v1.8.3/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/auto/sdk v1.1.0 h1:cH53jehLUN6UFLY71z+NDOiNJqDdPRaXzTel0sJySYA= -go.opentelemetry.io/auto/sdk v1.1.0/go.mod h1:3wSPjt5PWp2RhlCcmmOial7AvC4DQqZb7a7wCow3W8A= -go.opentelemetry.io/otel v1.37.0 h1:9zhNfelUvx0KBfu/gb+ZgeAfAgtWrfHJZcAqFC228wQ= -go.opentelemetry.io/otel v1.37.0/go.mod h1:ehE/umFRLnuLa/vSccNq9oS1ErUlkkK71gMcN34UG8I= -go.opentelemetry.io/otel/metric v1.37.0 h1:mvwbQS5m0tbmqML4NqK+e3aDiO02vsf/WgbsdpcPoZE= -go.opentelemetry.io/otel/metric v1.37.0/go.mod h1:04wGrZurHYKOc+RKeye86GwKiTb9FKm1WHtO+4EVr2E= -go.opentelemetry.io/otel/sdk v1.37.0 h1:ItB0QUqnjesGRvNcmAcU0LyvkVyGJ2xftD29bWdDvKI= -go.opentelemetry.io/otel/sdk v1.37.0/go.mod h1:VredYzxUvuo2q3WRcDnKDjbdvmO0sCzOvVAiY+yUkAg= -go.opentelemetry.io/otel/sdk/metric v1.37.0 h1:90lI228XrB9jCMuSdA0673aubgRobVZFhbjxHHspCPc= -go.opentelemetry.io/otel/sdk/metric v1.37.0/go.mod h1:cNen4ZWfiD37l5NhS+Keb5RXVWZWpRE+9WyVCpbo5ps= -go.opentelemetry.io/otel/trace v1.37.0 h1:HLdcFNbRQBE2imdSEgm/kwqmQj1Or1l/7bW6mxVK7z4= -go.opentelemetry.io/otel/trace v1.37.0/go.mod h1:TlgrlQ+PtQO5XFerSPUYG0JSgGyryXewPGyayAWSBS0= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= golang.org/x/crypto v0.37.0/go.mod h1:vg+k43peMZ0pUMhYmVAWysMK35e6ioLh3wB8ZCAfbVc= @@ -70,8 +54,8 @@ golang.org/x/term v0.31.0/go.mod h1:R4BeIy7D95HzImkxGkTW1UQTtP54tio2RyHz7PwK0aw= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/text v0.24.0/go.mod h1:L8rBsPeo2pSS+xqN0d5u2ikmjtmoJbDBT1b7nHvFCdU= -golang.org/x/text v0.26.0 h1:P42AVeLghgTYr4+xUnTRKDMqpar+PtX7KWuNQL21L8M= -golang.org/x/text v0.26.0/go.mod h1:QK15LZJUUQVJxhz7wXgxSy/CJaTFjd0G+YLonydOVQA= +golang.org/x/text v0.30.0 h1:yznKA/E9zq54KzlzBEAWn1NXSQ8DIp/NYMy88xJjl4k= +golang.org/x/text v0.30.0/go.mod h1:yDdHFIX9t+tORqspjENWgzaCVXgk0yYnYuSZ8UzzBVM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= @@ -82,14 +66,12 @@ golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxb golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -gonum.org/v1/gonum v0.16.0 h1:5+ul4Swaf3ESvrOnidPp4GZbzf0mxVQpDCYUQE7OJfk= -gonum.org/v1/gonum v0.16.0/go.mod h1:fef3am4MQ93R2HHpKnLk4/Tbh/s0+wqD5nfa6Pnwy4E= -google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7 h1:pFyd6EwwL2TqFf8emdthzeX+gZE1ElRq3iM8pui4KBY= -google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7/go.mod h1:qQ0YXyHHx3XkvlzUtpXDkS29lDSafHMZBAZDc03LQ3A= -google.golang.org/grpc v1.75.1 h1:/ODCNEuf9VghjgO3rqLcfg8fiOP0nSluljWFlDxELLI= -google.golang.org/grpc v1.75.1/go.mod h1:JtPAzKiq4v1xcAB2hydNlWI2RnF85XXcV0mhKXr2ecQ= -google.golang.org/protobuf v1.36.6 h1:z1NpPI8ku2WgiWnf+t9wTPsn6eP1L7ksHUlkfLvd9xY= -google.golang.org/protobuf v1.36.6/go.mod h1:jduwjTPXsFjZGTmRluh+L6NjiWu7pchiJ2/5YcXBHnY= +google.golang.org/genproto/googleapis/rpc v0.0.0-20251014184007-4626949a642f h1:1FTH6cpXFsENbPR5Bu8NQddPSaUUE6NA2XdZdDSAJK4= +google.golang.org/genproto/googleapis/rpc v0.0.0-20251014184007-4626949a642f/go.mod h1:7i2o+ce6H/6BluujYR+kqX3GKH+dChPTQU19wjRPiGk= +google.golang.org/grpc v1.59.0 h1:Z5Iec2pjwb+LEOqzpB2MR12/eKFhDPhuqW91O+4bwUk= +google.golang.org/grpc v1.59.0/go.mod h1:aUPDwccQo6OTjy7Hct4AfBPD1GptF4fyUjIkQ9YtF98= +google.golang.org/protobuf v1.36.10 h1:AYd7cD/uASjIL6Q9LiTjz8JLcrh/88q5UObnmY3aOOE= +google.golang.org/protobuf v1.36.10/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v2 v2.2.8 h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10= diff --git a/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk.pb.go b/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk.pb.go index a7251fe1..8d7f7d00 100644 --- a/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk.pb.go +++ b/rpc/cloudagent/storage/moc_cloudagent_virtualharddisk.pb.go @@ -257,7 +257,7 @@ type VirtualHardDisk struct { SourcePath string `protobuf:"bytes,24,opt,name=sourcePath,proto3" json:"sourcePath,omitempty"` SourceType common.ImageSource `protobuf:"varint,25,opt,name=sourceType,proto3,enum=moc.ImageSource" json:"sourceType,omitempty"` TargetUrl string `protobuf:"bytes,26,opt,name=targetUrl,proto3" json:"targetUrl,omitempty"` - PlatformDiskId string `protobuf:"bytes,27,opt,name=PlatformDiskId,proto3" json:"PlatformDiskId,omitempty"` + PlatformDiskId string `protobuf:"bytes,27,opt,name=platformDiskId,proto3" json:"platformDiskId,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -626,17 +626,17 @@ var fileDescriptor_e3ff93a45373b349 = []byte{ 0x40, 0xc3, 0xb2, 0xc8, 0xd0, 0x7d, 0xbc, 0x1c, 0x6d, 0x0c, 0x7e, 0xc9, 0x22, 0x13, 0x20, 0x5c, 0xbc, 0x04, 0x06, 0x85, 0xa7, 0xc5, 0xd8, 0x28, 0x36, 0x63, 0x01, 0x21, 0x4f, 0x67, 0x3c, 0xae, 0xb6, 0xb7, 0xb0, 0x82, 0x2e, 0x9a, 0x9c, 0x24, 0x2c, 0x12, 0x55, 0xe6, 0x05, 0x0d, 0xe9, 0x43, - 0xdb, 0x32, 0x1d, 0x09, 0xfb, 0xbd, 0x8e, 0xa9, 0xbb, 0x70, 0x5d, 0xe7, 0x70, 0x71, 0xc1, 0x4e, - 0x63, 0x66, 0x2f, 0x94, 0x4e, 0x8a, 0x56, 0x9c, 0x84, 0xf4, 0x6d, 0xcc, 0x5c, 0x43, 0xfb, 0x39, - 0x1c, 0xd4, 0x56, 0xca, 0xa9, 0x16, 0x7c, 0x2c, 0xf8, 0xbd, 0x7e, 0x3c, 0xfb, 0x93, 0xa5, 0x4f, - 0xc9, 0x3c, 0x6d, 0xb5, 0x8c, 0xe7, 0x7b, 0xd3, 0xb9, 0xfb, 0xde, 0x5c, 0x5b, 0xd8, 0x9b, 0xc3, - 0xdf, 0xd6, 0x61, 0xb7, 0x96, 0xed, 0xb0, 0xa8, 0x97, 0x4c, 0xa0, 0x79, 0x92, 0x5e, 0xaa, 0x89, - 0x20, 0xde, 0x6d, 0x8f, 0x52, 0x36, 0xc5, 0xf5, 0x6f, 0xad, 0x2f, 0x4f, 0xd3, 0x7f, 0x83, 0xfc, - 0x02, 0xad, 0xd9, 0x19, 0xc9, 0xa7, 0xb7, 0x0c, 0xaf, 0xcd, 0xc2, 0xfd, 0xec, 0xce, 0x71, 0x57, - 0xe9, 0x7f, 0x85, 0xcd, 0xf2, 0x83, 0x27, 0xc8, 0x6d, 0x5d, 0xea, 0x5f, 0x77, 0xf7, 0xf3, 0xbb, - 0x07, 0xce, 0xf2, 0x1f, 0x7d, 0xf4, 0x83, 0x1f, 0x49, 0x3b, 0xce, 0x47, 0x1e, 0x57, 0x89, 0x9f, - 0x48, 0xae, 0x95, 0x51, 0x17, 0xd6, 0x4f, 0x14, 0xf7, 0x75, 0xc6, 0xfd, 0xb9, 0xab, 0x5f, 0xb9, - 0x8e, 0x9a, 0x38, 0xe9, 0x8f, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0xbd, 0x64, 0xaa, 0xc0, 0x51, + 0xdb, 0x32, 0x1d, 0x09, 0xfb, 0xbd, 0x8e, 0xa9, 0xbb, 0x70, 0x5d, 0xe7, 0x70, 0x71, 0xc1, 0xb2, + 0x98, 0xd9, 0x0b, 0xa5, 0x93, 0xa2, 0x15, 0x27, 0x21, 0x7d, 0x1b, 0x33, 0xd7, 0xd0, 0x7e, 0x0e, + 0x07, 0xb5, 0x95, 0x72, 0xaa, 0x05, 0x1f, 0x0b, 0x7e, 0xaf, 0x1f, 0xcf, 0xfe, 0x64, 0xe9, 0x53, + 0x32, 0x4f, 0x5b, 0x2d, 0xe3, 0xf9, 0xde, 0x74, 0xee, 0xbe, 0x37, 0xd7, 0x16, 0xf6, 0xe6, 0xf0, + 0xb7, 0x75, 0xd8, 0xad, 0x65, 0x3b, 0x2c, 0xea, 0x25, 0x13, 0x68, 0x9e, 0xa4, 0x97, 0x6a, 0x22, + 0x88, 0x77, 0xdb, 0xa3, 0x94, 0x4d, 0x71, 0xfd, 0x5b, 0xeb, 0xcb, 0xd3, 0xf4, 0xdf, 0x20, 0xbf, + 0x40, 0x6b, 0x76, 0x46, 0xf2, 0xe9, 0x2d, 0xc3, 0x6b, 0xb3, 0x70, 0x3f, 0xbb, 0x73, 0xdc, 0x55, + 0xfa, 0x5f, 0x61, 0xb3, 0xfc, 0xe0, 0x09, 0x72, 0x5b, 0x97, 0xfa, 0xd7, 0xdd, 0xfd, 0xfc, 0xee, + 0x81, 0xb3, 0xfc, 0x47, 0x1f, 0xfd, 0xe0, 0x47, 0xd2, 0x8e, 0xf3, 0x91, 0xc7, 0x55, 0xe2, 0x27, + 0x92, 0x6b, 0x65, 0xd4, 0x85, 0xf5, 0x13, 0xc5, 0x7d, 0x9d, 0x71, 0x7f, 0xee, 0xea, 0x57, 0xae, + 0xa3, 0x26, 0x4e, 0xfa, 0xe3, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x94, 0x12, 0x2e, 0xd3, 0x51, 0x0a, 0x00, 0x00, } diff --git a/rpc/cloudagent/storage/virtualharddisk/moc_cloudagent_virtualharddisk.proto b/rpc/cloudagent/storage/virtualharddisk/moc_cloudagent_virtualharddisk.proto index f764c055..61b4d8cf 100644 --- a/rpc/cloudagent/storage/virtualharddisk/moc_cloudagent_virtualharddisk.proto +++ b/rpc/cloudagent/storage/virtualharddisk/moc_cloudagent_virtualharddisk.proto @@ -59,7 +59,7 @@ message VirtualHardDisk { string sourcePath = 24; ImageSource sourceType = 25; string targetUrl = 26 [(sensitive) = true]; - string PlatformDiskId = 27; + string platformDiskId = 27; } message VirtualHardDiskPrecheckRequest { diff --git a/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk.pb.go b/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk.pb.go index 2e70bd82..e2c7b01b 100644 --- a/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk.pb.go +++ b/rpc/nodeagent/storage/moc_nodeagent_virtualharddisk.pb.go @@ -526,7 +526,7 @@ type VirtualHardDisk struct { CloudInitDataSource common.CloudInitDataSource `protobuf:"varint,22,opt,name=cloudInitDataSource,proto3,enum=moc.CloudInitDataSource" json:"cloudInitDataSource,omitempty"` DiskFileFormat common.DiskFileFormat `protobuf:"varint,23,opt,name=diskFileFormat,proto3,enum=moc.DiskFileFormat" json:"diskFileFormat,omitempty"` TargetUrl string `protobuf:"bytes,24,opt,name=TargetUrl,proto3" json:"TargetUrl,omitempty"` - PlatformDiskId string `protobuf:"bytes,25,opt,name=PlatformDiskId,proto3" json:"PlatformDiskId,omitempty"` + PlatformDiskId string `protobuf:"bytes,25,opt,name=platformDiskId,proto3" json:"platformDiskId,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -791,80 +791,80 @@ func init() { } var fileDescriptor_c1f33a566472b7b7 = []byte{ - // 1155 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xdd, 0x6e, 0x1b, 0x45, - 0x14, 0xee, 0x26, 0x8e, 0x93, 0x1c, 0x37, 0xae, 0x3b, 0x4e, 0x9b, 0xad, 0xdb, 0x06, 0x6b, 0x8b, - 0x2a, 0x2b, 0x12, 0xeb, 0xc8, 0x20, 0x40, 0x42, 0x5c, 0x38, 0x71, 0xd3, 0x98, 0x46, 0x6d, 0x35, - 0x4e, 0x72, 0x81, 0x10, 0x61, 0xbc, 0x3b, 0xb1, 0x47, 0xd9, 0xdd, 0x59, 0x66, 0x66, 0x83, 0x5c, - 0xf1, 0x00, 0x3c, 0x02, 0x0f, 0xc0, 0x35, 0x77, 0xdc, 0x70, 0x85, 0xc4, 0x2d, 0x2f, 0xc1, 0x9b, - 0xa0, 0x9d, 0x59, 0xff, 0xad, 0x1d, 0x29, 0x95, 0xe8, 0x95, 0x3d, 0xdf, 0xf9, 0xce, 0x77, 0xce, - 0x7c, 0xf3, 0xb7, 0xf0, 0x2c, 0xe4, 0xde, 0x45, 0xc4, 0x7d, 0x4a, 0x06, 0x34, 0x52, 0x17, 0xd7, - 0x4c, 0xa8, 0x84, 0x04, 0x43, 0x22, 0x7c, 0x9f, 0xc9, 0x2b, 0x37, 0x16, 0x5c, 0x71, 0xf4, 0x20, - 0xe4, 0x9e, 0x3b, 0x21, 0xb9, 0x52, 0x71, 0x41, 0x06, 0xb4, 0xb6, 0x3b, 0xe0, 0x7c, 0x10, 0xd0, - 0xa6, 0x26, 0xf5, 0x93, 0xcb, 0xe6, 0x4f, 0x82, 0xc4, 0x31, 0x15, 0xd2, 0xa4, 0xd5, 0x76, 0x52, - 0x6d, 0x8f, 0x87, 0x21, 0x8f, 0xb2, 0x9f, 0x2c, 0xf0, 0x74, 0x26, 0x10, 0x71, 0xc5, 0x2e, 0x99, - 0x47, 0x14, 0x9b, 0x84, 0x1f, 0xe7, 0x75, 0x69, 0x18, 0xab, 0x51, 0x16, 0x7c, 0x32, 0x93, 0x9b, - 0x35, 0xc2, 0xa2, 0x4b, 0x9e, 0x45, 0x77, 0xe7, 0x4b, 0xc6, 0x89, 0xa2, 0x73, 0x95, 0xeb, 0x79, - 0x69, 0x9f, 0x4a, 0x4f, 0xb0, 0x58, 0x71, 0x61, 0x18, 0xce, 0xef, 0x16, 0x3c, 0x3c, 0x37, 0x2e, - 0x1c, 0x13, 0xe1, 0x77, 0x98, 0xbc, 0xc2, 0xf4, 0xc7, 0x84, 0x4a, 0x85, 0xbe, 0x5f, 0x88, 0xf4, - 0x46, 0x52, 0xd1, 0x50, 0xda, 0x56, 0x7d, 0xb5, 0x51, 0x6a, 0x3d, 0x77, 0x97, 0xfa, 0xe4, 0xe6, - 0xe5, 0x6e, 0x50, 0x41, 0x9f, 0xc1, 0xd6, 0x9b, 0x98, 0x0a, 0x6d, 0xc5, 0xe9, 0x28, 0xa6, 0xf6, - 0x4a, 0xdd, 0x6a, 0x94, 0x5b, 0x65, 0x2d, 0x3b, 0x89, 0xe0, 0x79, 0x92, 0xf3, 0xb7, 0x05, 0x3b, - 0x0b, 0x0d, 0xcb, 0x98, 0x47, 0x92, 0x7e, 0xf0, 0x8e, 0x5b, 0x50, 0xc4, 0x54, 0x26, 0x81, 0xd2, - 0xad, 0x96, 0x5a, 0x35, 0xd7, 0xf8, 0xeb, 0x8e, 0xfd, 0x75, 0x0f, 0x38, 0x0f, 0xce, 0x49, 0x90, - 0x50, 0x9c, 0x31, 0xd1, 0x36, 0xac, 0xbd, 0x10, 0x82, 0x0b, 0x7b, 0xb5, 0x6e, 0x35, 0x36, 0xb1, - 0x19, 0x38, 0x7f, 0x5a, 0xf0, 0x51, 0xae, 0xc8, 0x74, 0xc6, 0x99, 0xff, 0x18, 0x2a, 0x39, 0xca, - 0xfb, 0xce, 0x63, 0x21, 0x1f, 0x1d, 0x2e, 0xf7, 0xfc, 0xa9, 0x16, 0xbc, 0xb1, 0xa1, 0xdc, 0x12, - 0xfc, 0x65, 0x41, 0xfd, 0xe6, 0xe6, 0xb3, 0xb5, 0xf8, 0x10, 0xdd, 0xff, 0x7f, 0xfe, 0xff, 0x63, - 0x01, 0xea, 0x1d, 0xf5, 0xba, 0x21, 0x19, 0xd0, 0xb7, 0x82, 0xc7, 0x54, 0x28, 0x46, 0x25, 0xaa, - 0x43, 0xc9, 0x23, 0x8a, 0x04, 0x7c, 0xf0, 0x9a, 0x84, 0xd4, 0xb6, 0x74, 0xca, 0x2c, 0x84, 0x6a, - 0xb0, 0x41, 0x12, 0x9f, 0xd1, 0xc8, 0x33, 0xde, 0x6d, 0xe2, 0xc9, 0x18, 0xd9, 0xb0, 0x7e, 0x4d, - 0x85, 0x64, 0x3c, 0xca, 0x8a, 0x8d, 0x87, 0xa9, 0xae, 0xa0, 0x01, 0x25, 0x92, 0x6a, 0xdd, 0x82, - 0xd1, 0x9d, 0x81, 0xd2, 0x36, 0x63, 0x22, 0x94, 0xb4, 0xd7, 0xea, 0x56, 0x63, 0x0b, 0x9b, 0x01, - 0x7a, 0x0e, 0x65, 0x9f, 0x4a, 0xc5, 0x22, 0xed, 0x6d, 0x87, 0x09, 0xbb, 0xa8, 0x53, 0x73, 0xa8, - 0xb3, 0x0f, 0xdb, 0x27, 0xdc, 0x23, 0x41, 0x7e, 0x3e, 0x36, 0x14, 0x62, 0xa2, 0x86, 0x66, 0x22, - 0x07, 0x85, 0x5f, 0xfe, 0xb0, 0x2d, 0xac, 0x11, 0xe7, 0x4b, 0xd8, 0x3e, 0x0c, 0x78, 0x44, 0x97, - 0x39, 0x90, 0xe2, 0x3d, 0x9e, 0x08, 0x6f, 0xea, 0xc0, 0x14, 0x72, 0x9a, 0x50, 0x3d, 0x56, 0x2a, - 0x5e, 0x2c, 0xb5, 0x3e, 0x54, 0x2a, 0x3e, 0xc3, 0x27, 0x59, 0xd2, 0x78, 0xe8, 0x9c, 0xc1, 0xe3, - 0xf6, 0xbb, 0x44, 0xd0, 0x97, 0x24, 0x08, 0xa8, 0x18, 0xe5, 0x13, 0x9f, 0x40, 0x51, 0x12, 0x79, - 0x86, 0xbb, 0x73, 0x5d, 0x66, 0xd8, 0xac, 0xa7, 0x2b, 0x73, 0x9e, 0x3a, 0xbf, 0x6d, 0xc0, 0xbd, - 0xdc, 0x0e, 0x41, 0x08, 0x0a, 0xd1, 0x74, 0xe1, 0xf4, 0x7f, 0x54, 0x86, 0x15, 0xe6, 0x67, 0xc9, - 0x2b, 0xcc, 0xd7, 0xf5, 0xcc, 0xe4, 0x56, 0x4d, 0xbd, 0x5f, 0x4d, 0x3d, 0x8d, 0x4d, 0x1c, 0x2b, - 0xe4, 0x1d, 0x43, 0x1f, 0xc3, 0x96, 0xc7, 0x23, 0x45, 0x58, 0x44, 0x85, 0x5e, 0xc5, 0x35, 0x2d, - 0x39, 0x0f, 0xa2, 0x67, 0x50, 0x94, 0x8a, 0xa8, 0x44, 0xea, 0x95, 0x2a, 0xb5, 0x4a, 0x7a, 0xb3, - 0xf7, 0x34, 0x84, 0xb3, 0x50, 0xda, 0xa6, 0x64, 0xef, 0xa8, 0xbd, 0x5e, 0xb7, 0x1a, 0xab, 0x58, - 0xff, 0x4f, 0x27, 0xea, 0x8f, 0x22, 0x12, 0x32, 0xcf, 0xde, 0xa8, 0x5b, 0x8d, 0x0d, 0x3c, 0x1e, - 0xa6, 0x9b, 0xa0, 0x1f, 0x70, 0xef, 0x2a, 0xa5, 0xf5, 0x47, 0x8a, 0x4a, 0x7b, 0xb3, 0x6e, 0x35, - 0xd6, 0x70, 0x0e, 0x45, 0x2e, 0xa0, 0x80, 0x0f, 0x98, 0x47, 0x02, 0x49, 0x3d, 0xc5, 0x85, 0xe1, - 0x82, 0xe6, 0x2e, 0x89, 0xa0, 0x7d, 0xa8, 0xc6, 0xc3, 0x91, 0xcc, 0x27, 0x94, 0x74, 0xc2, 0xb2, - 0x10, 0xda, 0x83, 0x4a, 0x3a, 0x5b, 0xc1, 0xd3, 0x85, 0x8c, 0x92, 0xb0, 0x4f, 0x85, 0x7d, 0x57, - 0xcf, 0x61, 0x01, 0x4f, 0xbb, 0x99, 0x62, 0x01, 0x37, 0x2f, 0x9e, 0xbd, 0xa5, 0xd9, 0x4b, 0x22, - 0x68, 0x17, 0x20, 0x7d, 0x82, 0x33, 0xd5, 0xb2, 0xe6, 0xcd, 0x20, 0xa9, 0x5e, 0xf6, 0x5a, 0x87, - 0xc4, 0x1b, 0xb2, 0xc8, 0x9c, 0xa4, 0x7b, 0x7a, 0x0d, 0x96, 0x44, 0xd2, 0x83, 0x2a, 0x3d, 0xc9, - 0xf4, 0x62, 0x56, 0xcc, 0x41, 0x1d, 0x8f, 0xd1, 0x77, 0x50, 0xcd, 0xbd, 0xfc, 0x2a, 0xbd, 0x0b, - 0xef, 0xeb, 0xbb, 0x70, 0xef, 0x76, 0xd7, 0x53, 0x7a, 0x13, 0xe2, 0x65, 0x32, 0xe9, 0x16, 0xa0, - 0x91, 0x62, 0x6a, 0x64, 0xa3, 0x99, 0x2d, 0xf0, 0x42, 0x43, 0x38, 0x0b, 0xa1, 0xa7, 0x50, 0x50, - 0x64, 0x20, 0xed, 0xaa, 0xa6, 0x6c, 0x6a, 0xca, 0x29, 0x19, 0x48, 0xac, 0x61, 0xb4, 0x0f, 0x60, - 0x36, 0xa4, 0xbe, 0xa4, 0xb7, 0x75, 0x63, 0x15, 0x4d, 0xd2, 0xc7, 0xc7, 0x1c, 0x45, 0x3c, 0xc3, - 0x41, 0x6d, 0xa8, 0x0c, 0x47, 0x31, 0x15, 0xe7, 0x2f, 0x69, 0x94, 0xdd, 0xc5, 0xf6, 0x03, 0x9d, - 0xf7, 0x40, 0xe7, 0x1d, 0xe7, 0x82, 0x78, 0x81, 0x8e, 0xbe, 0x81, 0xaa, 0x17, 0xf0, 0xc4, 0xef, - 0x46, 0x4c, 0x75, 0x88, 0x22, 0xd9, 0x1d, 0xf0, 0x50, 0xab, 0xd8, 0x5a, 0xe5, 0x70, 0x31, 0x8e, - 0x97, 0x25, 0xa1, 0xaf, 0xa0, 0x9c, 0x1a, 0x72, 0xc4, 0x02, 0x7a, 0xc4, 0x45, 0x48, 0x94, 0xbd, - 0xa3, 0x65, 0xaa, 0x5a, 0xa6, 0x33, 0x17, 0xc2, 0x39, 0x2a, 0x72, 0x60, 0xf3, 0x94, 0x88, 0x01, - 0x55, 0x67, 0x22, 0xb0, 0xed, 0x99, 0x93, 0x38, 0x85, 0xd3, 0x53, 0xf1, 0x36, 0x20, 0xea, 0x92, - 0x8b, 0x30, 0x55, 0xeb, 0xfa, 0xf6, 0x23, 0x73, 0x35, 0xce, 0xa3, 0xce, 0xd7, 0xb0, 0x93, 0xfe, - 0x7b, 0x3d, 0xf3, 0xdd, 0x35, 0x7e, 0x60, 0x1d, 0xb8, 0x2b, 0xe8, 0x8c, 0xcd, 0xe6, 0xd6, 0x98, - 0xc3, 0xf6, 0x5e, 0x41, 0x75, 0xc9, 0xc2, 0xa3, 0x87, 0x80, 0xde, 0xf4, 0x2e, 0xce, 0xbb, 0xf8, - 0xf4, 0xac, 0x7d, 0x72, 0xdc, 0xc6, 0x9d, 0x4e, 0xb7, 0xf7, 0xaa, 0x72, 0x07, 0x3d, 0x01, 0xbb, - 0xd3, 0x3e, 0x6d, 0xa7, 0xa3, 0x85, 0xa8, 0xd5, 0xfa, 0x77, 0x05, 0xb6, 0x73, 0x6a, 0xed, 0x74, - 0x8f, 0x21, 0x06, 0xc5, 0x6e, 0x74, 0xcd, 0xaf, 0x28, 0xfa, 0xe4, 0x96, 0x8f, 0xa3, 0x99, 0x42, - 0xcd, 0xbd, 0x2d, 0xdd, 0xbc, 0xca, 0xce, 0x1d, 0xf4, 0x03, 0xdc, 0x3f, 0x1c, 0x52, 0x6f, 0xce, - 0x10, 0x74, 0x93, 0xcc, 0x0d, 0xce, 0xd5, 0x1e, 0x69, 0xfe, 0x7c, 0x64, 0x52, 0xe1, 0x67, 0x58, - 0x37, 0x9f, 0x03, 0x14, 0x7d, 0x7e, 0xbb, 0xf6, 0xf2, 0x9f, 0x3e, 0xb5, 0x2f, 0xde, 0x3b, 0x6f, - 0x5c, 0xfd, 0x60, 0xff, 0x5b, 0x77, 0xc0, 0xd4, 0x30, 0xe9, 0xbb, 0x1e, 0x0f, 0x9b, 0x21, 0xf3, - 0x04, 0x97, 0xfc, 0x52, 0x35, 0x43, 0xee, 0x35, 0x45, 0xec, 0x35, 0x27, 0xa2, 0xcd, 0x4c, 0xb4, - 0x5f, 0xd4, 0x5f, 0x0f, 0x9f, 0xfe, 0x17, 0x00, 0x00, 0xff, 0xff, 0x94, 0x50, 0x27, 0x79, 0x1c, - 0x0c, 0x00, 0x00, + // 1156 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcd, 0x6e, 0xdb, 0x46, + 0x17, 0x0d, 0x6d, 0x59, 0xb6, 0xaf, 0x62, 0x45, 0x19, 0x39, 0x31, 0xa3, 0xc4, 0xfe, 0x04, 0xe6, + 0x43, 0x20, 0x18, 0x28, 0x65, 0xa8, 0x45, 0x5b, 0xa0, 0xe8, 0x42, 0xb6, 0xe2, 0x58, 0x8d, 0x91, + 0x14, 0x23, 0xdb, 0x8b, 0xa2, 0xa8, 0x3b, 0x22, 0xc7, 0xd2, 0xc0, 0x24, 0x87, 0x9d, 0x19, 0xba, + 0x50, 0xd0, 0x07, 0xe8, 0x23, 0xf4, 0x01, 0xba, 0xee, 0xae, 0x9b, 0xae, 0x0a, 0x74, 0xdb, 0x97, + 0xe8, 0x9b, 0x14, 0x9c, 0xa1, 0xfe, 0x28, 0x19, 0x70, 0x80, 0x66, 0x25, 0xcd, 0xb9, 0xe7, 0x9e, + 0x7b, 0xe7, 0xcc, 0x1f, 0xe1, 0x79, 0xc8, 0xbd, 0xcb, 0x88, 0xfb, 0x94, 0x0c, 0x68, 0xa4, 0x2e, + 0x6f, 0x98, 0x50, 0x09, 0x09, 0x86, 0x44, 0xf8, 0x3e, 0x93, 0xd7, 0x6e, 0x2c, 0xb8, 0xe2, 0xe8, + 0x51, 0xc8, 0x3d, 0x77, 0x42, 0x72, 0xa5, 0xe2, 0x82, 0x0c, 0x68, 0x6d, 0x6f, 0xc0, 0xf9, 0x20, + 0xa0, 0x4d, 0x4d, 0xea, 0x27, 0x57, 0xcd, 0x1f, 0x05, 0x89, 0x63, 0x2a, 0xa4, 0x49, 0xab, 0xed, + 0xa4, 0xda, 0x1e, 0x0f, 0x43, 0x1e, 0x65, 0x3f, 0x59, 0x60, 0x77, 0x26, 0x10, 0x71, 0xc5, 0xae, + 0x98, 0x47, 0x14, 0x9b, 0x84, 0x9f, 0xe6, 0x75, 0x69, 0x18, 0xab, 0x51, 0x16, 0x7c, 0x36, 0x93, + 0x9b, 0x35, 0xc2, 0xa2, 0x2b, 0x9e, 0x45, 0xf7, 0xe6, 0x4b, 0xc6, 0x89, 0xa2, 0x73, 0x95, 0xeb, + 0x79, 0x69, 0x9f, 0x4a, 0x4f, 0xb0, 0x58, 0x71, 0x61, 0x18, 0xce, 0x6f, 0x16, 0x3c, 0xbe, 0x30, + 0x2e, 0x9c, 0x10, 0xe1, 0x77, 0x98, 0xbc, 0xc6, 0xf4, 0x87, 0x84, 0x4a, 0x85, 0xbe, 0x5b, 0x88, + 0xf4, 0x46, 0x52, 0xd1, 0x50, 0xda, 0x56, 0x7d, 0xb5, 0x51, 0x6a, 0xbd, 0x70, 0x97, 0xfa, 0xe4, + 0xe6, 0xe5, 0x6e, 0x51, 0x41, 0x9f, 0xc0, 0xd6, 0xdb, 0x98, 0x0a, 0x6d, 0xc5, 0xd9, 0x28, 0xa6, + 0xf6, 0x4a, 0xdd, 0x6a, 0x94, 0x5b, 0x65, 0x2d, 0x3b, 0x89, 0xe0, 0x79, 0x92, 0xf3, 0x97, 0x05, + 0x3b, 0x0b, 0x0d, 0xcb, 0x98, 0x47, 0x92, 0x7e, 0xf0, 0x8e, 0x5b, 0x50, 0xc4, 0x54, 0x26, 0x81, + 0xd2, 0xad, 0x96, 0x5a, 0x35, 0xd7, 0xf8, 0xeb, 0x8e, 0xfd, 0x75, 0x0f, 0x39, 0x0f, 0x2e, 0x48, + 0x90, 0x50, 0x9c, 0x31, 0xd1, 0x36, 0xac, 0xbd, 0x14, 0x82, 0x0b, 0x7b, 0xb5, 0x6e, 0x35, 0x36, + 0xb1, 0x19, 0x38, 0x7f, 0x58, 0xf0, 0xbf, 0x5c, 0x91, 0xe9, 0x8c, 0x33, 0xff, 0x31, 0x54, 0x72, + 0x94, 0xf7, 0x9d, 0xc7, 0x42, 0x3e, 0x3a, 0x5a, 0xee, 0xf9, 0xae, 0x16, 0xbc, 0xb5, 0xa1, 0xdc, + 0x12, 0xfc, 0x69, 0x41, 0xfd, 0xf6, 0xe6, 0xb3, 0xb5, 0xf8, 0x10, 0xdd, 0xff, 0x77, 0xfe, 0xff, + 0x6d, 0x01, 0xea, 0x1d, 0xf7, 0xba, 0x21, 0x19, 0xd0, 0xaf, 0x05, 0x8f, 0xa9, 0x50, 0x8c, 0x4a, + 0x54, 0x87, 0x92, 0x47, 0x14, 0x09, 0xf8, 0xe0, 0x0d, 0x09, 0xa9, 0x6d, 0xe9, 0x94, 0x59, 0x08, + 0xd5, 0x60, 0x83, 0x24, 0x3e, 0xa3, 0x91, 0x67, 0xbc, 0xdb, 0xc4, 0x93, 0x31, 0xb2, 0x61, 0xfd, + 0x86, 0x0a, 0xc9, 0x78, 0x94, 0x15, 0x1b, 0x0f, 0x53, 0x5d, 0x41, 0x03, 0x4a, 0x24, 0xd5, 0xba, + 0x05, 0xa3, 0x3b, 0x03, 0xa5, 0x6d, 0xc6, 0x44, 0x28, 0x69, 0xaf, 0xd5, 0xad, 0xc6, 0x16, 0x36, + 0x03, 0xf4, 0x02, 0xca, 0x3e, 0x95, 0x8a, 0x45, 0xda, 0xdb, 0x0e, 0x13, 0x76, 0x51, 0xa7, 0xe6, + 0x50, 0xe7, 0x00, 0xb6, 0x4f, 0xb9, 0x47, 0x82, 0xfc, 0x7c, 0x6c, 0x28, 0xc4, 0x44, 0x0d, 0xcd, + 0x44, 0x0e, 0x0b, 0x3f, 0xff, 0x6e, 0x5b, 0x58, 0x23, 0xce, 0xe7, 0xb0, 0x7d, 0x14, 0xf0, 0x88, + 0x2e, 0x73, 0x20, 0xc5, 0x7b, 0x3c, 0x11, 0xde, 0xd4, 0x81, 0x29, 0xe4, 0x34, 0xa1, 0x7a, 0xa2, + 0x54, 0xbc, 0x58, 0x6a, 0x7d, 0xa8, 0x54, 0x7c, 0x8e, 0x4f, 0xb3, 0xa4, 0xf1, 0xd0, 0x39, 0x87, + 0xa7, 0xed, 0x77, 0x89, 0xa0, 0xaf, 0x48, 0x10, 0x50, 0x31, 0xca, 0x27, 0x3e, 0x83, 0xa2, 0x24, + 0xf2, 0x1c, 0x77, 0xe7, 0xba, 0xcc, 0xb0, 0x59, 0x4f, 0x57, 0xe6, 0x3c, 0x75, 0x7e, 0xdd, 0x80, + 0x07, 0xb9, 0x1d, 0x82, 0x10, 0x14, 0xa2, 0xe9, 0xc2, 0xe9, 0xff, 0xa8, 0x0c, 0x2b, 0xcc, 0xcf, + 0x92, 0x57, 0x98, 0xaf, 0xeb, 0x99, 0xc9, 0xad, 0x9a, 0x7a, 0xbf, 0x98, 0x7a, 0x1a, 0x9b, 0x38, + 0x56, 0xc8, 0x3b, 0x86, 0xfe, 0x0f, 0x5b, 0x1e, 0x8f, 0x14, 0x61, 0x11, 0x15, 0x7a, 0x15, 0xd7, + 0xb4, 0xe4, 0x3c, 0x88, 0x9e, 0x43, 0x51, 0x2a, 0xa2, 0x12, 0xa9, 0x57, 0xaa, 0xd4, 0x2a, 0xe9, + 0xcd, 0xde, 0xd3, 0x10, 0xce, 0x42, 0x69, 0x9b, 0x92, 0xbd, 0xa3, 0xf6, 0x7a, 0xdd, 0x6a, 0xac, + 0x62, 0xfd, 0x3f, 0x9d, 0xa8, 0x3f, 0x8a, 0x48, 0xc8, 0x3c, 0x7b, 0xa3, 0x6e, 0x35, 0x36, 0xf0, + 0x78, 0x98, 0x6e, 0x82, 0x7e, 0xc0, 0xbd, 0xeb, 0x94, 0xd6, 0x1f, 0x29, 0x2a, 0xed, 0xcd, 0xba, + 0xd5, 0x58, 0xc3, 0x39, 0x14, 0xb9, 0x80, 0x02, 0x3e, 0x60, 0x1e, 0x09, 0x24, 0xf5, 0x14, 0x17, + 0x86, 0x0b, 0x9a, 0xbb, 0x24, 0x82, 0x0e, 0xa0, 0x1a, 0x0f, 0x47, 0x32, 0x9f, 0x50, 0xd2, 0x09, + 0xcb, 0x42, 0x68, 0x1f, 0x2a, 0xe9, 0x6c, 0x05, 0x4f, 0x17, 0x32, 0x4a, 0xc2, 0x3e, 0x15, 0xf6, + 0x7d, 0x3d, 0x87, 0x05, 0x3c, 0xed, 0x66, 0x8a, 0x05, 0xdc, 0xbc, 0x78, 0xf6, 0x96, 0x66, 0x2f, + 0x89, 0xa0, 0x3d, 0x80, 0xf4, 0x09, 0xce, 0x54, 0xcb, 0x9a, 0x37, 0x83, 0xa4, 0x7a, 0xd9, 0x6b, + 0x1d, 0x12, 0x6f, 0xc8, 0x22, 0x73, 0x92, 0x1e, 0xe8, 0x35, 0x58, 0x12, 0x49, 0x0f, 0xaa, 0xf4, + 0x24, 0xd3, 0x8b, 0x59, 0x31, 0x07, 0x75, 0x3c, 0x46, 0xdf, 0x42, 0x35, 0xf7, 0xf2, 0xab, 0xf4, + 0x2e, 0x7c, 0xa8, 0xef, 0xc2, 0xfd, 0xbb, 0x5d, 0x4f, 0xe9, 0x4d, 0x88, 0x97, 0xc9, 0xa4, 0x5b, + 0x80, 0x46, 0x8a, 0xa9, 0x91, 0x8d, 0x66, 0xb6, 0xc0, 0x4b, 0x0d, 0xe1, 0x2c, 0x84, 0x76, 0xa1, + 0xa0, 0xc8, 0x40, 0xda, 0x55, 0x4d, 0xd9, 0xd4, 0x94, 0x33, 0x32, 0x90, 0x58, 0xc3, 0xe8, 0x00, + 0xc0, 0x6c, 0x48, 0x7d, 0x49, 0x6f, 0xeb, 0xc6, 0x2a, 0x9a, 0xa4, 0x8f, 0x8f, 0x39, 0x8a, 0x78, + 0x86, 0x83, 0xda, 0x50, 0x19, 0x8e, 0x62, 0x2a, 0x2e, 0x5e, 0xd1, 0x28, 0xbb, 0x8b, 0xed, 0x47, + 0x3a, 0xef, 0x91, 0xce, 0x3b, 0xc9, 0x05, 0xf1, 0x02, 0x1d, 0x7d, 0x05, 0x55, 0x2f, 0xe0, 0x89, + 0xdf, 0x8d, 0x98, 0xea, 0x10, 0x45, 0xb2, 0x3b, 0xe0, 0xb1, 0x56, 0xb1, 0xb5, 0xca, 0xd1, 0x62, + 0x1c, 0x2f, 0x4b, 0x42, 0x5f, 0x40, 0x39, 0x35, 0xe4, 0x98, 0x05, 0xf4, 0x98, 0x8b, 0x90, 0x28, + 0x7b, 0x47, 0xcb, 0x54, 0xb5, 0x4c, 0x67, 0x2e, 0x84, 0x73, 0x54, 0xe4, 0xc0, 0xe6, 0x19, 0x11, + 0x03, 0xaa, 0xce, 0x45, 0x60, 0xdb, 0x33, 0x27, 0x71, 0x0a, 0xa7, 0xa7, 0x22, 0x0e, 0x88, 0xba, + 0xe2, 0x22, 0x4c, 0xd5, 0xba, 0xbe, 0xfd, 0xc4, 0x5c, 0x8d, 0xf3, 0xa8, 0xf3, 0x25, 0xec, 0xa4, + 0xff, 0xde, 0xcc, 0x7c, 0x77, 0x8d, 0x1f, 0x58, 0x07, 0xee, 0x0b, 0x3a, 0x63, 0xb3, 0xb9, 0x35, + 0xe6, 0xb0, 0xfd, 0xd7, 0x50, 0x5d, 0xb2, 0xf0, 0xe8, 0x31, 0xa0, 0xb7, 0xbd, 0xcb, 0x8b, 0x2e, + 0x3e, 0x3b, 0x6f, 0x9f, 0x9e, 0xb4, 0x71, 0xa7, 0xd3, 0xed, 0xbd, 0xae, 0xdc, 0x43, 0xcf, 0xc0, + 0xee, 0xb4, 0xcf, 0xda, 0xe9, 0x68, 0x21, 0x6a, 0xb5, 0xfe, 0x59, 0x81, 0xed, 0x9c, 0x5a, 0x3b, + 0xdd, 0x63, 0x88, 0x41, 0xb1, 0x1b, 0xdd, 0xf0, 0x6b, 0x8a, 0x3e, 0xba, 0xe3, 0xe3, 0x68, 0xa6, + 0x50, 0x73, 0xef, 0x4a, 0x37, 0xaf, 0xb2, 0x73, 0x0f, 0x7d, 0x0f, 0x0f, 0x8f, 0x86, 0xd4, 0x9b, + 0x33, 0x04, 0xdd, 0x26, 0x73, 0x8b, 0x73, 0xb5, 0x27, 0x9a, 0x3f, 0x1f, 0x99, 0x54, 0xf8, 0x09, + 0xd6, 0xcd, 0xe7, 0x00, 0x45, 0x9f, 0xde, 0xad, 0xbd, 0xfc, 0xa7, 0x4f, 0xed, 0xb3, 0xf7, 0xce, + 0x1b, 0x57, 0x3f, 0x3c, 0xf8, 0xc6, 0x1d, 0x30, 0x35, 0x4c, 0xfa, 0xae, 0xc7, 0xc3, 0x66, 0xc8, + 0x3c, 0xc1, 0x25, 0xbf, 0x52, 0xcd, 0x90, 0x7b, 0x4d, 0x11, 0x7b, 0xcd, 0x89, 0x68, 0x33, 0x13, + 0xed, 0x17, 0xf5, 0xd7, 0xc3, 0xc7, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0xe3, 0x48, 0xa1, 0x7d, + 0x1c, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/rpc/nodeagent/storage/virtualharddisk/moc_nodeagent_virtualharddisk.proto b/rpc/nodeagent/storage/virtualharddisk/moc_nodeagent_virtualharddisk.proto index fa528973..c09a7fee 100644 --- a/rpc/nodeagent/storage/virtualharddisk/moc_nodeagent_virtualharddisk.proto +++ b/rpc/nodeagent/storage/virtualharddisk/moc_nodeagent_virtualharddisk.proto @@ -92,7 +92,7 @@ message VirtualHardDisk { CloudInitDataSource cloudInitDataSource = 22; DiskFileFormat diskFileFormat = 23; string TargetUrl = 24 [(sensitive) = true]; - string PlatformDiskId = 25; + string platformDiskId = 25; } message DiskNotificationRequest { From 2b69fdc9a836393c3a5fcf68f4cc68e126d79666 Mon Sep 17 00:00:00 2001 From: yuanzh Date: Thu, 16 Oct 2025 17:57:47 -0700 Subject: [PATCH 15/16] Fix grpc version --- go.mod | 2 +- go.sum | 22 ++++++++++++++++++++-- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 29b79ca2..36713fb3 100644 --- a/go.mod +++ b/go.mod @@ -14,7 +14,7 @@ require ( github.com/pkg/errors v0.9.1 github.com/stretchr/testify v1.8.3 go.uber.org/multierr v1.11.0 - google.golang.org/grpc v1.59.0 + google.golang.org/grpc v1.75.1 gopkg.in/yaml.v3 v3.0.1 ) diff --git a/go.sum b/go.sum index d85a655c..4fbb3bf7 100644 --- a/go.sum +++ b/go.sum @@ -3,6 +3,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/go-logr/logr v1.4.3 h1:CjnDlHq8ikf6E492q6eKboGOC0T8CDaOvkHCIg8idEI= github.com/go-logr/logr v1.4.3/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= +github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= +github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= github.com/golang-jwt/jwt/v4 v4.5.2 h1:YtQM7lnr8iZ+j5q71MGKkNw9Mn7AjHM68uc9g5fXeUI= github.com/golang-jwt/jwt/v4 v4.5.2/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc= @@ -12,6 +14,8 @@ github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6 github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= +github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/hectane/go-acl v0.0.0-20230122075934-ca0b05cb1adb h1:PGufWXXDq9yaev6xX1YQauaO1MV90e6Mpoq1I7Lz/VM= github.com/hectane/go-acl v0.0.0-20230122075934-ca0b05cb1adb/go.mod h1:QiyDdbZLaJ/mZP4Zwc9g2QsfaEA4o7XvvgZegSci5/E= github.com/jmespath/go-jmespath v0.4.0 h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg= @@ -27,6 +31,18 @@ github.com/stretchr/testify v1.8.3 h1:RP3t2pwF7cMEbC1dqtB6poj3niw/9gnV4Cjg5oW5gt github.com/stretchr/testify v1.8.3/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= +go.opentelemetry.io/auto/sdk v1.1.0 h1:cH53jehLUN6UFLY71z+NDOiNJqDdPRaXzTel0sJySYA= +go.opentelemetry.io/auto/sdk v1.1.0/go.mod h1:3wSPjt5PWp2RhlCcmmOial7AvC4DQqZb7a7wCow3W8A= +go.opentelemetry.io/otel v1.37.0 h1:9zhNfelUvx0KBfu/gb+ZgeAfAgtWrfHJZcAqFC228wQ= +go.opentelemetry.io/otel v1.37.0/go.mod h1:ehE/umFRLnuLa/vSccNq9oS1ErUlkkK71gMcN34UG8I= +go.opentelemetry.io/otel/metric v1.37.0 h1:mvwbQS5m0tbmqML4NqK+e3aDiO02vsf/WgbsdpcPoZE= +go.opentelemetry.io/otel/metric v1.37.0/go.mod h1:04wGrZurHYKOc+RKeye86GwKiTb9FKm1WHtO+4EVr2E= +go.opentelemetry.io/otel/sdk v1.37.0 h1:ItB0QUqnjesGRvNcmAcU0LyvkVyGJ2xftD29bWdDvKI= +go.opentelemetry.io/otel/sdk v1.37.0/go.mod h1:VredYzxUvuo2q3WRcDnKDjbdvmO0sCzOvVAiY+yUkAg= +go.opentelemetry.io/otel/sdk/metric v1.37.0 h1:90lI228XrB9jCMuSdA0673aubgRobVZFhbjxHHspCPc= +go.opentelemetry.io/otel/sdk/metric v1.37.0/go.mod h1:cNen4ZWfiD37l5NhS+Keb5RXVWZWpRE+9WyVCpbo5ps= +go.opentelemetry.io/otel/trace v1.37.0 h1:HLdcFNbRQBE2imdSEgm/kwqmQj1Or1l/7bW6mxVK7z4= +go.opentelemetry.io/otel/trace v1.37.0/go.mod h1:TlgrlQ+PtQO5XFerSPUYG0JSgGyryXewPGyayAWSBS0= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= golang.org/x/crypto v0.37.0/go.mod h1:vg+k43peMZ0pUMhYmVAWysMK35e6ioLh3wB8ZCAfbVc= @@ -66,10 +82,12 @@ golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxb golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +gonum.org/v1/gonum v0.16.0 h1:5+ul4Swaf3ESvrOnidPp4GZbzf0mxVQpDCYUQE7OJfk= +gonum.org/v1/gonum v0.16.0/go.mod h1:fef3am4MQ93R2HHpKnLk4/Tbh/s0+wqD5nfa6Pnwy4E= google.golang.org/genproto/googleapis/rpc v0.0.0-20251014184007-4626949a642f h1:1FTH6cpXFsENbPR5Bu8NQddPSaUUE6NA2XdZdDSAJK4= google.golang.org/genproto/googleapis/rpc v0.0.0-20251014184007-4626949a642f/go.mod h1:7i2o+ce6H/6BluujYR+kqX3GKH+dChPTQU19wjRPiGk= -google.golang.org/grpc v1.59.0 h1:Z5Iec2pjwb+LEOqzpB2MR12/eKFhDPhuqW91O+4bwUk= -google.golang.org/grpc v1.59.0/go.mod h1:aUPDwccQo6OTjy7Hct4AfBPD1GptF4fyUjIkQ9YtF98= +google.golang.org/grpc v1.75.1 h1:/ODCNEuf9VghjgO3rqLcfg8fiOP0nSluljWFlDxELLI= +google.golang.org/grpc v1.75.1/go.mod h1:JtPAzKiq4v1xcAB2hydNlWI2RnF85XXcV0mhKXr2ecQ= google.golang.org/protobuf v1.36.10 h1:AYd7cD/uASjIL6Q9LiTjz8JLcrh/88q5UObnmY3aOOE= google.golang.org/protobuf v1.36.10/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= From 4b0c7279f130179b7055acd20fa676787a7b1212 Mon Sep 17 00:00:00 2001 From: yuanzh Date: Sun, 19 Oct 2025 12:44:34 -0700 Subject: [PATCH 16/16] Fix build --- .pipelines/build.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.pipelines/build.yaml b/.pipelines/build.yaml index 381eaebe..17ba0b5a 100644 --- a/.pipelines/build.yaml +++ b/.pipelines/build.yaml @@ -55,13 +55,13 @@ jobs: make unittest displayName: 'Unit Tests' - - task: AzureArtifacts.manifest-generator-task.manifest-generator-task.ManifestGeneratorTask@0 - displayName: 'SBOM Generation' - inputs: - BuildDropPath: $(System.DefaultWorkingDirectory)/manifest - - - publish: $(System.DefaultWorkingDirectory)/manifest - artifact: manifest + # - task: AzureArtifacts.manifest-generator-task.manifest-generator-task.ManifestGeneratorTask@0 + # displayName: 'SBOM Generation' + # inputs: + # BuildDropPath: $(System.DefaultWorkingDirectory)/manifest + # + # - publish: $(System.DefaultWorkingDirectory)/manifest + # artifact: manifest - job: Lint