Class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpAppconnectionsV1alphaAppConnection
- Inherits:
-
Object
- Object
- Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpAppconnectionsV1alphaAppConnection
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/beyondcorp_v1alpha/classes.rb,
lib/google/apis/beyondcorp_v1alpha/representations.rb,
lib/google/apis/beyondcorp_v1alpha/representations.rb
Overview
A BeyondCorp AppConnection resource represents a BeyondCorp protected AppConnection to a remote application. It creates all the necessary GCP components needed for creating a BeyondCorp protected AppConnection. Multiple connectors can be authorised for a single AppConnection.
Instance Attribute Summary collapse
-
#application_endpoint ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpAppconnectionsV1alphaAppConnectionApplicationEndpoint
ApplicationEndpoint represents a remote application endpoint.
-
#connectors ⇒ Array<String>
Optional.
-
#create_time ⇒ String
Output only.
-
#display_name ⇒ String
Optional.
-
#gateway ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpAppconnectionsV1alphaAppConnectionGateway
Gateway represents a user facing component that serves as an entrance to enable connectivity.
-
#labels ⇒ Hash<String,String>
Optional.
-
#name ⇒ String
Required.
-
#state ⇒ String
Output only.
-
#type ⇒ String
Required.
-
#uid ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudBeyondcorpAppconnectionsV1alphaAppConnection
constructor
A new instance of GoogleCloudBeyondcorpAppconnectionsV1alphaAppConnection.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudBeyondcorpAppconnectionsV1alphaAppConnection
Returns a new instance of GoogleCloudBeyondcorpAppconnectionsV1alphaAppConnection.
1244 1245 1246 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1244 def initialize(**args) update!(**args) end |
Instance Attribute Details
#application_endpoint ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpAppconnectionsV1alphaAppConnectionApplicationEndpoint
ApplicationEndpoint represents a remote application endpoint.
Corresponds to the JSON property applicationEndpoint
1188 1189 1190 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1188 def application_endpoint @application_endpoint end |
#connectors ⇒ Array<String>
Optional. List of [google.cloud.beyondcorp.v1main.Connector.name] that are
authorised to be associated with this AppConnection.
Corresponds to the JSON property connectors
1194 1195 1196 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1194 def connectors @connectors end |
#create_time ⇒ String
Output only. Timestamp when the resource was created.
Corresponds to the JSON property createTime
1199 1200 1201 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1199 def create_time @create_time end |
#display_name ⇒ String
Optional. An arbitrary user-provided name for the AppConnection. Cannot exceed
64 characters.
Corresponds to the JSON property displayName
1205 1206 1207 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1205 def display_name @display_name end |
#gateway ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpAppconnectionsV1alphaAppConnectionGateway
Gateway represents a user facing component that serves as an entrance to
enable connectivity.
Corresponds to the JSON property gateway
1211 1212 1213 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1211 def gateway @gateway end |
#labels ⇒ Hash<String,String>
Optional. Resource labels to represent user provided metadata.
Corresponds to the JSON property labels
1216 1217 1218 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1216 def labels @labels end |
#name ⇒ String
Required. Unique resource name of the AppConnection. The name is ignored when
creating a AppConnection.
Corresponds to the JSON property name
1222 1223 1224 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1222 def name @name end |
#state ⇒ String
Output only. The current state of the AppConnection.
Corresponds to the JSON property state
1227 1228 1229 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1227 def state @state end |
#type ⇒ String
Required. The type of network connectivity used by the AppConnection.
Corresponds to the JSON property type
1232 1233 1234 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1232 def type @type end |
#uid ⇒ String
Output only. A unique identifier for the instance generated by the system.
Corresponds to the JSON property uid
1237 1238 1239 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1237 def uid @uid end |
#update_time ⇒ String
Output only. Timestamp when the resource was last modified.
Corresponds to the JSON property updateTime
1242 1243 1244 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1242 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1249 def update!(**args) @application_endpoint = args[:application_endpoint] if args.key?(:application_endpoint) @connectors = args[:connectors] if args.key?(:connectors) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @gateway = args[:gateway] if args.key?(:gateway) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @state = args[:state] if args.key?(:state) @type = args[:type] if args.key?(:type) @uid = args[:uid] if args.key?(:uid) @update_time = args[:update_time] if args.key?(:update_time) end |