AmlTokenConfiguration 클래스
AzureML 토큰 ID 구성.
- 상속
-
azure.ai.ml.entities._credentials._BaseIdentityConfigurationAmlTokenConfiguration
생성자
AmlTokenConfiguration()
예제
명령에 대한 AmlTokenConfiguration 구성().
from azure.ai.ml import Input, command
from azure.ai.ml.constants import AssetTypes
from azure.ai.ml.entities._credentials import AmlTokenConfiguration
node = command(
description="description",
environment="AzureML-sklearn-1.0-ubuntu20.04-py38-cpu:33",
code="./tests/test_configs/training/",
command="python read_data.py --input_data ${{inputs.input_data}}",
inputs={"input_data": Input(type=AssetTypes.MLTABLE, path="./sample_data")},
display_name="builder_command_job",
compute="testCompute",
experiment_name="mfe-test1-dataset",
identity=AmlTokenConfiguration(),
)
메서드
get | |
has_key | |
items | |
keys | |
update | |
values |
get
get(key: Any, default: Any | None = None) -> Any
매개 변수
Name | Description |
---|---|
key
필수
|
|
default
|
기본값: None
|
has_key
has_key(k: Any) -> bool
매개 변수
Name | Description |
---|---|
k
필수
|
|
items
items() -> list
keys
keys() -> list
update
update(*args: Any, **kwargs: Any) -> None
values
values() -> list
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for Python