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

PrivateEndpointConnectionsClient 接口

public interface PrivateEndpointConnectionsClient

此类的实例提供对 PrivateEndpointConnectionsClient 中定义的所有操作的访问权限。

方法摘要

修饰符和类型 方法和描述
abstract SyncPoller<PollResult<PrivateEndpointConnectionInner>,PrivateEndpointConnectionInner> beginPut(String resourceGroupName, String cacheName, String privateEndpointConnectionName, PrivateEndpointConnectionInner properties)

更新与 redis 缓存关联的指定专用终结点连接的状态。

abstract SyncPoller<PollResult<PrivateEndpointConnectionInner>,PrivateEndpointConnectionInner> beginPut(String resourceGroupName, String cacheName, String privateEndpointConnectionName, PrivateEndpointConnectionInner properties, Context context)

更新与 redis 缓存关联的指定专用终结点连接的状态。

abstract PollerFlux<PollResult<PrivateEndpointConnectionInner>,PrivateEndpointConnectionInner> beginPutAsync(String resourceGroupName, String cacheName, String privateEndpointConnectionName, PrivateEndpointConnectionInner properties)

更新与 redis 缓存关联的指定专用终结点连接的状态。

abstract void delete(String resourceGroupName, String cacheName, String privateEndpointConnectionName)

删除与 redis 缓存关联的指定专用终结点连接。

abstract Mono<Void> deleteAsync(String resourceGroupName, String cacheName, String privateEndpointConnectionName)

删除与 redis 缓存关联的指定专用终结点连接。

abstract Response<Void> deleteWithResponse(String resourceGroupName, String cacheName, String privateEndpointConnectionName, Context context)

删除与 redis 缓存关联的指定专用终结点连接。

abstract Mono<Response<Void>> deleteWithResponseAsync(String resourceGroupName, String cacheName, String privateEndpointConnectionName)

删除与 redis 缓存关联的指定专用终结点连接。

abstract PrivateEndpointConnectionInner get(String resourceGroupName, String cacheName, String privateEndpointConnectionName)

获取与 redis 缓存关联的指定专用终结点连接。

abstract Mono<PrivateEndpointConnectionInner> getAsync(String resourceGroupName, String cacheName, String privateEndpointConnectionName)

获取与 redis 缓存关联的指定专用终结点连接。

abstract Response<PrivateEndpointConnectionInner> getWithResponse(String resourceGroupName, String cacheName, String privateEndpointConnectionName, Context context)

获取与 redis 缓存关联的指定专用终结点连接。

abstract Mono<Response<PrivateEndpointConnectionInner>> getWithResponseAsync(String resourceGroupName, String cacheName, String privateEndpointConnectionName)

获取与 redis 缓存关联的指定专用终结点连接。

abstract PagedIterable<PrivateEndpointConnectionInner> list(String resourceGroupName, String cacheName)

列出与 redis 缓存关联的所有专用终结点连接。

abstract PagedIterable<PrivateEndpointConnectionInner> list(String resourceGroupName, String cacheName, Context context)

列出与 redis 缓存关联的所有专用终结点连接。

abstract PagedFlux<PrivateEndpointConnectionInner> listAsync(String resourceGroupName, String cacheName)

列出与 redis 缓存关联的所有专用终结点连接。

abstract PrivateEndpointConnectionInner put(String resourceGroupName, String cacheName, String privateEndpointConnectionName, PrivateEndpointConnectionInner properties)

更新与 redis 缓存关联的指定专用终结点连接的状态。

abstract PrivateEndpointConnectionInner put(String resourceGroupName, String cacheName, String privateEndpointConnectionName, PrivateEndpointConnectionInner properties, Context context)

更新与 redis 缓存关联的指定专用终结点连接的状态。

abstract Mono<PrivateEndpointConnectionInner> putAsync(String resourceGroupName, String cacheName, String privateEndpointConnectionName, PrivateEndpointConnectionInner properties)

更新与 redis 缓存关联的指定专用终结点连接的状态。

abstract Mono<Response<Flux<ByteBuffer>>> putWithResponseAsync(String resourceGroupName, String cacheName, String privateEndpointConnectionName, PrivateEndpointConnectionInner properties)

更新与 redis 缓存关联的指定专用终结点连接的状态。

方法详细信息

beginPut

public abstract SyncPoller,PrivateEndpointConnectionInner> beginPut(String resourceGroupName, String cacheName, String privateEndpointConnectionName, PrivateEndpointConnectionInner properties)

更新与 redis 缓存关联的指定专用终结点连接的状态。

Parameters:

resourceGroupName - 资源组的名称。 此名称不区分大小写。
cacheName - Redis 缓存的名称。
privateEndpointConnectionName - 与 Azure 资源关联的专用终结点连接的名称。
properties - 专用终结点连接属性。

Returns:

用于 SyncPoller<T,U> 轮询专用终结点连接资源的 。

beginPut

public abstract SyncPoller,PrivateEndpointConnectionInner> beginPut(String resourceGroupName, String cacheName, String privateEndpointConnectionName, PrivateEndpointConnectionInner properties, Context context)

更新与 redis 缓存关联的指定专用终结点连接的状态。

Parameters:

resourceGroupName - 资源组的名称。 此名称不区分大小写。
cacheName - Redis 缓存的名称。
privateEndpointConnectionName - 与 Azure 资源关联的专用终结点连接的名称。
properties - 专用终结点连接属性。
context - 要与此操作关联的上下文。

Returns:

用于 SyncPoller<T,U> 轮询专用终结点连接资源的 。

beginPutAsync

public abstract PollerFlux,PrivateEndpointConnectionInner> beginPutAsync(String resourceGroupName, String cacheName, String privateEndpointConnectionName, PrivateEndpointConnectionInner properties)

更新与 redis 缓存关联的指定专用终结点连接的状态。

Parameters:

resourceGroupName - 资源组的名称。 此名称不区分大小写。
cacheName - Redis 缓存的名称。
privateEndpointConnectionName - 与 Azure 资源关联的专用终结点连接的名称。
properties - 专用终结点连接属性。

Returns:

用于 PollerFlux<T,U> 轮询专用终结点连接资源的 。

delete

public abstract void delete(String resourceGroupName, String cacheName, String privateEndpointConnectionName)

删除与 redis 缓存关联的指定专用终结点连接。

Parameters:

resourceGroupName - 资源组的名称。 此名称不区分大小写。
cacheName - Redis 缓存的名称。
privateEndpointConnectionName - 与 Azure 资源关联的专用终结点连接的名称。

deleteAsync

public abstract Mono deleteAsync(String resourceGroupName, String cacheName, String privateEndpointConnectionName)

删除与 redis 缓存关联的指定专用终结点连接。

Parameters:

resourceGroupName - 资源组的名称。 此名称不区分大小写。
cacheName - Redis 缓存的名称。
privateEndpointConnectionName - 与 Azure 资源关联的专用终结点连接的名称。

Returns:

Mono 收到成功响应时完成的 。

deleteWithResponse

public abstract Response deleteWithResponse(String resourceGroupName, String cacheName, String privateEndpointConnectionName, Context context)

删除与 redis 缓存关联的指定专用终结点连接。

Parameters:

resourceGroupName - 资源组的名称。 此名称不区分大小写。
cacheName - Redis 缓存的名称。
privateEndpointConnectionName - 与 Azure 资源关联的专用终结点连接的名称。
context - 要与此操作关联的上下文。

Returns:

deleteWithResponseAsync

public abstract Mono> deleteWithResponseAsync(String resourceGroupName, String cacheName, String privateEndpointConnectionName)

删除与 redis 缓存关联的指定专用终结点连接。

Parameters:

resourceGroupName - 资源组的名称。 此名称不区分大小写。
cacheName - Redis 缓存的名称。
privateEndpointConnectionName - 与 Azure 资源关联的专用终结点连接的名称。

Returns:

Response<T>成功完成 时为 Mono

get

public abstract PrivateEndpointConnectionInner get(String resourceGroupName, String cacheName, String privateEndpointConnectionName)

获取与 redis 缓存关联的指定专用终结点连接。

Parameters:

resourceGroupName - 资源组的名称。 此名称不区分大小写。
cacheName - Redis 缓存的名称。
privateEndpointConnectionName - 与 Azure 资源关联的专用终结点连接的名称。

Returns:

与 redis 缓存关联的指定专用终结点连接。

getAsync

public abstract Mono getAsync(String resourceGroupName, String cacheName, String privateEndpointConnectionName)

获取与 redis 缓存关联的指定专用终结点连接。

Parameters:

resourceGroupName - 资源组的名称。 此名称不区分大小写。
cacheName - Redis 缓存的名称。
privateEndpointConnectionName - 与 Azure 资源关联的专用终结点连接的名称。

Returns:

成功完成 Mono时与 redis 缓存关联的指定专用终结点连接。

getWithResponse

public abstract Response getWithResponse(String resourceGroupName, String cacheName, String privateEndpointConnectionName, Context context)

获取与 redis 缓存关联的指定专用终结点连接。

Parameters:

resourceGroupName - 资源组的名称。 此名称不区分大小写。
cacheName - Redis 缓存的名称。
privateEndpointConnectionName - 与 Azure 资源关联的专用终结点连接的名称。
context - 要与此操作关联的上下文。

Returns:

与 redis 缓存关联的指定专用终结点连接以及 Response<T>

getWithResponseAsync

public abstract Mono> getWithResponseAsync(String resourceGroupName, String cacheName, String privateEndpointConnectionName)

获取与 redis 缓存关联的指定专用终结点连接。

Parameters:

resourceGroupName - 资源组的名称。 此名称不区分大小写。
cacheName - Redis 缓存的名称。
privateEndpointConnectionName - 与 Azure 资源关联的专用终结点连接的名称。

Returns:

与 redis 缓存关联的指定专用终结点连接,以及Response<T>成功完成 时。Mono

list

public abstract PagedIterable list(String resourceGroupName, String cacheName)

列出与 redis 缓存关联的所有专用终结点连接。

Parameters:

resourceGroupName - 资源组的名称。 此名称不区分大小写。
cacheName - Redis 缓存的名称。

Returns:

与指定存储帐户关联的专用终结点连接列表,作为使用 PagedIterable<T>的分页响应。

list

public abstract PagedIterable list(String resourceGroupName, String cacheName, Context context)

列出与 redis 缓存关联的所有专用终结点连接。

Parameters:

resourceGroupName - 资源组的名称。 此名称不区分大小写。
cacheName - Redis 缓存的名称。
context - 要与此操作关联的上下文。

Returns:

与指定存储帐户关联的专用终结点连接列表,作为使用 PagedIterable<T>的分页响应。

listAsync

public abstract PagedFlux listAsync(String resourceGroupName, String cacheName)

列出与 redis 缓存关联的所有专用终结点连接。

Parameters:

resourceGroupName - 资源组的名称。 此名称不区分大小写。
cacheName - Redis 缓存的名称。

Returns:

与指定存储帐户关联的专用终结点连接列表,作为使用 PagedFlux<T>的分页响应。

put

public abstract PrivateEndpointConnectionInner put(String resourceGroupName, String cacheName, String privateEndpointConnectionName, PrivateEndpointConnectionInner properties)

更新与 redis 缓存关联的指定专用终结点连接的状态。

Parameters:

resourceGroupName - 资源组的名称。 此名称不区分大小写。
cacheName - Redis 缓存的名称。
privateEndpointConnectionName - 与 Azure 资源关联的专用终结点连接的名称。
properties - 专用终结点连接属性。

Returns:

专用终结点连接资源。

put

public abstract PrivateEndpointConnectionInner put(String resourceGroupName, String cacheName, String privateEndpointConnectionName, PrivateEndpointConnectionInner properties, Context context)

更新与 redis 缓存关联的指定专用终结点连接的状态。

Parameters:

resourceGroupName - 资源组的名称。 此名称不区分大小写。
cacheName - Redis 缓存的名称。
privateEndpointConnectionName - 与 Azure 资源关联的专用终结点连接的名称。
properties - 专用终结点连接属性。
context - 要与此操作关联的上下文。

Returns:

专用终结点连接资源。

putAsync

public abstract Mono putAsync(String resourceGroupName, String cacheName, String privateEndpointConnectionName, PrivateEndpointConnectionInner properties)

更新与 redis 缓存关联的指定专用终结点连接的状态。

Parameters:

resourceGroupName - 资源组的名称。 此名称不区分大小写。
cacheName - Redis 缓存的名称。
privateEndpointConnectionName - 与 Azure 资源关联的专用终结点连接的名称。
properties - 专用终结点连接属性。

Returns:

成功完成 Mono后,专用终结点连接资源。

putWithResponseAsync

public abstract Mono>> putWithResponseAsync(String resourceGroupName, String cacheName, String privateEndpointConnectionName, PrivateEndpointConnectionInner properties)

更新与 redis 缓存关联的指定专用终结点连接的状态。

Parameters:

resourceGroupName - 资源组的名称。 此名称不区分大小写。
cacheName - Redis 缓存的名称。
privateEndpointConnectionName - 与 Azure 资源关联的专用终结点连接的名称。
properties - 专用终结点连接属性。

Returns:

专用终结点连接资源以及 Response<T> 成功完成时。Mono

适用于