File: onboarding_request.py

package info (click to toggle)
python-influxdb-client 1.40.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,216 kB
  • sloc: python: 60,236; sh: 64; makefile: 53
file content (256 lines) | stat: -rw-r--r-- 8,139 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
# coding: utf-8

"""
InfluxDB OSS API Service.

The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.   # noqa: E501

OpenAPI spec version: 2.0.0
Generated by: https://openapi-generator.tech
"""


import pprint
import re  # noqa: F401


class OnboardingRequest(object):
    """NOTE: This class is auto generated by OpenAPI Generator.

    Ref: https://openapi-generator.tech

    Do not edit the class manually.
    """

    """
    Attributes:
      openapi_types (dict): The key is attribute name
                            and the value is attribute type.
      attribute_map (dict): The key is attribute name
                            and the value is json key in definition.
    """
    openapi_types = {
        'username': 'str',
        'password': 'str',
        'org': 'str',
        'bucket': 'str',
        'retention_period_seconds': 'int',
        'retention_period_hrs': 'int',
        'token': 'str'
    }

    attribute_map = {
        'username': 'username',
        'password': 'password',
        'org': 'org',
        'bucket': 'bucket',
        'retention_period_seconds': 'retentionPeriodSeconds',
        'retention_period_hrs': 'retentionPeriodHrs',
        'token': 'token'
    }

    def __init__(self, username=None, password=None, org=None, bucket=None, retention_period_seconds=None, retention_period_hrs=None, token=None):  # noqa: E501,D401,D403
        """OnboardingRequest - a model defined in OpenAPI."""  # noqa: E501
        self._username = None
        self._password = None
        self._org = None
        self._bucket = None
        self._retention_period_seconds = None
        self._retention_period_hrs = None
        self._token = None
        self.discriminator = None

        self.username = username
        if password is not None:
            self.password = password
        self.org = org
        self.bucket = bucket
        if retention_period_seconds is not None:
            self.retention_period_seconds = retention_period_seconds
        if retention_period_hrs is not None:
            self.retention_period_hrs = retention_period_hrs
        if token is not None:
            self.token = token

    @property
    def username(self):
        """Get the username of this OnboardingRequest.

        :return: The username of this OnboardingRequest.
        :rtype: str
        """  # noqa: E501
        return self._username

    @username.setter
    def username(self, username):
        """Set the username of this OnboardingRequest.

        :param username: The username of this OnboardingRequest.
        :type: str
        """  # noqa: E501
        if username is None:
            raise ValueError("Invalid value for `username`, must not be `None`")  # noqa: E501
        self._username = username

    @property
    def password(self):
        """Get the password of this OnboardingRequest.

        :return: The password of this OnboardingRequest.
        :rtype: str
        """  # noqa: E501
        return self._password

    @password.setter
    def password(self, password):
        """Set the password of this OnboardingRequest.

        :param password: The password of this OnboardingRequest.
        :type: str
        """  # noqa: E501
        self._password = password

    @property
    def org(self):
        """Get the org of this OnboardingRequest.

        :return: The org of this OnboardingRequest.
        :rtype: str
        """  # noqa: E501
        return self._org

    @org.setter
    def org(self, org):
        """Set the org of this OnboardingRequest.

        :param org: The org of this OnboardingRequest.
        :type: str
        """  # noqa: E501
        if org is None:
            raise ValueError("Invalid value for `org`, must not be `None`")  # noqa: E501
        self._org = org

    @property
    def bucket(self):
        """Get the bucket of this OnboardingRequest.

        :return: The bucket of this OnboardingRequest.
        :rtype: str
        """  # noqa: E501
        return self._bucket

    @bucket.setter
    def bucket(self, bucket):
        """Set the bucket of this OnboardingRequest.

        :param bucket: The bucket of this OnboardingRequest.
        :type: str
        """  # noqa: E501
        if bucket is None:
            raise ValueError("Invalid value for `bucket`, must not be `None`")  # noqa: E501
        self._bucket = bucket

    @property
    def retention_period_seconds(self):
        """Get the retention_period_seconds of this OnboardingRequest.

        :return: The retention_period_seconds of this OnboardingRequest.
        :rtype: int
        """  # noqa: E501
        return self._retention_period_seconds

    @retention_period_seconds.setter
    def retention_period_seconds(self, retention_period_seconds):
        """Set the retention_period_seconds of this OnboardingRequest.

        :param retention_period_seconds: The retention_period_seconds of this OnboardingRequest.
        :type: int
        """  # noqa: E501
        self._retention_period_seconds = retention_period_seconds

    @property
    def retention_period_hrs(self):
        """Get the retention_period_hrs of this OnboardingRequest.

        Retention period *in nanoseconds* for the new bucket. This key's name has been misleading since OSS 2.0 GA, please transition to use `retentionPeriodSeconds`

        :return: The retention_period_hrs of this OnboardingRequest.
        :rtype: int
        """  # noqa: E501
        return self._retention_period_hrs

    @retention_period_hrs.setter
    def retention_period_hrs(self, retention_period_hrs):
        """Set the retention_period_hrs of this OnboardingRequest.

        Retention period *in nanoseconds* for the new bucket. This key's name has been misleading since OSS 2.0 GA, please transition to use `retentionPeriodSeconds`

        :param retention_period_hrs: The retention_period_hrs of this OnboardingRequest.
        :type: int
        """  # noqa: E501
        self._retention_period_hrs = retention_period_hrs

    @property
    def token(self):
        """Get the token of this OnboardingRequest.

        Authentication token to set on the initial user. If not specified, the server will generate a token.

        :return: The token of this OnboardingRequest.
        :rtype: str
        """  # noqa: E501
        return self._token

    @token.setter
    def token(self, token):
        """Set the token of this OnboardingRequest.

        Authentication token to set on the initial user. If not specified, the server will generate a token.

        :param token: The token of this OnboardingRequest.
        :type: str
        """  # noqa: E501
        self._token = token

    def to_dict(self):
        """Return the model properties as a dict."""
        result = {}

        for attr, _ in self.openapi_types.items():
            value = getattr(self, attr)
            if isinstance(value, list):
                result[attr] = list(map(
                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
                    value
                ))
            elif hasattr(value, "to_dict"):
                result[attr] = value.to_dict()
            elif isinstance(value, dict):
                result[attr] = dict(map(
                    lambda item: (item[0], item[1].to_dict())
                    if hasattr(item[1], "to_dict") else item,
                    value.items()
                ))
            else:
                result[attr] = value

        return result

    def to_str(self):
        """Return the string representation of the model."""
        return pprint.pformat(self.to_dict())

    def __repr__(self):
        """For `print` and `pprint`."""
        return self.to_str()

    def __eq__(self, other):
        """Return true if both objects are equal."""
        if not isinstance(other, OnboardingRequest):
            return False

        return self.__dict__ == other.__dict__

    def __ne__(self, other):
        """Return true if both objects are not equal."""
        return not self == other