Interface VirtualNetworkGatewayConnections

All Superinterfaces:
HasParent<VirtualNetworkGateway>, SupportsCreating<VirtualNetworkGatewayConnection.DefinitionStages.Blank>, SupportsDeletingById, SupportsDeletingByName, SupportsGettingById<VirtualNetworkGatewayConnection>, SupportsGettingByName<VirtualNetworkGatewayConnection>, SupportsListing<VirtualNetworkGatewayConnection>

Entry point for virtual network gateway connections management API in Azure.
  • Method Details

    • getSharedKeyById

      String getSharedKeyById(String id)
      Gets the shared key of the virtual network gateway connection by resource ID.
      Parameters:
      id - the resource ID.
      Returns:
      the shared key.
    • getSharedKeyByIdAsync

      Mono<String> getSharedKeyByIdAsync(String id)
      Gets the shared key of the virtual network gateway connection by resource ID.
      Parameters:
      id - the resource ID.
      Returns:
      A Mono that emits the found resource asynchronously.
    • setSharedKeyById

      String setSharedKeyById(String id, String sharedKey)
      Sets the shared key of the virtual network gateway connection.
      Parameters:
      id - the resource ID.
      sharedKey - the shared key.
      Returns:
      the shared key.
    • setSharedKeyByIdAsync

      Mono<String> setSharedKeyByIdAsync(String id, String sharedKey)
      Sets the shared key of the virtual network gateway connection.
      Parameters:
      id - the resource ID.
      sharedKey - the shared key.
      Returns:
      A Mono that emits the found resource asynchronously.
    • setSharedKeyByName

      String setSharedKeyByName(String name, String sharedKey)
      Sets the shared key of the virtual network gateway connection.
      Parameters:
      name - the resource name.
      sharedKey - the shared key.
      Returns:
      the shared key.
    • setSharedKeyByNameAsync

      Mono<String> setSharedKeyByNameAsync(String name, String sharedKey)
      Sets the shared key of the virtual network gateway connection.
      Parameters:
      name - the resource name.
      sharedKey - the shared key.
      Returns:
      A Mono that emits the found resource asynchronously.