Class: Google::Apis::NetworkconnectivityV1::RegionalEndpoint
- Inherits:
-
Object
- Object
- Google::Apis::NetworkconnectivityV1::RegionalEndpoint
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networkconnectivity_v1/classes.rb,
lib/google/apis/networkconnectivity_v1/representations.rb,
lib/google/apis/networkconnectivity_v1/representations.rb
Overview
The RegionalEndpoint resource.
Instance Attribute Summary collapse
-
#access_type ⇒ String
Required.
-
#address ⇒ String
Optional.
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
Optional.
-
#ip_address ⇒ String
Output only.
-
#labels ⇒ Hash<String,String>
User-defined labels.
-
#name ⇒ String
Output only.
-
#network ⇒ String
The name of the VPC network for this private regional endpoint.
-
#psc_forwarding_rule ⇒ String
Output only.
-
#subnetwork ⇒ String
The name of the subnetwork from which the IP address will be allocated.
-
#target_google_api ⇒ String
Required.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RegionalEndpoint
constructor
A new instance of RegionalEndpoint.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RegionalEndpoint
Returns a new instance of RegionalEndpoint.
2674 2675 2676 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2674 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access_type ⇒ String
Required. The access type of this regional endpoint. This field is reflected
in the PSC Forwarding Rule configuration to enable global access.
Corresponds to the JSON property accessType
2606 2607 2608 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2606 def access_type @access_type end |
#address ⇒ String
Optional. The IP Address of the Regional Endpoint. When no address is provided,
an IP from the subnetwork is allocated. Use one of the following formats: *
IPv4 address as in 10.0.0.1
* Address resource URI as in projects/
project/
regions/
region/addresses/
address_name`
Corresponds to the JSON property
address`
2614 2615 2616 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2614 def address @address end |
#create_time ⇒ String
Output only. Time when the RegionalEndpoint was created.
Corresponds to the JSON property createTime
2619 2620 2621 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2619 def create_time @create_time end |
#description ⇒ String
Optional. A description of this resource.
Corresponds to the JSON property description
2624 2625 2626 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2624 def description @description end |
#ip_address ⇒ String
Output only. The literal IP address of the PSC Forwarding Rule created on
behalf of the customer. This field is deprecated. Use address instead.
Corresponds to the JSON property ipAddress
2630 2631 2632 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2630 def ip_address @ip_address end |
#labels ⇒ Hash<String,String>
User-defined labels.
Corresponds to the JSON property labels
2635 2636 2637 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2635 def labels @labels end |
#name ⇒ String
Output only. The name of a RegionalEndpoint. Format: projects/
project/
locations/
location/regionalEndpoints/
regional_endpoint`.
Corresponds to the JSON property
name`
2641 2642 2643 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2641 def name @name end |
#network ⇒ String
The name of the VPC network for this private regional endpoint. Format:
projects/
project/global/networks/
network`
Corresponds to the JSON property
network`
2647 2648 2649 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2647 def network @network end |
#psc_forwarding_rule ⇒ String
Output only. The resource reference of the PSC Forwarding Rule created on
behalf of the customer. Format: //compute.googleapis.com/projects/
project/
regions/
region/forwardingRules/
forwarding_rule_name`
Corresponds to the JSON property
pscForwardingRule`
2654 2655 2656 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2654 def psc_forwarding_rule @psc_forwarding_rule end |
#subnetwork ⇒ String
The name of the subnetwork from which the IP address will be allocated. Format:
projects/
project/regions/
region/subnetworks/
subnetwork`
Corresponds to the JSON property
subnetwork`
2660 2661 2662 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2660 def subnetwork @subnetwork end |
#target_google_api ⇒ String
Required. The service endpoint this private regional endpoint connects to.
Format: `apiname
.region
.p.rep.googleapis.comExample: "cloudkms.us-
central1.p.rep.googleapis.com".
Corresponds to the JSON property
targetGoogleApi`
2667 2668 2669 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2667 def target_google_api @target_google_api end |
#update_time ⇒ String
Output only. Time when the RegionalEndpoint was updated.
Corresponds to the JSON property updateTime
2672 2673 2674 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2672 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2679 def update!(**args) @access_type = args[:access_type] if args.key?(:access_type) @address = args[:address] if args.key?(:address) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @ip_address = args[:ip_address] if args.key?(:ip_address) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @network = args[:network] if args.key?(:network) @psc_forwarding_rule = args[:psc_forwarding_rule] if args.key?(:psc_forwarding_rule) @subnetwork = args[:subnetwork] if args.key?(:subnetwork) @target_google_api = args[:target_google_api] if args.key?(:target_google_api) @update_time = args[:update_time] if args.key?(:update_time) end |