google-apis-apigee_v1 0.22.0 → 0.23.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: 7a9394258c01fb9dc8e3c732504b2071b3eaac1fd93d1e1cccb921c1ea51d087
|
4
|
+
data.tar.gz: 9aa8794ff6a1e1de4ce0ef6b23c348649359e6470c7b6d333acae4bce9eb2c5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d7f6fef0fa3baa9d8a06c35d7591e54573e4c21a96c5b4c75d9940cd15d9ba0ba814edd8308525fbd2e416284c2542c0c18133e794e06afc0b7148d606a72032
|
7
|
+
data.tar.gz: d1e6f39061cf361a3aa9b4214bcb75ba9d0d0ba6bd13acb185f13891962ba1e35d5b89956769d4349f99cf67043ee9eb3f0c4cd3abc9c961f3adc3eef5c3174b
|
data/CHANGELOG.md
CHANGED
@@ -257,6 +257,16 @@ module Google
|
|
257
257
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1AdvancedApiOpsConfig]
|
258
258
|
attr_accessor :advanced_api_ops_config
|
259
259
|
|
260
|
+
# Configuration for the Connectors Platform add-on.
|
261
|
+
# Corresponds to the JSON property `connectorsPlatformConfig`
|
262
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ConnectorsPlatformConfig]
|
263
|
+
attr_accessor :connectors_platform_config
|
264
|
+
|
265
|
+
# Configuration for the Integration add-on.
|
266
|
+
# Corresponds to the JSON property `integrationConfig`
|
267
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1IntegrationConfig]
|
268
|
+
attr_accessor :integration_config
|
269
|
+
|
260
270
|
# Configuration for the Monetization add-on.
|
261
271
|
# Corresponds to the JSON property `monetizationConfig`
|
262
272
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1MonetizationConfig]
|
@@ -269,6 +279,8 @@ module Google
|
|
269
279
|
# Update properties of this object
|
270
280
|
def update!(**args)
|
271
281
|
@advanced_api_ops_config = args[:advanced_api_ops_config] if args.key?(:advanced_api_ops_config)
|
282
|
+
@connectors_platform_config = args[:connectors_platform_config] if args.key?(:connectors_platform_config)
|
283
|
+
@integration_config = args[:integration_config] if args.key?(:integration_config)
|
272
284
|
@monetization_config = args[:monetization_config] if args.key?(:monetization_config)
|
273
285
|
end
|
274
286
|
end
|
@@ -1480,6 +1492,33 @@ module Google
|
|
1480
1492
|
end
|
1481
1493
|
end
|
1482
1494
|
|
1495
|
+
# Configuration for the Connectors Platform add-on.
|
1496
|
+
class GoogleCloudApigeeV1ConnectorsPlatformConfig
|
1497
|
+
include Google::Apis::Core::Hashable
|
1498
|
+
|
1499
|
+
# Flag that specifies whether the Connectors Platform add-on is enabled.
|
1500
|
+
# Corresponds to the JSON property `enabled`
|
1501
|
+
# @return [Boolean]
|
1502
|
+
attr_accessor :enabled
|
1503
|
+
alias_method :enabled?, :enabled
|
1504
|
+
|
1505
|
+
# Output only. Time at which the Connectors Platform add-on expires in in
|
1506
|
+
# milliseconds since epoch. If unspecified, the add-on will never expire.
|
1507
|
+
# Corresponds to the JSON property `expiresAt`
|
1508
|
+
# @return [Fixnum]
|
1509
|
+
attr_accessor :expires_at
|
1510
|
+
|
1511
|
+
def initialize(**args)
|
1512
|
+
update!(**args)
|
1513
|
+
end
|
1514
|
+
|
1515
|
+
# Update properties of this object
|
1516
|
+
def update!(**args)
|
1517
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
1518
|
+
@expires_at = args[:expires_at] if args.key?(:expires_at)
|
1519
|
+
end
|
1520
|
+
end
|
1521
|
+
|
1483
1522
|
#
|
1484
1523
|
class GoogleCloudApigeeV1Credential
|
1485
1524
|
include Google::Apis::Core::Hashable
|
@@ -3880,6 +3919,26 @@ module Google
|
|
3880
3919
|
end
|
3881
3920
|
end
|
3882
3921
|
|
3922
|
+
# Configuration for the Integration add-on.
|
3923
|
+
class GoogleCloudApigeeV1IntegrationConfig
|
3924
|
+
include Google::Apis::Core::Hashable
|
3925
|
+
|
3926
|
+
# Flag that specifies whether the Integration add-on is enabled.
|
3927
|
+
# Corresponds to the JSON property `enabled`
|
3928
|
+
# @return [Boolean]
|
3929
|
+
attr_accessor :enabled
|
3930
|
+
alias_method :enabled?, :enabled
|
3931
|
+
|
3932
|
+
def initialize(**args)
|
3933
|
+
update!(**args)
|
3934
|
+
end
|
3935
|
+
|
3936
|
+
# Update properties of this object
|
3937
|
+
def update!(**args)
|
3938
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
3939
|
+
end
|
3940
|
+
end
|
3941
|
+
|
3883
3942
|
#
|
3884
3943
|
class GoogleCloudApigeeV1KeyAliasReference
|
3885
3944
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ApigeeV1
|
18
18
|
# Version of the google-apis-apigee_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.23.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210924"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -214,6 +214,12 @@ module Google
|
|
214
214
|
include Google::Apis::Core::JsonObjectSupport
|
215
215
|
end
|
216
216
|
|
217
|
+
class GoogleCloudApigeeV1ConnectorsPlatformConfig
|
218
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
|
+
|
220
|
+
include Google::Apis::Core::JsonObjectSupport
|
221
|
+
end
|
222
|
+
|
217
223
|
class GoogleCloudApigeeV1Credential
|
218
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
225
|
|
@@ -526,6 +532,12 @@ module Google
|
|
526
532
|
include Google::Apis::Core::JsonObjectSupport
|
527
533
|
end
|
528
534
|
|
535
|
+
class GoogleCloudApigeeV1IntegrationConfig
|
536
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
537
|
+
|
538
|
+
include Google::Apis::Core::JsonObjectSupport
|
539
|
+
end
|
540
|
+
|
529
541
|
class GoogleCloudApigeeV1KeyAliasReference
|
530
542
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
531
543
|
|
@@ -1259,6 +1271,10 @@ module Google
|
|
1259
1271
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1260
1272
|
property :advanced_api_ops_config, as: 'advancedApiOpsConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AdvancedApiOpsConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AdvancedApiOpsConfig::Representation
|
1261
1273
|
|
1274
|
+
property :connectors_platform_config, as: 'connectorsPlatformConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ConnectorsPlatformConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ConnectorsPlatformConfig::Representation
|
1275
|
+
|
1276
|
+
property :integration_config, as: 'integrationConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1IntegrationConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1IntegrationConfig::Representation
|
1277
|
+
|
1262
1278
|
property :monetization_config, as: 'monetizationConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1MonetizationConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1MonetizationConfig::Representation
|
1263
1279
|
|
1264
1280
|
end
|
@@ -1554,6 +1570,14 @@ module Google
|
|
1554
1570
|
end
|
1555
1571
|
end
|
1556
1572
|
|
1573
|
+
class GoogleCloudApigeeV1ConnectorsPlatformConfig
|
1574
|
+
# @private
|
1575
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1576
|
+
property :enabled, as: 'enabled'
|
1577
|
+
property :expires_at, :numeric_string => true, as: 'expiresAt'
|
1578
|
+
end
|
1579
|
+
end
|
1580
|
+
|
1557
1581
|
class GoogleCloudApigeeV1Credential
|
1558
1582
|
# @private
|
1559
1583
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2167,6 +2191,13 @@ module Google
|
|
2167
2191
|
end
|
2168
2192
|
end
|
2169
2193
|
|
2194
|
+
class GoogleCloudApigeeV1IntegrationConfig
|
2195
|
+
# @private
|
2196
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2197
|
+
property :enabled, as: 'enabled'
|
2198
|
+
end
|
2199
|
+
end
|
2200
|
+
|
2170
2201
|
class GoogleCloudApigeeV1KeyAliasReference
|
2171
2202
|
# @private
|
2172
2203
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-apigee_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.23.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: 2021-
|
11
|
+
date: 2021-10-04 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/master/generated/google-apis-apigee_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.23.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-apigee_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|