Show / Hide Table of Contents

Class ProjectsResource.LocationsResource.ServicesResource

The "services" collection of methods.

Inheritance
System.Object
ProjectsResource.LocationsResource.ServicesResource
Namespace: Google.Apis.CloudRun.v1
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class ServicesResource : object

Constructors

ServicesResource(IClientService)

Constructs a new resource.

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

Methods

Create(Service, String)

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 namespace in which the service should be created. For Cloud Run (fully managed), replace {namespace_id} with the project ID or number.

Returns
Type Description
ProjectsResource.LocationsResource.ServicesResource.CreateRequest

Delete(String)

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 to delete. For Cloud Run (fully managed), replace {namespace_id} with the project ID or number.

Returns
Type Description
ProjectsResource.LocationsResource.ServicesResource.DeleteRequest

Get(String)

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 to retrieve. For Cloud Run (fully managed), replace {namespace_id} with the project ID or number.

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)

List services.

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

The namespace from which the services should be listed. For Cloud Run (fully managed), replace {namespace_id} with the project ID or number.

Returns
Type Description
ProjectsResource.LocationsResource.ServicesResource.ListRequest

ReplaceService(Service, String)

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. For Cloud Run (fully managed), replace {namespace_id} with the project ID or number.

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