google-apis-apigee_v1 0.113.0 → 0.114.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: e5ec9c3f844812018b59b8ac0811c28753f2df782e4811aae4b9fb34d469977b
|
4
|
+
data.tar.gz: 7266a5b0c44b441fbbe6122efaa815f35e8b846d04f36cff0365a45939e84cb0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0bb7d1398229f0fa7077340ce5feed04dd88ef05147fe513bb2aacd547360b4b2f7d0b161ce1cfd1b09f120063413ebcaf5dd7f1308ab0c6b1860295661fd24
|
7
|
+
data.tar.gz: af441c5fa6743e002325775f476ddccc7b358a71ec421df7c0bf4f351bbd0e3ce74da6c0892b74e481ed4e5a013359951fb523901569bee5ca67f15ffcda326b
|
data/CHANGELOG.md
CHANGED
@@ -5598,6 +5598,14 @@ module Google
|
|
5598
5598
|
# @return [String]
|
5599
5599
|
attr_accessor :ip_range
|
5600
5600
|
|
5601
|
+
# Output only. Indicates whether the instance is version locked. If true, the
|
5602
|
+
# instance will not be updated by automated runtime rollouts. This is only
|
5603
|
+
# supported for Apigee X instances.
|
5604
|
+
# Corresponds to the JSON property `isVersionLocked`
|
5605
|
+
# @return [Boolean]
|
5606
|
+
attr_accessor :is_version_locked
|
5607
|
+
alias_method :is_version_locked?, :is_version_locked
|
5608
|
+
|
5601
5609
|
# Output only. Time the instance was last modified in milliseconds since epoch.
|
5602
5610
|
# Corresponds to the JSON property `lastModifiedAt`
|
5603
5611
|
# @return [Fixnum]
|
@@ -5608,6 +5616,12 @@ module Google
|
|
5608
5616
|
# @return [String]
|
5609
5617
|
attr_accessor :location
|
5610
5618
|
|
5619
|
+
# MaintenanceUpdatePolicy specifies the preferred window to perform maintenance
|
5620
|
+
# on the instance (day of the week and time of day).
|
5621
|
+
# Corresponds to the JSON property `maintenanceUpdatePolicy`
|
5622
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1MaintenanceUpdatePolicy]
|
5623
|
+
attr_accessor :maintenance_update_policy
|
5624
|
+
|
5611
5625
|
# Required. Resource ID of the instance. Values must match the regular
|
5612
5626
|
# expression `^a-z`0,30`[a-z\d]$`.
|
5613
5627
|
# Corresponds to the JSON property `name`
|
@@ -5633,6 +5647,11 @@ module Google
|
|
5633
5647
|
# @return [String]
|
5634
5648
|
attr_accessor :runtime_version
|
5635
5649
|
|
5650
|
+
# Scheduled maintenance information for an instance.
|
5651
|
+
# Corresponds to the JSON property `scheduledMaintenance`
|
5652
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ScheduledMaintenance]
|
5653
|
+
attr_accessor :scheduled_maintenance
|
5654
|
+
|
5636
5655
|
# Output only. Resource name of the service attachment created for the instance
|
5637
5656
|
# in the format: `projects/*/regions/*/serviceAttachments/*` Apigee customers
|
5638
5657
|
# can privately forward traffic to this service attachment using the PSC
|
@@ -5661,12 +5680,15 @@ module Google
|
|
5661
5680
|
@display_name = args[:display_name] if args.key?(:display_name)
|
5662
5681
|
@host = args[:host] if args.key?(:host)
|
5663
5682
|
@ip_range = args[:ip_range] if args.key?(:ip_range)
|
5683
|
+
@is_version_locked = args[:is_version_locked] if args.key?(:is_version_locked)
|
5664
5684
|
@last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
|
5665
5685
|
@location = args[:location] if args.key?(:location)
|
5686
|
+
@maintenance_update_policy = args[:maintenance_update_policy] if args.key?(:maintenance_update_policy)
|
5666
5687
|
@name = args[:name] if args.key?(:name)
|
5667
5688
|
@peering_cidr_range = args[:peering_cidr_range] if args.key?(:peering_cidr_range)
|
5668
5689
|
@port = args[:port] if args.key?(:port)
|
5669
5690
|
@runtime_version = args[:runtime_version] if args.key?(:runtime_version)
|
5691
|
+
@scheduled_maintenance = args[:scheduled_maintenance] if args.key?(:scheduled_maintenance)
|
5670
5692
|
@service_attachment = args[:service_attachment] if args.key?(:service_attachment)
|
5671
5693
|
@state = args[:state] if args.key?(:state)
|
5672
5694
|
end
|
@@ -7017,6 +7039,60 @@ module Google
|
|
7017
7039
|
end
|
7018
7040
|
end
|
7019
7041
|
|
7042
|
+
# MaintenanceUpdatePolicy specifies the preferred window to perform maintenance
|
7043
|
+
# on the instance (day of the week and time of day).
|
7044
|
+
class GoogleCloudApigeeV1MaintenanceUpdatePolicy
|
7045
|
+
include Google::Apis::Core::Hashable
|
7046
|
+
|
7047
|
+
# Optional. Maintenance channel to specify relative scheduling for maintenance.
|
7048
|
+
# Corresponds to the JSON property `maintenanceChannel`
|
7049
|
+
# @return [String]
|
7050
|
+
attr_accessor :maintenance_channel
|
7051
|
+
|
7052
|
+
# Optional. Preferred windows to perform maintenance. Currently limited to 1.
|
7053
|
+
# Corresponds to the JSON property `maintenanceWindows`
|
7054
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1MaintenanceUpdatePolicyMaintenanceWindow>]
|
7055
|
+
attr_accessor :maintenance_windows
|
7056
|
+
|
7057
|
+
def initialize(**args)
|
7058
|
+
update!(**args)
|
7059
|
+
end
|
7060
|
+
|
7061
|
+
# Update properties of this object
|
7062
|
+
def update!(**args)
|
7063
|
+
@maintenance_channel = args[:maintenance_channel] if args.key?(:maintenance_channel)
|
7064
|
+
@maintenance_windows = args[:maintenance_windows] if args.key?(:maintenance_windows)
|
7065
|
+
end
|
7066
|
+
end
|
7067
|
+
|
7068
|
+
# MaintenanceWindow specifies the preferred day of the week and time of day to
|
7069
|
+
# perform maintenance.
|
7070
|
+
class GoogleCloudApigeeV1MaintenanceUpdatePolicyMaintenanceWindow
|
7071
|
+
include Google::Apis::Core::Hashable
|
7072
|
+
|
7073
|
+
# Required. Preferred day of the week for maintenance, e.g. MONDAY, TUESDAY, etc.
|
7074
|
+
# Corresponds to the JSON property `day`
|
7075
|
+
# @return [String]
|
7076
|
+
attr_accessor :day
|
7077
|
+
|
7078
|
+
# Represents a time of day. The date and time zone are either not significant or
|
7079
|
+
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
7080
|
+
# types are google.type.Date and `google.protobuf.Timestamp`.
|
7081
|
+
# Corresponds to the JSON property `startTime`
|
7082
|
+
# @return [Google::Apis::ApigeeV1::GoogleTypeTimeOfDay]
|
7083
|
+
attr_accessor :start_time
|
7084
|
+
|
7085
|
+
def initialize(**args)
|
7086
|
+
update!(**args)
|
7087
|
+
end
|
7088
|
+
|
7089
|
+
# Update properties of this object
|
7090
|
+
def update!(**args)
|
7091
|
+
@day = args[:day] if args.key?(:day)
|
7092
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
7093
|
+
end
|
7094
|
+
end
|
7095
|
+
|
7020
7096
|
# Encapsulates additional information about query execution.
|
7021
7097
|
class GoogleCloudApigeeV1Metadata
|
7022
7098
|
include Google::Apis::Core::Hashable
|
@@ -9613,6 +9689,25 @@ module Google
|
|
9613
9689
|
end
|
9614
9690
|
end
|
9615
9691
|
|
9692
|
+
# Scheduled maintenance information for an instance.
|
9693
|
+
class GoogleCloudApigeeV1ScheduledMaintenance
|
9694
|
+
include Google::Apis::Core::Hashable
|
9695
|
+
|
9696
|
+
# Output only. The start time (UTC) of the scheduled maintenance.
|
9697
|
+
# Corresponds to the JSON property `startTime`
|
9698
|
+
# @return [String]
|
9699
|
+
attr_accessor :start_time
|
9700
|
+
|
9701
|
+
def initialize(**args)
|
9702
|
+
update!(**args)
|
9703
|
+
end
|
9704
|
+
|
9705
|
+
# Update properties of this object
|
9706
|
+
def update!(**args)
|
9707
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
9708
|
+
end
|
9709
|
+
end
|
9710
|
+
|
9616
9711
|
# Response for Schema call
|
9617
9712
|
class GoogleCloudApigeeV1Schema
|
9618
9713
|
include Google::Apis::Core::Hashable
|
@@ -12637,6 +12732,13 @@ module Google
|
|
12637
12732
|
# @return [Array<Google::Apis::ApigeeV1::GoogleLongrunningOperation>]
|
12638
12733
|
attr_accessor :operations
|
12639
12734
|
|
12735
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
12736
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
12737
|
+
# when attempting to list all resources across all supported locations.
|
12738
|
+
# Corresponds to the JSON property `unreachable`
|
12739
|
+
# @return [Array<String>]
|
12740
|
+
attr_accessor :unreachable
|
12741
|
+
|
12640
12742
|
def initialize(**args)
|
12641
12743
|
update!(**args)
|
12642
12744
|
end
|
@@ -12645,6 +12747,7 @@ module Google
|
|
12645
12747
|
def update!(**args)
|
12646
12748
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
12647
12749
|
@operations = args[:operations] if args.key?(:operations)
|
12750
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
12648
12751
|
end
|
12649
12752
|
end
|
12650
12753
|
|
@@ -12942,6 +13045,51 @@ module Google
|
|
12942
13045
|
@units = args[:units] if args.key?(:units)
|
12943
13046
|
end
|
12944
13047
|
end
|
13048
|
+
|
13049
|
+
# Represents a time of day. The date and time zone are either not significant or
|
13050
|
+
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
13051
|
+
# types are google.type.Date and `google.protobuf.Timestamp`.
|
13052
|
+
class GoogleTypeTimeOfDay
|
13053
|
+
include Google::Apis::Core::Hashable
|
13054
|
+
|
13055
|
+
# Hours of a day in 24 hour format. Must be greater than or equal to 0 and
|
13056
|
+
# typically must be less than or equal to 23. An API may choose to allow the
|
13057
|
+
# value "24:00:00" for scenarios like business closing time.
|
13058
|
+
# Corresponds to the JSON property `hours`
|
13059
|
+
# @return [Fixnum]
|
13060
|
+
attr_accessor :hours
|
13061
|
+
|
13062
|
+
# Minutes of an hour. Must be greater than or equal to 0 and less than or equal
|
13063
|
+
# to 59.
|
13064
|
+
# Corresponds to the JSON property `minutes`
|
13065
|
+
# @return [Fixnum]
|
13066
|
+
attr_accessor :minutes
|
13067
|
+
|
13068
|
+
# Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and
|
13069
|
+
# less than or equal to 999,999,999.
|
13070
|
+
# Corresponds to the JSON property `nanos`
|
13071
|
+
# @return [Fixnum]
|
13072
|
+
attr_accessor :nanos
|
13073
|
+
|
13074
|
+
# Seconds of a minute. Must be greater than or equal to 0 and typically must be
|
13075
|
+
# less than or equal to 59. An API may allow the value 60 if it allows leap-
|
13076
|
+
# seconds.
|
13077
|
+
# Corresponds to the JSON property `seconds`
|
13078
|
+
# @return [Fixnum]
|
13079
|
+
attr_accessor :seconds
|
13080
|
+
|
13081
|
+
def initialize(**args)
|
13082
|
+
update!(**args)
|
13083
|
+
end
|
13084
|
+
|
13085
|
+
# Update properties of this object
|
13086
|
+
def update!(**args)
|
13087
|
+
@hours = args[:hours] if args.key?(:hours)
|
13088
|
+
@minutes = args[:minutes] if args.key?(:minutes)
|
13089
|
+
@nanos = args[:nanos] if args.key?(:nanos)
|
13090
|
+
@seconds = args[:seconds] if args.key?(:seconds)
|
13091
|
+
end
|
13092
|
+
end
|
12945
13093
|
end
|
12946
13094
|
end
|
12947
13095
|
end
|
@@ -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.114.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250929"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1072,6 +1072,18 @@ module Google
|
|
1072
1072
|
include Google::Apis::Core::JsonObjectSupport
|
1073
1073
|
end
|
1074
1074
|
|
1075
|
+
class GoogleCloudApigeeV1MaintenanceUpdatePolicy
|
1076
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1077
|
+
|
1078
|
+
include Google::Apis::Core::JsonObjectSupport
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
class GoogleCloudApigeeV1MaintenanceUpdatePolicyMaintenanceWindow
|
1082
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1083
|
+
|
1084
|
+
include Google::Apis::Core::JsonObjectSupport
|
1085
|
+
end
|
1086
|
+
|
1075
1087
|
class GoogleCloudApigeeV1Metadata
|
1076
1088
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1077
1089
|
|
@@ -1456,6 +1468,12 @@ module Google
|
|
1456
1468
|
include Google::Apis::Core::JsonObjectSupport
|
1457
1469
|
end
|
1458
1470
|
|
1471
|
+
class GoogleCloudApigeeV1ScheduledMaintenance
|
1472
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1473
|
+
|
1474
|
+
include Google::Apis::Core::JsonObjectSupport
|
1475
|
+
end
|
1476
|
+
|
1459
1477
|
class GoogleCloudApigeeV1Schema
|
1460
1478
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1461
1479
|
|
@@ -1924,6 +1942,12 @@ module Google
|
|
1924
1942
|
include Google::Apis::Core::JsonObjectSupport
|
1925
1943
|
end
|
1926
1944
|
|
1945
|
+
class GoogleTypeTimeOfDay
|
1946
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1947
|
+
|
1948
|
+
include Google::Apis::Core::JsonObjectSupport
|
1949
|
+
end
|
1950
|
+
|
1927
1951
|
class EdgeConfigstoreBundleBadBundle
|
1928
1952
|
# @private
|
1929
1953
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3338,12 +3362,17 @@ module Google
|
|
3338
3362
|
property :display_name, as: 'displayName'
|
3339
3363
|
property :host, as: 'host'
|
3340
3364
|
property :ip_range, as: 'ipRange'
|
3365
|
+
property :is_version_locked, as: 'isVersionLocked'
|
3341
3366
|
property :last_modified_at, :numeric_string => true, as: 'lastModifiedAt'
|
3342
3367
|
property :location, as: 'location'
|
3368
|
+
property :maintenance_update_policy, as: 'maintenanceUpdatePolicy', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1MaintenanceUpdatePolicy, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1MaintenanceUpdatePolicy::Representation
|
3369
|
+
|
3343
3370
|
property :name, as: 'name'
|
3344
3371
|
property :peering_cidr_range, as: 'peeringCidrRange'
|
3345
3372
|
property :port, as: 'port'
|
3346
3373
|
property :runtime_version, as: 'runtimeVersion'
|
3374
|
+
property :scheduled_maintenance, as: 'scheduledMaintenance', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ScheduledMaintenance, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ScheduledMaintenance::Representation
|
3375
|
+
|
3347
3376
|
property :service_attachment, as: 'serviceAttachment'
|
3348
3377
|
property :state, as: 'state'
|
3349
3378
|
end
|
@@ -3809,6 +3838,24 @@ module Google
|
|
3809
3838
|
end
|
3810
3839
|
end
|
3811
3840
|
|
3841
|
+
class GoogleCloudApigeeV1MaintenanceUpdatePolicy
|
3842
|
+
# @private
|
3843
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3844
|
+
property :maintenance_channel, as: 'maintenanceChannel'
|
3845
|
+
collection :maintenance_windows, as: 'maintenanceWindows', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1MaintenanceUpdatePolicyMaintenanceWindow, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1MaintenanceUpdatePolicyMaintenanceWindow::Representation
|
3846
|
+
|
3847
|
+
end
|
3848
|
+
end
|
3849
|
+
|
3850
|
+
class GoogleCloudApigeeV1MaintenanceUpdatePolicyMaintenanceWindow
|
3851
|
+
# @private
|
3852
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3853
|
+
property :day, as: 'day'
|
3854
|
+
property :start_time, as: 'startTime', class: Google::Apis::ApigeeV1::GoogleTypeTimeOfDay, decorator: Google::Apis::ApigeeV1::GoogleTypeTimeOfDay::Representation
|
3855
|
+
|
3856
|
+
end
|
3857
|
+
end
|
3858
|
+
|
3812
3859
|
class GoogleCloudApigeeV1Metadata
|
3813
3860
|
# @private
|
3814
3861
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4485,6 +4532,13 @@ module Google
|
|
4485
4532
|
end
|
4486
4533
|
end
|
4487
4534
|
|
4535
|
+
class GoogleCloudApigeeV1ScheduledMaintenance
|
4536
|
+
# @private
|
4537
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4538
|
+
property :start_time, as: 'startTime'
|
4539
|
+
end
|
4540
|
+
end
|
4541
|
+
|
4488
4542
|
class GoogleCloudApigeeV1Schema
|
4489
4543
|
# @private
|
4490
4544
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5246,6 +5300,7 @@ module Google
|
|
5246
5300
|
property :next_page_token, as: 'nextPageToken'
|
5247
5301
|
collection :operations, as: 'operations', class: Google::Apis::ApigeeV1::GoogleLongrunningOperation, decorator: Google::Apis::ApigeeV1::GoogleLongrunningOperation::Representation
|
5248
5302
|
|
5303
|
+
collection :unreachable, as: 'unreachable'
|
5249
5304
|
end
|
5250
5305
|
end
|
5251
5306
|
|
@@ -5319,6 +5374,16 @@ module Google
|
|
5319
5374
|
property :units, :numeric_string => true, as: 'units'
|
5320
5375
|
end
|
5321
5376
|
end
|
5377
|
+
|
5378
|
+
class GoogleTypeTimeOfDay
|
5379
|
+
# @private
|
5380
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5381
|
+
property :hours, as: 'hours'
|
5382
|
+
property :minutes, as: 'minutes'
|
5383
|
+
property :nanos, as: 'nanos'
|
5384
|
+
property :seconds, as: 'seconds'
|
5385
|
+
end
|
5386
|
+
end
|
5322
5387
|
end
|
5323
5388
|
end
|
5324
5389
|
end
|
@@ -11221,6 +11221,13 @@ module Google
|
|
11221
11221
|
# The standard list page size.
|
11222
11222
|
# @param [String] page_token
|
11223
11223
|
# The standard list page token.
|
11224
|
+
# @param [Boolean] return_partial_success
|
11225
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
11226
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
11227
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
11228
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
11229
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
11230
|
+
# explicitly documented otherwise in service or product specific documentation.
|
11224
11231
|
# @param [String] fields
|
11225
11232
|
# Selector specifying which fields to include in a partial response.
|
11226
11233
|
# @param [String] quota_user
|
@@ -11238,7 +11245,7 @@ module Google
|
|
11238
11245
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
11239
11246
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
11240
11247
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
11241
|
-
def list_organization_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
11248
|
+
def list_organization_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
11242
11249
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
11243
11250
|
command.response_representation = Google::Apis::ApigeeV1::GoogleLongrunningListOperationsResponse::Representation
|
11244
11251
|
command.response_class = Google::Apis::ApigeeV1::GoogleLongrunningListOperationsResponse
|
@@ -11246,6 +11253,7 @@ module Google
|
|
11246
11253
|
command.query['filter'] = filter unless filter.nil?
|
11247
11254
|
command.query['pageSize'] = page_size unless page_size.nil?
|
11248
11255
|
command.query['pageToken'] = page_token unless page_token.nil?
|
11256
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
11249
11257
|
command.query['fields'] = fields unless fields.nil?
|
11250
11258
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
11251
11259
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.114.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.114.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|