#[non_exhaustive]pub struct ImportHubContentInput {
pub hub_content_name: Option<String>,
pub hub_content_version: Option<String>,
pub hub_content_type: Option<HubContentType>,
pub document_schema_version: Option<String>,
pub hub_name: Option<String>,
pub hub_content_display_name: Option<String>,
pub hub_content_description: Option<String>,
pub hub_content_markdown: Option<String>,
pub hub_content_document: Option<String>,
pub hub_content_search_keywords: Option<Vec<String>>,
pub tags: Option<Vec<Tag>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.hub_content_name: Option<String>
The name of the hub content to import.
hub_content_version: Option<String>
The version of the hub content to import.
hub_content_type: Option<HubContentType>
The type of hub content to import.
document_schema_version: Option<String>
The version of the hub content schema to import.
hub_name: Option<String>
The name of the hub to import content into.
hub_content_display_name: Option<String>
The display name of the hub content to import.
hub_content_description: Option<String>
A description of the hub content to import.
hub_content_markdown: Option<String>
A string that provides a description of the hub content. This string can include links, tables, and standard markdown formating.
hub_content_document: Option<String>
The hub content document that describes information about the hub content such as type, associated containers, scripts, and more.
hub_content_search_keywords: Option<Vec<String>>
The searchable keywords of the hub content.
Any tags associated with the hub content.
Implementations§
source§impl ImportHubContentInput
impl ImportHubContentInput
sourcepub fn hub_content_name(&self) -> Option<&str>
pub fn hub_content_name(&self) -> Option<&str>
The name of the hub content to import.
sourcepub fn hub_content_version(&self) -> Option<&str>
pub fn hub_content_version(&self) -> Option<&str>
The version of the hub content to import.
sourcepub fn hub_content_type(&self) -> Option<&HubContentType>
pub fn hub_content_type(&self) -> Option<&HubContentType>
The type of hub content to import.
sourcepub fn document_schema_version(&self) -> Option<&str>
pub fn document_schema_version(&self) -> Option<&str>
The version of the hub content schema to import.
sourcepub fn hub_content_display_name(&self) -> Option<&str>
pub fn hub_content_display_name(&self) -> Option<&str>
The display name of the hub content to import.
sourcepub fn hub_content_description(&self) -> Option<&str>
pub fn hub_content_description(&self) -> Option<&str>
A description of the hub content to import.
sourcepub fn hub_content_markdown(&self) -> Option<&str>
pub fn hub_content_markdown(&self) -> Option<&str>
A string that provides a description of the hub content. This string can include links, tables, and standard markdown formating.
sourcepub fn hub_content_document(&self) -> Option<&str>
pub fn hub_content_document(&self) -> Option<&str>
The hub content document that describes information about the hub content such as type, associated containers, scripts, and more.
sourcepub fn hub_content_search_keywords(&self) -> Option<&[String]>
pub fn hub_content_search_keywords(&self) -> Option<&[String]>
The searchable keywords of the hub content.
Any tags associated with the hub content.
source§impl ImportHubContentInput
impl ImportHubContentInput
sourcepub fn builder() -> ImportHubContentInputBuilder
pub fn builder() -> ImportHubContentInputBuilder
Creates a new builder-style object to manufacture ImportHubContentInput
.
Trait Implementations§
source§impl Clone for ImportHubContentInput
impl Clone for ImportHubContentInput
source§fn clone(&self) -> ImportHubContentInput
fn clone(&self) -> ImportHubContentInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ImportHubContentInput
impl Debug for ImportHubContentInput
source§impl PartialEq<ImportHubContentInput> for ImportHubContentInput
impl PartialEq<ImportHubContentInput> for ImportHubContentInput
source§fn eq(&self, other: &ImportHubContentInput) -> bool
fn eq(&self, other: &ImportHubContentInput) -> bool
self
and other
values to be equal, and is used
by ==
.