Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public class CacheExpirationActionParameters {

/**
* Creates an instance of CacheExpirationActionParameters class.
* @param cacheBehavior caching behavior for the requests that include query strings. Possible values include: 'BypassCache', 'Override', 'SetIfMissing'.
*/
public CacheExpirationActionParameters() {
odatatype = "Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters";
Expand Down Expand Up @@ -69,7 +70,7 @@ public CacheExpirationActionParameters withOdatatype(String odatatype) {
}

/**
* Get the cacheBehavior value.
* Get caching behavior for the requests that include query strings. Possible values include: 'BypassCache', 'Override', 'SetIfMissing'.
*
* @return the cacheBehavior value
*/
Expand All @@ -78,7 +79,7 @@ public String cacheBehavior() {
}

/**
* Set the cacheBehavior value.
* Set caching behavior for the requests that include query strings. Possible values include: 'BypassCache', 'Override', 'SetIfMissing'.
*
* @param cacheBehavior the cacheBehavior value to set
* @return the CacheExpirationActionParameters object itself.
Expand All @@ -89,7 +90,7 @@ public CacheExpirationActionParameters withCacheBehavior(String cacheBehavior) {
}

/**
* Get the cacheType value.
* Get the level at which the content needs to be cached.
*
* @return the cacheType value
*/
Expand All @@ -98,7 +99,7 @@ public String cacheType() {
}

/**
* Set the cacheType value.
* Set the level at which the content needs to be cached.
*
* @param cacheType the cacheType value to set
* @return the CacheExpirationActionParameters object itself.
Expand All @@ -109,7 +110,7 @@ public CacheExpirationActionParameters withCacheType(String cacheType) {
}

/**
* Get the cacheDuration value.
* Get the duration for which the the content needs to be cached. Allowed format is [d.]hh:mm:ss.
*
* @return the cacheDuration value
*/
Expand All @@ -118,7 +119,7 @@ public String cacheDuration() {
}

/**
* Set the cacheDuration value.
* Set the duration for which the the content needs to be cached. Allowed format is [d.]hh:mm:ss.
*
* @param cacheDuration the cacheDuration value to set
* @return the CacheExpirationActionParameters object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,14 @@ public class CheckNameAvailabilityInput {

/**
* Creates an instance of CheckNameAvailabilityInput class.
* @param name the resource name to validate.
*/
public CheckNameAvailabilityInput() {
type = "Microsoft.Cdn/Profiles/Endpoints";
}

/**
* Get the name value.
* Get the resource name to validate.
*
* @return the name value
*/
Expand All @@ -43,7 +44,7 @@ public String name() {
}

/**
* Set the name value.
* Set the resource name to validate.
*
* @param name the name value to set
* @return the CheckNameAvailabilityInput object itself.
Expand All @@ -54,7 +55,7 @@ public CheckNameAvailabilityInput withName(String name) {
}

/**
* Get the type value.
* Get the type of the resource whose name is to be validated.
*
* @return the type value
*/
Expand All @@ -63,7 +64,7 @@ public String type() {
}

/**
* Set the type value.
* Set the type of the resource whose name is to be validated.
*
* @param type the type value to set
* @return the CheckNameAvailabilityInput object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class CidrIpAddress {
private Integer prefixLength;

/**
* Get the baseIpAddress value.
* Get ip adress itself.
*
* @return the baseIpAddress value
*/
Expand All @@ -36,7 +36,7 @@ public String baseIpAddress() {
}

/**
* Set the baseIpAddress value.
* Set ip adress itself.
*
* @param baseIpAddress the baseIpAddress value to set
* @return the CidrIpAddress object itself.
Expand All @@ -47,7 +47,7 @@ public CidrIpAddress withBaseIpAddress(String baseIpAddress) {
}

/**
* Get the prefixLength value.
* Get the length of the prefix of the ip address.
*
* @return the prefixLength value
*/
Expand All @@ -56,7 +56,7 @@ public Integer prefixLength() {
}

/**
* Set the prefixLength value.
* Set the length of the prefix of the ip address.
*
* @param prefixLength the prefixLength value to set
* @return the CidrIpAddress object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class CustomDomainParameters {
private String hostName;

/**
* Get the hostName value.
* Get the host name of the custom domain. Must be a domain name.
*
* @return the hostName value
*/
Expand All @@ -32,7 +32,7 @@ public String hostName() {
}

/**
* Set the hostName value.
* Set the host name of the custom domain. Must be a domain name.
*
* @param hostName the hostName value to set
* @return the CustomDomainParameters object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class DeepCreatedOrigin {
private Integer httpsPort;

/**
* Get the name value.
* Get origin name.
*
* @return the name value
*/
Expand All @@ -51,7 +51,7 @@ public String name() {
}

/**
* Set the name value.
* Set origin name.
*
* @param name the name value to set
* @return the DeepCreatedOrigin object itself.
Expand All @@ -62,7 +62,7 @@ public DeepCreatedOrigin withName(String name) {
}

/**
* Get the hostName value.
* Get the address of the origin. It can be a domain name, IPv4 address, or IPv6 address.
*
* @return the hostName value
*/
Expand All @@ -71,7 +71,7 @@ public String hostName() {
}

/**
* Set the hostName value.
* Set the address of the origin. It can be a domain name, IPv4 address, or IPv6 address.
*
* @param hostName the hostName value to set
* @return the DeepCreatedOrigin object itself.
Expand All @@ -82,7 +82,7 @@ public DeepCreatedOrigin withHostName(String hostName) {
}

/**
* Get the httpPort value.
* Get the value of the HTTP port. Must be between 1 and 65535.
*
* @return the httpPort value
*/
Expand All @@ -91,7 +91,7 @@ public Integer httpPort() {
}

/**
* Set the httpPort value.
* Set the value of the HTTP port. Must be between 1 and 65535.
*
* @param httpPort the httpPort value to set
* @return the DeepCreatedOrigin object itself.
Expand All @@ -102,7 +102,7 @@ public DeepCreatedOrigin withHttpPort(Integer httpPort) {
}

/**
* Get the httpsPort value.
* Get the value of the HTTPS port. Must be between 1 and 65535.
*
* @return the httpsPort value
*/
Expand All @@ -111,7 +111,7 @@ public Integer httpsPort() {
}

/**
* Set the httpsPort value.
* Set the value of the HTTPS port. Must be between 1 and 65535.
*
* @param httpsPort the httpsPort value to set
* @return the DeepCreatedOrigin object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class DeliveryRule {
private List<DeliveryRuleCondition> conditions;

/**
* Get the order value.
* Get the order in which the rules are applied for the endpoint. Possible values {0,1,2,3,………}. A rule with a lesser order will be applied before a rule with a greater order. Rule with order 0 is a special rule. It does not require any condition and actions listed in it will always be applied.
*
* @return the order value
*/
Expand All @@ -49,7 +49,7 @@ public int order() {
}

/**
* Set the order value.
* Set the order in which the rules are applied for the endpoint. Possible values {0,1,2,3,………}. A rule with a lesser order will be applied before a rule with a greater order. Rule with order 0 is a special rule. It does not require any condition and actions listed in it will always be applied.
*
* @param order the order value to set
* @return the DeliveryRule object itself.
Expand All @@ -60,7 +60,7 @@ public DeliveryRule withOrder(int order) {
}

/**
* Get the actions value.
* Get a list of actions that are executed when all the conditions of a rule are satisfied.
*
* @return the actions value
*/
Expand All @@ -69,7 +69,7 @@ public List<DeliveryRuleAction> actions() {
}

/**
* Set the actions value.
* Set a list of actions that are executed when all the conditions of a rule are satisfied.
*
* @param actions the actions value to set
* @return the DeliveryRule object itself.
Expand All @@ -80,7 +80,7 @@ public DeliveryRule withActions(List<DeliveryRuleAction> actions) {
}

/**
* Get the conditions value.
* Get a list of conditions that must be matched for the actions to be executed.
*
* @return the conditions value
*/
Expand All @@ -89,7 +89,7 @@ public List<DeliveryRuleCondition> conditions() {
}

/**
* Set the conditions value.
* Set a list of conditions that must be matched for the actions to be executed.
*
* @param conditions the conditions value to set
* @return the DeliveryRule object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class DeliveryRuleCacheExpirationAction extends DeliveryRuleAction {
private CacheExpirationActionParameters parameters;

/**
* Get the parameters value.
* Get defines the parameters for the action.
*
* @return the parameters value
*/
Expand All @@ -34,7 +34,7 @@ public CacheExpirationActionParameters parameters() {
}

/**
* Set the parameters value.
* Set defines the parameters for the action.
*
* @param parameters the parameters value to set
* @return the DeliveryRuleCacheExpirationAction object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class DeliveryRuleUrlFileExtensionCondition extends DeliveryRuleCondition
private UrlFileExtensionConditionParameters parameters;

/**
* Get the parameters value.
* Get defines the parameters for the condition.
*
* @return the parameters value
*/
Expand All @@ -34,7 +34,7 @@ public UrlFileExtensionConditionParameters parameters() {
}

/**
* Set the parameters value.
* Set defines the parameters for the condition.
*
* @param parameters the parameters value to set
* @return the DeliveryRuleUrlFileExtensionCondition object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class DeliveryRuleUrlPathCondition extends DeliveryRuleCondition {
private UrlPathConditionParameters parameters;

/**
* Get the parameters value.
* Get defines the parameters for the condition.
*
* @return the parameters value
*/
Expand All @@ -34,7 +34,7 @@ public UrlPathConditionParameters parameters() {
}

/**
* Set the parameters value.
* Set defines the parameters for the condition.
*
* @param parameters the parameters value to set
* @return the DeliveryRuleUrlPathCondition object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class EndpointPropertiesUpdateParametersDeliveryPolicy {
private List<DeliveryRule> rules;

/**
* Get the description value.
* Get user-friendly description of the policy.
*
* @return the description value
*/
Expand All @@ -37,7 +37,7 @@ public String description() {
}

/**
* Set the description value.
* Set user-friendly description of the policy.
*
* @param description the description value to set
* @return the EndpointPropertiesUpdateParametersDeliveryPolicy object itself.
Expand All @@ -48,7 +48,7 @@ public EndpointPropertiesUpdateParametersDeliveryPolicy withDescription(String d
}

/**
* Get the rules value.
* Get a list of the delivery rules.
*
* @return the rules value
*/
Expand All @@ -57,7 +57,7 @@ public List<DeliveryRule> rules() {
}

/**
* Set the rules value.
* Set a list of the delivery rules.
*
* @param rules the rules value to set
* @return the EndpointPropertiesUpdateParametersDeliveryPolicy object itself.
Expand Down
Loading