Class: Google::Apis::NetworkmanagementV1beta1::LoadBalancerBackendInfo

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

Overview

For display only. Metadata associated with the load balancer backend.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LoadBalancerBackendInfo

Returns a new instance of LoadBalancerBackendInfo.



1376
1377
1378
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1376

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

Instance Attribute Details

#backend_display_nameString

Display name of the backend. For example, it might be an instance name for the instance group backends, or an IP address and port for zonal network endpoint group backends. Corresponds to the JSON property backendDisplayName

Returns:

  • (String)


1338
1339
1340
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1338

def backend_display_name
  @backend_display_name
end

#backend_service_uriString

URI of the backend service this backend belongs to (if applicable). Corresponds to the JSON property backendServiceUri

Returns:

  • (String)


1343
1344
1345
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1343

def backend_service_uri
  @backend_service_uri
end

#health_check_config_stateString

Output only. Health check configuration state for the backend. This is a result of the static firewall analysis (verifying that health check traffic from required IP ranges to the backend is allowed or not). The backend might still be unhealthy even if these firewalls are configured. Please refer to the documentation for more information: https://cloud.google.com/load-balancing/ docs/firewall-rules Corresponds to the JSON property healthCheckConfigState

Returns:

  • (String)


1353
1354
1355
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1353

def health_check_config_state
  @health_check_config_state
end

#health_check_uriString

URI of the health check attached to this backend (if applicable). Corresponds to the JSON property healthCheckUri

Returns:

  • (String)


1358
1359
1360
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1358

def health_check_uri
  @health_check_uri
end

#instance_group_uriString

URI of the instance group this backend belongs to (if applicable). Corresponds to the JSON property instanceGroupUri

Returns:

  • (String)


1363
1364
1365
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1363

def instance_group_uri
  @instance_group_uri
end

#instance_uriString

URI of the backend instance (if applicable). Populated for instance group backends, and zonal NEG backends. Corresponds to the JSON property instanceUri

Returns:

  • (String)


1369
1370
1371
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1369

def instance_uri
  @instance_uri
end

#network_endpoint_group_uriString

URI of the network endpoint group this backend belongs to (if applicable). Corresponds to the JSON property networkEndpointGroupUri

Returns:

  • (String)


1374
1375
1376
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1374

def network_endpoint_group_uri
  @network_endpoint_group_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1381
1382
1383
1384
1385
1386
1387
1388
1389
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1381

def update!(**args)
  @backend_display_name = args[:backend_display_name] if args.key?(:backend_display_name)
  @backend_service_uri = args[:backend_service_uri] if args.key?(:backend_service_uri)
  @health_check_config_state = args[:health_check_config_state] if args.key?(:health_check_config_state)
  @health_check_uri = args[:health_check_uri] if args.key?(:health_check_uri)
  @instance_group_uri = args[:instance_group_uri] if args.key?(:instance_group_uri)
  @instance_uri = args[:instance_uri] if args.key?(:instance_uri)
  @network_endpoint_group_uri = args[:network_endpoint_group_uri] if args.key?(:network_endpoint_group_uri)
end