[][src]Struct google_cloudprivatecatalogproducer1_beta1::GoogleCloudPrivatecatalogproducerV1beta1Version

pub struct GoogleCloudPrivatecatalogproducerV1beta1Version {
    pub update_time: Option<String>,
    pub description: Option<String>,
    pub name: Option<String>,
    pub create_time: Option<String>,
    pub original_asset: Option<HashMap<String, String>>,
    pub asset: Option<HashMap<String, String>>,
}

The producer representation of a version, which is a child resource under a Product with asset data.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

update_time: Option<String>

Output only. The time when the version was last updated.

description: Option<String>

The user-supplied description of the version. Maximum of 256 characters.

name: Option<String>

Required. The resource name of the version, in the format `catalogs/{catalog_id}/products/{product_id}/versions/a-z*[a-z0-9]'.

A unique identifier for the version under a product, which can't be changed after the version is created. The final segment of the name must between 1 and 63 characters in length.

create_time: Option<String>

Output only. The time when the version was created.

original_asset: Option<HashMap<String, String>>

The user-supplied asset payload. The maximum size of the payload is 2MB. The JSON schema of the payload is defined as:

type: object
properties:
  mainTemplate:
    type: string
    description: The file name of the main template and name prefix of
    schema file. The content of the main template should be set in the
    imports list. The schema file name is expected to be
    <mainTemplate>.schema in the imports list. required: true
  imports:
    type: array
    description: Import template and schema file contents. Required to have
    both <mainTemplate> and <mainTemplate>.schema files. required: true
    minItems: 2
    items:
      type: object
      properties:
        name:
          type: string
        content:
          type: string
asset: Option<HashMap<String, String>>

Output only. The asset which has been validated and is ready to be provisioned. See Version.original_asset for the schema.

Trait Implementations

impl ResponseResult for GoogleCloudPrivatecatalogproducerV1beta1Version[src]

impl RequestValue for GoogleCloudPrivatecatalogproducerV1beta1Version[src]

impl Default for GoogleCloudPrivatecatalogproducerV1beta1Version[src]

impl Clone for GoogleCloudPrivatecatalogproducerV1beta1Version[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for GoogleCloudPrivatecatalogproducerV1beta1Version[src]

impl Serialize for GoogleCloudPrivatecatalogproducerV1beta1Version[src]

impl<'de> Deserialize<'de> for GoogleCloudPrivatecatalogproducerV1beta1Version[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]