你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

IDefinition 接口

定义

整个虚拟网络定义。

public interface IDefinition : Microsoft.Azure.Management.Network.Fluent.Network.Definition.IBlank, Microsoft.Azure.Management.Network.Fluent.Network.Definition.IWithCreateAndSubnet, Microsoft.Azure.Management.Network.Fluent.Network.Definition.IWithGroup, Microsoft.Azure.Management.ResourceManager.Fluent.Core.GroupableResource.Definition.IWithCreatableResourceGroup<Microsoft.Azure.Management.Network.Fluent.Network.Definition.IWithCreate>, Microsoft.Azure.Management.ResourceManager.Fluent.Core.GroupableResource.Definition.IWithExistingResourceGroup<Microsoft.Azure.Management.Network.Fluent.Network.Definition.IWithCreate>, Microsoft.Azure.Management.ResourceManager.Fluent.Core.GroupableResource.Definition.IWithGroup<Microsoft.Azure.Management.Network.Fluent.Network.Definition.IWithCreate>, Microsoft.Azure.Management.ResourceManager.Fluent.Core.GroupableResource.Definition.IWithNewResourceGroup<Microsoft.Azure.Management.Network.Fluent.Network.Definition.IWithCreate>, Microsoft.Azure.Management.ResourceManager.Fluent.Core.Resource.Definition.IDefinitionWithRegion<Microsoft.Azure.Management.Network.Fluent.Network.Definition.IWithGroup>, Microsoft.Azure.Management.ResourceManager.Fluent.Core.Resource.Definition.IDefinitionWithTags<Microsoft.Azure.Management.Network.Fluent.Network.Definition.IWithCreate>, Microsoft.Azure.Management.ResourceManager.Fluent.Core.ResourceActions.ICreatable<Microsoft.Azure.Management.Network.Fluent.INetwork>
type IDefinition = interface
    interface IBlank
    interface IDefinitionWithRegion<IWithGroup>
    interface IWithGroup
    interface IWithGroup<IWithCreate>
    interface IWithExistingResourceGroup<IWithCreate>
    interface IWithNewResourceGroup<IWithCreate>
    interface IWithCreatableResourceGroup<IWithCreate>
    interface IWithSubnet
    interface IWithCreate
    interface ICreatable<INetwork>
    interface IIndexable
    interface IDefinitionWithTags<IWithCreate>
    interface IWithDdosProtectionPlan
    interface IWithVmProtection
    interface IWithCreateAndSubnet
Public Interface IDefinition
Implements IBlank, ICreatable(Of INetwork), IDefinitionWithRegion(Of IWithGroup), IDefinitionWithTags(Of IWithCreate), IWithCreatableResourceGroup(Of IWithCreate), IWithCreateAndSubnet, IWithExistingResourceGroup(Of IWithCreate), IWithGroup, IWithGroup(Of IWithCreate), IWithNewResourceGroup(Of IWithCreate)
实现

属性

Key

整个虚拟网络定义。

(继承自 IIndexable)
Name

获取可创建资源的名称。

(继承自 ICreatable<T>)

方法

Create()

执行创建请求。

(继承自 ICreatable<T>)
CreateAsync(CancellationToken, Boolean)

将请求放入队列,并允许 HTTP 客户端在系统资源可用时执行该请求。

(继承自 ICreatable<T>)
DefineSubnet(String)

开始定义要添加到虚拟网络的新子网。 定义必须通过调用 Subnet.DefinitionStages.WithAttach.attach () 来完成。

(继承自 IWithSubnet)
WithAddressSpace(String)

将地址空间显式添加到虚拟网络。 如果未显式指定地址空间,则会将 CIDR 为“10.0.0.0/16”的默认地址空间分配给虚拟网络。 请注意,此方法的效果是累加的,即每次使用时,都会向网络添加新的地址空间。 此方法不会检查冲突或与其他地址空间重叠。 如果存在冲突,则在创建网络时可能会引发云异常。

(继承自 IWithCreate)
WithDnsServer(String)

指定要与虚拟网络关联的现有 DNS 服务器的 IP 地址。 请注意,此方法的效果是累加的,即每次使用它时,都会向网络添加新的 dns 服务器。

(继承自 IWithCreate)
WithExistingDdosProtectionPlan(String)

将现有 DDoS 防护计划与虚拟网络相关联。

(继承自 IWithDdosProtectionPlan)
WithExistingResourceGroup(IResourceGroup)

将资源与现有资源组相关联。

(继承自 IWithExistingResourceGroup<T>)
WithExistingResourceGroup(String)

将资源与现有资源组相关联。

(继承自 IWithExistingResourceGroup<T>)
WithNewDdosProtectionPlan()

在虚拟网络所在的同一区域和组中创建新的 DDoS 防护计划,并将其与资源相关联。 DDoS 保护计划的内部名称将派生自资源的名称。

(继承自 IWithDdosProtectionPlan)
WithNewResourceGroup()

整个虚拟网络定义。

(继承自 IWithNewResourceGroup<T>)
WithNewResourceGroup(ICreatable<IResourceGroup>)

根据指定的定义创建一个新的资源组来放置资源。

(继承自 IWithCreatableResourceGroup<T>)
WithNewResourceGroup(String)

整个虚拟网络定义。

(继承自 IWithNewResourceGroup<T>)
WithRegion(Region)

指定资源的区域。

(继承自 IDefinitionWithRegion<T>)
WithRegion(String)

按名称指定资源的区域。

(继承自 IDefinitionWithRegion<T>)
WithSubnet(String, String)

将子网显式添加到虚拟网络。 如果未显式指定子网,则将创建一个名为“subnet1”的默认子网,覆盖整个第一个地址空间。 请注意,此方法的效果是累加的,即每次使用时,都会向网络添加新子网。

(继承自 IWithSubnet)
WithSubnets(IDictionary<String,String>)

根据提供的映射显式定义虚拟网络中的子网。

(继承自 IWithSubnet)
WithTag(String, String)

将标记添加到资源。

(继承自 IDefinitionWithTags<T>)
WithTags(IDictionary<String,String>)

将资源的标记指定为 {@link Map}。

(继承自 IDefinitionWithTags<T>)
WithVmProtection()

为虚拟网络中的所有子网启用 VM 保护。

(继承自 IWithVmProtection)

适用于