google-apis-connectors_v1 0.50.0 → 0.52.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: 50c2f3632696df875e9c1ff2b994e3da5b91f56aec0db1b7f8f8e4f646551424
|
4
|
+
data.tar.gz: ad5c9d4bc1a13004d20e4bc70a7072657962fba6f216d3d3486a61d63d40c558
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 63a4efb1e1822d4ab6dd516a4ee014d790198682d193349de03e1937863c4af4d73ad71f8bf9a948f7af71292abcd5a44d5311f7dcdc28dd4797c3ab9b02547b
|
7
|
+
data.tar.gz: c644954c3e6dc0ed5f4003e21501af78e42d32f9e014deee602fabaecb6013ab8808022aa3ae24de10ef951dc65b9de5bff4c75dbe7b2d376ad3fa4adbdcb8fc
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-connectors_v1
|
2
2
|
|
3
|
+
### v0.52.0 (2024-02-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240221
|
6
|
+
* Regenerated using generator version 0.14.0
|
7
|
+
|
8
|
+
### v0.51.0 (2024-02-18)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240207
|
11
|
+
|
3
12
|
### v0.50.0 (2024-01-28)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240122
|
data/OVERVIEW.md
CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/apigee/docs/api-platform/co
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby 2.
|
86
|
+
This library is supported on Ruby 2.7+.
|
87
87
|
|
88
|
-
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life.
|
88
|
+
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
90
90
|
## License
|
91
91
|
|
@@ -1159,6 +1159,11 @@ module Google
|
|
1159
1159
|
class CustomConnector
|
1160
1160
|
include Google::Apis::Core::Hashable
|
1161
1161
|
|
1162
|
+
# Optional. Active connector versions.
|
1163
|
+
# Corresponds to the JSON property `activeConnectorVersions`
|
1164
|
+
# @return [Array<String>]
|
1165
|
+
attr_accessor :active_connector_versions
|
1166
|
+
|
1162
1167
|
# Output only. Created time.
|
1163
1168
|
# Corresponds to the JSON property `createTime`
|
1164
1169
|
# @return [String]
|
@@ -1208,6 +1213,7 @@ module Google
|
|
1208
1213
|
|
1209
1214
|
# Update properties of this object
|
1210
1215
|
def update!(**args)
|
1216
|
+
@active_connector_versions = args[:active_connector_versions] if args.key?(:active_connector_versions)
|
1211
1217
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1212
1218
|
@custom_connector_type = args[:custom_connector_type] if args.key?(:custom_connector_type)
|
1213
1219
|
@description = args[:description] if args.key?(:description)
|
@@ -1271,11 +1277,18 @@ module Google
|
|
1271
1277
|
# @return [String]
|
1272
1278
|
attr_accessor :service_account
|
1273
1279
|
|
1274
|
-
# Optional. Location of the custom connector spec.
|
1280
|
+
# Optional. Location of the custom connector spec. The location can be either a
|
1281
|
+
# public url like `https://public-url.com/spec` Or a Google Cloud Storage
|
1282
|
+
# location like `gs:///`
|
1275
1283
|
# Corresponds to the JSON property `specLocation`
|
1276
1284
|
# @return [String]
|
1277
1285
|
attr_accessor :spec_location
|
1278
1286
|
|
1287
|
+
# Output only. State of the custom connector version.
|
1288
|
+
# Corresponds to the JSON property `state`
|
1289
|
+
# @return [String]
|
1290
|
+
attr_accessor :state
|
1291
|
+
|
1279
1292
|
# Output only. Updated time.
|
1280
1293
|
# Corresponds to the JSON property `updateTime`
|
1281
1294
|
# @return [String]
|
@@ -1296,6 +1309,7 @@ module Google
|
|
1296
1309
|
@name = args[:name] if args.key?(:name)
|
1297
1310
|
@service_account = args[:service_account] if args.key?(:service_account)
|
1298
1311
|
@spec_location = args[:spec_location] if args.key?(:spec_location)
|
1312
|
+
@state = args[:state] if args.key?(:state)
|
1299
1313
|
@update_time = args[:update_time] if args.key?(:update_time)
|
1300
1314
|
end
|
1301
1315
|
end
|
@@ -2017,6 +2031,11 @@ module Google
|
|
2017
2031
|
# @return [Google::Apis::ConnectorsV1::DestinationConfig]
|
2018
2032
|
attr_accessor :registration_destination_config
|
2019
2033
|
|
2034
|
+
# Optional. Additional eventing related field values
|
2035
|
+
# Corresponds to the JSON property `triggerConfigVariables`
|
2036
|
+
# @return [Array<Google::Apis::ConnectorsV1::ConfigVariable>]
|
2037
|
+
attr_accessor :trigger_config_variables
|
2038
|
+
|
2020
2039
|
def initialize(**args)
|
2021
2040
|
update!(**args)
|
2022
2041
|
end
|
@@ -2032,6 +2051,7 @@ module Google
|
|
2032
2051
|
@private_connectivity_enabled = args[:private_connectivity_enabled] if args.key?(:private_connectivity_enabled)
|
2033
2052
|
@proxy_destination_config = args[:proxy_destination_config] if args.key?(:proxy_destination_config)
|
2034
2053
|
@registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config)
|
2054
|
+
@trigger_config_variables = args[:trigger_config_variables] if args.key?(:trigger_config_variables)
|
2035
2055
|
end
|
2036
2056
|
end
|
2037
2057
|
|
@@ -2101,6 +2121,11 @@ module Google
|
|
2101
2121
|
# @return [Google::Apis::ConnectorsV1::DestinationConfigTemplate]
|
2102
2122
|
attr_accessor :registration_destination_config
|
2103
2123
|
|
2124
|
+
# Trigger Config fields that needs to be rendered
|
2125
|
+
# Corresponds to the JSON property `triggerConfigVariables`
|
2126
|
+
# @return [Array<Google::Apis::ConnectorsV1::ConfigVariableTemplate>]
|
2127
|
+
attr_accessor :trigger_config_variables
|
2128
|
+
|
2104
2129
|
def initialize(**args)
|
2105
2130
|
update!(**args)
|
2106
2131
|
end
|
@@ -2118,6 +2143,7 @@ module Google
|
|
2118
2143
|
@listener_auth_config_templates = args[:listener_auth_config_templates] if args.key?(:listener_auth_config_templates)
|
2119
2144
|
@proxy_destination_config = args[:proxy_destination_config] if args.key?(:proxy_destination_config)
|
2120
2145
|
@registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config)
|
2146
|
+
@trigger_config_variables = args[:trigger_config_variables] if args.key?(:trigger_config_variables)
|
2121
2147
|
end
|
2122
2148
|
end
|
2123
2149
|
|
@@ -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.52.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240221"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1034,6 +1034,7 @@ module Google
|
|
1034
1034
|
class CustomConnector
|
1035
1035
|
# @private
|
1036
1036
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1037
|
+
collection :active_connector_versions, as: 'activeConnectorVersions'
|
1037
1038
|
property :create_time, as: 'createTime'
|
1038
1039
|
property :custom_connector_type, as: 'customConnectorType'
|
1039
1040
|
property :description, as: 'description'
|
@@ -1060,6 +1061,7 @@ module Google
|
|
1060
1061
|
property :name, as: 'name'
|
1061
1062
|
property :service_account, as: 'serviceAccount'
|
1062
1063
|
property :spec_location, as: 'specLocation'
|
1064
|
+
property :state, as: 'state'
|
1063
1065
|
property :update_time, as: 'updateTime'
|
1064
1066
|
end
|
1065
1067
|
end
|
@@ -1264,6 +1266,8 @@ module Google
|
|
1264
1266
|
|
1265
1267
|
property :registration_destination_config, as: 'registrationDestinationConfig', class: Google::Apis::ConnectorsV1::DestinationConfig, decorator: Google::Apis::ConnectorsV1::DestinationConfig::Representation
|
1266
1268
|
|
1269
|
+
collection :trigger_config_variables, as: 'triggerConfigVariables', class: Google::Apis::ConnectorsV1::ConfigVariable, decorator: Google::Apis::ConnectorsV1::ConfigVariable::Representation
|
1270
|
+
|
1267
1271
|
end
|
1268
1272
|
end
|
1269
1273
|
|
@@ -1287,6 +1291,8 @@ module Google
|
|
1287
1291
|
|
1288
1292
|
property :registration_destination_config, as: 'registrationDestinationConfig', class: Google::Apis::ConnectorsV1::DestinationConfigTemplate, decorator: Google::Apis::ConnectorsV1::DestinationConfigTemplate::Representation
|
1289
1293
|
|
1294
|
+
collection :trigger_config_variables, as: 'triggerConfigVariables', class: Google::Apis::ConnectorsV1::ConfigVariableTemplate, decorator: Google::Apis::ConnectorsV1::ConfigVariableTemplate::Representation
|
1295
|
+
|
1290
1296
|
end
|
1291
1297
|
end
|
1292
1298
|
|
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.52.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: 2024-
|
11
|
+
date: 2024-02-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.14.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.14.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.52.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: []
|
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
68
|
requirements:
|
69
69
|
- - ">="
|
70
70
|
- !ruby/object:Gem::Version
|
71
|
-
version: '2.
|
71
|
+
version: '2.7'
|
72
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - ">="
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.6
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Connectors API V1
|