14
14
# See the License for the specific language governing permissions and
15
15
# limitations under the License.
16
16
17
- # IBM OpenAPI SDK Code Generator Version: 3.63 .0-5dae26c1-20230111-193039
17
+ # IBM OpenAPI SDK Code Generator Version: 3.67 .0-df2073a1-20230222-221157
18
18
19
19
"""
20
20
Search for resources with the global and shared resource properties repository that is
@@ -101,7 +101,6 @@ def search(
101
101
is_public : str = None ,
102
102
impersonate_user : str = None ,
103
103
can_tag : str = None ,
104
- is_hidden : str = None ,
105
104
** kwargs
106
105
) -> DetailedResponse :
107
106
"""
@@ -169,10 +168,6 @@ def search(
169
168
(only a GhoST admin can use this parameter). If false (default), only
170
169
resources user can view are returned; if true, only resources that user has
171
170
permissions for tagging are returned (_for administrators only_).
172
- :param str is_hidden: (optional) Determines if the result set must return
173
- only the visible resources or not. If false (default), only visible
174
- resources are returned; if true, only hidden resources are returned; if
175
- any, all resources are returned.
176
171
:param dict headers: A `dict` containing the request headers
177
172
:return: A `DetailedResponse` containing the result, headers and HTTP status code.
178
173
:rtype: DetailedResponse with `dict` result representing a `ScanResult` object
@@ -197,7 +192,6 @@ def search(
197
192
'is_public' : is_public ,
198
193
'impersonate_user' : impersonate_user ,
199
194
'can_tag' : can_tag ,
200
- 'is_hidden' : is_hidden ,
201
195
}
202
196
203
197
data = {
@@ -318,17 +312,6 @@ class CanTag(str, Enum):
318
312
TRUE = 'true'
319
313
FALSE = 'false'
320
314
321
- class IsHidden (str , Enum ):
322
- """
323
- Determines if the result set must return only the visible resources or not. If
324
- false (default), only visible resources are returned; if true, only hidden
325
- resources are returned; if any, all resources are returned.
326
- """
327
-
328
- TRUE = 'true'
329
- FALSE = 'false'
330
- ANY = 'any'
331
-
332
315
333
316
##############################################################################
334
317
# Models
0 commit comments