google-apis-paymentsresellersubscription_v1 0.8.0 → 0.11.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 +13 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/paymentsresellersubscription_v1/classes.rb +14 -4
- data/lib/google/apis/paymentsresellersubscription_v1/gem_version.rb +3 -3
- data/lib/google/apis/paymentsresellersubscription_v1/representations.rb +1 -0
- 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: 8a3053daf9a6a116aca39916efc85251a7c8b8f05f1be4490f3034e02fd15954
|
4
|
+
data.tar.gz: '09682776a6549b998504dbe2755ba523d5c51db0234377277e3b0cd7c6c4d1bc'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef09aceafc26fb5ef2660a0516123d1a884d5fec9ce58303782ca47f2d9654df82807566d9d58f4c0095c8cf492bfbd44f94895016bac82ecd14e8ace4457289
|
7
|
+
data.tar.gz: 2e2e7b264e0abb3567c09e0e546ce2838da5ec8bce60733e8919e1706977bce22e0f868654a74aa7cc3274ee5ac047f79940e700c1ea0e45b54ba15c3f25461a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-paymentsresellersubscription_v1
|
2
2
|
|
3
|
+
### v0.11.0 (2022-03-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220311
|
6
|
+
* Regenerated using generator version 0.4.1
|
7
|
+
|
8
|
+
### v0.10.0 (2021-12-14)
|
9
|
+
|
10
|
+
* Unspecified changes
|
11
|
+
|
12
|
+
### v0.9.0 (2021-11-13)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20211112
|
15
|
+
|
3
16
|
### v0.8.0 (2021-11-06)
|
4
17
|
|
5
18
|
* Regenerated from discovery document revision 20211105
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/paymentsresellersubscription_v1"
|
|
51
51
|
client = Google::Apis::PaymentsresellersubscriptionV1::PaymentsResellerSubscriptionService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -502,15 +502,15 @@ module Google
|
|
502
502
|
# @return [String]
|
503
503
|
attr_accessor :processing_state
|
504
504
|
|
505
|
-
# Required. Resource name that identifies
|
505
|
+
# Required. Required. Resource name that identifies the purchased products. The
|
506
506
|
# format will be 'partners/`partner_id`/products/`product_id`'.
|
507
507
|
# Corresponds to the JSON property `products`
|
508
508
|
# @return [Array<String>]
|
509
509
|
attr_accessor :products
|
510
510
|
|
511
|
-
# Optional. Resource name that identifies one or more promotions that
|
512
|
-
# applied on the product. A typical promotion for a subscription is Free
|
513
|
-
# The format will be 'partners/`partner_id`/promotions/`promotion_id`'.
|
511
|
+
# Optional. Optional. Resource name that identifies one or more promotions that
|
512
|
+
# can be applied on the product. A typical promotion for a subscription is Free
|
513
|
+
# trial. The format will be 'partners/`partner_id`/promotions/`promotion_id`'.
|
514
514
|
# Corresponds to the JSON property `promotions`
|
515
515
|
# @return [Array<String>]
|
516
516
|
attr_accessor :promotions
|
@@ -523,6 +523,15 @@ module Google
|
|
523
523
|
# @return [String]
|
524
524
|
attr_accessor :redirect_uri
|
525
525
|
|
526
|
+
# Output only. The time at which the subscription is expected to be renewed by
|
527
|
+
# Google - a new charge will be incurred and the service entitlement will be
|
528
|
+
# renewed. A non-immediate cancellation will take place at this time too, before
|
529
|
+
# which, the service entitlement for the end user will remain valid. UTC
|
530
|
+
# timezone in ISO 8061 format. For example: "2019-08-31T17:28:54.564Z"
|
531
|
+
# Corresponds to the JSON property `renewalTime`
|
532
|
+
# @return [String]
|
533
|
+
attr_accessor :renewal_time
|
534
|
+
|
526
535
|
# Describes a location of an end user.
|
527
536
|
# Corresponds to the JSON property `serviceLocation`
|
528
537
|
# @return [Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1Location]
|
@@ -564,6 +573,7 @@ module Google
|
|
564
573
|
@products = args[:products] if args.key?(:products)
|
565
574
|
@promotions = args[:promotions] if args.key?(:promotions)
|
566
575
|
@redirect_uri = args[:redirect_uri] if args.key?(:redirect_uri)
|
576
|
+
@renewal_time = args[:renewal_time] if args.key?(:renewal_time)
|
567
577
|
@service_location = args[:service_location] if args.key?(:service_location)
|
568
578
|
@state = args[:state] if args.key?(:state)
|
569
579
|
@update_time = args[:update_time] if args.key?(:update_time)
|
@@ -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.11.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220311"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -299,6 +299,7 @@ module Google
|
|
299
299
|
collection :products, as: 'products'
|
300
300
|
collection :promotions, as: 'promotions'
|
301
301
|
property :redirect_uri, as: 'redirectUri'
|
302
|
+
property :renewal_time, as: 'renewalTime'
|
302
303
|
property :service_location, as: 'serviceLocation', class: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1Location, decorator: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1Location::Representation
|
303
304
|
|
304
305
|
property :state, as: 'state'
|
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.11.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:
|
11
|
+
date: 2022-03-14 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.11.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.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Payments Reseller Subscription API V1
|