Sha256: 260c546e8622cb38ea1c4315c2889e43ff232c9d604b279b4d4472e90e3746dd

Contents?: true

Size: 708 Bytes

Versions: 4

Compression:

Stored size: 708 Bytes

Contents

# frozen_string_literal: true

require 'graphql'

module Osso
  module GraphQL
    module Types
      class IdentityProvider < Types::BaseObject
        description 'Represents a SAML based IDP instance for an EnterpriseAccount'

        field :id, ID, null: false
        field :enterprise_account_id, ID, null: false
        field :service, Types::IdentityProviderService, null: true
        field :domain, String, null: false
        field :acs_url, String, null: false
        field :sso_url, String, null: true
        field :sso_cert, String, null: true
        field :status, Types::IdentityProviderStatus, null: false
        field :acs_url_validator, String, null: false
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
osso-0.0.5.pre.lambda lib/osso/graphql/types/identity_provider.rb
osso-0.0.5.pre.kappa lib/osso/graphql/types/identity_provider.rb
osso-0.0.5.pre.iota lib/osso/graphql/types/identity_provider.rb
osso-0.0.5.pre.theta lib/osso/graphql/types/identity_provider.rb