Class: Google::Cloud::VmwareEngine::V1::NetworkPolicy

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb

Overview

Represents a network policy resource. Network policies are regional resources. You can use a network policy to enable or disable internet access and external IP access. Network policies are associated with a VMware Engine network, which might span across regions. For a given region, a network policy applies to all private clouds in the VMware Engine network associated with the policy.

Defined Under Namespace

Classes: NetworkService

Instance Attribute Summary collapse

Instance Attribute Details

#create_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. Creation time of this resource.

Returns:



1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 1262

class NetworkPolicy
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a network service that is managed by a `NetworkPolicy` resource.
  # A network service provides a way to control an aspect of external access to
  # VMware workloads. For example, whether the VMware workloads in the
  # private clouds governed by a network policy can access or be accessed from
  # the internet.
  # @!attribute [rw] enabled
  #   @return [::Boolean]
  #     True if the service is enabled; false otherwise.
  # @!attribute [r] state
  #   @return [::Google::Cloud::VmwareEngine::V1::NetworkPolicy::NetworkService::State]
  #     Output only. State of the service. New values may be added to this enum
  #     when appropriate.
  class NetworkService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Enum State defines possible states of a network policy controlled
    # service.
    module State
      # Unspecified service state. This is the default value.
      STATE_UNSPECIFIED = 0

      # Service is not provisioned.
      UNPROVISIONED = 1

      # Service is in the process of being provisioned/deprovisioned.
      RECONCILING = 2

      # Service is active.
      ACTIVE = 3
    end
  end
end

#description::String

Returns Optional. User-provided description for this network policy.

Returns:

  • (::String)

    Optional. User-provided description for this network policy.



1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 1262

class NetworkPolicy
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a network service that is managed by a `NetworkPolicy` resource.
  # A network service provides a way to control an aspect of external access to
  # VMware workloads. For example, whether the VMware workloads in the
  # private clouds governed by a network policy can access or be accessed from
  # the internet.
  # @!attribute [rw] enabled
  #   @return [::Boolean]
  #     True if the service is enabled; false otherwise.
  # @!attribute [r] state
  #   @return [::Google::Cloud::VmwareEngine::V1::NetworkPolicy::NetworkService::State]
  #     Output only. State of the service. New values may be added to this enum
  #     when appropriate.
  class NetworkService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Enum State defines possible states of a network policy controlled
    # service.
    module State
      # Unspecified service state. This is the default value.
      STATE_UNSPECIFIED = 0

      # Service is not provisioned.
      UNPROVISIONED = 1

      # Service is in the process of being provisioned/deprovisioned.
      RECONCILING = 2

      # Service is active.
      ACTIVE = 3
    end
  end
end

#edge_services_cidr::String

Returns Required. IP address range in CIDR notation used to create internet access and external IP access. An RFC 1918 CIDR block, with a "/26" prefix, is required. The range cannot overlap with any prefixes either in the consumer VPC network or in use by the private clouds attached to that VPC network.

Returns:

  • (::String)

    Required. IP address range in CIDR notation used to create internet access and external IP access. An RFC 1918 CIDR block, with a "/26" prefix, is required. The range cannot overlap with any prefixes either in the consumer VPC network or in use by the private clouds attached to that VPC network.



1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 1262

class NetworkPolicy
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a network service that is managed by a `NetworkPolicy` resource.
  # A network service provides a way to control an aspect of external access to
  # VMware workloads. For example, whether the VMware workloads in the
  # private clouds governed by a network policy can access or be accessed from
  # the internet.
  # @!attribute [rw] enabled
  #   @return [::Boolean]
  #     True if the service is enabled; false otherwise.
  # @!attribute [r] state
  #   @return [::Google::Cloud::VmwareEngine::V1::NetworkPolicy::NetworkService::State]
  #     Output only. State of the service. New values may be added to this enum
  #     when appropriate.
  class NetworkService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Enum State defines possible states of a network policy controlled
    # service.
    module State
      # Unspecified service state. This is the default value.
      STATE_UNSPECIFIED = 0

      # Service is not provisioned.
      UNPROVISIONED = 1

      # Service is in the process of being provisioned/deprovisioned.
      RECONCILING = 2

      # Service is active.
      ACTIVE = 3
    end
  end
end

#external_ip::Google::Cloud::VmwareEngine::V1::NetworkPolicy::NetworkService

Returns Network service that allows External IP addresses to be assigned to VMware workloads. This service can only be enabled when internet_access is also enabled.

Returns:



1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 1262

class NetworkPolicy
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a network service that is managed by a `NetworkPolicy` resource.
  # A network service provides a way to control an aspect of external access to
  # VMware workloads. For example, whether the VMware workloads in the
  # private clouds governed by a network policy can access or be accessed from
  # the internet.
  # @!attribute [rw] enabled
  #   @return [::Boolean]
  #     True if the service is enabled; false otherwise.
  # @!attribute [r] state
  #   @return [::Google::Cloud::VmwareEngine::V1::NetworkPolicy::NetworkService::State]
  #     Output only. State of the service. New values may be added to this enum
  #     when appropriate.
  class NetworkService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Enum State defines possible states of a network policy controlled
    # service.
    module State
      # Unspecified service state. This is the default value.
      STATE_UNSPECIFIED = 0

      # Service is not provisioned.
      UNPROVISIONED = 1

      # Service is in the process of being provisioned/deprovisioned.
      RECONCILING = 2

      # Service is active.
      ACTIVE = 3
    end
  end
end

#internet_access::Google::Cloud::VmwareEngine::V1::NetworkPolicy::NetworkService

Returns Network service that allows VMware workloads to access the internet.

Returns:



1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 1262

class NetworkPolicy
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a network service that is managed by a `NetworkPolicy` resource.
  # A network service provides a way to control an aspect of external access to
  # VMware workloads. For example, whether the VMware workloads in the
  # private clouds governed by a network policy can access or be accessed from
  # the internet.
  # @!attribute [rw] enabled
  #   @return [::Boolean]
  #     True if the service is enabled; false otherwise.
  # @!attribute [r] state
  #   @return [::Google::Cloud::VmwareEngine::V1::NetworkPolicy::NetworkService::State]
  #     Output only. State of the service. New values may be added to this enum
  #     when appropriate.
  class NetworkService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Enum State defines possible states of a network policy controlled
    # service.
    module State
      # Unspecified service state. This is the default value.
      STATE_UNSPECIFIED = 0

      # Service is not provisioned.
      UNPROVISIONED = 1

      # Service is in the process of being provisioned/deprovisioned.
      RECONCILING = 2

      # Service is active.
      ACTIVE = 3
    end
  end
end

#name::String (readonly)

Returns Output only. The resource name of this network policy. 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/networkPolicies/my-network-policy.

Returns:

  • (::String)

    Output only. The resource name of this network policy. 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/networkPolicies/my-network-policy



1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 1262

class NetworkPolicy
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a network service that is managed by a `NetworkPolicy` resource.
  # A network service provides a way to control an aspect of external access to
  # VMware workloads. For example, whether the VMware workloads in the
  # private clouds governed by a network policy can access or be accessed from
  # the internet.
  # @!attribute [rw] enabled
  #   @return [::Boolean]
  #     True if the service is enabled; false otherwise.
  # @!attribute [r] state
  #   @return [::Google::Cloud::VmwareEngine::V1::NetworkPolicy::NetworkService::State]
  #     Output only. State of the service. New values may be added to this enum
  #     when appropriate.
  class NetworkService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Enum State defines possible states of a network policy controlled
    # service.
    module State
      # Unspecified service state. This is the default value.
      STATE_UNSPECIFIED = 0

      # Service is not provisioned.
      UNPROVISIONED = 1

      # Service is in the process of being provisioned/deprovisioned.
      RECONCILING = 2

      # Service is active.
      ACTIVE = 3
    end
  end
end

#uid::String (readonly)

Returns Output only. System-generated unique identifier for the resource.

Returns:

  • (::String)

    Output only. System-generated unique identifier for the resource.



1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 1262

class NetworkPolicy
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a network service that is managed by a `NetworkPolicy` resource.
  # A network service provides a way to control an aspect of external access to
  # VMware workloads. For example, whether the VMware workloads in the
  # private clouds governed by a network policy can access or be accessed from
  # the internet.
  # @!attribute [rw] enabled
  #   @return [::Boolean]
  #     True if the service is enabled; false otherwise.
  # @!attribute [r] state
  #   @return [::Google::Cloud::VmwareEngine::V1::NetworkPolicy::NetworkService::State]
  #     Output only. State of the service. New values may be added to this enum
  #     when appropriate.
  class NetworkService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Enum State defines possible states of a network policy controlled
    # service.
    module State
      # Unspecified service state. This is the default value.
      STATE_UNSPECIFIED = 0

      # Service is not provisioned.
      UNPROVISIONED = 1

      # Service is in the process of being provisioned/deprovisioned.
      RECONCILING = 2

      # Service is active.
      ACTIVE = 3
    end
  end
end

#update_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. Last update time of this resource.

Returns:



1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 1262

class NetworkPolicy
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a network service that is managed by a `NetworkPolicy` resource.
  # A network service provides a way to control an aspect of external access to
  # VMware workloads. For example, whether the VMware workloads in the
  # private clouds governed by a network policy can access or be accessed from
  # the internet.
  # @!attribute [rw] enabled
  #   @return [::Boolean]
  #     True if the service is enabled; false otherwise.
  # @!attribute [r] state
  #   @return [::Google::Cloud::VmwareEngine::V1::NetworkPolicy::NetworkService::State]
  #     Output only. State of the service. New values may be added to this enum
  #     when appropriate.
  class NetworkService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Enum State defines possible states of a network policy controlled
    # service.
    module State
      # Unspecified service state. This is the default value.
      STATE_UNSPECIFIED = 0

      # Service is not provisioned.
      UNPROVISIONED = 1

      # Service is in the process of being provisioned/deprovisioned.
      RECONCILING = 2

      # Service is active.
      ACTIVE = 3
    end
  end
end

#vmware_engine_network::String

Returns Optional. The relative resource name of the VMware Engine network. Specify the name in the following form: projects/{project}/locations/{location}/vmwareEngineNetworks/{vmware_engine_network_id} where {project} can either be a project number or a project ID.

Returns:

  • (::String)

    Optional. The relative resource name of the VMware Engine network. Specify the name in the following form: projects/{project}/locations/{location}/vmwareEngineNetworks/{vmware_engine_network_id} where {project} can either be a project number or a project ID.



1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 1262

class NetworkPolicy
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a network service that is managed by a `NetworkPolicy` resource.
  # A network service provides a way to control an aspect of external access to
  # VMware workloads. For example, whether the VMware workloads in the
  # private clouds governed by a network policy can access or be accessed from
  # the internet.
  # @!attribute [rw] enabled
  #   @return [::Boolean]
  #     True if the service is enabled; false otherwise.
  # @!attribute [r] state
  #   @return [::Google::Cloud::VmwareEngine::V1::NetworkPolicy::NetworkService::State]
  #     Output only. State of the service. New values may be added to this enum
  #     when appropriate.
  class NetworkService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Enum State defines possible states of a network policy controlled
    # service.
    module State
      # Unspecified service state. This is the default value.
      STATE_UNSPECIFIED = 0

      # Service is not provisioned.
      UNPROVISIONED = 1

      # Service is in the process of being provisioned/deprovisioned.
      RECONCILING = 2

      # Service is active.
      ACTIVE = 3
    end
  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}.

Returns:

  • (::String)

    Output only. The canonical name of the VMware Engine network in the form: projects/{project_number}/locations/{location}/vmwareEngineNetworks/{vmware_engine_network_id}



1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 1262

class NetworkPolicy
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a network service that is managed by a `NetworkPolicy` resource.
  # A network service provides a way to control an aspect of external access to
  # VMware workloads. For example, whether the VMware workloads in the
  # private clouds governed by a network policy can access or be accessed from
  # the internet.
  # @!attribute [rw] enabled
  #   @return [::Boolean]
  #     True if the service is enabled; false otherwise.
  # @!attribute [r] state
  #   @return [::Google::Cloud::VmwareEngine::V1::NetworkPolicy::NetworkService::State]
  #     Output only. State of the service. New values may be added to this enum
  #     when appropriate.
  class NetworkService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Enum State defines possible states of a network policy controlled
    # service.
    module State
      # Unspecified service state. This is the default value.
      STATE_UNSPECIFIED = 0

      # Service is not provisioned.
      UNPROVISIONED = 1

      # Service is in the process of being provisioned/deprovisioned.
      RECONCILING = 2

      # Service is active.
      ACTIVE = 3
    end
  end
end