Show / Hide Table of Contents

Class AppsResource.AuthorizedCertificatesResource

The "authorizedCertificates" collection of methods.

Inheritance
System.Object
AppsResource.AuthorizedCertificatesResource
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Appengine.v1beta
Assembly: Google.Apis.Appengine.v1beta.dll
Syntax
public class AuthorizedCertificatesResource

Constructors

AuthorizedCertificatesResource(IClientService)

Constructs a new resource.

Declaration
public AuthorizedCertificatesResource(IClientService service)
Parameters
Type Name Description
IClientService service

Methods

Create(AuthorizedCertificate, String)

Uploads the specified SSL certificate.

Declaration
public virtual AppsResource.AuthorizedCertificatesResource.CreateRequest Create(AuthorizedCertificate body, string appsId)
Parameters
Type Name Description
AuthorizedCertificate body

The body of the request.

System.String appsId

Part of parent. Name of the parent Application resource. Example: apps/myapp.

Returns
Type Description
AppsResource.AuthorizedCertificatesResource.CreateRequest

Delete(String, String)

Deletes the specified SSL certificate.

Declaration
public virtual AppsResource.AuthorizedCertificatesResource.DeleteRequest Delete(string appsId, string authorizedCertificatesId)
Parameters
Type Name Description
System.String appsId

Part of name. Name of the resource to delete. Example: apps/myapp/authorizedCertificates/12345.

System.String authorizedCertificatesId

Part of name. See documentation of appsId.

Returns
Type Description
AppsResource.AuthorizedCertificatesResource.DeleteRequest

Get(String, String)

Gets the specified SSL certificate.

Declaration
public virtual AppsResource.AuthorizedCertificatesResource.GetRequest Get(string appsId, string authorizedCertificatesId)
Parameters
Type Name Description
System.String appsId

Part of name. Name of the resource requested. Example: apps/myapp/authorizedCertificates/12345.

System.String authorizedCertificatesId

Part of name. See documentation of appsId.

Returns
Type Description
AppsResource.AuthorizedCertificatesResource.GetRequest

List(String)

Lists all SSL certificates the user is authorized to administer.

Declaration
public virtual AppsResource.AuthorizedCertificatesResource.ListRequest List(string appsId)
Parameters
Type Name Description
System.String appsId

Part of parent. Name of the parent Application resource. Example: apps/myapp.

Returns
Type Description
AppsResource.AuthorizedCertificatesResource.ListRequest

Patch(AuthorizedCertificate, String, String)

Updates the specified SSL certificate. To renew a certificate and maintain its existing domain mappings, update certificate_data with a new certificate. The new certificate must be applicable to the same domains as the original certificate. The certificate display_name may also be updated.

Declaration
public virtual AppsResource.AuthorizedCertificatesResource.PatchRequest Patch(AuthorizedCertificate body, string appsId, string authorizedCertificatesId)
Parameters
Type Name Description
AuthorizedCertificate body

The body of the request.

System.String appsId

Part of name. Name of the resource to update. Example: apps/myapp/authorizedCertificates/12345.

System.String authorizedCertificatesId

Part of name. See documentation of appsId.

Returns
Type Description
AppsResource.AuthorizedCertificatesResource.PatchRequest
In This Article
Back to top