1
- /*
2
- Copyright (c) 2020-2024 VMware, Inc. All Rights Reserved.
3
-
4
- Licensed under the Apache License, Version 2.0 (the "License");
5
- you may not use this file except in compliance with the License.
6
- You may obtain a copy of the License at
7
-
8
- http://www.apache.org/licenses/LICENSE-2.0
9
-
10
- Unless required by applicable law or agreed to in writing, software
11
- distributed under the License is distributed on an "AS IS" BASIS,
12
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- See the License for the specific language governing permissions and
14
- limitations under the License.
15
- */
1
+ // © Broadcom. All Rights Reserved.
2
+ // The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.
3
+ // SPDX-License-Identifier: Apache-2.0
16
4
17
5
package policy
18
6
@@ -23,17 +11,18 @@ import (
23
11
24
12
"github.com/vmware/govmomi/cli"
25
13
"github.com/vmware/govmomi/cli/flags"
14
+ "github.com/vmware/govmomi/pbm"
26
15
"github.com/vmware/govmomi/pbm/types"
27
- vim "github.com/vmware/govmomi/vim25/types"
28
16
)
29
17
30
18
type create struct {
31
19
* flags.ClientFlag
32
20
33
- spec types. PbmCapabilityProfileCreateSpec
21
+ spec pbm. CapabilityProfileCreateSpec
34
22
tag string
35
23
cat string
36
24
zone bool
25
+ enc bool
37
26
}
38
27
39
28
func init () {
@@ -47,6 +36,7 @@ func (cmd *create) Register(ctx context.Context, f *flag.FlagSet) {
47
36
f .StringVar (& cmd .spec .Description , "d" , "" , "Description" )
48
37
f .StringVar (& cmd .tag , "tag" , "" , "Tag" )
49
38
f .StringVar (& cmd .cat , "category" , "" , "Category" )
39
+ f .BoolVar (& cmd .enc , "e" , false , "Enable encryption" )
50
40
f .BoolVar (& cmd .zone , "z" , false , "Enable Zonal topology for multi-zone Supervisor" )
51
41
}
52
42
@@ -69,70 +59,60 @@ func (cmd *create) Run(ctx context.Context, f *flag.FlagSet) error {
69
59
70
60
cmd .spec .Name = f .Arg (0 )
71
61
cmd .spec .Category = string (types .PbmProfileCategoryEnumREQUIREMENT )
72
- cmd .spec .ResourceType .ResourceType = string (types .PbmProfileResourceTypeEnumSTORAGE )
73
62
74
- if cmd .tag == "" && ! cmd .zone {
63
+ if cmd .tag == "" && ! cmd .zone && ! cmd . enc {
75
64
return flag .ErrHelp
76
65
}
77
66
78
- var profiles []types.PbmCapabilitySubProfile
79
-
80
67
if cmd .tag != "" {
81
- id := fmt .Sprintf ("com.vmware.storage.tag.%s.property" , cmd .cat )
82
- instance := types.PbmCapabilityInstance {
83
- Id : types.PbmCapabilityMetadataUniqueId {
84
- Namespace : "http://www.vmware.com/storage/tag" ,
85
- Id : cmd .cat ,
86
- },
87
- Constraint : []types.PbmCapabilityConstraintInstance {{
88
- PropertyInstance : []types.PbmCapabilityPropertyInstance {{
89
- Id : id ,
90
- Value : types.PbmCapabilityDiscreteSet {
91
- Values : []vim.AnyType {cmd .tag },
92
- },
93
- }},
68
+ cmd .spec .CapabilityList = append (cmd .spec .CapabilityList , pbm.Capability {
69
+ ID : cmd .cat ,
70
+ Namespace : "http://www.vmware.com/storage/tag" ,
71
+ PropertyList : []pbm.Property {{
72
+ ID : fmt .Sprintf ("com.vmware.storage.tag.%s.property" , cmd .cat ),
73
+ Value : cmd .tag ,
74
+ DataType : "set" ,
94
75
}},
95
- }
96
- profiles = append (profiles , types.PbmCapabilitySubProfile {
97
- Name : "Tag based placement" ,
98
- Capability : []types.PbmCapabilityInstance {instance },
99
76
})
100
77
}
101
78
102
79
if cmd .zone {
103
- instance := types.PbmCapabilityInstance {
104
- Id : types.PbmCapabilityMetadataUniqueId {
105
- Namespace : "com.vmware.storage.consumptiondomain" ,
106
- Id : "StorageTopology" ,
107
- },
108
- Constraint : []types.PbmCapabilityConstraintInstance {
109
- {
110
- PropertyInstance : []types.PbmCapabilityPropertyInstance {
111
- {
112
- Id : "StorageTopologyType" ,
113
- Operator : "" ,
114
- Value : "Zonal" ,
115
- },
116
- },
117
- },
118
- },
119
- }
120
- profiles = append (profiles , types.PbmCapabilitySubProfile {
121
- Name : "Consumption domain" ,
122
- Capability : []types.PbmCapabilityInstance {instance },
80
+ cmd .spec .CapabilityList = append (cmd .spec .CapabilityList , pbm.Capability {
81
+ ID : "StorageTopology" ,
82
+ Namespace : "com.vmware.storage.consumptiondomain" ,
83
+ PropertyList : []pbm.Property {{
84
+ ID : "StorageTopologyType" ,
85
+ Value : "Zonal" ,
86
+ DataType : "string" ,
87
+ }},
123
88
})
124
89
}
125
90
126
- cmd .spec .Constraints = & types.PbmCapabilitySubProfileConstraints {
127
- SubProfiles : profiles ,
91
+ if cmd .enc {
92
+ const encryptionCapabilityID = "ad5a249d-cbc2-43af-9366-694d7664fa52"
93
+
94
+ cmd .spec .CapabilityList = append (cmd .spec .CapabilityList , pbm.Capability {
95
+ ID : encryptionCapabilityID ,
96
+ Namespace : "com.vmware.storageprofile.dataservice" ,
97
+ PropertyList : []pbm.Property {{
98
+ ID : encryptionCapabilityID ,
99
+ Value : encryptionCapabilityID ,
100
+ DataType : "string" ,
101
+ }},
102
+ })
128
103
}
129
104
130
105
c , err := cmd .PbmClient ()
131
106
if err != nil {
132
107
return err
133
108
}
134
109
135
- pid , err := c .CreateProfile (ctx , cmd .spec )
110
+ spec , err := pbm .CreateCapabilityProfileSpec (cmd .spec )
111
+ if err != nil {
112
+ return err
113
+ }
114
+
115
+ pid , err := c .CreateProfile (ctx , * spec )
136
116
if err != nil {
137
117
return err
138
118
}
0 commit comments