@@ -58,8 +58,8 @@ def create_volume(self, create_volume_details, **kwargs):
58
58
has been deleted and purged from the system, then a retry of the original creation request
59
59
may be rejected).
60
60
61
- :return: A Response object with data of type Volume
62
- :rtype: Volume
61
+ :return: A :class:`~oraclebmc.response. Response` object with data of type :class:`~oraclebmc.core.models. Volume`
62
+ :rtype: :class:`~oraclebmc.response.Response`
63
63
"""
64
64
resource_path = "/volumes"
65
65
method = "POST"
@@ -110,8 +110,8 @@ def create_volume_backup(self, create_volume_backup_details, **kwargs):
110
110
has been deleted and purged from the system, then a retry of the original creation request
111
111
may be rejected).
112
112
113
- :return: A Response object with data of type VolumeBackup
114
- :rtype: VolumeBackup
113
+ :return: A :class:`~oraclebmc.response. Response` object with data of type :class:`~oraclebmc.core.models. VolumeBackup`
114
+ :rtype: :class:`~oraclebmc.response.Response`
115
115
"""
116
116
resource_path = "/volumeBackups"
117
117
method = "POST"
@@ -158,8 +158,8 @@ def delete_volume(self, volume_id, **kwargs):
158
158
parameter to the value of the etag from a previous GET or POST response for that resource. The resource
159
159
will be updated or deleted only if the etag you provide matches the resource's current etag value.
160
160
161
- :return: A Response object with data of type None
162
- :rtype: None
161
+ :return: A :class:`~oraclebmc.response. Response` object with data of type None
162
+ :rtype: :class:`~oraclebmc.response.Response`
163
163
"""
164
164
resource_path = "/volumes/{volumeId}"
165
165
method = "DELETE"
@@ -205,8 +205,8 @@ def delete_volume_backup(self, volume_backup_id, **kwargs):
205
205
parameter to the value of the etag from a previous GET or POST response for that resource. The resource
206
206
will be updated or deleted only if the etag you provide matches the resource's current etag value.
207
207
208
- :return: A Response object with data of type None
209
- :rtype: None
208
+ :return: A :class:`~oraclebmc.response. Response` object with data of type None
209
+ :rtype: :class:`~oraclebmc.response.Response`
210
210
"""
211
211
resource_path = "/volumeBackups/{volumeBackupId}"
212
212
method = "DELETE"
@@ -247,8 +247,8 @@ def get_volume(self, volume_id, **kwargs):
247
247
:param str volume_id: (required)
248
248
The OCID of the volume.
249
249
250
- :return: A Response object with data of type Volume
251
- :rtype: Volume
250
+ :return: A :class:`~oraclebmc.response. Response` object with data of type :class:`~oraclebmc.core.models. Volume`
251
+ :rtype: :class:`~oraclebmc.response.Response`
252
252
"""
253
253
resource_path = "/volumes/{volumeId}"
254
254
method = "GET"
@@ -283,8 +283,8 @@ def get_volume_backup(self, volume_backup_id, **kwargs):
283
283
:param str volume_backup_id: (required)
284
284
The OCID of the volume backup.
285
285
286
- :return: A Response object with data of type VolumeBackup
287
- :rtype: VolumeBackup
286
+ :return: A :class:`~oraclebmc.response. Response` object with data of type :class:`~oraclebmc.core.models. VolumeBackup`
287
+ :rtype: :class:`~oraclebmc.response.Response`
288
288
"""
289
289
resource_path = "/volumeBackups/{volumeBackupId}"
290
290
method = "GET"
@@ -330,8 +330,8 @@ def list_volume_backups(self, compartment_id, **kwargs):
330
330
:param str page: (optional)
331
331
The value of the `opc-next-page` response header from the previous \" List\" call.
332
332
333
- :return: A Response object with data of type list[ VolumeBackup]
334
- :rtype: list[VolumeBackup]
333
+ :return: A :class:`~oraclebmc.response. Response` object with data of type list of :class:`~oraclebmc.core.models. VolumeBackup`
334
+ :rtype: :class:`~oraclebmc.response.Response`
335
335
"""
336
336
resource_path = "/volumeBackups"
337
337
method = "GET"
@@ -389,8 +389,8 @@ def list_volumes(self, compartment_id, **kwargs):
389
389
:param str page: (optional)
390
390
The value of the `opc-next-page` response header from the previous \" List\" call.
391
391
392
- :return: A Response object with data of type list[ Volume]
393
- :rtype: list[Volume]
392
+ :return: A :class:`~oraclebmc.response. Response` object with data of type list of :class:`~oraclebmc.core.models. Volume`
393
+ :rtype: :class:`~oraclebmc.response.Response`
394
394
"""
395
395
resource_path = "/volumes"
396
396
method = "GET"
@@ -443,8 +443,8 @@ def update_volume(self, volume_id, update_volume_details, **kwargs):
443
443
parameter to the value of the etag from a previous GET or POST response for that resource. The resource
444
444
will be updated or deleted only if the etag you provide matches the resource's current etag value.
445
445
446
- :return: A Response object with data of type Volume
447
- :rtype: Volume
446
+ :return: A :class:`~oraclebmc.response. Response` object with data of type :class:`~oraclebmc.core.models. Volume`
447
+ :rtype: :class:`~oraclebmc.response.Response`
448
448
"""
449
449
resource_path = "/volumes/{volumeId}"
450
450
method = "PUT"
@@ -495,8 +495,8 @@ def update_volume_backup(self, volume_backup_id, update_volume_backup_details, *
495
495
parameter to the value of the etag from a previous GET or POST response for that resource. The resource
496
496
will be updated or deleted only if the etag you provide matches the resource's current etag value.
497
497
498
- :return: A Response object with data of type VolumeBackup
499
- :rtype: VolumeBackup
498
+ :return: A :class:`~oraclebmc.response. Response` object with data of type :class:`~oraclebmc.core.models. VolumeBackup`
499
+ :rtype: :class:`~oraclebmc.response.Response`
500
500
"""
501
501
resource_path = "/volumeBackups/{volumeBackupId}"
502
502
method = "PUT"
0 commit comments