Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Datastore
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1Datastore
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/apigee_v1/classes.rb,
generated/google/apis/apigee_v1/representations.rb,
generated/google/apis/apigee_v1/representations.rb
Overview
The data store defines the connection to export data repository (Cloud Storage, BigQuery), including the credentials used to access the data repository.
Instance Attribute Summary collapse
-
#create_time ⇒ Fixnum
Output only.
-
#datastore_config ⇒ Google::Apis::ApigeeV1::GoogleCloudApigeeV1DatastoreConfig
Configuration detail for datastore Corresponds to the JSON property
datastoreConfig
. -
#display_name ⇒ String
Required.
-
#last_update_time ⇒ Fixnum
Output only.
-
#org ⇒ String
Output only.
-
#self ⇒ String
Output only.
-
#target_type ⇒ String
Destination storage type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1Datastore
constructor
A new instance of GoogleCloudApigeeV1Datastore.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1Datastore
Returns a new instance of GoogleCloudApigeeV1Datastore.
1671 1672 1673 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 1671 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ Fixnum
Output only. Datastore create time, in milliseconds since the epoch of 1970-01-
01T00:00:00Z
Corresponds to the JSON property createTime
1637 1638 1639 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 1637 def create_time @create_time end |
#datastore_config ⇒ Google::Apis::ApigeeV1::GoogleCloudApigeeV1DatastoreConfig
Configuration detail for datastore
Corresponds to the JSON property datastoreConfig
1642 1643 1644 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 1642 def datastore_config @datastore_config end |
#display_name ⇒ String
Required. Display name in UI
Corresponds to the JSON property displayName
1647 1648 1649 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 1647 def display_name @display_name end |
#last_update_time ⇒ Fixnum
Output only. Datastore last update time, in milliseconds since the epoch of
1970-01-01T00:00:00Z
Corresponds to the JSON property lastUpdateTime
1653 1654 1655 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 1653 def last_update_time @last_update_time end |
#org ⇒ String
Output only. Organization that the datastore belongs to
Corresponds to the JSON property org
1658 1659 1660 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 1658 def org @org end |
#self ⇒ String
Output only. Resource link of Datastore. Example: /organizations/
org/
analytics/datastores/
uuid`
Corresponds to the JSON property
self`
1664 1665 1666 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 1664 def self @self end |
#target_type ⇒ String
Destination storage type. Supported types gcs
or bigquery
.
Corresponds to the JSON property targetType
1669 1670 1671 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 1669 def target_type @target_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1676 1677 1678 1679 1680 1681 1682 1683 1684 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 1676 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @datastore_config = args[:datastore_config] if args.key?(:datastore_config) @display_name = args[:display_name] if args.key?(:display_name) @last_update_time = args[:last_update_time] if args.key?(:last_update_time) @org = args[:org] if args.key?(:org) @self = args[:self] if args.key?(:self) @target_type = args[:target_type] if args.key?(:target_type) end |