Class: Azure::CDN::Mgmt::V2017_04_02::Models::EndpointUpdateParameters

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-04-02/generated/azure_mgmt_cdn/models/endpoint_update_parameters.rb

Overview

Properties required to create or update an endpoint.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#content_types_to_compressArray<String>

applies. The value should be a valid MIME type.

Returns:

  • (Array<String>)

    List of content types on which compression



28
29
30
# File 'lib/2017-04-02/generated/azure_mgmt_cdn/models/endpoint_update_parameters.rb', line 28

def content_types_to_compress
  @content_types_to_compress
end

#geo_filtersArray<GeoFilter>

within a CDN endpoint. Each geo filter defines an acess rule to a specified path or content, e.g. block APAC for path /pictures/

Returns:

  • (Array<GeoFilter>)

    List of rules defining the user’s geo access



71
72
73
# File 'lib/2017-04-02/generated/azure_mgmt_cdn/models/endpoint_update_parameters.rb', line 71

def geo_filters
  @geo_filters
end

#is_compression_enabledBoolean

CDN. Default value is false. If compression is enabled, content will be served as compressed if user requests for a compressed version. Content won’t be compressed on CDN when requested content is smaller than 1 byte or larger than 1 MB.

Returns:

  • (Boolean)

    Indicates whether content compression is enabled on



35
36
37
# File 'lib/2017-04-02/generated/azure_mgmt_cdn/models/endpoint_update_parameters.rb', line 35

def is_compression_enabled
  @is_compression_enabled
end

#is_http_allowedBoolean

endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.

Returns:

  • (Boolean)

    Indicates whether HTTP traffic is allowed on the



40
41
42
# File 'lib/2017-04-02/generated/azure_mgmt_cdn/models/endpoint_update_parameters.rb', line 40

def is_http_allowed
  @is_http_allowed
end

#is_https_allowedBoolean

endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.

Returns:

  • (Boolean)

    Indicates whether HTTPS traffic is allowed on the



45
46
47
# File 'lib/2017-04-02/generated/azure_mgmt_cdn/models/endpoint_update_parameters.rb', line 45

def is_https_allowed
  @is_https_allowed
end

#optimization_typeOptimizationType

this CDN endpoint to optimize for, e.g. Download, Media services. With this information, CDN can apply scenario driven optimization. Possible values include: ‘GeneralWebDelivery’, ‘GeneralMediaStreaming’, ‘VideoOnDemandMediaStreaming’, ‘LargeFileDownload’, ‘DynamicSiteAcceleration’

Returns:



61
62
63
# File 'lib/2017-04-02/generated/azure_mgmt_cdn/models/endpoint_update_parameters.rb', line 61

def optimization_type
  @optimization_type
end

#origin_host_headerString

to origin. The default value is the host name of the origin.

Returns:

  • (String)

    The host header CDN sends along with content requests



20
21
22
# File 'lib/2017-04-02/generated/azure_mgmt_cdn/models/endpoint_update_parameters.rb', line 20

def origin_host_header
  @origin_host_header
end

#origin_pathString

retreive content from, e.g. contoso.cloudapp.net/originpath.

Returns:

  • (String)

    A directory path on the origin that CDN can use to



24
25
26
# File 'lib/2017-04-02/generated/azure_mgmt_cdn/models/endpoint_update_parameters.rb', line 24

def origin_path
  @origin_path
end

#probe_pathString

accelerate delivery of the dynamic content and calculate the most optimal routes for the CDN. This is relative to the origin path.

Returns:

  • (String)

    Path to a file hosted on the origin which helps



66
67
68
# File 'lib/2017-04-02/generated/azure_mgmt_cdn/models/endpoint_update_parameters.rb', line 66

def probe_path
  @probe_path
end

#query_string_caching_behaviorQueryStringCachingBehavior

that include query strings. You can ignore any query strings when caching, bypass caching to prevent requests that contain query strings from being cached, or cache every request with a unique URL. Possible values include: ‘IgnoreQueryString’, ‘BypassCaching’, ‘UseQueryString’, ‘NotSet’

Returns:



53
54
55
# File 'lib/2017-04-02/generated/azure_mgmt_cdn/models/endpoint_update_parameters.rb', line 53

def query_string_caching_behavior
  @query_string_caching_behavior
end

#tagsHash{String => String}

Returns Endpoint tags.

Returns:

  • (Hash{String => String})

    Endpoint tags.



16
17
18
# File 'lib/2017-04-02/generated/azure_mgmt_cdn/models/endpoint_update_parameters.rb', line 16

def tags
  @tags
end

Class Method Details

.mapperObject

Mapper for EndpointUpdateParameters class as Ruby Hash. This will be used for serialization/deserialization.



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
# File 'lib/2017-04-02/generated/azure_mgmt_cdn/models/endpoint_update_parameters.rb', line 78

def self.mapper()
  {
    required: false,
    serialized_name: 'EndpointUpdateParameters',
    type: {
      name: 'Composite',
      class_name: 'EndpointUpdateParameters',
      model_properties: {
        tags: {
          required: false,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        origin_host_header: {
          required: false,
          serialized_name: 'properties.originHostHeader',
          type: {
            name: 'String'
          }
        },
        origin_path: {
          required: false,
          serialized_name: 'properties.originPath',
          type: {
            name: 'String'
          }
        },
        content_types_to_compress: {
          required: false,
          serialized_name: 'properties.contentTypesToCompress',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        is_compression_enabled: {
          required: false,
          serialized_name: 'properties.isCompressionEnabled',
          type: {
            name: 'Boolean'
          }
        },
        is_http_allowed: {
          required: false,
          serialized_name: 'properties.isHttpAllowed',
          type: {
            name: 'Boolean'
          }
        },
        is_https_allowed: {
          required: false,
          serialized_name: 'properties.isHttpsAllowed',
          type: {
            name: 'Boolean'
          }
        },
        query_string_caching_behavior: {
          required: false,
          serialized_name: 'properties.queryStringCachingBehavior',
          type: {
            name: 'Enum',
            module: 'QueryStringCachingBehavior'
          }
        },
        optimization_type: {
          required: false,
          serialized_name: 'properties.optimizationType',
          type: {
            name: 'String'
          }
        },
        probe_path: {
          required: false,
          serialized_name: 'properties.probePath',
          type: {
            name: 'String'
          }
        },
        geo_filters: {
          required: false,
          serialized_name: 'properties.geoFilters',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'GeoFilterElementType',
                type: {
                  name: 'Composite',
                  class_name: 'GeoFilter'
                }
            }
          }
        }
      }
    }
  }
end