azure_mgmt_cdn 0.2.1 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. checksums.yaml +13 -5
  2. data/azure_mgmt_cdn.gemspec +1 -1
  3. data/lib/azure_mgmt_cdn.rb +2 -3
  4. data/lib/azure_mgmt_cdn/cdn_management_client.rb +5 -5
  5. data/lib/azure_mgmt_cdn/custom_domains.rb +293 -72
  6. data/lib/azure_mgmt_cdn/endpoints.rb +573 -142
  7. data/lib/azure_mgmt_cdn/models/check_name_availability_input.rb +3 -3
  8. data/lib/azure_mgmt_cdn/models/check_name_availability_output.rb +6 -6
  9. data/lib/azure_mgmt_cdn/models/custom_domain.rb +3 -3
  10. data/lib/azure_mgmt_cdn/models/custom_domain_list_result.rb +1 -1
  11. data/lib/azure_mgmt_cdn/models/custom_domain_parameters.rb +2 -2
  12. data/lib/azure_mgmt_cdn/models/custom_domain_properties.rb +3 -2
  13. data/lib/azure_mgmt_cdn/models/custom_domain_properties_parameters.rb +3 -2
  14. data/lib/azure_mgmt_cdn/models/custom_domain_resource_state.rb +1 -1
  15. data/lib/azure_mgmt_cdn/models/deep_created_origin.rb +2 -2
  16. data/lib/azure_mgmt_cdn/models/deep_created_origin_properties.rb +6 -5
  17. data/lib/azure_mgmt_cdn/models/endpoint.rb +3 -3
  18. data/lib/azure_mgmt_cdn/models/endpoint_create_parameters.rb +2 -2
  19. data/lib/azure_mgmt_cdn/models/endpoint_list_result.rb +2 -2
  20. data/lib/azure_mgmt_cdn/models/endpoint_properties.rb +12 -12
  21. data/lib/azure_mgmt_cdn/models/endpoint_properties_create_parameters.rb +15 -14
  22. data/lib/azure_mgmt_cdn/models/endpoint_properties_update_parameters.rb +16 -15
  23. data/lib/azure_mgmt_cdn/models/endpoint_resource_state.rb +1 -1
  24. data/lib/azure_mgmt_cdn/models/endpoint_update_parameters.rb +2 -2
  25. data/lib/azure_mgmt_cdn/models/error_response.rb +2 -2
  26. data/lib/azure_mgmt_cdn/models/load_parameters.rb +3 -3
  27. data/lib/azure_mgmt_cdn/models/operation.rb +1 -1
  28. data/lib/azure_mgmt_cdn/models/operation_display.rb +3 -3
  29. data/lib/azure_mgmt_cdn/models/operation_list_result.rb +3 -3
  30. data/lib/azure_mgmt_cdn/models/origin.rb +4 -4
  31. data/lib/azure_mgmt_cdn/models/origin_list_result.rb +1 -1
  32. data/lib/azure_mgmt_cdn/models/origin_parameters.rb +2 -2
  33. data/lib/azure_mgmt_cdn/models/origin_properties.rb +7 -6
  34. data/lib/azure_mgmt_cdn/models/origin_properties_parameters.rb +7 -6
  35. data/lib/azure_mgmt_cdn/models/origin_resource_state.rb +1 -1
  36. data/lib/azure_mgmt_cdn/models/profile.rb +17 -1
  37. data/lib/azure_mgmt_cdn/models/profile_create_parameters.rb +18 -17
  38. data/lib/azure_mgmt_cdn/models/profile_list_result.rb +2 -2
  39. data/lib/azure_mgmt_cdn/models/profile_properties.rb +1 -17
  40. data/lib/azure_mgmt_cdn/models/profile_resource_state.rb +1 -1
  41. data/lib/azure_mgmt_cdn/models/profile_update_parameters.rb +2 -2
  42. data/lib/azure_mgmt_cdn/models/provisioning_state.rb +1 -1
  43. data/lib/azure_mgmt_cdn/models/purge_parameters.rb +3 -3
  44. data/lib/azure_mgmt_cdn/models/query_string_caching_behavior.rb +1 -1
  45. data/lib/azure_mgmt_cdn/models/resource_type.rb +1 -1
  46. data/lib/azure_mgmt_cdn/models/sku.rb +5 -4
  47. data/lib/azure_mgmt_cdn/models/sku_name.rb +5 -3
  48. data/lib/azure_mgmt_cdn/models/sso_uri.rb +3 -3
  49. data/lib/azure_mgmt_cdn/models/tracked_resource.rb +1 -1
  50. data/lib/azure_mgmt_cdn/models/validate_custom_domain_input.rb +4 -3
  51. data/lib/azure_mgmt_cdn/models/validate_custom_domain_output.rb +6 -5
  52. data/lib/azure_mgmt_cdn/module_definition.rb +1 -1
  53. data/lib/azure_mgmt_cdn/name_availability.rb +47 -12
  54. data/lib/azure_mgmt_cdn/operations.rb +34 -7
  55. data/lib/azure_mgmt_cdn/origins.rb +296 -79
  56. data/lib/azure_mgmt_cdn/profiles.rb +358 -84
  57. data/lib/azure_mgmt_cdn/version.rb +2 -2
  58. metadata +25 -21
  59. data/lib/azure_mgmt_cdn/models/profile_properties_create_parameters.rb +0 -63
@@ -1,18 +1,18 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
6
6
  module Azure::ARM::CDN
7
7
  module Models
8
8
  #
9
- # Input of check name availability API
9
+ # Input of CheckNameAvailability API.
10
10
  #
11
11
  class CheckNameAvailabilityInput
12
12
 
13
13
  include MsRestAzure
14
14
 
15
- # @return [String] The resource name to validate
15
+ # @return [String] The resource name to validate.
16
16
  attr_accessor :name
17
17
 
18
18
  # @return [ResourceType] The type of the resource whose name is to be
@@ -1,25 +1,25 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
6
6
  module Azure::ARM::CDN
7
7
  module Models
8
8
  #
9
- # Output of check name availability API
9
+ # Output of check name availability API.
10
10
  #
11
11
  class CheckNameAvailabilityOutput
12
12
 
13
13
  include MsRestAzure
14
14
 
15
- # @return [Boolean] Indicates whether the name is available
15
+ # @return [Boolean] Indicates whether the name is available.
16
16
  attr_accessor :name_available
17
17
 
18
- # @return [String] The reason why the name is not available
18
+ # @return [String] The reason why the name is not available.
19
19
  attr_accessor :reason
20
20
 
21
- # @return [String] The detailed error message on why the name is not
22
- # available
21
+ # @return [String] The detailed error message describing why the name is
22
+ # not available.
23
23
  attr_accessor :message
24
24
 
25
25
  #
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
@@ -7,8 +7,8 @@ module Azure::ARM::CDN
7
7
  module Models
8
8
  #
9
9
  # CDN CustomDomain represents a mapping between a user specified domain
10
- # name and an Endpoint. It is a common practice to use custom domain
11
- # names to represent the URLs for branding purposes.
10
+ # name and a CDN endpoint. This is to use custom domain names to
11
+ # represent the URLs for branding purposes.
12
12
  #
13
13
  class CustomDomain < MsRestAzure::Resource
14
14
 
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
@@ -1,12 +1,12 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
6
6
  module Azure::ARM::CDN
7
7
  module Models
8
8
  #
9
- # CustomDomain properties required for custom domain creation or update
9
+ # CustomDomain properties required for custom domain creation or update.
10
10
  #
11
11
  class CustomDomainParameters
12
12
 
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
@@ -12,7 +12,8 @@ module Azure::ARM::CDN
12
12
 
13
13
  include MsRestAzure
14
14
 
15
- # @return [String] The host name of the custom domain
15
+ # @return [String] The host name of the custom domain. Must be a domain
16
+ # name.
16
17
  attr_accessor :host_name
17
18
 
18
19
  # @return [CustomDomainResourceState] Resource status of the custom
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
@@ -12,7 +12,8 @@ module Azure::ARM::CDN
12
12
 
13
13
  include MsRestAzure
14
14
 
15
- # @return [String] The host name of the custom domain
15
+ # @return [String] The host name of the custom domain. Must be a domain
16
+ # name.
16
17
  attr_accessor :host_name
17
18
 
18
19
  #
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
@@ -1,12 +1,12 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
6
6
  module Azure::ARM::CDN
7
7
  module Models
8
8
  #
9
- # Deep created origins within a CDN endpoint
9
+ # Deep created origins within a CDN endpoint.
10
10
  #
11
11
  class DeepCreatedOrigin
12
12
 
@@ -1,25 +1,26 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
6
6
  module Azure::ARM::CDN
7
7
  module Models
8
8
  #
9
- # Properties of deep created origin on a CDN endpoint
9
+ # Properties of deep created origin on a CDN endpoint.
10
10
  #
11
11
  class DeepCreatedOriginProperties
12
12
 
13
13
  include MsRestAzure
14
14
 
15
- # @return [String] The host name of the origin
15
+ # @return [String] The address of the origin. Domain names, IPv4
16
+ # addresses, and IPv6 addresses are supported.
16
17
  attr_accessor :host_name
17
18
 
18
- # @return [Integer] The value of the http port, must be between 1 and
19
+ # @return [Integer] The value of the HTTP port. Must be between 1 and
19
20
  # 65535
20
21
  attr_accessor :http_port
21
22
 
22
- # @return [Integer] The value of the https port, must be between 1 and
23
+ # @return [Integer] The value of the HTTPS port. Must be between 1 and
23
24
  # 65535
24
25
  attr_accessor :https_port
25
26
 
@@ -1,13 +1,13 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
6
6
  module Azure::ARM::CDN
7
7
  module Models
8
8
  #
9
- # CDN Endpoint is the entity within a CDN Profile containing configuration
10
- # information regarding caching behaviors and origins. The CDN Endpoint
9
+ # CDN endpoint is the entity within a CDN profile containing configuration
10
+ # information regarding caching behaviors and origins. The CDN endpoint
11
11
  # is exposed using the URL format <endpointname>.azureedge.net by
12
12
  # default, but custom domains can also be created.
13
13
  #
@@ -1,12 +1,12 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
6
6
  module Azure::ARM::CDN
7
7
  module Models
8
8
  #
9
- # Endpoint properties required for new endpoint creation
9
+ # Endpoint properties required for new endpoint creation.
10
10
  #
11
11
  class EndpointCreateParameters
12
12
 
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
@@ -12,7 +12,7 @@ module Azure::ARM::CDN
12
12
 
13
13
  include MsRestAzure
14
14
 
15
- # @return [Array<Endpoint>] List of CDN Endpoints within a profile
15
+ # @return [Array<Endpoint>] List of CDN endpoints within a profile
16
16
  attr_accessor :value
17
17
 
18
18
  #
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
@@ -15,16 +15,16 @@ module Azure::ARM::CDN
15
15
  # @return [String] The host name of the endpoint {endpointName}.{DNSZone}
16
16
  attr_accessor :host_name
17
17
 
18
- # @return [String] The host header CDN provider will send along with
19
- # content requests to origins. The default value would be the host name
20
- # of the origin.
18
+ # @return [String] The host header the CDN provider will send along with
19
+ # content requests to origins. The default value is the host name of
20
+ # the origin.
21
21
  attr_accessor :origin_host_header
22
22
 
23
- # @return [String] The path used for origin requests
23
+ # @return [String] The path used for origin requests.
24
24
  attr_accessor :origin_path
25
25
 
26
26
  # @return [Array<String>] List of content types on which compression
27
- # will be applied. The value for the elements should be Internet media
27
+ # will be applied. The value for the elements should be a valid MIME
28
28
  # type.
29
29
  attr_accessor :content_types_to_compress
30
30
 
@@ -34,14 +34,14 @@ module Azure::ARM::CDN
34
34
  # requested content must be larger than 1 byte and smaller than 1 MB.
35
35
  attr_accessor :is_compression_enabled
36
36
 
37
- # @return [Boolean] Indicates whether http traffic is allowed on the
38
- # endpoint. Default value is true. At least one protocol (http or
39
- # https) must be allowed.
37
+ # @return [Boolean] Indicates whether HTTP traffic is allowed on the
38
+ # endpoint. Default value is true. At least one protocol (HTTP or
39
+ # HTTPS) must be allowed.
40
40
  attr_accessor :is_http_allowed
41
41
 
42
42
  # @return [Boolean] Indicates whether https traffic is allowed on the
43
- # endpoint. Default value is true. At least one protocol (http or
44
- # https) must be allowed.
43
+ # endpoint. Default value is true. At least one protocol (HTTP or
44
+ # HTTPS) must be allowed.
45
45
  attr_accessor :is_https_allowed
46
46
 
47
47
  # @return [QueryStringCachingBehavior] Defines the query string caching
@@ -49,7 +49,7 @@ module Azure::ARM::CDN
49
49
  # 'BypassCaching', 'UseQueryString', 'NotSet'
50
50
  attr_accessor :query_string_caching_behavior
51
51
 
52
- # @return [Array<DeepCreatedOrigin>] The set of origins of the CDN
52
+ # @return [Array<DeepCreatedOrigin>] The set of origins for the CDN
53
53
  # endpoint. When multiple origins exist, the first origin will be used
54
54
  # as primary and rest will be used as failover options.
55
55
  attr_accessor :origins
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
@@ -13,32 +13,33 @@ module Azure::ARM::CDN
13
13
  include MsRestAzure
14
14
 
15
15
  # @return [String] The host header CDN provider will send along with
16
- # content requests to origins. The default value would be the host name
17
- # of the origin.
16
+ # content requests to origins. The default value is the host name of
17
+ # the origin.
18
18
  attr_accessor :origin_host_header
19
19
 
20
- # @return [String] The path used for origin requests
20
+ # @return [String] The path used for origin requests.
21
21
  attr_accessor :origin_path
22
22
 
23
23
  # @return [Array<String>] List of content types on which compression
24
- # will be applied. The value for the elements should be Internet media
24
+ # will be applied. The value for the elements should be a valid MIME
25
25
  # type.
26
26
  attr_accessor :content_types_to_compress
27
27
 
28
- # @return [Boolean] Indicates whether the compression is enabled.
28
+ # @return [Boolean] Indicates whether content compression is enabled.
29
29
  # Default value is false. If compression is enabled, the content
30
- # transferred from cdn endpoint to end user will be compressed. The
31
- # requested content must be larger than 1 byte and smaller than 1 MB.
30
+ # transferred from the CDN endpoint to the end user will be compressed.
31
+ # The requested content must be larger than 1 byte and smaller than 1
32
+ # MB.
32
33
  attr_accessor :is_compression_enabled
33
34
 
34
- # @return [Boolean] Indicates whether http traffic is allowed on the
35
- # endpoint. Default value is true. At least one protocol (http or
36
- # https) must be allowed.
35
+ # @return [Boolean] Indicates whether HTTP traffic is allowed on the
36
+ # endpoint. Default value is true. At least one protocol (HTTP or
37
+ # HTTPS) must be allowed.
37
38
  attr_accessor :is_http_allowed
38
39
 
39
40
  # @return [Boolean] Indicates whether https traffic is allowed on the
40
- # endpoint. Default value is true. At least one protocol (http or
41
- # https) must be allowed.
41
+ # endpoint. Default value is true. At least one protocol (HTTP or
42
+ # HTTPS) must be allowed.
42
43
  attr_accessor :is_https_allowed
43
44
 
44
45
  # @return [QueryStringCachingBehavior] Defines the query string caching
@@ -46,7 +47,7 @@ module Azure::ARM::CDN
46
47
  # 'BypassCaching', 'UseQueryString', 'NotSet'
47
48
  attr_accessor :query_string_caching_behavior
48
49
 
49
- # @return [Array<DeepCreatedOrigin>] The set of origins of the CDN
50
+ # @return [Array<DeepCreatedOrigin>] The set of origins for the CDN
50
51
  # endpoint. When multiple origins exist, the first origin will be used
51
52
  # as primary and rest will be used as failover options.
52
53
  attr_accessor :origins
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
@@ -12,33 +12,34 @@ module Azure::ARM::CDN
12
12
 
13
13
  include MsRestAzure
14
14
 
15
- # @return [String] The host header CDN provider will send along with
16
- # content requests to origins. The default value would be the host name
17
- # of the origin.
15
+ # @return [String] The host header the CDN provider will send along with
16
+ # content requests to origins. The default value is the host name of
17
+ # the origin.
18
18
  attr_accessor :origin_host_header
19
19
 
20
- # @return [String] The path used for origin requests
20
+ # @return [String] The path used for origin requests.
21
21
  attr_accessor :origin_path
22
22
 
23
23
  # @return [Array<String>] List of content types on which compression
24
- # will be applied. The value for the elements should be Internet media
24
+ # will be applied. The value for the elements should be a valid MIME
25
25
  # type.
26
26
  attr_accessor :content_types_to_compress
27
27
 
28
- # @return [Boolean] Indicates whether the compression is enabled.
28
+ # @return [Boolean] Indicates whether content compression is enabled.
29
29
  # Default value is false. If compression is enabled, the content
30
- # transferred from cdn endpoint to end user will be compressed. The
31
- # requested content must be larger than 1 byte and smaller than 1 MB.
30
+ # transferred from the CDN endpoint to the end user will be compressed.
31
+ # The requested content must be larger than 1 byte and smaller than 1
32
+ # MB.
32
33
  attr_accessor :is_compression_enabled
33
34
 
34
- # @return [Boolean] Indicates whether http traffic is allowed on the
35
- # endpoint. Default value is true. At least one protocol (http or
36
- # https) must be allowed.
35
+ # @return [Boolean] Indicates whether HTTP traffic is allowed on the
36
+ # endpoint. Default value is true. At least one protocol (HTTP or
37
+ # HTTPS) must be allowed.
37
38
  attr_accessor :is_http_allowed
38
39
 
39
- # @return [Boolean] Indicates whether https traffic is allowed on the
40
- # endpoint. Default value is true. At least one protocol (http or
41
- # https) must be allowed.
40
+ # @return [Boolean] Indicates whether HTTPS traffic is allowed on the
41
+ # endpoint. Default value is true. At least one protocol (HTTP or
42
+ # HTTPS) must be allowed.
42
43
  attr_accessor :is_https_allowed
43
44
 
44
45
  # @return [QueryStringCachingBehavior] Defines the query string caching
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
@@ -1,12 +1,12 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
6
6
  module Azure::ARM::CDN
7
7
  module Models
8
8
  #
9
- # Endpoint properties required for new endpoint creation
9
+ # Endpoint properties required for new endpoint creation.
10
10
  #
11
11
  class EndpointUpdateParameters
12
12
 
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
3
3
  # Changes may cause incorrect behavior and will be lost if the code is
4
4
  # regenerated.
5
5
 
@@ -15,7 +15,7 @@ module Azure::ARM::CDN
15
15
  # @return [String] Error code
16
16
  attr_accessor :code
17
17
 
18
- # @return [String] Error message indicating why the operation failed
18
+ # @return [String] Error message indicating why the operation failed.
19
19
  attr_accessor :message
20
20
 
21
21
  #