Class: Google::Apis::ComposerV1beta1::PrivateEnvironmentConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/composer_v1beta1/classes.rb,
generated/google/apis/composer_v1beta1/representations.rb,
generated/google/apis/composer_v1beta1/representations.rb

Overview

The configuration information for configuring a Private IP Cloud Composer environment.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ PrivateEnvironmentConfig

Returns a new instance of PrivateEnvironmentConfig



646
647
648
# File 'generated/google/apis/composer_v1beta1/classes.rb', line 646

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

Instance Attribute Details

#enable_private_environmentBoolean Also known as: enable_private_environment?

Optional. If true, a Private IP Cloud Composer environment is created. If this field is true, use_ip_aliases must be true. Corresponds to the JSON property enablePrivateEnvironment

Returns:

  • (Boolean)


637
638
639
# File 'generated/google/apis/composer_v1beta1/classes.rb', line 637

def enable_private_environment
  @enable_private_environment
end

#private_cluster_configGoogle::Apis::ComposerV1beta1::PrivateClusterConfig

Configuration options for the private GKE cluster in a Cloud Composer environment. Corresponds to the JSON property privateClusterConfig



644
645
646
# File 'generated/google/apis/composer_v1beta1/classes.rb', line 644

def private_cluster_config
  @private_cluster_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



651
652
653
654
# File 'generated/google/apis/composer_v1beta1/classes.rb', line 651

def update!(**args)
  @enable_private_environment = args[:enable_private_environment] if args.key?(:enable_private_environment)
  @private_cluster_config = args[:private_cluster_config] if args.key?(:private_cluster_config)
end