Class: Falcon::AzureAzureRegistrationUpdateInput

Inherits:
Object
  • Object
show all
Defined in:
lib/crimson-falcon/models/azure_azure_registration_update_input.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ AzureAzureRegistrationUpdateInput

Initializes the object

Parameters:

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

    Model attributes in the form of hash



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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 156

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Instance Attribute Details

#account_typeObject

Returns the value of attribute account_type.



35
36
37
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 35

def 
  @account_type
end

#additional_featuresObject

Returns the value of attribute additional_features.



37
38
39
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 37

def additional_features
  @additional_features
end

#additional_propertiesObject

Returns the value of attribute additional_properties.



39
40
41
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 39

def additional_properties
  @additional_properties
end

#api_client_key_idObject

Returns the value of attribute api_client_key_id.



41
42
43
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 41

def api_client_key_id
  @api_client_key_id
end

#api_client_key_typeObject

Returns the value of attribute api_client_key_type.



43
44
45
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 43

def api_client_key_type
  @api_client_key_type
end

#cs_infra_regionObject

Returns the value of attribute cs_infra_region.



45
46
47
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 45

def cs_infra_region
  @cs_infra_region
end

#cs_infra_subscription_idObject

Returns the value of attribute cs_infra_subscription_id.



47
48
49
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 47

def cs_infra_subscription_id
  @cs_infra_subscription_id
end

#deployment_methodObject

Returns the value of attribute deployment_method.



49
50
51
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 49

def deployment_method
  @deployment_method
end

#deployment_stack_host_idObject

Returns the value of attribute deployment_stack_host_id.



51
52
53
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 51

def deployment_stack_host_id
  @deployment_stack_host_id
end

#deployment_stack_nameObject

Returns the value of attribute deployment_stack_name.



53
54
55
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 53

def deployment_stack_name
  @deployment_stack_name
end

#dspm_regionsObject

Returns the value of attribute dspm_regions.



55
56
57
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 55

def dspm_regions
  @dspm_regions
end

#environmentObject

Returns the value of attribute environment.



57
58
59
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 57

def environment
  @environment
end

#event_hub_settingsObject

Returns the value of attribute event_hub_settings.



59
60
61
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 59

def event_hub_settings
  @event_hub_settings
end

#management_group_idsObject

Returns the value of attribute management_group_ids.



61
62
63
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 61

def management_group_ids
  @management_group_ids
end

#microsoft_graph_permission_idsObject

Returns the value of attribute microsoft_graph_permission_ids.



63
64
65
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 63

def microsoft_graph_permission_ids
  @microsoft_graph_permission_ids
end

#microsoft_graph_permission_ids_readonlyObject

Returns the value of attribute microsoft_graph_permission_ids_readonly.



65
66
67
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 65

def microsoft_graph_permission_ids_readonly
  @microsoft_graph_permission_ids_readonly
end

#productsObject

Returns the value of attribute products.



67
68
69
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 67

def products
  @products
end

#resource_name_prefixObject

Returns the value of attribute resource_name_prefix.



69
70
71
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 69

def resource_name_prefix
  @resource_name_prefix
end

#resource_name_suffixObject

Returns the value of attribute resource_name_suffix.



71
72
73
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 71

def resource_name_suffix
  @resource_name_suffix
end

#statusObject

Returns the value of attribute status.



73
74
75
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 73

def status
  @status
end

#subscription_idsObject

Returns the value of attribute subscription_ids.



75
76
77
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 75

def subscription_ids
  @subscription_ids
end

#tagsObject

Returns the value of attribute tags.



77
78
79
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 77

def tags
  @tags
end

#template_versionObject

Returns the value of attribute template_version.



79
80
81
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 79

def template_version
  @template_version
end

#tenant_idObject

Returns the value of attribute tenant_id.



81
82
83
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 81

def tenant_id
  @tenant_id
end

Class Method Details

.acceptable_attributesObject

Returns all the JSON keys this model knows about



114
115
116
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 114

def self.acceptable_attributes
  attribute_map.values
end

.attribute_mapObject

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



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
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 84

def self.attribute_map
  {
    :'account_type' => :'account_type',
    :'additional_features' => :'additional_features',
    :'additional_properties' => :'additional_properties',
    :'api_client_key_id' => :'api_client_key_id',
    :'api_client_key_type' => :'api_client_key_type',
    :'cs_infra_region' => :'cs_infra_region',
    :'cs_infra_subscription_id' => :'cs_infra_subscription_id',
    :'deployment_method' => :'deployment_method',
    :'deployment_stack_host_id' => :'deployment_stack_host_id',
    :'deployment_stack_name' => :'deployment_stack_name',
    :'dspm_regions' => :'dspm_regions',
    :'environment' => :'environment',
    :'event_hub_settings' => :'event_hub_settings',
    :'management_group_ids' => :'management_group_ids',
    :'microsoft_graph_permission_ids' => :'microsoft_graph_permission_ids',
    :'microsoft_graph_permission_ids_readonly' => :'microsoft_graph_permission_ids_readonly',
    :'products' => :'products',
    :'resource_name_prefix' => :'resource_name_prefix',
    :'resource_name_suffix' => :'resource_name_suffix',
    :'status' => :'status',
    :'subscription_ids' => :'subscription_ids',
    :'tags' => :'tags',
    :'template_version' => :'template_version',
    :'tenant_id' => :'tenant_id'
  }
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



376
377
378
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 376

def self.build_from_hash(attributes)
  new.build_from_hash(attributes)
end

.openapi_nullableObject

List of attributes with nullable: true



149
150
151
152
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 149

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

.openapi_typesObject

Attribute type mapping.



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
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 119

def self.openapi_types
  {
    :'account_type' => :'String',
    :'additional_features' => :'Array<AzureAdditionalFeature>',
    :'additional_properties' => :'Object',
    :'api_client_key_id' => :'String',
    :'api_client_key_type' => :'String',
    :'cs_infra_region' => :'String',
    :'cs_infra_subscription_id' => :'String',
    :'deployment_method' => :'String',
    :'deployment_stack_host_id' => :'String',
    :'deployment_stack_name' => :'String',
    :'dspm_regions' => :'Array<String>',
    :'environment' => :'String',
    :'event_hub_settings' => :'Array<AzureEventHubSettings>',
    :'management_group_ids' => :'Array<String>',
    :'microsoft_graph_permission_ids' => :'Array<String>',
    :'microsoft_graph_permission_ids_readonly' => :'Boolean',
    :'products' => :'Array<DomainProductFeatures>',
    :'resource_name_prefix' => :'String',
    :'resource_name_suffix' => :'String',
    :'status' => :'String',
    :'subscription_ids' => :'Array<String>',
    :'tags' => :'Hash<String, String>',
    :'template_version' => :'String',
    :'tenant_id' => :'String'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 332

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
       == o. &&
      additional_features == o.additional_features &&
      additional_properties == o.additional_properties &&
      api_client_key_id == o.api_client_key_id &&
      api_client_key_type == o.api_client_key_type &&
      cs_infra_region == o.cs_infra_region &&
      cs_infra_subscription_id == o.cs_infra_subscription_id &&
      deployment_method == o.deployment_method &&
      deployment_stack_host_id == o.deployment_stack_host_id &&
      deployment_stack_name == o.deployment_stack_name &&
      dspm_regions == o.dspm_regions &&
      environment == o.environment &&
      event_hub_settings == o.event_hub_settings &&
      management_group_ids == o.management_group_ids &&
      microsoft_graph_permission_ids == o.microsoft_graph_permission_ids &&
      microsoft_graph_permission_ids_readonly == o.microsoft_graph_permission_ids_readonly &&
      products == o.products &&
      resource_name_prefix == o.resource_name_prefix &&
      resource_name_suffix == o.resource_name_suffix &&
      status == o.status &&
      subscription_ids == o.subscription_ids &&
      tags == o.tags &&
      template_version == o.template_version &&
      tenant_id == o.tenant_id
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 407

def _deserialize(type, value)
  case type.to_sym
  when :Time
    Time.parse(value)
  when :Date
    Date.parse(value)
  when :String
    value.to_s
  when :Integer
    value.to_i
  when :Float
    value.to_f
  when :Boolean
    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
      true
    else
      false
    end
  when :Object
    # generic object (usually a Hash), return directly
    value
  when /\AArray<(?<inner_type>.+)>\z/
    inner_type = Regexp.last_match[:inner_type]
    value.map { |v| _deserialize(inner_type, v) }
  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
    k_type = Regexp.last_match[:k_type]
    v_type = Regexp.last_match[:v_type]
    {}.tap do |hash|
      value.each do |k, v|
        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
      end
    end
  else # model
    # models (e.g. Pet) or oneOf
    klass = Falcon.const_get(type)
    klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
  end
end

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



478
479
480
481
482
483
484
485
486
487
488
489
490
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 478

def _to_hash(value)
  if value.is_a?(Array)
    value.compact.map { |v| _to_hash(v) }
  elsif value.is_a?(Hash)
    {}.tap do |hash|
      value.each { |k, v| hash[k] = _to_hash(v) }
    end
  elsif value.respond_to? :to_hash
    value.to_hash
  else
    value
  end
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



383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 383

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  attributes = attributes.transform_keys(&:to_sym)
  self.class.openapi_types.each_pair do |key, type|
    if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
      self.send("#{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[self.class.attribute_map[key]].is_a?(Array)
        self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
    end
  end

  self
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


363
364
365
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 363

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



369
370
371
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 369

def hash
  [, additional_features, additional_properties, api_client_key_id, api_client_key_type, cs_infra_region, cs_infra_subscription_id, deployment_method, deployment_stack_host_id, deployment_stack_name, dspm_regions, environment, event_hub_settings, management_group_ids, microsoft_graph_permission_ids, microsoft_graph_permission_ids_readonly, products, resource_name_prefix, resource_name_suffix, status, subscription_ids, tags, template_version, tenant_id].hash
end

#list_invalid_propertiesObject

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

Returns:

  • Array for valid properties with the reasons



284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 284

def list_invalid_properties
  invalid_properties = Array.new
  if @additional_features.nil?
    invalid_properties.push('invalid value for "additional_features", additional_features cannot be nil.')
  end

  if @event_hub_settings.nil?
    invalid_properties.push('invalid value for "event_hub_settings", event_hub_settings cannot be nil.')
  end

  if @management_group_ids.nil?
    invalid_properties.push('invalid value for "management_group_ids", management_group_ids cannot be nil.')
  end

  if @microsoft_graph_permission_ids.nil?
    invalid_properties.push('invalid value for "microsoft_graph_permission_ids", microsoft_graph_permission_ids cannot be nil.')
  end

  if @subscription_ids.nil?
    invalid_properties.push('invalid value for "subscription_ids", subscription_ids cannot be nil.')
  end

  if @tags.nil?
    invalid_properties.push('invalid value for "tags", tags cannot be nil.')
  end

  if @tenant_id.nil?
    invalid_properties.push('invalid value for "tenant_id", tenant_id cannot be nil.')
  end

  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



454
455
456
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 454

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



460
461
462
463
464
465
466
467
468
469
470
471
472
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 460

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

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



448
449
450
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 448

def to_s
  to_hash.to_s
end

#valid?Boolean

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

Returns:

  • (Boolean)

    true if the model is valid



319
320
321
322
323
324
325
326
327
328
# File 'lib/crimson-falcon/models/azure_azure_registration_update_input.rb', line 319

def valid?
  return false if @additional_features.nil?
  return false if @event_hub_settings.nil?
  return false if @management_group_ids.nil?
  return false if @microsoft_graph_permission_ids.nil?
  return false if @subscription_ids.nil?
  return false if @tags.nil?
  return false if @tenant_id.nil?
  true
end