Skip to content

Commit e71822e

Browse files
authored
refreshing sdk for intersight version 1.0.11-20250926100535174 (#202)
1 parent 1555b11 commit e71822e

File tree

285 files changed

+31155
-1121
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

285 files changed

+31155
-1121
lines changed

GettingStarted.md

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,10 @@ PS C:\> Get-Module
4040
4141
ModuleType Version PreRelease Name ExportedCommands
4242
---------- ------- ---------- ---- ----------------
43-
Binary 1.0.9.3978 Intersight.PowerShell {Get-IntersightAaaAuditRecord, Get-IntersightAccessPolicy, Get…
44-
Manifest 7.0.0.0 Microsoft.PowerShell.Management {Add-Content, Clear-Content, Clear-Item, Clear-ItemProperty…}
43+
Binary 1.0.11.2025081401 Intersight.PowerShell {Get-IntersightAaaAuditRecord, Get...}
44+
Manifest 7.0.0.0 Microsoft.PowerShell.Management {Add-Content, Clear-Content, Clear-Item}
4545
Manifest 7.0.0.0 Microsoft.PowerShell.Utility {Add-Member, Add-Type, Clear-Variable, Compare-Object…}
46-
Script 2.1.0 PSReadLine {Get-PSReadLineKeyHandler, Get-PSReadLineOption, Remove-PSRead…
47-
46+
Script 2.1.0 PSReadLine {Get-PSReadLineKeyHandler, Get-PSReadLineOption}
4847
```
4948
User can place the module in the directory listed in ```$env:PSModulePath``` or the path of Intersight.PowerShell can be added in ```$env:PSModulePath``` to import the module by name.
5049

@@ -62,10 +61,12 @@ To expore the other supported cmdlet parameter like ```KeyPassPhrase```, ```Prox
6261

6362
### Authenticate the user
6463
Intersight.PowerShell supports only HttpSigning Auth. The API key can be supplied through either a file path or as a string.
64+
65+
**Note** : If your account is provisioned on the **EMEA cluster**, you must use the URL `eu-central-1.intersight.com` instead of `intersight.com`
6566
#### Provide API Key file path.
6667
```powershell
6768
$onprem = @{
68-
BasePath = "https://intersight.com"
69+
BasePath = "https://intersight.com" # or 'eu-central-1.intersight.com' if your account is in EMEA cluster
6970
ApiKeyId = "xxxxx27564612d30dxxxxx/5f21c9d97564612d30dd575a/5f9a8b877564612xxxxxxxx"
7071
ApiKeyFilePath = "C:\\secrectKey.txt"
7172
HttpSigningHeader = @("(request-target)", "Host", "Date", "Digest")
@@ -89,7 +90,7 @@ SignatureValidityPeriod : 0
8990

9091
```powershell
9192
$onprem = @{
92-
BasePath = "https://intersight.com"
93+
BasePath = "https://intersight.com" # or 'eu-central-1.intersight.com' if your account is in EMEA cluster
9394
ApiKeyId = "xxxxx27564612d30dxxxxx/5f21c9d97564612d30dd575a/5f9a8b877564612xxxxxxxx"
9495
ApiKeyString = "-----BEGIN RSA PRIVATE KEY-----XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-----END RSA PRIVATE KEY-----"
9596
HttpSigningHeader = @("(request-target)", "Host", "Date", "Digest")
@@ -170,7 +171,7 @@ DisplayNames :
170171
```
171172

172173
## Create the Policy Under PSOrg organization
173-
### Create Ntp Policy
174+
### Create NTP Policy
174175
The cmdlet ```New-IntersightNtpPolicy``` is used to create the Ntp Policy. To refer Organization we are using ```$newOrg``` variable where we have
175176
created the organization in previous example.
176177
``` powershell
@@ -231,11 +232,11 @@ DisplayNames :
231232
```
232233

233234
### create KVM policy under PSOrg organization
234-
The cmdlet ```New-IntersightKvmPolicy``` is used to create the Kvm Policy. To refer Organization we are using ```$newOrg``` variable where we have
235+
The cmdlet ```New-IntersightKvmPolicy``` is used to create the KVM Policy. To refer Organization we are using ```$newOrg``` variable where we have
235236
created the organization in previous example.
236237

237238
```powershell
238-
PS C:\> $kvmPolicy = New-IntersightKvmPolicy -Name PSKvm -Description "Kvm policy for PSOrg" -EnableVideoEncryption $true -EnableLocalServerVideo $true -Enabled $true -MaximumSessions 2 -Organization $newOrg
239+
PS C:\> $kvmPolicy = New-IntersightKvmPolicy -Name PSKvm -Description "KVM policy for PSOrg" -EnableVideoEncryption $true -EnableLocalServerVideo $true -Enabled $true -MaximumSessions 2 -Organization $newOrg
239240
PS C:\> $kvmPolicy
240241
241242
ClassId : KvmPolicy
@@ -295,17 +296,17 @@ DisplayNames :
295296

296297
### Get-IntersightNtpPolicy
297298
---
298-
It returns the list of availabe ntp policy in the intersight cloud.
299+
It returns the list of available NTP policy in the intersight cloud.
299300
```powershell
300301
PS C:\> $ntpPolicyList = Get-IntersightNtpPolicy
301302
PS C:\> $ntpPolicyList.Count
302303
15
303304
```
304-
```$ntpPolicyList ``` contains the list of ntp policy, showing only the count of ntp policy to avoid the huge list.
305+
```$ntpPolicyList ``` contains the list of ntp policy, showing only the count of NTP policy to avoid the huge list.
305306

306307
### Get-intersightNtpPolicy -Name <Name of the policy>
307308
---
308-
It returns the ntp policy named "PSNtp"
309+
It returns the NTP policy named "PSNtp"
309310

310311
**_NOTE_** A maximum of 10,000 objects can be retrieved by Get cmdlets in a single invocation
311312

@@ -366,14 +367,14 @@ DisplayNames :
366367
367368
```
368369

369-
### Get ntp Policies under the Organization named PSOrg
370+
### Get NTP Policies under the Organization named PSOrg
370371
---
371372
```powershell
372373
PS C:\> $ntpPolicyList = Get-IntersightOrganizationOrganization -Name PSOrg | Get-IntersightNtpPolicy
373374
374375
```
375376

376-
### Get ntp policy based on query parameter inlineCount
377+
### Get NTP policy based on query parameter inlineCount
377378
Get cmdlets support all the query parameter specified in Intersight OpenAPI document.
378379

379380
```powershell
@@ -387,8 +388,8 @@ Count Results
387388
388389
```
389390
---
390-
## update the existing MO
391-
### Update the ntp policy -NtpServers with "33.33.33.33" and "10.10.10.10"
391+
## update the existing NTP Policy
392+
### Update the NTP policy -NtpServers with "33.33.33.33" and "10.10.10.10"
392393
Here we refer the PSNtp policy what we have already created in previous example.
393394
```powershell
394395
@@ -449,7 +450,7 @@ DisplayNames :
449450
```
450451
---
451452

452-
## Delete the Mo
453+
## Delete the NTP policy
453454
We have already created one Ntp policy and Kvm policy, now we delete it.
454455

455456
```powershell

0 commit comments

Comments
 (0)