[][src]Struct google_cloudprivatecatalogproducer1_beta1::GoogleCloudPrivatecatalogproducerV1beta1Product

pub struct GoogleCloudPrivatecatalogproducerV1beta1Product {
    pub asset_type: Option<String>,
    pub update_time: Option<String>,
    pub icon_uri: Option<String>,
    pub name: Option<String>,
    pub display_metadata: Option<HashMap<String, String>>,
    pub create_time: Option<String>,
}

The producer representation of a product which is a child resource of Catalog with display metadata and a list of Version resources.

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

asset_type: Option<String>

Required. The type of the product asset, which cannot be changed after the product is created. It supports the values google.deploymentmanager.Template and google.cloudprivatecatalog.ListingOnly. Other values will be rejected by the server. Read only after creation.

The following fields or resource types have different validation rules under each asset_type values:

  • Product.display_metadata has different validation schema for each asset type value. See its comment for details.
  • Version resource isn't allowed to be added under the google.cloudprivatecatalog.ListingOnly type.
update_time: Option<String>

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

icon_uri: Option<String>

Output only. The public accessible URI of the icon uploaded by PrivateCatalogProducer.UploadIcon.

If no icon is uploaded, it will be the default icon's URI.

name: Option<String>

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

A unique identifier for the product under a catalog, which cannot be changed after the product is created. The final segment of the name must between 1 and 256 characters in length.

display_metadata: Option<HashMap<String, String>>

The user-supplied display metadata to describe the product. The JSON schema of the metadata differs by Product.asset_type. When the type is google.deploymentmanager.Template, the schema is as follows:

"$schema": http://json-schema.org/draft-04/schema#
type: object
properties:
  name:
    type: string
    minLength: 1
    maxLength: 64
  description:
    type: string
    minLength: 1
    maxLength: 2048
  tagline:
    type: string
    minLength: 1
    maxLength: 100
  support_info:
    type: string
    minLength: 1
    maxLength: 2048
  creator:
    type: string
    minLength: 1
    maxLength: 100
  documentation:
    type: array
    items:
      type: object
      properties:
        url:
          type: string
          pattern:
          "^(https?)://[-a-zA-Z0-9+&@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&@#/%=~_|]"
        title:
          type: string
          minLength: 1
          maxLength: 64
        description:
          type: string
          minLength: 1
          maxLength: 2048
required:
- name
- description
additionalProperties: false
 

When the asset type is google.cloudprivatecatalog.ListingOnly, the schema is as follows:

"$schema": http://json-schema.org/draft-04/schema#
type: object
properties:
  name:
    type: string
    minLength: 1
    maxLength: 64
  description:
    type: string
    minLength: 1
    maxLength: 2048
  tagline:
    type: string
    minLength: 1
    maxLength: 100
  support_info:
    type: string
    minLength: 1
    maxLength: 2048
  creator:
    type: string
    minLength: 1
    maxLength: 100
  documentation:
    type: array
    items:
      type: object
      properties:
        url:
          type: string
          pattern:
          "^(https?)://[-a-zA-Z0-9+&@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&@#/%=~_|]"
        title:
          type: string
          minLength: 1
          maxLength: 64
        description:
          type: string
          minLength: 1
          maxLength: 2048
  signup_url:
    type: string
    pattern:
    "^(https?)://[-a-zA-Z0-9+&@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&@#/%=~_|]"
required:
- name
- description
- signup_url
additionalProperties: false
create_time: Option<String>

Output only. The time when the product was created.

Trait Implementations

impl ResponseResult for GoogleCloudPrivatecatalogproducerV1beta1Product[src]

impl RequestValue for GoogleCloudPrivatecatalogproducerV1beta1Product[src]

impl Default for GoogleCloudPrivatecatalogproducerV1beta1Product[src]

impl Clone for GoogleCloudPrivatecatalogproducerV1beta1Product[src]

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

Performs copy-assignment from source. Read more

impl Debug for GoogleCloudPrivatecatalogproducerV1beta1Product[src]

impl Serialize for GoogleCloudPrivatecatalogproducerV1beta1Product[src]

impl<'de> Deserialize<'de> for GoogleCloudPrivatecatalogproducerV1beta1Product[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]