Interface ImportHubContentRequest.Builder

    • Method Detail

      • hubContentName

        ImportHubContentRequest.Builder hubContentName​(String hubContentName)

        The name of the hub content to import.

        Parameters:
        hubContentName - The name of the hub content to import.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • hubContentVersion

        ImportHubContentRequest.Builder hubContentVersion​(String hubContentVersion)

        The version of the hub content to import.

        Parameters:
        hubContentVersion - The version of the hub content to import.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • documentSchemaVersion

        ImportHubContentRequest.Builder documentSchemaVersion​(String documentSchemaVersion)

        The version of the hub content schema to import.

        Parameters:
        documentSchemaVersion - The version of the hub content schema to import.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • hubName

        ImportHubContentRequest.Builder hubName​(String hubName)

        The name of the hub to import content into.

        Parameters:
        hubName - The name of the hub to import content into.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • hubContentDisplayName

        ImportHubContentRequest.Builder hubContentDisplayName​(String hubContentDisplayName)

        The display name of the hub content to import.

        Parameters:
        hubContentDisplayName - The display name of the hub content to import.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • hubContentDescription

        ImportHubContentRequest.Builder hubContentDescription​(String hubContentDescription)

        A description of the hub content to import.

        Parameters:
        hubContentDescription - A description of the hub content to import.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • hubContentMarkdown

        ImportHubContentRequest.Builder hubContentMarkdown​(String hubContentMarkdown)

        A string that provides a description of the hub content. This string can include links, tables, and standard markdown formating.

        Parameters:
        hubContentMarkdown - A string that provides a description of the hub content. This string can include links, tables, and standard markdown formating.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • hubContentDocument

        ImportHubContentRequest.Builder hubContentDocument​(String hubContentDocument)

        The hub content document that describes information about the hub content such as type, associated containers, scripts, and more.

        Parameters:
        hubContentDocument - The hub content document that describes information about the hub content such as type, associated containers, scripts, and more.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • hubContentSearchKeywords

        ImportHubContentRequest.Builder hubContentSearchKeywords​(Collection<String> hubContentSearchKeywords)

        The searchable keywords of the hub content.

        Parameters:
        hubContentSearchKeywords - The searchable keywords of the hub content.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • hubContentSearchKeywords

        ImportHubContentRequest.Builder hubContentSearchKeywords​(String... hubContentSearchKeywords)

        The searchable keywords of the hub content.

        Parameters:
        hubContentSearchKeywords - The searchable keywords of the hub content.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        ImportHubContentRequest.Builder tags​(Collection<Tag> tags)

        Any tags associated with the hub content.

        Parameters:
        tags - Any tags associated with the hub content.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        ImportHubContentRequest.Builder tags​(Tag... tags)

        Any tags associated with the hub content.

        Parameters:
        tags - Any tags associated with the hub content.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        ImportHubContentRequest.Builder tags​(Consumer<Tag.Builder>... tags)

        Any tags associated with the hub content.

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

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #tags(List).

        Parameters:
        tags - a consumer that will call methods on Tag.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #tags(java.util.Collection)