class Google::Apis::AndroidenterpriseV1::Enterprise
An Enterprises resource represents the binding between an EMM and a specific organization. That binding can be instantiated in one of two different ways using this API as follows: - For Google
managed domain customers, the process involves using Enterprises.enroll and Enterprises.setAccount (in conjunction with artifacts obtained from the Admin console and the Google
API Console) and submitted to the EMM through a more-or-less manual process. - For managed Google
Play Accounts customers, the process involves using Enterprises. generateSignupUrl and Enterprises.completeSignup in conjunction with the managed Google
Play sign-up UI (Google-provided mechanism) to create the binding without manual steps. As an EMM, you can support either or both approaches in your EMM console. See Create an Enterprise
for details.
Attributes
Admins of the enterprise. This is only supported for enterprises created via the EMM-initiated flow. Corresponds to the JSON property `administrator` @return [Array<Google::Apis::AndroidenterpriseV1::Administrator>]
The unique ID for the enterprise. Corresponds to the JSON property `id` @return [String]
The name of the enterprise, for example, “Example, Inc”. Corresponds to the JSON property `name` @return [String]
The enterprise's primary domain, such as “example.com”. Corresponds to the JSON property `primaryDomain` @return [String]
Public Class Methods
# File lib/google/apis/androidenterprise_v1/classes.rb, line 843 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/androidenterprise_v1/classes.rb, line 848 def update!(**args) @administrator = args[:administrator] if args.key?(:administrator) @id = args[:id] if args.key?(:id) @name = args[:name] if args.key?(:name) @primary_domain = args[:primary_domain] if args.key?(:primary_domain) end