Skip to content

Commit ae8bba2

Browse files
committed
add docs param for set tag and edit note subnet
1 parent ca7cc9c commit ae8bba2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

SoftLayer/managers/network.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,13 +246,15 @@ def set_tags_subnet(self, subnet_id, tags):
246246
"""Tag a subnet by passing in one or more tags separated by a comma.
247247
248248
:param int subnet_id: The ID of the subnet.
249+
:param string tags: Comma separated list of tags.
249250
"""
250251
return self.subnet.setTags(tags, id=subnet_id)
251252

252253
def edit_note_subnet(self, subnet_id, note):
253254
"""Edit the note for this subnet.
254255
255256
:param int subnet_id: The ID of the subnet.
257+
:param string note: The note.
256258
"""
257259
return self.subnet.editNote(note, id=subnet_id)
258260

0 commit comments

Comments
 (0)