ComputeExtensions.GetSshPublicKeys Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetSshPublicKeys(ResourceGroupResource) |
Gets a collection of SshPublicKeyResources in the ResourceGroupResource. MockingTo mock this method, please mock GetSshPublicKeys() instead. |
GetSshPublicKeys(SubscriptionResource, CancellationToken) |
Lists all of the SSH public keys in the subscription. Use the nextLink property in the response to get the next page of SSH public keys.
|
GetSshPublicKeys(ResourceGroupResource)
- Source:
- ComputeExtensions.cs
- Source:
- ComputeExtensions.cs
Gets a collection of SshPublicKeyResources in the ResourceGroupResource. MockingTo mock this method, please mock GetSshPublicKeys() instead.
public static Azure.ResourceManager.Compute.SshPublicKeyCollection GetSshPublicKeys (this Azure.ResourceManager.Resources.ResourceGroupResource resourceGroupResource);
static member GetSshPublicKeys : Azure.ResourceManager.Resources.ResourceGroupResource -> Azure.ResourceManager.Compute.SshPublicKeyCollection
<Extension()>
Public Function GetSshPublicKeys (resourceGroupResource As ResourceGroupResource) As SshPublicKeyCollection
Parameters
- resourceGroupResource
- ResourceGroupResource
The ResourceGroupResource instance the method will execute against.
Returns
An object representing collection of SshPublicKeyResources and their operations over a SshPublicKeyResource.
Exceptions
resourceGroupResource
is null.
Applies to
GetSshPublicKeys(SubscriptionResource, CancellationToken)
- Source:
- ComputeExtensions.cs
- Source:
- ComputeExtensions.cs
Lists all of the SSH public keys in the subscription. Use the nextLink property in the response to get the next page of SSH public keys.
- Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.Compute/sshPublicKeys
- Operation Id: SshPublicKeys_ListBySubscription
- Default Api Version: 2024-07-01
- Resource: SshPublicKeyResource
public static Azure.Pageable<Azure.ResourceManager.Compute.SshPublicKeyResource> GetSshPublicKeys (this Azure.ResourceManager.Resources.SubscriptionResource subscriptionResource, System.Threading.CancellationToken cancellationToken = default);
static member GetSshPublicKeys : Azure.ResourceManager.Resources.SubscriptionResource * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Compute.SshPublicKeyResource>
<Extension()>
Public Function GetSshPublicKeys (subscriptionResource As SubscriptionResource, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of SshPublicKeyResource)
Parameters
- subscriptionResource
- SubscriptionResource
The SubscriptionResource instance the method will execute against.
- cancellationToken
- CancellationToken
The cancellation token to use.
Returns
A collection of SshPublicKeyResource that may take multiple service requests to iterate over.
Exceptions
subscriptionResource
is null.
Applies to
Azure SDK for .NET