FqdnDestination Class
Class representing a FQDN outbound rule.
Creating a FqdnDestination outbound rule object.
from azure.ai.ml.entities import FqdnDestination
# Example FQDN rule
pypirule = FqdnDestination(name="rulename", destination="pypi.org")
- Inheritance
-
azure.ai.ml.entities._workspace.networking.OutboundRuleFqdnDestination
Constructor
FqdnDestination(*, name: str, destination: str, **kwargs: Any)
Parameters
Name | Description |
---|---|
name
Required
|
Name of the outbound rule. |
destination
Required
|
Fully qualified domain name to which outbound connections are allowed. For example: "xxxxxx.contoso.com". |
Keyword-Only Parameters
Name | Description |
---|---|
name
Required
|
|
destination
Required
|
|
Variables
Name | Description |
---|---|
type
|
Type of the outbound rule. Set to "FQDN" for this class. |
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for Python