Skip to content

ConfigMapProps

Properties for defining a ConfigMap.

See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-sae-configmap

Initializer

using AlibabaCloud.SDK.ROS.CDK.Sae;
new ConfigMapProps {
    object Data,
    object Name,
    object NamespaceId,
    object Description = null
};

Properties

Name Type Description
Data object Property data: Configmap key value pairs of data, json format.The format is as follows: {"k1":"v1", "k2":"v2"} K means key, V represents value.For more information about configuration items, see management and use of configuration items.
Name object Property name: The name of the config map.
NamespaceId object Property namespaceId: The ID of the namespace to which this config map instance belongs.
Description object Property description: Describe information, do not enter the space without more than 255 characters.

DataRequired

public object Data { get; set; }
  • Type: object

Property data: Configmap key value pairs of data, json format.The format is as follows: {"k1":"v1", "k2":"v2"} K means key, V represents value.For more information about configuration items, see management and use of configuration items.


NameRequired

public object Name { get; set; }
  • Type: object

Property name: The name of the config map.


NamespaceIdRequired

public object NamespaceId { get; set; }
  • Type: object

Property namespaceId: The ID of the namespace to which this config map instance belongs.


DescriptionOptional

public object Description { get; set; }
  • Type: object

Property description: Describe information, do not enter the space without more than 255 characters.