Class SignupUrlsResource.CreateRequest
Creates an enterprise signup URL.
Inheritance
Inherited Members
Namespace: Google.Apis.AndroidManagement.v1
Assembly: Google.Apis.AndroidManagement.v1.dll
Syntax
public class SignupUrlsResource.CreateRequest : AndroidManagementBaseServiceRequest<SignupUrl>, IClientServiceRequest<SignupUrl>, IClientServiceRequest
Constructors
CreateRequest(IClientService)
Constructs a new Create request.
Declaration
public CreateRequest(IClientService service)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service |
Properties
AdminEmail
Optional. Email address used to prefill the admin field of the enterprise signup form. This value is a hint only and can be altered by the user. If allowedDomains is non-empty then this must belong to one of the allowedDomains.
Declaration
[RequestParameter("adminEmail", RequestParameterType.Query)]
public virtual string AdminEmail { get; set; }
Property Value
Type | Description |
---|---|
string |
AllowedDomains
Optional. A list of domains that are permitted for the admin email. The IT admin cannot enter an email address with a domain name that is not in this list. Subdomains of domains in this list are not allowed but can be allowed by adding a second entry which has *. prefixed to the domain name (e.g. *.example.com). If the field is not present or is an empty list then the IT admin is free to use any valid domain name. Personal email domains are always allowed, but will result in the creation of a managed Google Play Accounts enterprise.
Declaration
[RequestParameter("allowedDomains", RequestParameterType.Query)]
public virtual Repeatable<string> AllowedDomains { get; set; }
Property Value
Type | Description |
---|---|
Repeatable<string> |
CallbackUrl
The callback URL that the admin will be redirected to after successfully creating an enterprise. Before redirecting there the system will add a query parameter to this URL named enterpriseToken which will contain an opaque token to be used for the create enterprise request. The URL will be parsed then reformatted in order to add the enterpriseToken parameter, so there may be some minor formatting changes.
Declaration
[RequestParameter("callbackUrl", RequestParameterType.Query)]
public virtual string CallbackUrl { get; set; }
Property Value
Type | Description |
---|---|
string |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
ProjectId
The ID of the Google Cloud Platform project which will own the enterprise.
Declaration
[RequestParameter("projectId", RequestParameterType.Query)]
public virtual string ProjectId { get; set; }
Property Value
Type | Description |
---|---|
string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Methods
InitParameters()
Initializes Create parameter list.
Declaration
protected override void InitParameters()