google-apis-paymentsresellersubscription_v1 0.44.0 → 0.45.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -2
- data/lib/google/apis/paymentsresellersubscription_v1/classes.rb +27 -3
- data/lib/google/apis/paymentsresellersubscription_v1/gem_version.rb +2 -2
- data/lib/google/apis/paymentsresellersubscription_v1/representations.rb +15 -0
- data/lib/google/apis/paymentsresellersubscription_v1/service.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f9b69cfe4bc84e9eb1d7092c367789e1517ba439d65186931f66eede2749b3c
|
4
|
+
data.tar.gz: dd3cd5d8fe04ea39ce31cbff44c76998be1f23d6e44b2ee4a3c083e2bbe4f929
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4bf85fa29fd5222436b127c581eb44a8c0a6eb8eee02ec2bed9e02032b7e10c2db77da7be72f7bb7b9d1c5601fcd0ef8b8e28f36cf19b156821f6436bb538f88
|
7
|
+
data.tar.gz: 610687facfc086b722b6d0e2899e74dd4c605fd61f1a304a1f6e82c772905922883820ae43438947b79963fab336db2465de27cd324878dd0c7e84bc872bce92
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,12 @@
|
|
1
1
|
# Release history for google-apis-paymentsresellersubscription_v1
|
2
2
|
|
3
|
-
### v0.
|
3
|
+
### v0.45.0 (2024-12-15)
|
4
4
|
|
5
|
-
* Regenerated from discovery document revision
|
5
|
+
* Regenerated from discovery document revision 20241211
|
6
|
+
|
7
|
+
### v0.44.0 (2024-11-17)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241110
|
6
10
|
* Regenerated using generator version 0.15.1
|
7
11
|
|
8
12
|
### v0.43.0 (2024-06-23)
|
@@ -193,9 +193,8 @@ module Google
|
|
193
193
|
end
|
194
194
|
end
|
195
195
|
|
196
|
-
#
|
197
|
-
#
|
198
|
-
# request OAuth context.
|
196
|
+
# Partner request for entitling the previously provisioned subscription to an
|
197
|
+
# end user. The end user identity is inferred from the request OAuth context.
|
199
198
|
class GoogleCloudPaymentsResellerSubscriptionV1EntitleSubscriptionRequest
|
200
199
|
include Google::Apis::Core::Hashable
|
201
200
|
|
@@ -981,6 +980,11 @@ module Google
|
|
981
980
|
# @return [Array<Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1SubscriptionLineItem>]
|
982
981
|
attr_accessor :line_items
|
983
982
|
|
983
|
+
# Describes the details of the migrated subscription.
|
984
|
+
# Corresponds to the JSON property `migrationDetails`
|
985
|
+
# @return [Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1SubscriptionMigrationDetails]
|
986
|
+
attr_accessor :migration_details
|
987
|
+
|
984
988
|
# Identifier. Resource name of the subscription. It will have the format of "
|
985
989
|
# partners/`partner_id`/subscriptions/`subscription_id`". This is available for
|
986
990
|
# authorizeAddon, but otherwise is response only.
|
@@ -1084,6 +1088,7 @@ module Google
|
|
1084
1088
|
@end_user_entitled = args[:end_user_entitled] if args.key?(:end_user_entitled)
|
1085
1089
|
@free_trial_end_time = args[:free_trial_end_time] if args.key?(:free_trial_end_time)
|
1086
1090
|
@line_items = args[:line_items] if args.key?(:line_items)
|
1091
|
+
@migration_details = args[:migration_details] if args.key?(:migration_details)
|
1087
1092
|
@name = args[:name] if args.key?(:name)
|
1088
1093
|
@partner_user_token = args[:partner_user_token] if args.key?(:partner_user_token)
|
1089
1094
|
@processing_state = args[:processing_state] if args.key?(:processing_state)
|
@@ -1257,6 +1262,25 @@ module Google
|
|
1257
1262
|
end
|
1258
1263
|
end
|
1259
1264
|
|
1265
|
+
# Describes the details of the migrated subscription.
|
1266
|
+
class GoogleCloudPaymentsResellerSubscriptionV1SubscriptionMigrationDetails
|
1267
|
+
include Google::Apis::Core::Hashable
|
1268
|
+
|
1269
|
+
# Output only. The migrated subscription id in the legacy system.
|
1270
|
+
# Corresponds to the JSON property `migratedSubscriptionId`
|
1271
|
+
# @return [String]
|
1272
|
+
attr_accessor :migrated_subscription_id
|
1273
|
+
|
1274
|
+
def initialize(**args)
|
1275
|
+
update!(**args)
|
1276
|
+
end
|
1277
|
+
|
1278
|
+
# Update properties of this object
|
1279
|
+
def update!(**args)
|
1280
|
+
@migrated_subscription_id = args[:migrated_subscription_id] if args.key?(:migrated_subscription_id)
|
1281
|
+
end
|
1282
|
+
end
|
1283
|
+
|
1260
1284
|
# Describes the spec for one promotion.
|
1261
1285
|
class GoogleCloudPaymentsResellerSubscriptionV1SubscriptionPromotionSpec
|
1262
1286
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module PaymentsresellersubscriptionV1
|
18
18
|
# Version of the google-apis-paymentsresellersubscription_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.45.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241211"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -232,6 +232,12 @@ module Google
|
|
232
232
|
include Google::Apis::Core::JsonObjectSupport
|
233
233
|
end
|
234
234
|
|
235
|
+
class GoogleCloudPaymentsResellerSubscriptionV1SubscriptionMigrationDetails
|
236
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
|
+
|
238
|
+
include Google::Apis::Core::JsonObjectSupport
|
239
|
+
end
|
240
|
+
|
235
241
|
class GoogleCloudPaymentsResellerSubscriptionV1SubscriptionPromotionSpec
|
236
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
243
|
|
@@ -574,6 +580,8 @@ module Google
|
|
574
580
|
property :free_trial_end_time, as: 'freeTrialEndTime'
|
575
581
|
collection :line_items, as: 'lineItems', class: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1SubscriptionLineItem, decorator: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1SubscriptionLineItem::Representation
|
576
582
|
|
583
|
+
property :migration_details, as: 'migrationDetails', class: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1SubscriptionMigrationDetails, decorator: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1SubscriptionMigrationDetails::Representation
|
584
|
+
|
577
585
|
property :name, as: 'name'
|
578
586
|
property :partner_user_token, as: 'partnerUserToken'
|
579
587
|
property :processing_state, as: 'processingState'
|
@@ -640,6 +648,13 @@ module Google
|
|
640
648
|
end
|
641
649
|
end
|
642
650
|
|
651
|
+
class GoogleCloudPaymentsResellerSubscriptionV1SubscriptionMigrationDetails
|
652
|
+
# @private
|
653
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
654
|
+
property :migrated_subscription_id, as: 'migratedSubscriptionId'
|
655
|
+
end
|
656
|
+
end
|
657
|
+
|
643
658
|
class GoogleCloudPaymentsResellerSubscriptionV1SubscriptionPromotionSpec
|
644
659
|
# @private
|
645
660
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -461,10 +461,10 @@ module Google
|
|
461
461
|
execute_or_queue_command(command, &block)
|
462
462
|
end
|
463
463
|
|
464
|
-
# This API replaces user authorized OAuth
|
464
|
+
# This API replaces user authorized OAuth consent based APIs (Create, Entitle).
|
465
465
|
# Generates a short-lived token for a user session based on the user intent. You
|
466
466
|
# can use the session token to redirect the user to Google to finish the signup
|
467
|
-
# flow. You can re-generate new session token repeatedly for same request if
|
467
|
+
# flow. You can re-generate new session token repeatedly for the same request if
|
468
468
|
# necessary, regardless of the previous tokens being expired or not.
|
469
469
|
# @param [String] parent
|
470
470
|
# Required. The parent, the partner that can resell. Format: partners/`partner`
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-paymentsresellersubscription_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.45.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-12-15 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-paymentsresellersubscription_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-paymentsresellersubscription_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-paymentsresellersubscription_v1/v0.45.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-paymentsresellersubscription_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.23
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Payments Reseller Subscription API V1
|