ภาษา

ContainerAppManagedEnvironmentResource.Get Method

Definition

Overloads

Name Description
Get(CancellationToken)

Get the properties of a Managed Environment used to host container apps.

  • Request Path. : /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}.
  • Operation Id. : ManagedEnvironments_Get.
  • Default Api Version. : 2026-07-01.
  • Resource. : ContainerAppManagedEnvironmentResource.
Get(String, CancellationToken)

Gets the details of a private link resource supported by a managed environment.

  • Request Path. : /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/privateLinkResources/{privateLinkResourceName}.
  • Operation Id. : ManagedEnvironmentPrivateLinkResources_Get.
  • Default Api Version. : 2026-07-01.
  • Resource. : ContainerAppManagedEnvironmentResource.

Get(CancellationToken)

Source:
ContainerAppManagedEnvironmentResource.cs
Source:
ContainerAppManagedEnvironmentResource.cs

Get the properties of a Managed Environment used to host container apps.

  • Request Path. : /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}.
  • Operation Id. : ManagedEnvironments_Get.
  • Default Api Version. : 2026-07-01.
  • Resource. : ContainerAppManagedEnvironmentResource.
public virtual Azure.Response<Azure.ResourceManager.AppContainers.ContainerAppManagedEnvironmentResource> Get(System.Threading.CancellationToken cancellationToken = default);
abstract member Get : System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.AppContainers.ContainerAppManagedEnvironmentResource>
override this.Get : System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.AppContainers.ContainerAppManagedEnvironmentResource>
Public Overridable Function Get (Optional cancellationToken As CancellationToken = Nothing) As Response(Of ContainerAppManagedEnvironmentResource)

Parameters

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Applies to

Get(String, CancellationToken)

Source:
ContainerAppManagedEnvironmentResource.cs

Gets the details of a private link resource supported by a managed environment.

  • Request Path. : /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/privateLinkResources/{privateLinkResourceName}.
  • Operation Id. : ManagedEnvironmentPrivateLinkResources_Get.
  • Default Api Version. : 2026-07-01.
  • Resource. : ContainerAppManagedEnvironmentResource.
public virtual Azure.Response<Azure.ResourceManager.AppContainers.Models.ContainerAppPrivateLink> Get(string privateLinkResourceName, System.Threading.CancellationToken cancellationToken = default);
abstract member Get : string * System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.AppContainers.Models.ContainerAppPrivateLink>
override this.Get : string * System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.AppContainers.Models.ContainerAppPrivateLink>
Public Overridable Function Get (privateLinkResourceName As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of ContainerAppPrivateLink)

Parameters

privateLinkResourceName
String

The name of the private link associated with the Azure resource.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

privateLinkResourceName is null.

privateLinkResourceName is an empty string, and was expected to be non-empty.

Applies to