Sha256: 94f279696a7dd69e4fa56d9f1f3ebe420604f1ffc12f861daefc97ba8b247ac8

Contents?: true

Size: 1.63 KB

Versions: 108

Compression:

Stored size: 1.63 KB

Contents

require_relative '../model'
module Spaceship
  class ConnectAPI
    class Profile
      include Spaceship::ConnectAPI::Model

      attr_accessor :name
      attr_accessor :platform
      attr_accessor :profile_content
      attr_accessor :uuid
      attr_accessor :created_date
      attr_accessor :profile_state
      attr_accessor :profile_type
      attr_accessor :expiration_date

      attr_mapping({
        "name" => "name",
        "platform" => "platform",
        "profileContent" => "profile_content",
        "uuid" => "uuid",
        "createdDate" => "created_date",
        "profileState" => "profile_state",
        "profileType" => "profile_type",
        "expirationDate" => "expiration_date"
      })

      module ProfileState
        ACTIVE = "ACTIVE"
        INVALID = "INVALID"
      end

      module ProfileType
        IOS_APP_DEVELOPMENT = "IOS_APP_DEVELOPMENT"
        IOS_APP_STORE = "IOS_APP_STORE"
        IOS_APP_ADHOC = "IOS_APP_ADHOC"
        IOS_APP_INHOUSE = "IOS_APP_INHOUSE"
        MAC_APP_DEVELOPMENT = "MAC_APP_DEVELOPMENT"
        MAC_APP_STORE = "MAC_APP_STORE"
        MAC_APP_DIRECT = "MAC_APP_DIRECT"
        TVOS_APP_DEVELOPMENT = "TVOS_APP_DEVELOPMENT"
        TVOS_APP_STORE = "TVOS_APP_STORE"
        TVOS_APP_ADHOC = "TVOS_APP_ADHOC"
        TVOS_APP_INHOUSE = "TVOS_APP_INHOUSE"
      end

      def self.type
        return "profiles"
      end

      #
      # API
      #

      def self.all(filter: {}, includes: nil, limit: nil, sort: nil)
        resps = Spaceship::ConnectAPI.get_profiles(filter: filter, includes: includes).all_pages
        return resps.map(&:to_models).flatten
      end
    end
  end
end

Version data entries

108 entries across 108 versions & 2 rubygems

Version Path
fastlane-2.130.0.beta.20190822200101 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.130.0.beta.20190821200034 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.130.0.beta.20190820200024 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.130.0.beta.20190819200109 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.130.0.beta.20190818200034 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.130.0.beta.20190817200018 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.130.0.beta.20190816200015 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.130.0.beta.20190815200057 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.130.0.beta.20190814200010 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.129.0 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.129.0.beta.20190813200016 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.129.0.beta.20190811200106 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.129.0.beta.20190810200059 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.129.0.beta.20190809200051 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.129.0.beta.20190808200013 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.129.0.beta.20190807200122 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.129.0.beta.20190806200055 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.129.0.beta.20190805200019 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.129.0.beta.20190804200053 spaceship/lib/spaceship/connect_api/models/profile.rb
fastlane-2.129.0.beta.20190803200103 spaceship/lib/spaceship/connect_api/models/profile.rb