|
| 1 | +--- |
| 2 | +external help file: Intersight.PowerShell.dll-Help.xml |
| 3 | +Module Name: Intersight.PowerShell |
| 4 | +online version: |
| 5 | +schema: 2.0.0 |
| 6 | +--- |
| 7 | + |
| 8 | +# Get-IntersightCapabilityStorageControllersMetaData |
| 9 | + |
| 10 | +## SYNOPSIS |
| 11 | +Get the CapabilityStorageControllersMetaData |
| 12 | + |
| 13 | +## SYNTAX |
| 14 | + |
| 15 | +### CmdletParam (Default) |
| 16 | +``` |
| 17 | +Get-IntersightCapabilityStorageControllersMetaData [-Name <String>] [-Organization <OrganizationOrganizationRelationship>] |
| 18 | + [<CommonParameters>] |
| 19 | +``` |
| 20 | + |
| 21 | +### QueryParam |
| 22 | +``` |
| 23 | +Get-IntersightCapabilityStorageControllersMetaData [-Count <Boolean>] [-InlineCount <String>] [-Select <String>] [-Filter <String>] |
| 24 | + [-Expand <String>] [-Skip <Int32>] [-Top <Int32>] [-At <String>] [-Orderby <String>] [-Apply <String>] |
| 25 | + [-Tag <String>] [<CommonParameters>] |
| 26 | +``` |
| 27 | +## DESCRIPTION |
| 28 | +Read a 'CapabilityStorageControllersMetaData' resource., |
| 29 | + |
| 30 | +Note :- The output returns by the ParameterSet "QueryParam" cannot be piped to the New or Set cmdlet. |
| 31 | +Note :- The output returns by the ParameterSet "QueryParam" cannot be piped to the New or Set cmdlet. |
| 32 | + |
| 33 | +## EXAMPLES |
| 34 | + |
| 35 | +### Example 1 |
| 36 | +```powershell |
| 37 | +PS C:\> $result = Get-IntersightCapabilityStorageControllersMetaData |
| 38 | +``` |
| 39 | +Above example returns the list of CapabilityStorageControllersMetaData. |
| 40 | + |
| 41 | +### Example 2 |
| 42 | +```powershell |
| 43 | +PS C:\> $result = Get-IntersightCapabilityStorageControllersMetaData -Name "MoName" |
| 44 | +``` |
| 45 | +Above example returns the CapabilityStorageControllersMetaData matched with name. |
| 46 | + |
| 47 | +### Example 3 |
| 48 | +```powershell |
| 49 | +PS C:\> $result = Get-IntersightCapabilityStorageControllersMetaData -Organization $organization |
| 50 | +``` |
| 51 | +Above example returns the list of CapabilityStorageControllersMetaData available under the $organization . |
| 52 | + |
| 53 | +### Example 4 |
| 54 | +```powershell |
| 55 | +PS C:\> $result = Get-IntersightCapabilityStorageControllersMetaData -InlineCount allpages |
| 56 | +``` |
| 57 | +Above example returns the list of CapabilityStorageControllersMetaData along with count. |
| 58 | + |
| 59 | +## PARAMETERS |
| 60 | + |
| 61 | +### -Apply |
| 62 | +Specify one or more transformation operations to perform aggregation on the resources. The transformations are processed in order with the output from a |
| 63 | +transformation being used as input for the subsequent transformation. The ""$apply"" query takes a sequence of set transformations, separated by forward slashes |
| 64 | +to express that they are consecutively applied, i.e. the result of each transformation is the input to the next transformation. Supported aggregation methods are |
| 65 | +""aggregate"" and ""groupby"". The **aggregate** transformation takes a comma-separated list of one or more aggregate expressions as parameters and returns a |
| 66 | +result set with a single instance, representing the aggregated value for all instances in the input set. The **groupby** transformation takes one or two |
| 67 | +parameters and 1. Splits the initial set into subsets where all instances in a subset have the same values for the grouping properties specified in the first |
| 68 | +parameter, 2. Applies set transformations to each subset according to the second parameter, resulting in a new set of potentially different structure and |
| 69 | +cardinality, 3. Ensures that the instances in the result set contain all grouping properties with the correct values for the group, 4. Concatenates the |
| 70 | +intermediate result sets into one result set. A groupby transformation affects the structure of the result set. |
| 71 | + |
| 72 | +```yaml |
| 73 | +Type: String |
| 74 | +Parameter Sets: QueryParam |
| 75 | +Aliases: |
| 76 | + |
| 77 | +Required: False |
| 78 | +Position: Named |
| 79 | +Default value: None |
| 80 | +Accept pipeline input: False |
| 81 | +Accept wildcard characters: False |
| 82 | +``` |
| 83 | +
|
| 84 | +### -At |
| 85 | +Similar to ""$filter"", but ""at"" is specifically used to filter versioning information properties for resources to return. A URI with an ""at"" Query Option |
| 86 | +identifies a subset of the Entries from the Collection of Entries identified by the Resource Path section of the URI. The subset is determined by selecting only |
| 87 | +the Entries that satisfy the predicate expression specified by the query option. The expression language that is used in at operators supports references to |
| 88 | +properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false) or any of the additional literal |
| 89 | +representations shown in the Abstract Type System section. |
| 90 | +
|
| 91 | +```yaml |
| 92 | +Type: String |
| 93 | +Parameter Sets: QueryParam |
| 94 | +Aliases: |
| 95 | + |
| 96 | +Required: False |
| 97 | +Position: Named |
| 98 | +Default value: None |
| 99 | +Accept pipeline input: False |
| 100 | +Accept wildcard characters: False |
| 101 | +``` |
| 102 | +
|
| 103 | +### -Count |
| 104 | +The $count query specifies the service should return the count of the matching resources, instead of returning the resources. |
| 105 | +
|
| 106 | +```yaml |
| 107 | +Type: Boolean |
| 108 | +Parameter Sets: QueryParam |
| 109 | +Aliases: |
| 110 | + |
| 111 | +Required: False |
| 112 | +Position: Named |
| 113 | +Default value: None |
| 114 | +Accept pipeline input: False |
| 115 | +Accept wildcard characters: False |
| 116 | +``` |
| 117 | +
|
| 118 | +### -Expand |
| 119 | +Specify additional attributes or related resources to return in addition to the primary resources. |
| 120 | +
|
| 121 | +```yaml |
| 122 | +Type: String |
| 123 | +Parameter Sets: QueryParam |
| 124 | +Aliases: |
| 125 | + |
| 126 | +Required: False |
| 127 | +Position: Named |
| 128 | +Default value: None |
| 129 | +Accept pipeline input: False |
| 130 | +Accept wildcard characters: False |
| 131 | +``` |
| 132 | +
|
| 133 | +### -Filter |
| 134 | +Filter criteria for the resources to return. A URI with a $filter query option identifies a subset of the entries from the Collection of Entries. The subset is |
| 135 | +determined by selecting only the Entries that satisfy the predicate expression specified by the $filter option. The expression language that is used in $filter |
| 136 | +queries supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false). |
| 137 | +
|
| 138 | +```yaml |
| 139 | +Type: String |
| 140 | +Parameter Sets: QueryParam |
| 141 | +Aliases: |
| 142 | + |
| 143 | +Required: False |
| 144 | +Position: Named |
| 145 | +Default value: None |
| 146 | +Accept pipeline input: False |
| 147 | +Accept wildcard characters: False |
| 148 | +``` |
| 149 | +
|
| 150 | +### -InlineCount |
| 151 | +The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response. |
| 152 | +
|
| 153 | +```yaml |
| 154 | +Type: String |
| 155 | +Parameter Sets: QueryParam |
| 156 | +Aliases: |
| 157 | +Accepted values: allpages, none |
| 158 | + |
| 159 | +Required: False |
| 160 | +Position: Named |
| 161 | +Default value: None |
| 162 | +Accept pipeline input: False |
| 163 | +Accept wildcard characters: False |
| 164 | +``` |
| 165 | +
|
| 166 | +### -Name |
| 167 | +Specifies the name of the CapabilityStorageControllersMetaData. |
| 168 | +
|
| 169 | +```yaml |
| 170 | +Type: String |
| 171 | +Parameter Sets: CmdletParam |
| 172 | +Aliases: |
| 173 | + |
| 174 | +Required: False |
| 175 | +Position: Named |
| 176 | +Default value: None |
| 177 | +Accept pipeline input: False |
| 178 | +Accept wildcard characters: False |
| 179 | +``` |
| 180 | +
|
| 181 | +### -Orderby |
| 182 | +Determines what properties are used to sort the collection of resources. |
| 183 | +
|
| 184 | +```yaml |
| 185 | +Type: String |
| 186 | +Parameter Sets: QueryParam |
| 187 | +Aliases: |
| 188 | + |
| 189 | +Required: False |
| 190 | +Position: Named |
| 191 | +Default value: None |
| 192 | +Accept pipeline input: False |
| 193 | +Accept wildcard characters: False |
| 194 | +``` |
| 195 | +
|
| 196 | +### -Organization |
| 197 | +Specifies the organization, to fetch the CapabilityStorageControllersMetaData under it. |
| 198 | +
|
| 199 | +```yaml |
| 200 | +Type: OrganizationOrganizationRelationship |
| 201 | +Parameter Sets: CmdletParam |
| 202 | +Aliases: |
| 203 | + |
| 204 | +Required: False |
| 205 | +Position: Named |
| 206 | +Default value: None |
| 207 | +Accept pipeline input: True (ByPropertyName, ByValue) |
| 208 | +Accept wildcard characters: False |
| 209 | +``` |
| 210 | +
|
| 211 | +### -Select |
| 212 | +Specifies a subset of properties to return. |
| 213 | +
|
| 214 | +```yaml |
| 215 | +Type: String |
| 216 | +Parameter Sets: QueryParam |
| 217 | +Aliases: |
| 218 | + |
| 219 | +Required: False |
| 220 | +Position: Named |
| 221 | +Default value: None |
| 222 | +Accept pipeline input: False |
| 223 | +Accept wildcard characters: False |
| 224 | +``` |
| 225 | +
|
| 226 | +### -Skip |
| 227 | +Ignores the specified number of objects and then gets the remaining objects. |
| 228 | +Enter the number of objects to skip. |
| 229 | +
|
| 230 | +```yaml |
| 231 | +Type: Int32 |
| 232 | +Parameter Sets: QueryParam |
| 233 | +Aliases: |
| 234 | + |
| 235 | +Required: False |
| 236 | +Position: Named |
| 237 | +Default value: None |
| 238 | +Accept pipeline input: False |
| 239 | +Accept wildcard characters: False |
| 240 | +``` |
| 241 | +
|
| 242 | +### -Tag |
| 243 | +The 'tags' parameter is used to request a summary of the Tag utilization for this resource. When the 'tags' parameter is specified, the response provides a list |
| 244 | +of tag keys, the number of times the key has been used across all documents, and the tag values that have been assigned to the tag key. |
| 245 | +
|
| 246 | +```yaml |
| 247 | +Type: String |
| 248 | +Parameter Sets: QueryParam |
| 249 | +Aliases: |
| 250 | + |
| 251 | +Required: False |
| 252 | +Position: Named |
| 253 | +Default value: None |
| 254 | +Accept pipeline input: False |
| 255 | +Accept wildcard characters: False |
| 256 | +``` |
| 257 | +
|
| 258 | +### -Top |
| 259 | +Specifies the maximum number of resources to return in the response. |
| 260 | +
|
| 261 | +```yaml |
| 262 | +Type: Int32 |
| 263 | +Parameter Sets: QueryParam |
| 264 | +Aliases: |
| 265 | + |
| 266 | +Required: False |
| 267 | +Position: Named |
| 268 | +Default value: None |
| 269 | +Accept pipeline input: False |
| 270 | +Accept wildcard characters: False |
| 271 | +``` |
| 272 | +
|
| 273 | +### CommonParameters |
| 274 | +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). |
| 275 | +
|
| 276 | +## INPUTS |
| 277 | +
|
| 278 | +### Intersight.Model.OrganizationOrganizationRelationship |
| 279 | +
|
| 280 | +## OUTPUTS |
| 281 | +
|
| 282 | +### System.Object |
| 283 | +## NOTES |
| 284 | +
|
| 285 | +## RELATED LINKS |
| 286 | +
|
0 commit comments