@@ -103,6 +103,15 @@ def __init__(self, ssl_certs):
103103 self ._meta_data ['required_creation_parameters' ].update (
104104 ('name' , 'sourcePath' ))
105105
106+ def modify (self , ** kwargs ):
107+ '''Modify is not supported for iFiles
108+
109+ :raises: UnsupportedOperation
110+ '''
111+ raise UnsupportedMethod (
112+ "%s does not support the update method" % self .__class__ .__name__
113+ )
114+
106115
107116class Ssl_Crls (Collection ):
108117 def __init__ (self , File ):
@@ -120,6 +129,15 @@ def __init__(self, ssl_crls):
120129 self ._meta_data ['required_creation_parameters' ].update (
121130 ('name' , 'sourcePath' ))
122131
132+ def modify (self , ** kwargs ):
133+ '''Modify is not supported for iFiles
134+
135+ :raises: UnsupportedOperation
136+ '''
137+ raise UnsupportedMethod (
138+ "%s does not support the update method" % self .__class__ .__name__
139+ )
140+
123141
124142class Ssl_Csrs (Collection ):
125143 def __init__ (self , File ):
@@ -138,6 +156,15 @@ def __init__(self, ssl_csrs):
138156 self ._meta_data ['required_creation_parameters' ].update (
139157 ('name' , 'sourcePath' ))
140158
159+ def modify (self , ** kwargs ):
160+ '''Modify is not supported for iFiles
161+
162+ :raises: UnsupportedOperation
163+ '''
164+ raise UnsupportedMethod (
165+ "%s does not support the update method" % self .__class__ .__name__
166+ )
167+
141168
142169class Ssl_Keys (Collection ):
143170 def __init__ (self , File ):
@@ -154,3 +181,12 @@ def __init__(self, ssl_keys):
154181 u'tm:sys:file:ssl-key:ssl-keystate'
155182 self ._meta_data ['required_creation_parameters' ].update (
156183 ('name' , 'sourcePath' ))
184+
185+ def modify (self , ** kwargs ):
186+ '''Modify is not supported for iFiles
187+
188+ :raises: UnsupportedOperation
189+ '''
190+ raise UnsupportedMethod (
191+ "%s does not support the update method" % self .__class__ .__name__
192+ )
0 commit comments