Class: Google::Apis::ApigatewayV1beta::ApigatewayGateway

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

Overview

A Gateway is an API-aware HTTP proxy. It performs API-Method and/or API- Consumer specific actions based on an API Config such as authentication, policy enforcement, and backend selection.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ApigatewayGateway

Returns a new instance of ApigatewayGateway.

[View source]

581
582
583
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 581

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

Instance Attribute Details

#api_configString

Required. Resource name of the API Config for this Gateway. Format: projects/ project/locations/global/apis/api/configs/apiConfig Corresponds to the JSON property apiConfig

Returns:

  • (String)

540
541
542
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 540

def api_config
  @api_config
end

#create_timeString

Output only. Created time. Corresponds to the JSON property createTime

Returns:

  • (String)

545
546
547
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 545

def create_time
  @create_time
end

#default_hostnameString

Output only. The default API Gateway host name of the form `gateway_id-hash .region_code.gateway.dev. Corresponds to the JSON propertydefaultHostname`

Returns:

  • (String)

551
552
553
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 551

def default_hostname
  @default_hostname
end

#display_nameString

Optional. Display name. Corresponds to the JSON property displayName

Returns:

  • (String)

556
557
558
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 556

def display_name
  @display_name
end

#labelsHash<String,String>

Optional. Resource labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. https://cloud.google.com/compute/ docs/labeling-resources Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)

563
564
565
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 563

def labels
  @labels
end

#nameString

Output only. Resource name of the Gateway. Format: projects/project/ locations/location/gateways/gateway Corresponds to the JSON property name

Returns:

  • (String)

569
570
571
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 569

def name
  @name
end

#stateString

Output only. The current state of the Gateway. Corresponds to the JSON property state

Returns:

  • (String)

574
575
576
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 574

def state
  @state
end

#update_timeString

Output only. Updated time. Corresponds to the JSON property updateTime

Returns:

  • (String)

579
580
581
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 579

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

586
587
588
589
590
591
592
593
594
595
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 586

def update!(**args)
  @api_config = args[:api_config] if args.key?(:api_config)
  @create_time = args[:create_time] if args.key?(:create_time)
  @default_hostname = args[:default_hostname] if args.key?(:default_hostname)
  @display_name = args[:display_name] if args.key?(:display_name)
  @labels = args[:labels] if args.key?(:labels)
  @name = args[:name] if args.key?(:name)
  @state = args[:state] if args.key?(:state)
  @update_time = args[:update_time] if args.key?(:update_time)
end