Show / Hide Table of Contents

Class GoogleIdentityAccesscontextmanagerV1EgressTo

Defines the conditions under which an EgressPolicy matches a request. Conditions are based on information about the ApiOperation intended to be performed on the resources specified. Note that if the destination of the request is also protected by a ServicePerimeter, then that ServicePerimeter must have an IngressPolicy which allows access in order for this request to succeed. The request must match operations AND resources fields in order to be allowed egress out of the perimeter.

Inheritance
object
GoogleIdentityAccesscontextmanagerV1EgressTo
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.CloudAsset.v1p7beta1.Data
Assembly: Google.Apis.CloudAsset.v1p7beta1.dll
Syntax
public class GoogleIdentityAccesscontextmanagerV1EgressTo : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

ExternalResources

A list of external resources that are allowed to be accessed. Only AWS and Azure resources are supported. For Amazon S3, the supported formats are s3://BUCKET_NAME, s3a://BUCKET_NAME, and s3n://BUCKET_NAME. For Azure Storage, the supported format is azure://myaccount.blob.core.windows.net/CONTAINER_NAME. A request matches if it contains an external resource in this list (Example: s3://bucket/path). Currently '*' is not allowed.

Declaration
[JsonProperty("externalResources")]
public virtual IList<string> ExternalResources { get; set; }
Property Value
Type Description
IList<string>

Operations

A list of ApiOperations allowed to be performed by the sources specified in the corresponding EgressFrom. A request matches if it uses an operation/service in this list.

Declaration
[JsonProperty("operations")]
public virtual IList<GoogleIdentityAccesscontextmanagerV1ApiOperation> Operations { get; set; }
Property Value
Type Description
IList<GoogleIdentityAccesscontextmanagerV1ApiOperation>

Resources

A list of resources, currently only projects in the form projects/, that are allowed to be accessed by sources defined in the corresponding EgressFrom. A request matches if it contains a resource in this list. If * is specified for resources, then this EgressTo rule will authorize access to all resources outside the perimeter.

Declaration
[JsonProperty("resources")]
public virtual IList<string> Resources { get; set; }
Property Value
Type Description
IList<string>

Roles

IAM roles that represent the set of operations that the sources specified in the corresponding EgressFrom. are allowed to perform in this ServicePerimeter.

Declaration
[JsonProperty("roles")]
public virtual IList<string> Roles { get; set; }
Property Value
Type Description
IList<string>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX