google-apis-connectors_v1 0.41.0 → 0.42.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a2abdf8eedac03c217f204c8334ab1c752ffb5d93f9f6eb18b7e612b9a7e0c04
|
4
|
+
data.tar.gz: db44be0c0196f083457e4436ca492a35648bcb5fed578fe8d8ed19e5e3c53986
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d69bd9414ce8aa0658a6ce299792c3e48147b349cbb99d1ef2013e338b3d50015867ba600baefb85e7114039ea3a268e675ccee84b197973482f54995cf9aab8
|
7
|
+
data.tar.gz: 895202a7c4ff00856e370199a83f01913b5de5eadd7e399732b7f9f7b55e0251fc5678980f74703c7c3a500608781c2f43fdf0176e440ed77f0816a5304bba8c
|
data/CHANGELOG.md
CHANGED
@@ -1430,6 +1430,11 @@ module Google
|
|
1430
1430
|
# @return [String]
|
1431
1431
|
attr_accessor :event_type_id
|
1432
1432
|
|
1433
|
+
# JMS message denotes the source of the event
|
1434
|
+
# Corresponds to the JSON property `jms`
|
1435
|
+
# @return [Google::Apis::ConnectorsV1::Jms]
|
1436
|
+
attr_accessor :jms
|
1437
|
+
|
1433
1438
|
# Required. Resource name of the EventSubscription. Format: projects/`project`/
|
1434
1439
|
# locations/`location`/connections/`connection`/eventSubscriptions/`
|
1435
1440
|
# event_subscription`
|
@@ -1466,6 +1471,7 @@ module Google
|
|
1466
1471
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1467
1472
|
@destinations = args[:destinations] if args.key?(:destinations)
|
1468
1473
|
@event_type_id = args[:event_type_id] if args.key?(:event_type_id)
|
1474
|
+
@jms = args[:jms] if args.key?(:jms)
|
1469
1475
|
@name = args[:name] if args.key?(:name)
|
1470
1476
|
@status = args[:status] if args.key?(:status)
|
1471
1477
|
@subscriber = args[:subscriber] if args.key?(:subscriber)
|
@@ -1693,6 +1699,11 @@ module Google
|
|
1693
1699
|
attr_accessor :enrichment_supported
|
1694
1700
|
alias_method :enrichment_supported?, :enrichment_supported
|
1695
1701
|
|
1702
|
+
# The type of the event listener for a specific connector.
|
1703
|
+
# Corresponds to the JSON property `eventListenerType`
|
1704
|
+
# @return [String]
|
1705
|
+
attr_accessor :event_listener_type
|
1706
|
+
|
1696
1707
|
# Is Eventing Supported.
|
1697
1708
|
# Corresponds to the JSON property `isEventingSupported`
|
1698
1709
|
# @return [Boolean]
|
@@ -1717,6 +1728,7 @@ module Google
|
|
1717
1728
|
@auto_registration_supported = args[:auto_registration_supported] if args.key?(:auto_registration_supported)
|
1718
1729
|
@encryption_key_template = args[:encryption_key_template] if args.key?(:encryption_key_template)
|
1719
1730
|
@enrichment_supported = args[:enrichment_supported] if args.key?(:enrichment_supported)
|
1731
|
+
@event_listener_type = args[:event_listener_type] if args.key?(:event_listener_type)
|
1720
1732
|
@is_eventing_supported = args[:is_eventing_supported] if args.key?(:is_eventing_supported)
|
1721
1733
|
@registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config)
|
1722
1734
|
end
|
@@ -2156,6 +2168,31 @@ module Google
|
|
2156
2168
|
end
|
2157
2169
|
end
|
2158
2170
|
|
2171
|
+
# JMS message denotes the source of the event
|
2172
|
+
class Jms
|
2173
|
+
include Google::Apis::Core::Hashable
|
2174
|
+
|
2175
|
+
# Optional. Name of the JMS source. i.e. queueName or topicName
|
2176
|
+
# Corresponds to the JSON property `name`
|
2177
|
+
# @return [String]
|
2178
|
+
attr_accessor :name
|
2179
|
+
|
2180
|
+
# Optional. Type of the JMS Source. i.e. Queue or Topic
|
2181
|
+
# Corresponds to the JSON property `type`
|
2182
|
+
# @return [String]
|
2183
|
+
attr_accessor :type
|
2184
|
+
|
2185
|
+
def initialize(**args)
|
2186
|
+
update!(**args)
|
2187
|
+
end
|
2188
|
+
|
2189
|
+
# Update properties of this object
|
2190
|
+
def update!(**args)
|
2191
|
+
@name = args[:name] if args.key?(:name)
|
2192
|
+
@type = args[:type] if args.key?(:type)
|
2193
|
+
end
|
2194
|
+
end
|
2195
|
+
|
2159
2196
|
# JsonSchema representation of schema metadata
|
2160
2197
|
class JsonSchema
|
2161
2198
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ConnectorsV1
|
18
18
|
# Version of the google-apis-connectors_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.42.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231024"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -280,6 +280,12 @@ module Google
|
|
280
280
|
include Google::Apis::Core::JsonObjectSupport
|
281
281
|
end
|
282
282
|
|
283
|
+
class Jms
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
283
289
|
class JsonSchema
|
284
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
291
|
|
@@ -946,6 +952,8 @@ module Google
|
|
946
952
|
property :destinations, as: 'destinations', class: Google::Apis::ConnectorsV1::EventSubscriptionDestination, decorator: Google::Apis::ConnectorsV1::EventSubscriptionDestination::Representation
|
947
953
|
|
948
954
|
property :event_type_id, as: 'eventTypeId'
|
955
|
+
property :jms, as: 'jms', class: Google::Apis::ConnectorsV1::Jms, decorator: Google::Apis::ConnectorsV1::Jms::Representation
|
956
|
+
|
949
957
|
property :name, as: 'name'
|
950
958
|
property :status, as: 'status', class: Google::Apis::ConnectorsV1::EventSubscriptionStatus, decorator: Google::Apis::ConnectorsV1::EventSubscriptionStatus::Representation
|
951
959
|
|
@@ -1016,6 +1024,7 @@ module Google
|
|
1016
1024
|
property :encryption_key_template, as: 'encryptionKeyTemplate', class: Google::Apis::ConnectorsV1::ConfigVariableTemplate, decorator: Google::Apis::ConnectorsV1::ConfigVariableTemplate::Representation
|
1017
1025
|
|
1018
1026
|
property :enrichment_supported, as: 'enrichmentSupported'
|
1027
|
+
property :event_listener_type, as: 'eventListenerType'
|
1019
1028
|
property :is_eventing_supported, as: 'isEventingSupported'
|
1020
1029
|
property :registration_destination_config, as: 'registrationDestinationConfig', class: Google::Apis::ConnectorsV1::DestinationConfigTemplate, decorator: Google::Apis::ConnectorsV1::DestinationConfigTemplate::Representation
|
1021
1030
|
|
@@ -1136,6 +1145,14 @@ module Google
|
|
1136
1145
|
end
|
1137
1146
|
end
|
1138
1147
|
|
1148
|
+
class Jms
|
1149
|
+
# @private
|
1150
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1151
|
+
property :name, as: 'name'
|
1152
|
+
property :type, as: 'type'
|
1153
|
+
end
|
1154
|
+
end
|
1155
|
+
|
1139
1156
|
class JsonSchema
|
1140
1157
|
# @private
|
1141
1158
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-connectors_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.42.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-10-
|
11
|
+
date: 2023-10-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.42.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|