Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ConnectorsPlatformConfig
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ConnectorsPlatformConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Overview
Configuration for the Connectors Platform add-on.
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
(also: #enabled?)
Flag that specifies whether the Connectors Platform add-on is enabled.
-
#expires_at ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ConnectorsPlatformConfig
constructor
A new instance of GoogleCloudApigeeV1ConnectorsPlatformConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ConnectorsPlatformConfig
Returns a new instance of GoogleCloudApigeeV1ConnectorsPlatformConfig.
1562 1563 1564 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1562 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enabled ⇒ Boolean Also known as: enabled?
Flag that specifies whether the Connectors Platform add-on is enabled.
Corresponds to the JSON property enabled
1553 1554 1555 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1553 def enabled @enabled end |
#expires_at ⇒ Fixnum
Output only. Time at which the Connectors Platform add-on expires in
milliseconds since epoch. If unspecified, the add-on will never expire.
Corresponds to the JSON property expiresAt
1560 1561 1562 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1560 def expires_at @expires_at end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1567 1568 1569 1570 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1567 def update!(**args) @enabled = args[:enabled] if args.key?(:enabled) @expires_at = args[:expires_at] if args.key?(:expires_at) end |