Class: Google::Apis::ComputeAlpha::NetworkEndpointGroupServerlessDeployment

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb

Overview

Configuration for a serverless network endpoint group (NEG). The platform must be provided. Note: The target backend service must be in the same project and located in the same region as the Serverless NEG.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NetworkEndpointGroupServerlessDeployment

Returns a new instance of NetworkEndpointGroupServerlessDeployment.



23581
23582
23583
# File 'lib/google/apis/compute_alpha/classes.rb', line 23581

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#platformString

The platform of the backend target(s) of this NEG. Possible values include: 1. API Gateway: apigateway.googleapis.com 2. App Engine: appengine.googleapis.com

  1. Cloud Functions: cloudfunctions.googleapis.com 4. Cloud Run: run.googleapis. com Corresponds to the JSON property platform

Returns:

  • (String)


23553
23554
23555
# File 'lib/google/apis/compute_alpha/classes.rb', line 23553

def platform
  @platform
end

#resourceString

The user-defined name of the workload/instance. This value must be provided explicitly or in the urlMask. The resource identified by this value is platform-specific and is as follows: 1. API Gateway: The gateway ID 2. App Engine: The service name 3. Cloud Functions: The function name 4. Cloud Run: The service name Corresponds to the JSON property resource

Returns:

  • (String)


23562
23563
23564
# File 'lib/google/apis/compute_alpha/classes.rb', line 23562

def resource
  @resource
end

#url_maskString

A template to parse platform-specific fields from a request URL. URL mask allows for routing to multiple resources on the same serverless platform without having to create multiple Network Endpoint Groups and backend resources. The fields parsed by this template are platform-specific and are as follows: 1. API Gateway: The gateway ID 2. App Engine: The service and version

  1. Cloud Functions: The function name 4. Cloud Run: The service and tag Corresponds to the JSON property urlMask

Returns:

  • (String)


23572
23573
23574
# File 'lib/google/apis/compute_alpha/classes.rb', line 23572

def url_mask
  @url_mask
end

#versionString

The optional resource version. The version identified by this value is platform-specific and is follows: 1. API Gateway: Unused 2. App Engine: The service version 3. Cloud Functions: Unused 4. Cloud Run: The service tag Corresponds to the JSON property version

Returns:

  • (String)


23579
23580
23581
# File 'lib/google/apis/compute_alpha/classes.rb', line 23579

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



23586
23587
23588
23589
23590
23591
# File 'lib/google/apis/compute_alpha/classes.rb', line 23586

def update!(**args)
  @platform = args[:platform] if args.key?(:platform)
  @resource = args[:resource] if args.key?(:resource)
  @url_mask = args[:url_mask] if args.key?(:url_mask)
  @version = args[:version] if args.key?(:version)
end