Class: Google::Cloud::VmwareEngine::V1::PrivateConnection
- Inherits:
-
Object
- Object
- Google::Cloud::VmwareEngine::V1::PrivateConnection
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb
Overview
Private connection resource that provides connectivity for VMware Engine private clouds.
Defined Under Namespace
Modules: PeeringState, RoutingMode, State, Type
Instance Attribute Summary collapse
-
#create_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#description ⇒ ::String
Optional.
-
#name ⇒ ::String
readonly
Output only.
-
#peering_id ⇒ ::String
readonly
Output only.
-
#peering_state ⇒ ::Google::Cloud::VmwareEngine::V1::PrivateConnection::PeeringState
readonly
Output only.
-
#routing_mode ⇒ ::Google::Cloud::VmwareEngine::V1::PrivateConnection::RoutingMode
Optional.
-
#service_network ⇒ ::String
Required.
-
#state ⇒ ::Google::Cloud::VmwareEngine::V1::PrivateConnection::State
readonly
Output only.
-
#type ⇒ ::Google::Cloud::VmwareEngine::V1::PrivateConnection::Type
Required.
-
#uid ⇒ ::String
readonly
Output only.
-
#update_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#vmware_engine_network ⇒ ::String
Required.
-
#vmware_engine_network_canonical ⇒ ::String
readonly
Output only.
Instance Attribute Details
#create_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Creation time of this resource.
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 824 class PrivateConnection include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Enum State defines possible states of private connection. module State # The default value. This value is used if the state is omitted. STATE_UNSPECIFIED = 0 # The private connection is being created. CREATING = 1 # The private connection is ready. ACTIVE = 2 # The private connection is being updated. UPDATING = 3 # The private connection is being deleted. DELETING = 4 # The private connection is not provisioned, since no private cloud is # present for which this private connection is needed. UNPROVISIONED = 5 # The private connection is in failed state. FAILED = 6 end # Enum Type defines possible types of private connection. module Type # The default value. This value should never be used. TYPE_UNSPECIFIED = 0 # Connection used for establishing [private services # access](https://cloud.google.com/vpc/docs/private-services-access). PRIVATE_SERVICE_ACCESS = 1 # Connection used for connecting to NetApp Cloud Volumes. NETAPP_CLOUD_VOLUMES = 2 # Connection used for connecting to Dell PowerScale. DELL_POWERSCALE = 3 # Connection used for connecting to third-party services. THIRD_PARTY_SERVICE = 4 end # Possible types for RoutingMode module RoutingMode # The default value. This value should never be used. ROUTING_MODE_UNSPECIFIED = 0 # Global Routing Mode GLOBAL = 1 # Regional Routing Mode REGIONAL = 2 end # Enum PeeringState defines the possible states of peering between service # network and the vpc network peered to service network module PeeringState # The default value. This value is used if the peering state is omitted or # unknown. PEERING_STATE_UNSPECIFIED = 0 # The peering is in active state. PEERING_ACTIVE = 1 # The peering is in inactive state. PEERING_INACTIVE = 2 end end |
#description ⇒ ::String
Returns Optional. User-provided description for this private connection.
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 824 class PrivateConnection include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Enum State defines possible states of private connection. module State # The default value. This value is used if the state is omitted. STATE_UNSPECIFIED = 0 # The private connection is being created. CREATING = 1 # The private connection is ready. ACTIVE = 2 # The private connection is being updated. UPDATING = 3 # The private connection is being deleted. DELETING = 4 # The private connection is not provisioned, since no private cloud is # present for which this private connection is needed. UNPROVISIONED = 5 # The private connection is in failed state. FAILED = 6 end # Enum Type defines possible types of private connection. module Type # The default value. This value should never be used. TYPE_UNSPECIFIED = 0 # Connection used for establishing [private services # access](https://cloud.google.com/vpc/docs/private-services-access). PRIVATE_SERVICE_ACCESS = 1 # Connection used for connecting to NetApp Cloud Volumes. NETAPP_CLOUD_VOLUMES = 2 # Connection used for connecting to Dell PowerScale. DELL_POWERSCALE = 3 # Connection used for connecting to third-party services. THIRD_PARTY_SERVICE = 4 end # Possible types for RoutingMode module RoutingMode # The default value. This value should never be used. ROUTING_MODE_UNSPECIFIED = 0 # Global Routing Mode GLOBAL = 1 # Regional Routing Mode REGIONAL = 2 end # Enum PeeringState defines the possible states of peering between service # network and the vpc network peered to service network module PeeringState # The default value. This value is used if the peering state is omitted or # unknown. PEERING_STATE_UNSPECIFIED = 0 # The peering is in active state. PEERING_ACTIVE = 1 # The peering is in inactive state. PEERING_INACTIVE = 2 end end |
#name ⇒ ::String (readonly)
Returns Output only. The resource name of the private connection.
Resource names are schemeless URIs that follow the conventions in
https://cloud.google.com/apis/design/resource_names.
For example:
projects/my-project/locations/us-central1/privateConnections/my-connection.
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 824 class PrivateConnection include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Enum State defines possible states of private connection. module State # The default value. This value is used if the state is omitted. STATE_UNSPECIFIED = 0 # The private connection is being created. CREATING = 1 # The private connection is ready. ACTIVE = 2 # The private connection is being updated. UPDATING = 3 # The private connection is being deleted. DELETING = 4 # The private connection is not provisioned, since no private cloud is # present for which this private connection is needed. UNPROVISIONED = 5 # The private connection is in failed state. FAILED = 6 end # Enum Type defines possible types of private connection. module Type # The default value. This value should never be used. TYPE_UNSPECIFIED = 0 # Connection used for establishing [private services # access](https://cloud.google.com/vpc/docs/private-services-access). PRIVATE_SERVICE_ACCESS = 1 # Connection used for connecting to NetApp Cloud Volumes. NETAPP_CLOUD_VOLUMES = 2 # Connection used for connecting to Dell PowerScale. DELL_POWERSCALE = 3 # Connection used for connecting to third-party services. THIRD_PARTY_SERVICE = 4 end # Possible types for RoutingMode module RoutingMode # The default value. This value should never be used. ROUTING_MODE_UNSPECIFIED = 0 # Global Routing Mode GLOBAL = 1 # Regional Routing Mode REGIONAL = 2 end # Enum PeeringState defines the possible states of peering between service # network and the vpc network peered to service network module PeeringState # The default value. This value is used if the peering state is omitted or # unknown. PEERING_STATE_UNSPECIFIED = 0 # The peering is in active state. PEERING_ACTIVE = 1 # The peering is in inactive state. PEERING_INACTIVE = 2 end end |
#peering_id ⇒ ::String (readonly)
Returns Output only. VPC network peering id between given network VPC and VMwareEngineNetwork.
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 824 class PrivateConnection include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Enum State defines possible states of private connection. module State # The default value. This value is used if the state is omitted. STATE_UNSPECIFIED = 0 # The private connection is being created. CREATING = 1 # The private connection is ready. ACTIVE = 2 # The private connection is being updated. UPDATING = 3 # The private connection is being deleted. DELETING = 4 # The private connection is not provisioned, since no private cloud is # present for which this private connection is needed. UNPROVISIONED = 5 # The private connection is in failed state. FAILED = 6 end # Enum Type defines possible types of private connection. module Type # The default value. This value should never be used. TYPE_UNSPECIFIED = 0 # Connection used for establishing [private services # access](https://cloud.google.com/vpc/docs/private-services-access). PRIVATE_SERVICE_ACCESS = 1 # Connection used for connecting to NetApp Cloud Volumes. NETAPP_CLOUD_VOLUMES = 2 # Connection used for connecting to Dell PowerScale. DELL_POWERSCALE = 3 # Connection used for connecting to third-party services. THIRD_PARTY_SERVICE = 4 end # Possible types for RoutingMode module RoutingMode # The default value. This value should never be used. ROUTING_MODE_UNSPECIFIED = 0 # Global Routing Mode GLOBAL = 1 # Regional Routing Mode REGIONAL = 2 end # Enum PeeringState defines the possible states of peering between service # network and the vpc network peered to service network module PeeringState # The default value. This value is used if the peering state is omitted or # unknown. PEERING_STATE_UNSPECIFIED = 0 # The peering is in active state. PEERING_ACTIVE = 1 # The peering is in inactive state. PEERING_INACTIVE = 2 end end |
#peering_state ⇒ ::Google::Cloud::VmwareEngine::V1::PrivateConnection::PeeringState (readonly)
Returns Output only. Peering state between service network and VMware Engine network.
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 824 class PrivateConnection include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Enum State defines possible states of private connection. module State # The default value. This value is used if the state is omitted. STATE_UNSPECIFIED = 0 # The private connection is being created. CREATING = 1 # The private connection is ready. ACTIVE = 2 # The private connection is being updated. UPDATING = 3 # The private connection is being deleted. DELETING = 4 # The private connection is not provisioned, since no private cloud is # present for which this private connection is needed. UNPROVISIONED = 5 # The private connection is in failed state. FAILED = 6 end # Enum Type defines possible types of private connection. module Type # The default value. This value should never be used. TYPE_UNSPECIFIED = 0 # Connection used for establishing [private services # access](https://cloud.google.com/vpc/docs/private-services-access). PRIVATE_SERVICE_ACCESS = 1 # Connection used for connecting to NetApp Cloud Volumes. NETAPP_CLOUD_VOLUMES = 2 # Connection used for connecting to Dell PowerScale. DELL_POWERSCALE = 3 # Connection used for connecting to third-party services. THIRD_PARTY_SERVICE = 4 end # Possible types for RoutingMode module RoutingMode # The default value. This value should never be used. ROUTING_MODE_UNSPECIFIED = 0 # Global Routing Mode GLOBAL = 1 # Regional Routing Mode REGIONAL = 2 end # Enum PeeringState defines the possible states of peering between service # network and the vpc network peered to service network module PeeringState # The default value. This value is used if the peering state is omitted or # unknown. PEERING_STATE_UNSPECIFIED = 0 # The peering is in active state. PEERING_ACTIVE = 1 # The peering is in inactive state. PEERING_INACTIVE = 2 end end |
#routing_mode ⇒ ::Google::Cloud::VmwareEngine::V1::PrivateConnection::RoutingMode
Returns Optional. Routing Mode. Default value is set to GLOBAL. For type = PRIVATE_SERVICE_ACCESS, this field can be set to GLOBAL or REGIONAL, for other types only GLOBAL is supported.
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 824 class PrivateConnection include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Enum State defines possible states of private connection. module State # The default value. This value is used if the state is omitted. STATE_UNSPECIFIED = 0 # The private connection is being created. CREATING = 1 # The private connection is ready. ACTIVE = 2 # The private connection is being updated. UPDATING = 3 # The private connection is being deleted. DELETING = 4 # The private connection is not provisioned, since no private cloud is # present for which this private connection is needed. UNPROVISIONED = 5 # The private connection is in failed state. FAILED = 6 end # Enum Type defines possible types of private connection. module Type # The default value. This value should never be used. TYPE_UNSPECIFIED = 0 # Connection used for establishing [private services # access](https://cloud.google.com/vpc/docs/private-services-access). PRIVATE_SERVICE_ACCESS = 1 # Connection used for connecting to NetApp Cloud Volumes. NETAPP_CLOUD_VOLUMES = 2 # Connection used for connecting to Dell PowerScale. DELL_POWERSCALE = 3 # Connection used for connecting to third-party services. THIRD_PARTY_SERVICE = 4 end # Possible types for RoutingMode module RoutingMode # The default value. This value should never be used. ROUTING_MODE_UNSPECIFIED = 0 # Global Routing Mode GLOBAL = 1 # Regional Routing Mode REGIONAL = 2 end # Enum PeeringState defines the possible states of peering between service # network and the vpc network peered to service network module PeeringState # The default value. This value is used if the peering state is omitted or # unknown. PEERING_STATE_UNSPECIFIED = 0 # The peering is in active state. PEERING_ACTIVE = 1 # The peering is in inactive state. PEERING_INACTIVE = 2 end end |
#service_network ⇒ ::String
Returns Required. Service network to create private connection.
Specify the name in the following form:
projects/{project}/global/networks/{network_id}
For type = PRIVATE_SERVICE_ACCESS, this field represents servicenetworking
VPC, e.g. projects/project-tp/global/networks/servicenetworking.
For type = NETAPP_CLOUD_VOLUME, this field represents NetApp service VPC,
e.g. projects/project-tp/global/networks/netapp-tenant-vpc.
For type = DELL_POWERSCALE, this field represent Dell service VPC, e.g.
projects/project-tp/global/networks/dell-tenant-vpc.
For type= THIRD_PARTY_SERVICE, this field could represent a consumer VPC or
any other producer VPC to which the VMware Engine Network needs to be
connected, e.g. projects/project/global/networks/vpc.
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 824 class PrivateConnection include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Enum State defines possible states of private connection. module State # The default value. This value is used if the state is omitted. STATE_UNSPECIFIED = 0 # The private connection is being created. CREATING = 1 # The private connection is ready. ACTIVE = 2 # The private connection is being updated. UPDATING = 3 # The private connection is being deleted. DELETING = 4 # The private connection is not provisioned, since no private cloud is # present for which this private connection is needed. UNPROVISIONED = 5 # The private connection is in failed state. FAILED = 6 end # Enum Type defines possible types of private connection. module Type # The default value. This value should never be used. TYPE_UNSPECIFIED = 0 # Connection used for establishing [private services # access](https://cloud.google.com/vpc/docs/private-services-access). PRIVATE_SERVICE_ACCESS = 1 # Connection used for connecting to NetApp Cloud Volumes. NETAPP_CLOUD_VOLUMES = 2 # Connection used for connecting to Dell PowerScale. DELL_POWERSCALE = 3 # Connection used for connecting to third-party services. THIRD_PARTY_SERVICE = 4 end # Possible types for RoutingMode module RoutingMode # The default value. This value should never be used. ROUTING_MODE_UNSPECIFIED = 0 # Global Routing Mode GLOBAL = 1 # Regional Routing Mode REGIONAL = 2 end # Enum PeeringState defines the possible states of peering between service # network and the vpc network peered to service network module PeeringState # The default value. This value is used if the peering state is omitted or # unknown. PEERING_STATE_UNSPECIFIED = 0 # The peering is in active state. PEERING_ACTIVE = 1 # The peering is in inactive state. PEERING_INACTIVE = 2 end end |
#state ⇒ ::Google::Cloud::VmwareEngine::V1::PrivateConnection::State (readonly)
Returns Output only. State of the private connection.
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 824 class PrivateConnection include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Enum State defines possible states of private connection. module State # The default value. This value is used if the state is omitted. STATE_UNSPECIFIED = 0 # The private connection is being created. CREATING = 1 # The private connection is ready. ACTIVE = 2 # The private connection is being updated. UPDATING = 3 # The private connection is being deleted. DELETING = 4 # The private connection is not provisioned, since no private cloud is # present for which this private connection is needed. UNPROVISIONED = 5 # The private connection is in failed state. FAILED = 6 end # Enum Type defines possible types of private connection. module Type # The default value. This value should never be used. TYPE_UNSPECIFIED = 0 # Connection used for establishing [private services # access](https://cloud.google.com/vpc/docs/private-services-access). PRIVATE_SERVICE_ACCESS = 1 # Connection used for connecting to NetApp Cloud Volumes. NETAPP_CLOUD_VOLUMES = 2 # Connection used for connecting to Dell PowerScale. DELL_POWERSCALE = 3 # Connection used for connecting to third-party services. THIRD_PARTY_SERVICE = 4 end # Possible types for RoutingMode module RoutingMode # The default value. This value should never be used. ROUTING_MODE_UNSPECIFIED = 0 # Global Routing Mode GLOBAL = 1 # Regional Routing Mode REGIONAL = 2 end # Enum PeeringState defines the possible states of peering between service # network and the vpc network peered to service network module PeeringState # The default value. This value is used if the peering state is omitted or # unknown. PEERING_STATE_UNSPECIFIED = 0 # The peering is in active state. PEERING_ACTIVE = 1 # The peering is in inactive state. PEERING_INACTIVE = 2 end end |
#type ⇒ ::Google::Cloud::VmwareEngine::V1::PrivateConnection::Type
Returns Required. Private connection type.
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 824 class PrivateConnection include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Enum State defines possible states of private connection. module State # The default value. This value is used if the state is omitted. STATE_UNSPECIFIED = 0 # The private connection is being created. CREATING = 1 # The private connection is ready. ACTIVE = 2 # The private connection is being updated. UPDATING = 3 # The private connection is being deleted. DELETING = 4 # The private connection is not provisioned, since no private cloud is # present for which this private connection is needed. UNPROVISIONED = 5 # The private connection is in failed state. FAILED = 6 end # Enum Type defines possible types of private connection. module Type # The default value. This value should never be used. TYPE_UNSPECIFIED = 0 # Connection used for establishing [private services # access](https://cloud.google.com/vpc/docs/private-services-access). PRIVATE_SERVICE_ACCESS = 1 # Connection used for connecting to NetApp Cloud Volumes. NETAPP_CLOUD_VOLUMES = 2 # Connection used for connecting to Dell PowerScale. DELL_POWERSCALE = 3 # Connection used for connecting to third-party services. THIRD_PARTY_SERVICE = 4 end # Possible types for RoutingMode module RoutingMode # The default value. This value should never be used. ROUTING_MODE_UNSPECIFIED = 0 # Global Routing Mode GLOBAL = 1 # Regional Routing Mode REGIONAL = 2 end # Enum PeeringState defines the possible states of peering between service # network and the vpc network peered to service network module PeeringState # The default value. This value is used if the peering state is omitted or # unknown. PEERING_STATE_UNSPECIFIED = 0 # The peering is in active state. PEERING_ACTIVE = 1 # The peering is in inactive state. PEERING_INACTIVE = 2 end end |
#uid ⇒ ::String (readonly)
Returns Output only. System-generated unique identifier for the resource.
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 824 class PrivateConnection include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Enum State defines possible states of private connection. module State # The default value. This value is used if the state is omitted. STATE_UNSPECIFIED = 0 # The private connection is being created. CREATING = 1 # The private connection is ready. ACTIVE = 2 # The private connection is being updated. UPDATING = 3 # The private connection is being deleted. DELETING = 4 # The private connection is not provisioned, since no private cloud is # present for which this private connection is needed. UNPROVISIONED = 5 # The private connection is in failed state. FAILED = 6 end # Enum Type defines possible types of private connection. module Type # The default value. This value should never be used. TYPE_UNSPECIFIED = 0 # Connection used for establishing [private services # access](https://cloud.google.com/vpc/docs/private-services-access). PRIVATE_SERVICE_ACCESS = 1 # Connection used for connecting to NetApp Cloud Volumes. NETAPP_CLOUD_VOLUMES = 2 # Connection used for connecting to Dell PowerScale. DELL_POWERSCALE = 3 # Connection used for connecting to third-party services. THIRD_PARTY_SERVICE = 4 end # Possible types for RoutingMode module RoutingMode # The default value. This value should never be used. ROUTING_MODE_UNSPECIFIED = 0 # Global Routing Mode GLOBAL = 1 # Regional Routing Mode REGIONAL = 2 end # Enum PeeringState defines the possible states of peering between service # network and the vpc network peered to service network module PeeringState # The default value. This value is used if the peering state is omitted or # unknown. PEERING_STATE_UNSPECIFIED = 0 # The peering is in active state. PEERING_ACTIVE = 1 # The peering is in inactive state. PEERING_INACTIVE = 2 end end |
#update_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Last update time of this resource.
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 824 class PrivateConnection include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Enum State defines possible states of private connection. module State # The default value. This value is used if the state is omitted. STATE_UNSPECIFIED = 0 # The private connection is being created. CREATING = 1 # The private connection is ready. ACTIVE = 2 # The private connection is being updated. UPDATING = 3 # The private connection is being deleted. DELETING = 4 # The private connection is not provisioned, since no private cloud is # present for which this private connection is needed. UNPROVISIONED = 5 # The private connection is in failed state. FAILED = 6 end # Enum Type defines possible types of private connection. module Type # The default value. This value should never be used. TYPE_UNSPECIFIED = 0 # Connection used for establishing [private services # access](https://cloud.google.com/vpc/docs/private-services-access). PRIVATE_SERVICE_ACCESS = 1 # Connection used for connecting to NetApp Cloud Volumes. NETAPP_CLOUD_VOLUMES = 2 # Connection used for connecting to Dell PowerScale. DELL_POWERSCALE = 3 # Connection used for connecting to third-party services. THIRD_PARTY_SERVICE = 4 end # Possible types for RoutingMode module RoutingMode # The default value. This value should never be used. ROUTING_MODE_UNSPECIFIED = 0 # Global Routing Mode GLOBAL = 1 # Regional Routing Mode REGIONAL = 2 end # Enum PeeringState defines the possible states of peering between service # network and the vpc network peered to service network module PeeringState # The default value. This value is used if the peering state is omitted or # unknown. PEERING_STATE_UNSPECIFIED = 0 # The peering is in active state. PEERING_ACTIVE = 1 # The peering is in inactive state. PEERING_INACTIVE = 2 end end |
#vmware_engine_network ⇒ ::String
Returns Required. The relative resource name of Legacy VMware Engine network.
Specify the name in the following form:
projects/{project}/locations/{location}/vmwareEngineNetworks/{vmware_engine_network_id}
where {project}, {location} will be same as specified in private
connection resource name and {vmware_engine_network_id} will be in the
form of {location}-default e.g.
projects/project/locations/us-central1/vmwareEngineNetworks/us-central1-default.
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 824 class PrivateConnection include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Enum State defines possible states of private connection. module State # The default value. This value is used if the state is omitted. STATE_UNSPECIFIED = 0 # The private connection is being created. CREATING = 1 # The private connection is ready. ACTIVE = 2 # The private connection is being updated. UPDATING = 3 # The private connection is being deleted. DELETING = 4 # The private connection is not provisioned, since no private cloud is # present for which this private connection is needed. UNPROVISIONED = 5 # The private connection is in failed state. FAILED = 6 end # Enum Type defines possible types of private connection. module Type # The default value. This value should never be used. TYPE_UNSPECIFIED = 0 # Connection used for establishing [private services # access](https://cloud.google.com/vpc/docs/private-services-access). PRIVATE_SERVICE_ACCESS = 1 # Connection used for connecting to NetApp Cloud Volumes. NETAPP_CLOUD_VOLUMES = 2 # Connection used for connecting to Dell PowerScale. DELL_POWERSCALE = 3 # Connection used for connecting to third-party services. THIRD_PARTY_SERVICE = 4 end # Possible types for RoutingMode module RoutingMode # The default value. This value should never be used. ROUTING_MODE_UNSPECIFIED = 0 # Global Routing Mode GLOBAL = 1 # Regional Routing Mode REGIONAL = 2 end # Enum PeeringState defines the possible states of peering between service # network and the vpc network peered to service network module PeeringState # The default value. This value is used if the peering state is omitted or # unknown. PEERING_STATE_UNSPECIFIED = 0 # The peering is in active state. PEERING_ACTIVE = 1 # The peering is in inactive state. PEERING_INACTIVE = 2 end end |
#vmware_engine_network_canonical ⇒ ::String (readonly)
Returns Output only. The canonical name of the VMware Engine network in the form:
projects/{project_number}/locations/{location}/vmwareEngineNetworks/{vmware_engine_network_id}.
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 824 class PrivateConnection include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Enum State defines possible states of private connection. module State # The default value. This value is used if the state is omitted. STATE_UNSPECIFIED = 0 # The private connection is being created. CREATING = 1 # The private connection is ready. ACTIVE = 2 # The private connection is being updated. UPDATING = 3 # The private connection is being deleted. DELETING = 4 # The private connection is not provisioned, since no private cloud is # present for which this private connection is needed. UNPROVISIONED = 5 # The private connection is in failed state. FAILED = 6 end # Enum Type defines possible types of private connection. module Type # The default value. This value should never be used. TYPE_UNSPECIFIED = 0 # Connection used for establishing [private services # access](https://cloud.google.com/vpc/docs/private-services-access). PRIVATE_SERVICE_ACCESS = 1 # Connection used for connecting to NetApp Cloud Volumes. NETAPP_CLOUD_VOLUMES = 2 # Connection used for connecting to Dell PowerScale. DELL_POWERSCALE = 3 # Connection used for connecting to third-party services. THIRD_PARTY_SERVICE = 4 end # Possible types for RoutingMode module RoutingMode # The default value. This value should never be used. ROUTING_MODE_UNSPECIFIED = 0 # Global Routing Mode GLOBAL = 1 # Regional Routing Mode REGIONAL = 2 end # Enum PeeringState defines the possible states of peering between service # network and the vpc network peered to service network module PeeringState # The default value. This value is used if the peering state is omitted or # unknown. PEERING_STATE_UNSPECIFIED = 0 # The peering is in active state. PEERING_ACTIVE = 1 # The peering is in inactive state. PEERING_INACTIVE = 2 end end |