Convert to reduced list of known types (#50010)

This commit is contained in:
Dag Wieers 2018-12-18 22:25:30 +01:00 committed by Jordan Borean
commit 05c6ff79f9
908 changed files with 4822 additions and 4821 deletions

View file

@ -66,42 +66,42 @@ RETURN = '''
image_id:
description: AMI id
returned: when Launch Configuration was found
type: string
type: str
sample: "ami-0d75df7e"
user_data:
description: User data used to start instance
returned: when Launch Configuration was found
type: string
type: str
sample: "ZXhwb3J0IENMT1VE"
name:
description: Name of the Launch Configuration
returned: when Launch Configuration was found
type: string
type: str
sample: "myapp-v123"
arn:
description: Name of the AMI
returned: when Launch Configuration was found
type: string
type: str
sample: "arn:aws:autoscaling:eu-west-1:12345:launchConfiguration:d82f050e-e315:launchConfigurationName/yourproject"
instance_type:
description: Type of ec2 instance
returned: when Launch Configuration was found
type: string
type: str
sample: "t2.small"
created_time:
description: When it was created
returned: when Launch Configuration was found
type: string
type: str
sample: "2016-06-29T14:59:22.222000+00:00"
ebs_optimized:
description: Launch Configuration EBS optimized property
returned: when Launch Configuration was found
type: boolean
type: bool
sample: False
instance_monitoring:
description: Launch Configuration instance monitoring property
returned: when Launch Configuration was found
type: string
type: str
sample: {"Enabled": false}
classic_link_vpc_security_groups:
description: Launch Configuration classic link vpc security groups property
@ -116,7 +116,7 @@ block_device_mappings:
keyname:
description: Launch Configuration ssh key
returned: when Launch Configuration was found
type: string
type: str
sample: mykey
security_groups:
description: Launch Configuration security groups
@ -126,17 +126,17 @@ security_groups:
kernel_id:
description: Launch Configuration kernel to use
returned: when Launch Configuration was found
type: string
type: str
sample: ''
ram_disk_id:
description: Launch Configuration ram disk property
returned: when Launch Configuration was found
type: string
type: str
sample: ''
associate_public_address:
description: Assign public address or not
returned: when Launch Configuration was found
type: boolean
type: bool
sample: True
...
'''