@@ -25,7 +25,9 @@ class NetworkStorageGroup < ModelBase
2525 sl_attr :modified , 'modifyDate'
2626
2727 ##
28- # The SoftLayer_Account which owns this group.
28+ # Retrieve the SoftLayer_Account which owns this group.
29+ # :call-seq:
30+ # account(force_update=false)
2931 sl_dynamic_attr :account do |resource |
3032 resource . should_update? do
3133 #only retrieved once per instance
@@ -39,7 +41,9 @@ class NetworkStorageGroup < ModelBase
3941 end
4042
4143 ##
42- # The allowed hosts list for this group.
44+ # Retrieve the allowed hosts list for this group.
45+ # :call-seq:
46+ # allowed_hosts(force_update=false)
4347 sl_dynamic_attr :allowed_hosts do |resource |
4448 resource . should_update? do
4549 #only retrieved once per instance
@@ -53,7 +57,9 @@ class NetworkStorageGroup < ModelBase
5357 end
5458
5559 ##
56- # The network storage volumes this group is attached to.
60+ # Retrieve the network storage volumes this group is attached to.
61+ # :call-seq:
62+ # attached_volumes(force_update=false)
5763 sl_dynamic_attr :attached_volumes do |resource |
5864 resource . should_update? do
5965 #only retrieved once per instance
@@ -67,7 +73,9 @@ class NetworkStorageGroup < ModelBase
6773 end
6874
6975 ##
70- # The IP address for for SoftLayer_Network_Storage_Allowed_Host objects within this group.
76+ # Retrieve the IP address for for SoftLayer_Network_Storage_Allowed_Host objects within this group.
77+ # :call-seq:
78+ # ip_address(force_update=false)
7179 sl_dynamic_attr :ip_address do |resource |
7280 resource . should_update? do
7381 #only retrieved once per instance
@@ -81,7 +89,10 @@ class NetworkStorageGroup < ModelBase
8189 end
8290
8391 ##
84- # The description of the SoftLayer_Network_Storage_OS_Type Operating System designation that this group was created for.
92+ # Retrieve the description of the SoftLayer_Network_Storage_OS_Type
93+ # Operating System designation that this group was created for.
94+ # :call-seq:
95+ # os_description(force_update=false)
8596 sl_dynamic_attr :os_description do |resource |
8697 resource . should_update? do
8798 #only retrieved once per instance
@@ -95,7 +106,10 @@ class NetworkStorageGroup < ModelBase
95106 end
96107
97108 ##
98- # The name of the SoftLayer_Network_Storage_OS_Type Operating System designation that this group was created for.
109+ # Retrieve the name of the SoftLayer_Network_Storage_OS_Type
110+ # Operating System designation that this group was created for.
111+ # :call-seq:
112+ # os_name(force_update=false)
99113 sl_dynamic_attr :os_name do |resource |
100114 resource . should_update? do
101115 #only retrieved once per instance
@@ -109,7 +123,9 @@ class NetworkStorageGroup < ModelBase
109123 end
110124
111125 ##
112- # The network resource this group is created on.
126+ # Retrieve the network resource this group is created on.
127+ # :call-seq:
128+ # service_resource(force_update=false)
113129 sl_dynamic_attr :service_resource do |resource |
114130 resource . should_update? do
115131 #only retrieved once per instance
@@ -123,7 +139,9 @@ class NetworkStorageGroup < ModelBase
123139 end
124140
125141 ##
126- # The name of the SoftLayer_Network_Storage_Group_Type which describes this group.
142+ # Retrieve the name of the SoftLayer_Network_Storage_Group_Type which describes this group.
143+ # :call-seq:
144+ # type(force_update=false)
127145 sl_dynamic_attr :type do |resource |
128146 resource . should_update? do
129147 #only retrieved once per instance
0 commit comments