Class: Zernio::ApiKey

Inherits:
ApiModelBase show all
Defined in:
lib/zernio-sdk/models/api_key.rb

Defined Under Namespace

Classes: EnumAttributeValidator

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from ApiModelBase

_deserialize, #_to_hash, #to_body, #to_s

Constructor Details

#initialize(attributes = {}) ⇒ ApiKey

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



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
# File 'lib/zernio-sdk/models/api_key.rb', line 115

def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `Zernio::ApiKey` initialize method"
  end

  # check to see if the attribute exists and convert string to symbol for hash key
  acceptable_attribute_map = self.class.acceptable_attribute_map
  attributes = attributes.each_with_object({}) { |(k, v), h|
    if (!acceptable_attribute_map.key?(k.to_sym))
      fail ArgumentError, "`#{k}` is not a valid attribute in `Zernio::ApiKey`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
    end
    h[k.to_sym] = v
  }

  if attributes.key?(:'id')
    self.id = attributes[:'id']
  end

  if attributes.key?(:'name')
    self.name = attributes[:'name']
  end

  if attributes.key?(:'key_preview')
    self.key_preview = attributes[:'key_preview']
  end

  if attributes.key?(:'expires_at')
    self.expires_at = attributes[:'expires_at']
  end

  if attributes.key?(:'created_at')
    self.created_at = attributes[:'created_at']
  end

  if attributes.key?(:'key')
    self.key = attributes[:'key']
  end

  if attributes.key?(:'scope')
    self.scope = attributes[:'scope']
  else
    self.scope = 'full'
  end

  if attributes.key?(:'profile_ids')
    if (value = attributes[:'profile_ids']).is_a?(Array)
      self.profile_ids = value
    end
  end

  if attributes.key?(:'permission')
    self.permission = attributes[:'permission']
  else
    self.permission = 'read-write'
  end

  if attributes.key?(:'disabled_resource_groups')
    if (value = attributes[:'disabled_resource_groups']).is_a?(Array)
      self.disabled_resource_groups = value
    end
  end
end

Instance Attribute Details

#created_atObject

Returns the value of attribute created_at.



26
27
28
# File 'lib/zernio-sdk/models/api_key.rb', line 26

def created_at
  @created_at
end

#disabled_resource_groupsObject

Resource groups this key can NOT access (opt-out denylist). Absent or empty means legacy full access. A key with any group disabled is a restricted key (zrk_ prefix) and can never manage API keys, invites, or member identity. Each operation's group is published as x-resource-group. With 'messages' disabled, the key cannot read or send private messages through any API surface, and it cannot create or edit a webhook subscription broader than itself: it cannot subscribe to, test-fire, redeliver, or read delivery logs for message events. Subscriptions created earlier, from the dashboard, or with a full-access key keep delivering whatever their own disabledResourceGroups allows, so restricting an existing integration end to end means restricting the subscription too. OAuth connector tokens (AI assistants and MCP clients) resolve against the same registry, but their groups are not settable yet: treat an authorized connector as full access.



41
42
43
# File 'lib/zernio-sdk/models/api_key.rb', line 41

def disabled_resource_groups
  @disabled_resource_groups
end

#expires_atObject

Returns the value of attribute expires_at.



24
25
26
# File 'lib/zernio-sdk/models/api_key.rb', line 24

def expires_at
  @expires_at
end

#idObject

Returns the value of attribute id.



18
19
20
# File 'lib/zernio-sdk/models/api_key.rb', line 18

def id
  @id
end

#keyObject

Returned only once, on creation



29
30
31
# File 'lib/zernio-sdk/models/api_key.rb', line 29

def key
  @key
end

#key_previewObject

Returns the value of attribute key_preview.



22
23
24
# File 'lib/zernio-sdk/models/api_key.rb', line 22

def key_preview
  @key_preview
end

#nameObject

Returns the value of attribute name.



20
21
22
# File 'lib/zernio-sdk/models/api_key.rb', line 20

def name
  @name
end

#permissionObject

'read-write' allows all operations, 'read' restricts to GET requests only



38
39
40
# File 'lib/zernio-sdk/models/api_key.rb', line 38

def permission
  @permission
end

#profile_idsObject

Profiles this key can access (populated with name and color). Only present when scope is 'profiles'.



35
36
37
# File 'lib/zernio-sdk/models/api_key.rb', line 35

def profile_ids
  @profile_ids
end

#scopeObject

'full' grants access to all profiles, 'profiles' restricts to specific profiles



32
33
34
# File 'lib/zernio-sdk/models/api_key.rb', line 32

def scope
  @scope
end

Class Method Details

.acceptable_attribute_mapObject

Returns attribute mapping this model knows about



82
83
84
# File 'lib/zernio-sdk/models/api_key.rb', line 82

def self.acceptable_attribute_map
  attribute_map
end

.acceptable_attributesObject

Returns all the JSON keys this model knows about



87
88
89
# File 'lib/zernio-sdk/models/api_key.rb', line 87

def self.acceptable_attributes
  acceptable_attribute_map.values
end

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



66
67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'lib/zernio-sdk/models/api_key.rb', line 66

def self.attribute_map
  {
    :'id' => :'id',
    :'name' => :'name',
    :'key_preview' => :'keyPreview',
    :'expires_at' => :'expiresAt',
    :'created_at' => :'createdAt',
    :'key' => :'key',
    :'scope' => :'scope',
    :'profile_ids' => :'profileIds',
    :'permission' => :'permission',
    :'disabled_resource_groups' => :'disabledResourceGroups'
  }
end

.build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
# File 'lib/zernio-sdk/models/api_key.rb', line 249

def self.build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  attributes = attributes.transform_keys(&:to_sym)
  transformed_hash = {}
  openapi_types.each_pair do |key, type|
    if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
      transformed_hash["#{key}"] = nil
    elsif type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the attribute
      # is documented as an array but the input is not
      if attributes[attribute_map[key]].is_a?(Array)
        transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
      end
    elsif !attributes[attribute_map[key]].nil?
      transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
    end
  end
  new(transformed_hash)
end

.openapi_nullableObject

List of attributes with nullable: true



108
109
110
111
# File 'lib/zernio-sdk/models/api_key.rb', line 108

def self.openapi_nullable
  Set.new([
  ])
end

.openapi_typesObject

Attribute type mapping.



92
93
94
95
96
97
98
99
100
101
102
103
104
105
# File 'lib/zernio-sdk/models/api_key.rb', line 92

def self.openapi_types
  {
    :'id' => :'String',
    :'name' => :'String',
    :'key_preview' => :'String',
    :'expires_at' => :'Time',
    :'created_at' => :'Time',
    :'key' => :'String',
    :'scope' => :'String',
    :'profile_ids' => :'Array<ApiKeyProfileIdsInner>',
    :'permission' => :'String',
    :'disabled_resource_groups' => :'Array<String>'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



219
220
221
222
223
224
225
226
227
228
229
230
231
232
# File 'lib/zernio-sdk/models/api_key.rb', line 219

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      id == o.id &&
      name == o.name &&
      key_preview == o.key_preview &&
      expires_at == o.expires_at &&
      created_at == o.created_at &&
      key == o.key &&
      scope == o.scope &&
      profile_ids == o.profile_ids &&
      permission == o.permission &&
      disabled_resource_groups == o.disabled_resource_groups
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


236
237
238
# File 'lib/zernio-sdk/models/api_key.rb', line 236

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



242
243
244
# File 'lib/zernio-sdk/models/api_key.rb', line 242

def hash
  [id, name, key_preview, expires_at, created_at, key, scope, profile_ids, permission, disabled_resource_groups].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



180
181
182
183
184
# File 'lib/zernio-sdk/models/api_key.rb', line 180

def list_invalid_properties
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
  invalid_properties = Array.new
  invalid_properties
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



271
272
273
274
275
276
277
278
279
280
281
282
283
# File 'lib/zernio-sdk/models/api_key.rb', line 271

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    if value.nil?
      is_nullable = self.class.openapi_nullable.include?(attr)
      next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
    end

    hash[param] = _to_hash(value)
  end
  hash
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



188
189
190
191
192
193
194
195
# File 'lib/zernio-sdk/models/api_key.rb', line 188

def valid?
  warn '[DEPRECATED] the `valid?` method is obsolete'
  scope_validator = EnumAttributeValidator.new('String', ["full", "profiles"])
  return false unless scope_validator.valid?(@scope)
  permission_validator = EnumAttributeValidator.new('String', ["read-write", "read"])
  return false unless permission_validator.valid?(@permission)
  true
end