Interface ActionSet.Builder

  • Method Details

    • allActions

      ActionSet.Builder allActions(Unit allActions)

      Authorizes all available support actions.

      Parameters:
      allActions - Authorizes all available support actions.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • allActions

      default ActionSet.Builder allActions(Consumer<Unit.Builder> allActions)

      Authorizes all available support actions.

      This is a convenience method that creates an instance of the Unit.Builder avoiding the need to create one manually via Unit.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to allActions(Unit).

      Parameters:
      allActions - a consumer that will call methods on Unit.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • actions

      ActionSet.Builder actions(Collection<String> actions)

      A list of specific support actions to authorize. Maximum of 10 actions.

      Parameters:
      actions - A list of specific support actions to authorize. Maximum of 10 actions.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • actions

      ActionSet.Builder actions(String... actions)

      A list of specific support actions to authorize. Maximum of 10 actions.

      Parameters:
      actions - A list of specific support actions to authorize. Maximum of 10 actions.
      Returns:
      Returns a reference to this object so that method calls can be chained together.