Module cvpysdk.subclients.virtualserver.null

Expand source code Browse git
# -*- coding: utf-8 -*-

# --------------------------------------------------------------------------
# Copyright Commvault Systems, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# --------------------------------------------------------------------------
from cvpysdk.exception import SDKException
from cvpysdk.subclients.vssubclient import VirtualServerSubclient


class NullSubclient(VirtualServerSubclient):

    def __init__(self, backupset_object, subclient_name, subclient_id):
        raise SDKException('Subclient', '102',
                           'Subclient for Instance: "{0}" is not yet supported'.
                           format(backupset_object._instance_object.instance_name))

Classes

class NullSubclient (backupset_object, subclient_name, subclient_id)

Derived class from Subclient Base class, representing a virtual server subclient, and to perform operations on that subclient.

Initialize the Instance object for the given Virtual Server instance.

Args

backupset_object (object) – instance of the backupset class

subclient_name (str) – subclient name

subclient_id (int) – subclient id

Expand source code Browse git
class NullSubclient(VirtualServerSubclient):

    def __init__(self, backupset_object, subclient_name, subclient_id):
        raise SDKException('Subclient', '102',
                           'Subclient for Instance: "{0}" is not yet supported'.
                           format(backupset_object._instance_object.instance_name))

Ancestors

Inherited members