@@ -34,33 +34,29 @@ class RemoveTagsFromResourceRequest(object):
3434 """
3535 swagger_types = {
3636 'all' : 'bool' ,
37- 'instance_id' : 'str' ,
3837 'instance_ids' : 'list[str]' ,
3938 'tag_keys' : 'list[str]'
4039 }
4140
4241 attribute_map = {
4342 'all' : 'All' ,
44- 'instance_id' : 'InstanceId' ,
4543 'instance_ids' : 'InstanceIds' ,
4644 'tag_keys' : 'TagKeys'
4745 }
4846
49- def __init__ (self , all = None , instance_id = None , instance_ids = None , tag_keys = None , _configuration = None ): # noqa: E501
47+ def __init__ (self , all = None , instance_ids = None , tag_keys = None , _configuration = None ): # noqa: E501
5048 """RemoveTagsFromResourceRequest - a model defined in Swagger""" # noqa: E501
5149 if _configuration is None :
5250 _configuration = Configuration ()
5351 self ._configuration = _configuration
5452
5553 self ._all = None
56- self ._instance_id = None
5754 self ._instance_ids = None
5855 self ._tag_keys = None
5956 self .discriminator = None
6057
6158 if all is not None :
6259 self .all = all
63- self .instance_id = instance_id
6460 if instance_ids is not None :
6561 self .instance_ids = instance_ids
6662 if tag_keys is not None :
@@ -87,29 +83,6 @@ def all(self, all):
8783
8884 self ._all = all
8985
90- @property
91- def instance_id (self ):
92- """Gets the instance_id of this RemoveTagsFromResourceRequest. # noqa: E501
93-
94-
95- :return: The instance_id of this RemoveTagsFromResourceRequest. # noqa: E501
96- :rtype: str
97- """
98- return self ._instance_id
99-
100- @instance_id .setter
101- def instance_id (self , instance_id ):
102- """Sets the instance_id of this RemoveTagsFromResourceRequest.
103-
104-
105- :param instance_id: The instance_id of this RemoveTagsFromResourceRequest. # noqa: E501
106- :type: str
107- """
108- if self ._configuration .client_side_validation and instance_id is None :
109- raise ValueError ("Invalid value for `instance_id`, must not be `None`" ) # noqa: E501
110-
111- self ._instance_id = instance_id
112-
11386 @property
11487 def instance_ids (self ):
11588 """Gets the instance_ids of this RemoveTagsFromResourceRequest. # noqa: E501
0 commit comments