Show / Hide Table of Contents

Class ProjectsResource.LocationsResource.ServicesResource

The "services" collection of methods.

Inheritance
System.Object
ProjectsResource.LocationsResource.ServicesResource
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.CloudRun.v1alpha1
Assembly: Google.Apis.CloudRun.v1alpha1.dll
Syntax
public class ServicesResource

Constructors

ServicesResource(IClientService)

Constructs a new resource.

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

Methods

Create(Service, String)

Rpc to create a service.

Declaration
public virtual ProjectsResource.LocationsResource.ServicesResource.CreateRequest Create(Service body, string parent)
Parameters
Type Name Description
Service body

The body of the request.

System.String parent

The project ID or project number in which this service should be created.

Returns
Type Description
ProjectsResource.LocationsResource.ServicesResource.CreateRequest

Delete(String)

Rpc to delete a service. This will cause the Service to stop serving traffic and will delete the child entities like Routes, Configurations and Revisions.

Declaration
public virtual ProjectsResource.LocationsResource.ServicesResource.DeleteRequest Delete(string name)
Parameters
Type Name Description
System.String name

The name of the service being deleted. If needed, replace {namespace_id} with the project ID.

Returns
Type Description
ProjectsResource.LocationsResource.ServicesResource.DeleteRequest

Get(String)

Rpc to get information about a service.

Declaration
public virtual ProjectsResource.LocationsResource.ServicesResource.GetRequest Get(string name)
Parameters
Type Name Description
System.String name

The name of the service being retrieved. If needed, replace {namespace_id} with the project ID.

Returns
Type Description
ProjectsResource.LocationsResource.ServicesResource.GetRequest

GetIamPolicy(String)

Get the IAM Access Control policy currently in effect for the given Cloud Run service. This result does not include any inherited policies.

Declaration
public virtual ProjectsResource.LocationsResource.ServicesResource.GetIamPolicyRequest GetIamPolicy(string resource)
Parameters
Type Name Description
System.String resource

REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.

Returns
Type Description
ProjectsResource.LocationsResource.ServicesResource.GetIamPolicyRequest

List(String)

Rpc to list services.

Declaration
public virtual ProjectsResource.LocationsResource.ServicesResource.ListRequest List(string parent)
Parameters
Type Name Description
System.String parent

The project ID or project number from which the services should be listed.

Returns
Type Description
ProjectsResource.LocationsResource.ServicesResource.ListRequest

ReplaceService(Service, String)

Rpc to replace a service. Only the spec and metadata labels and annotations are modifiable. After the Update request, Cloud Run will work to make the 'status' match the requested 'spec'. May provide metadata.resourceVersion to enforce update from last read for optimistic concurrency control.

Declaration
public virtual ProjectsResource.LocationsResource.ServicesResource.ReplaceServiceRequest ReplaceService(Service body, string name)
Parameters
Type Name Description
Service body

The body of the request.

System.String name

The name of the service being replaced. If needed, replace {namespace_id} with the project ID.

Returns
Type Description
ProjectsResource.LocationsResource.ServicesResource.ReplaceServiceRequest

SetIamPolicy(SetIamPolicyRequest, String)

Sets the IAM Access control policy for the specified Service. Overwrites any existing policy.

Declaration
public virtual ProjectsResource.LocationsResource.ServicesResource.SetIamPolicyRequest SetIamPolicy(SetIamPolicyRequest body, string resource)
Parameters
Type Name Description
SetIamPolicyRequest body

The body of the request.

System.String resource

REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.

Returns
Type Description
ProjectsResource.LocationsResource.ServicesResource.SetIamPolicyRequest

TestIamPermissions(TestIamPermissionsRequest, String)

Returns permissions that a caller has on the specified Project. There are no permissions required for making this API call.

Declaration
public virtual ProjectsResource.LocationsResource.ServicesResource.TestIamPermissionsRequest TestIamPermissions(TestIamPermissionsRequest body, string resource)
Parameters
Type Name Description
TestIamPermissionsRequest body

The body of the request.

System.String resource

REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field.

Returns
Type Description
ProjectsResource.LocationsResource.ServicesResource.TestIamPermissionsRequest
Back to top