NetworkSettings 클래스
컴퓨팅 리소스에 대한 네트워크 설정입니다.
- 상속
-
builtins.objectNetworkSettings
생성자
NetworkSettings(*, vnet_name: str | None = None, subnet: str | None = None, **kwargs: Any)
매개 변수
Name | Description |
---|---|
vnet_name
필수
|
가상 네트워크 이름입니다. |
subnet
필수
|
서브넷 이름. |
키워드 전용 매개 변수
Name | Description |
---|---|
vnet_name
필수
|
|
subnet
필수
|
|
예제
AmlCompute 개체에 대한 NetworkSettings 구성
from azure.ai.ml.entities import (
AmlCompute,
IdentityConfiguration,
ManagedIdentityConfiguration,
NetworkSettings,
)
aml_compute = AmlCompute(
name="my-compute",
min_instances=0,
max_instances=10,
idle_time_before_scale_down=100,
network_settings=NetworkSettings(vnet_name="my-vnet", subnet="default"),
)
특성
private_ip_address
public_ip_address
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for Python