Class: Azure::ARM::CDN::Models::PurgeParameters

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/azure_mgmt_cdn/models/purge_parameters.rb

Overview

Parameters required for endpoint purge

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#content_pathsArray<String>

describe a file path or a wild card directory.

Returns:

  • (Array<String>)

    The path to the content to be purged, can



17
18
19
# File 'lib/azure_mgmt_cdn/models/purge_parameters.rb', line 17

def content_paths
  @content_paths
end

Class Method Details

.deserialize_object(object) ⇒ PurgeParameters

Deserializes given Ruby Hash into Model object.

Parameters:

  • object (Hash)

    Ruby Hash object to deserialize.

Returns:



47
48
49
50
51
52
53
54
55
# File 'lib/azure_mgmt_cdn/models/purge_parameters.rb', line 47

def self.deserialize_object(object)
  return if object.nil?
  output_object = PurgeParameters.new

  deserialized_property = object['contentPaths']
  output_object.content_paths = deserialized_property

  output_object
end

.serialize_object(object) ⇒ Hash

Serializes given Model object into Ruby Hash.

Parameters:

  • object

    Model object to serialize.

Returns:

  • (Hash)

    Serialized object in form of Ruby Hash.



32
33
34
35
36
37
38
39
40
# File 'lib/azure_mgmt_cdn/models/purge_parameters.rb', line 32

def self.serialize_object(object)
  object.validate
  output_object = {}

  serialized_property = object.content_paths
  output_object['contentPaths'] = serialized_property unless serialized_property.nil?

  output_object
end

Instance Method Details

#validateObject

Validate the object. Throws ValidationError if validation fails.



22
23
24
25
# File 'lib/azure_mgmt_cdn/models/purge_parameters.rb', line 22

def validate
  fail MsRest::ValidationError, 'property content_paths is nil' if @content_paths.nil?
  @content_paths.each{ |e| e.validate if e.respond_to?(:validate) } unless @content_paths.nil?
end