@alicloud/ros-cdk-ecs 1.0.13 → 1.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5159,6 +5159,75 @@ export declare namespace RosPrefixList {
5159
5159
  readonly cidr: string | ros.IResolvable;
5160
5160
  }
5161
5161
  }
5162
+ /**
5163
+ * Properties for defining a `ALIYUN::ECS::RamRoleAttachment`
5164
+ */
5165
+ export interface RosRamRoleAttachmentProps {
5166
+ /**
5167
+ * @Property instanceIds: The instance id that needs to be granted the ram role.
5168
+ */
5169
+ readonly instanceIds: Array<string | ros.IResolvable> | ros.IResolvable;
5170
+ /**
5171
+ * @Property ramRoleName: The ram role name.
5172
+ */
5173
+ readonly ramRoleName: string | ros.IResolvable;
5174
+ /**
5175
+ * @Property policy: When granting the instance RAM role to one or more ECS instances, you can specify an additional permission policy to further limit the permissions of the RAM role.
5176
+ * The length is 1~1024 characters.
5177
+ */
5178
+ readonly policy?: string | ros.IResolvable;
5179
+ }
5180
+ /**
5181
+ * A ROS template type: `ALIYUN::ECS::RamRoleAttachment`
5182
+ */
5183
+ export declare class RosRamRoleAttachment extends ros.RosResource {
5184
+ /**
5185
+ * The resource type name for this resource class.
5186
+ */
5187
+ static readonly ROS_RESOURCE_TYPE_NAME = "ALIYUN::ECS::RamRoleAttachment";
5188
+ /**
5189
+ * A factory method that creates a new instance of this class from an object
5190
+ * containing the properties of this ROS resource.
5191
+ */
5192
+ /**
5193
+ * @Attribute InstanceIds: The list of ecs instance id
5194
+ */
5195
+ readonly attrInstanceIds: ros.IResolvable;
5196
+ /**
5197
+ * @Attribute RamRoleName: The ram role name.
5198
+ */
5199
+ readonly attrRamRoleName: ros.IResolvable;
5200
+ enableResourcePropertyConstraint: boolean;
5201
+ /**
5202
+ * @Property instanceIds: The instance id that needs to be granted the ram role.
5203
+ */
5204
+ instanceIds: Array<string | ros.IResolvable> | ros.IResolvable;
5205
+ /**
5206
+ * @Property ramRoleName: The ram role name.
5207
+ */
5208
+ ramRoleName: string | ros.IResolvable;
5209
+ /**
5210
+ * @Property policy: When granting the instance RAM role to one or more ECS instances, you can specify an additional permission policy to further limit the permissions of the RAM role.
5211
+ * The length is 1~1024 characters.
5212
+ */
5213
+ policy: string | ros.IResolvable | undefined;
5214
+ /**
5215
+ * Create a new `ALIYUN::ECS::RamRoleAttachment`.
5216
+ *
5217
+ * @param scope - scope in which this resource is defined
5218
+ * @param id - scoped id of the resource
5219
+ * @param props - resource properties
5220
+ */
5221
+ constructor(scope: ros.Construct, id: string, props: RosRamRoleAttachmentProps, enableResourcePropertyConstraint: boolean);
5222
+ protected get rosProperties(): {
5223
+ [key: string]: any;
5224
+ };
5225
+ protected renderProperties(props: {
5226
+ [key: string]: any;
5227
+ }): {
5228
+ [key: string]: any;
5229
+ };
5230
+ }
5162
5231
  /**
5163
5232
  * Properties for defining a `ALIYUN::ECS::Route`
5164
5233
  */
@@ -5317,6 +5386,10 @@ export interface RosRunCommandProps {
5317
5386
  readonly parameters?: {
5318
5387
  [key: string]: (any | ros.IResolvable);
5319
5388
  } | ros.IResolvable;
5389
+ /**
5390
+ * @Property runAgainOn: The stage of executing the command again.
5391
+ */
5392
+ readonly runAgainOn?: Array<string | ros.IResolvable> | ros.IResolvable;
5320
5393
  /**
5321
5394
  * @Property sync: Whether to invoke synchronously.
5322
5395
  */
@@ -5434,6 +5507,10 @@ export declare class RosRunCommand extends ros.RosResource {
5434
5507
  parameters: {
5435
5508
  [key: string]: (any | ros.IResolvable);
5436
5509
  } | ros.IResolvable | undefined;
5510
+ /**
5511
+ * @Property runAgainOn: The stage of executing the command again.
5512
+ */
5513
+ runAgainOn: Array<string | ros.IResolvable> | ros.IResolvable | undefined;
5437
5514
  /**
5438
5515
  * @Property sync: Whether to invoke synchronously.
5439
5516
  */