#[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) -> &[String]
pub fn hub_content_search_keywords(&self) -> &[String]
The searchable keywords of the hub content.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .hub_content_search_keywords.is_none()
.
Any tags associated with the hub content.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
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 for ImportHubContentInput
impl PartialEq for ImportHubContentInput
impl StructuralPartialEq for ImportHubContentInput
Auto Trait Implementations§
impl Freeze for ImportHubContentInput
impl RefUnwindSafe for ImportHubContentInput
impl Send for ImportHubContentInput
impl Sync for ImportHubContentInput
impl Unpin for ImportHubContentInput
impl UnwindSafe for ImportHubContentInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more