Class: Google::Apis::DatastreamV1alpha1::ConnectionProfile
- Inherits:
-
Object
- Object
- Google::Apis::DatastreamV1alpha1::ConnectionProfile
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datastream_v1alpha1/classes.rb,
lib/google/apis/datastream_v1alpha1/representations.rb,
lib/google/apis/datastream_v1alpha1/representations.rb
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#display_name ⇒ String
Required.
-
#forward_ssh_connectivity ⇒ Google::Apis::DatastreamV1alpha1::ForwardSshTunnelConnectivity
Forward SSH Tunnel connectivity.
-
#gcs_profile ⇒ Google::Apis::DatastreamV1alpha1::GcsProfile
Cloud Storage bucket profile.
-
#labels ⇒ Hash<String,String>
Labels.
-
#mysql_profile ⇒ Google::Apis::DatastreamV1alpha1::MysqlProfile
MySQL database profile.
-
#name ⇒ String
Output only.
-
#no_connectivity ⇒ Google::Apis::DatastreamV1alpha1::NoConnectivitySettings
No connectivity settings.
-
#oracle_profile ⇒ Google::Apis::DatastreamV1alpha1::OracleProfile
Oracle database profile.
-
#private_connectivity ⇒ Google::Apis::DatastreamV1alpha1::PrivateConnectivity
Private Connectivity Corresponds to the JSON property
privateConnectivity
. -
#static_service_ip_connectivity ⇒ Google::Apis::DatastreamV1alpha1::StaticServiceIpConnectivity
Static IP address connectivity.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ConnectionProfile
constructor
A new instance of ConnectionProfile.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ConnectionProfile
Returns a new instance of ConnectionProfile.
154 155 156 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 154 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The create time of the resource.
Corresponds to the JSON property createTime
97 98 99 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 97 def create_time @create_time end |
#display_name ⇒ String
Required. Display name.
Corresponds to the JSON property displayName
102 103 104 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 102 def display_name @display_name end |
#forward_ssh_connectivity ⇒ Google::Apis::DatastreamV1alpha1::ForwardSshTunnelConnectivity
Forward SSH Tunnel connectivity.
Corresponds to the JSON property forwardSshConnectivity
107 108 109 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 107 def forward_ssh_connectivity @forward_ssh_connectivity end |
#gcs_profile ⇒ Google::Apis::DatastreamV1alpha1::GcsProfile
Cloud Storage bucket profile.
Corresponds to the JSON property gcsProfile
112 113 114 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 112 def gcs_profile @gcs_profile end |
#labels ⇒ Hash<String,String>
Labels.
Corresponds to the JSON property labels
117 118 119 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 117 def labels @labels end |
#mysql_profile ⇒ Google::Apis::DatastreamV1alpha1::MysqlProfile
MySQL database profile.
Corresponds to the JSON property mysqlProfile
122 123 124 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 122 def mysql_profile @mysql_profile end |
#name ⇒ String
Output only. The resource's name.
Corresponds to the JSON property name
127 128 129 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 127 def name @name end |
#no_connectivity ⇒ Google::Apis::DatastreamV1alpha1::NoConnectivitySettings
No connectivity settings.
Corresponds to the JSON property noConnectivity
132 133 134 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 132 def no_connectivity @no_connectivity end |
#oracle_profile ⇒ Google::Apis::DatastreamV1alpha1::OracleProfile
Oracle database profile.
Corresponds to the JSON property oracleProfile
137 138 139 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 137 def oracle_profile @oracle_profile end |
#private_connectivity ⇒ Google::Apis::DatastreamV1alpha1::PrivateConnectivity
Private Connectivity
Corresponds to the JSON property privateConnectivity
142 143 144 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 142 def private_connectivity @private_connectivity end |
#static_service_ip_connectivity ⇒ Google::Apis::DatastreamV1alpha1::StaticServiceIpConnectivity
Static IP address connectivity.
Corresponds to the JSON property staticServiceIpConnectivity
147 148 149 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 147 def static_service_ip_connectivity @static_service_ip_connectivity end |
#update_time ⇒ String
Output only. The update time of the resource.
Corresponds to the JSON property updateTime
152 153 154 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 152 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 159 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @forward_ssh_connectivity = args[:forward_ssh_connectivity] if args.key?(:forward_ssh_connectivity) @gcs_profile = args[:gcs_profile] if args.key?(:gcs_profile) @labels = args[:labels] if args.key?(:labels) @mysql_profile = args[:mysql_profile] if args.key?(:mysql_profile) @name = args[:name] if args.key?(:name) @no_connectivity = args[:no_connectivity] if args.key?(:no_connectivity) @oracle_profile = args[:oracle_profile] if args.key?(:oracle_profile) @private_connectivity = args[:private_connectivity] if args.key?(:private_connectivity) @static_service_ip_connectivity = args[:static_service_ip_connectivity] if args.key?(:static_service_ip_connectivity) @update_time = args[:update_time] if args.key?(:update_time) end |