openstack-poppy/src/main/java/org/jclouds/openstack/poppy/v1/domain/CreateService.java [120:174]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      public Builder name(String name) {
         this.name = name;
         return this;
      }

      /**
       * Required.
       * @param domains Specifies a list of domains used by users to access their website.
       * @return The CreateService builder.
       */
      public Builder domains(List<Domain> domains) {
         this.domains = domains;
         return this;
      }

      /**
       * Required.
       * @param origins Specifies a list of origin domains or IP addresses where the original assets are stored.
       * @return The CreateService builder.
       */
      public Builder origins(List<Origin> origins) {
         this.origins = origins;
         return this;
      }

      /**
       * Optional.
       * @param caching Specifies the TTL rules for the assets under this service.
       *                Supports wildcards for fine-grained control.
       * @return The CreateService builder.
       */
      public Builder caching(List<Caching> caching) {
         this.caching = caching;
         return this;
      }

      /**
       * Optional.
       * @param restrictions Specifies the restrictions that define who can access assets (content from the CDN cache).
       * @return The CreateService builder.
       */
      public Builder restrictions(List<Restriction> restrictions) {
         this.restrictions = restrictions;
         return this;
      }

      /**
       * Required.
       * @param flavorId Specifies the CDN provider flavor ID to use. For a list of flavors, see the operation to list
       *                 the available flavors. The minimum length for flavor_id is 3. The maximum length is 256.
       * @return The CreateService builder.
       */
      public Builder flavorId(String flavorId) {
         this.flavorId = flavorId;
         return this;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



openstack-poppy/src/main/java/org/jclouds/openstack/poppy/v1/domain/UpdateService.java [110:163]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      public Builder name(String name) {
         this.name = name;
         return this;
      }

      /**
       * Required.
       * @param domains Specifies a list of domains used by users to access their website.
       * @return The UpdateService builder.
       */
      public Builder domains(List<Domain> domains) {
         this.domains = domains;
         return this;
      }

      /**
       * Required.
       * @param origins Specifies a list of origin domains or IP addresses where the original assets are stored.
       * @return The UpdateService builder.
       */
      public Builder origins(List<Origin> origins) {
         this.origins = origins;
         return this;
      }

      /**
       * Optional.
       * @param caching Specifies the TTL rules for the assets under this service. Supports wildcards for fine-grained control.
       * @return The UpdateService builder.
       */
      public Builder caching(List<Caching> caching) {
         this.caching = caching;
         return this;
      }

      /**
       * Optional.
       * @param restrictions Specifies the restrictions that define who can access assets (content from the CDN cache).
       * @return The UpdateService builder.
       */
      public Builder restrictions(List<Restriction> restrictions) {
         this.restrictions = restrictions;
         return this;
      }

      /**
       * Required.
       * @param flavorId Specifies the CDN provider flavor ID to use. For a list of flavors, see the operation to list
       *                 the available flavors. The minimum length for flavor_id is 3. The maximum length is 256.
       * @return The UpdateService builder.
       */
      public Builder flavorId(String flavorId) {
         this.flavorId = flavorId;
         return this;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



