google-apis-cloudcommerceprocurement_v1 0.2.0 → 0.3.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: d39dfdef8bb51967e47501686ebc8a25d43396dfc455982acd13b48e9a84313f
4
- data.tar.gz: 9a8d7d7fd705f00e7b4ad0999abb36f06b1babd9bd42075f6c2422975604a2a0
3
+ metadata.gz: e6780db29ec4a62faf2ba72b684b7edea562e0af8e544a5631ce9361ac5e3a63
4
+ data.tar.gz: 5804bccb116b1dbb3791528d845b46746d748b19bfbb226b588d444b8ca72d53
5
5
  SHA512:
6
- metadata.gz: a23415e793b870bf9035f6ddf7723edb3945f9bbf28575169d101c577b711faf5baccb0c2a4dd5d4b19d91f8961dd020284599de436c8a6d2e8154a00fd94b2d
7
- data.tar.gz: b437d213beb3b30c0666efc469501f3247d1ea5260ebba61042d7aaa725e61e828ab9c9626262951db9f9d970bfdb7e6fb78121cf636ac37c3f295aaa807cadb
6
+ metadata.gz: 6095a224fdc45252f4df3581437a1b170eb315323f52f1e2e433944525b544a0d788f51c13ee76049570a521d67d118ae46e6c81a96aa00f38abdb933cd0f3df
7
+ data.tar.gz: 14e885f095ca4b6949e3affcb5c302de3bd9714b0bd4f6b02b2a82d03d98b5a609a368b1d544cdc05363d47525afa352324964616bd8cbdff71f6cd1aa7bd331
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudcommerceprocurement_v1
2
2
 
3
+ ### v0.3.0 (2025-09-14)
4
+
5
+ * Regenerated from discovery document revision 20250907
6
+
3
7
  ### v0.2.0 (2025-09-07)
4
8
 
5
9
  * Regenerated from discovery document revision 20250831
@@ -299,17 +299,35 @@ module Google
299
299
  # @return [String]
300
300
  attr_accessor :name
301
301
 
302
- # Output only. The end time of the new offer. If the offer was created with a
303
- # term instead of a specified end date, this field is empty. This field is
302
+ # Output only. The end time of the new offer. If the offer was has a term
303
+ # duration instead of a specified end date, this field is empty. This field is
304
304
  # populated even if the entitlement isn't active yet. If there's no upcoming
305
- # offer, the field is be empty.
305
+ # offer, the field is empty. * If the entitlement is in
306
+ # ENTITLEMENT_ACTIVATION_REQUESTED, ENTITLEMENT_ACTIVE, or
307
+ # ENTITLEMENT_PENDING_CANCELLATION state, then this field will be empty. * If
308
+ # the entitlement is in ENTITLEMENT_PENDING_PLAN_CHANGE_APPROVAL or
309
+ # ENTITLEMENT_PENDING_PLAN_CHANGE state, then this field will be populated with
310
+ # the expected end time of the upcoming offer (in the future) if the upcoming
311
+ # offer has a specified end date. Otherwise, this field will be empty. * If the
312
+ # entitlement is in ENTITLEMENT_CANCELLED state, then this field will be empty.
306
313
  # Corresponds to the JSON property `newOfferEndTime`
307
314
  # @return [String]
308
315
  attr_accessor :new_offer_end_time
309
316
 
310
317
  # Output only. The timestamp when the new offer becomes effective. This field is
311
318
  # populated even if the entitlement isn't active yet. If there's no upcoming
312
- # offer, the field is empty.
319
+ # offer, the field is empty. * If the entitlement is in
320
+ # ENTITLEMENT_ACTIVATION_REQUESTED state, this field will not be populated when
321
+ # the entitlement is not yet approved. But after the entitlement is approved,
322
+ # then this field will be populated with effective time of the upcoming offer. *
323
+ # If the entitlement is in ENTITLEMENT_ACTIVE or
324
+ # ENTITLEMENT_PENDING_CANCELLATION state, this field will not be populated. * If
325
+ # the entitlement is in ENTITLEMENT_PENDING_PLAN_CHANGE_APPROVAL state, this
326
+ # field will not be populated since the entitlement change is waiting on
327
+ # approval. * If the entitlement is in ENTITLEMENT_PENDING_PLAN_CHANGE state,
328
+ # this field will be populated with the expected effective time of the upcoming
329
+ # offer (in the future). * If the entitlement is in ENTITLEMENT_CANCELLED state,
330
+ # then this field will be empty.
313
331
  # Corresponds to the JSON property `newOfferStartTime`
314
332
  # @return [String]
315
333
  attr_accessor :new_offer_start_time
@@ -317,21 +335,33 @@ module Google
317
335
  # Output only. The name of the offer the entitlement is switching to upon a
318
336
  # pending plan change. Only exists if the pending plan change is moving to an
319
337
  # offer. This field isn't populated for entitlements which aren't active yet.
320
- # Format: 'projects/`project`/services/`service`/privateOffers/`offer-id`' OR '
321
- # projects/`project`/services/`service`/standardOffers/`offer-id`', depending on
338
+ # Format: 'projects/`project`/services/`service`/privateOffers/`offer`' OR '
339
+ # projects/`project`/services/`service`/standardOffers/`offer`', depending on
322
340
  # whether the offer is private or public. The `service` in the name is the
323
341
  # listing service of the offer. It could be either the product service that the
324
342
  # offer is referencing, or a generic private offer parent service. We recommend
325
343
  # that you don't build your integration to rely on the meaning of this `service`
326
- # part.
344
+ # part. * If the entitlement is in ENTITLEMENT_ACTIVATION_REQUESTED,
345
+ # ENTITLEMENT_ACTIVE or ENTITLEMENT_PENDING_CANCELLATION state, then this field
346
+ # will be empty. * If the entitlement is in
347
+ # ENTITLEMENT_PENDING_PLAN_CHANGE_APPROVAL or ENTITLEMENT_PENDING_PLAN_CHANGE
348
+ # state, then this field will be populated with the upcoming offer. * If the
349
+ # entitlement is in ENTITLEMENT_CANCELLED state, then this will be empty.
327
350
  # Corresponds to the JSON property `newPendingOffer`
328
351
  # @return [String]
329
352
  attr_accessor :new_pending_offer
330
353
 
331
354
  # Output only. The duration of the new offer, in ISO 8601 duration format. This
332
355
  # field isn't populated for entitlements which aren't active yet, only for
333
- # pending offer changes. If the offer was created with a specified end date
334
- # instead of a duration, this field is empty.
356
+ # pending offer changes. If the offer was has a specified end date instead of a
357
+ # duration, this field is empty. * If the entitlement is in
358
+ # ENTITLEMENT_ACTIVATION_REQUESTED, ENTITLEENTITLEMENT_ACTIVE, or
359
+ # ENTITLEMENT_PENDING_CANCELLATION state, then this field is empty. * If the
360
+ # entitlement is in ENTITLEMENT_PENDING_PLAN_CHANGE_APPROVAL or
361
+ # ENTITLEMENT_PENDING_PLAN_CHANGE state, then this field will be populated with
362
+ # the duration of the upcoming offer, if the upcoming offer is does not have a
363
+ # specified end date. Otherwise, this field will be empty. * If the entitlement
364
+ # is in ENTITLEMENT_CANCELLED state, then this field will be empty.
335
365
  # Corresponds to the JSON property `newPendingOfferDuration`
336
366
  # @return [String]
337
367
  attr_accessor :new_pending_offer_duration
@@ -344,27 +374,65 @@ module Google
344
374
 
345
375
  # Output only. The name of the offer that was procured. Field is empty if order
346
376
  # was not made using an offer. Format: 'projects/`project`/services/`service`/
347
- # privateOffers/`offer-id`' OR 'projects/`project`/services/`service`/
348
- # standardOffers/`offer-id`', depending on whether the offer is private or
349
- # public. The `service` in the name is the listing service of the offer. It
350
- # could be either the product service that the offer is referencing, or a
351
- # generic private offer parent service. We recommend that you don't build your
352
- # integration to rely on the meaning of this `service` part.
377
+ # privateOffers/`offer`' OR 'projects/`project`/services/`service`/
378
+ # standardOffers/`offer`', depending on whether the offer is private or public.
379
+ # The `service` in the name is the listing service of the offer. It could be
380
+ # either the product service that the offer is referencing, or a generic private
381
+ # offer parent service. We recommend that you don't build your integration to
382
+ # rely on the meaning of this `service` part. * If the entitlement is in
383
+ # ENTITLEMENT_ACTIVATION_REQUESTED state, this field will be populated with the
384
+ # upcoming offer. * If the entitlement is in ENTITLEMENT_ACTIVE,
385
+ # ENTITLEMENT_PENDING_CANCELLATION, ENTITLEMENT_PENDING_PLAN_CHANGE, or
386
+ # ENTITLEMENT_PENDING_PLAN_CHANGE_APPROVAL state, this field will be populated
387
+ # with the current offer. * If the entitlement is in ENTITLEMENT_CANCELLED state,
388
+ # then this field will be populated with the latest offer the order was
389
+ # associated with.
353
390
  # Corresponds to the JSON property `offer`
354
391
  # @return [String]
355
392
  attr_accessor :offer
356
393
 
357
394
  # Output only. The offer duration of the current offer in ISO 8601 duration
358
395
  # format. Field is empty if entitlement was not made using an offer. If the
359
- # offer was created with a specified end date instead of a duration, this field
360
- # is empty.
396
+ # offer has a specified end date instead of a duration, this field is empty. *
397
+ # If the entitlement is in ENTITLEMENT_ACTIVATION_REQUESTED state, then this
398
+ # field will be populated with the duration of the upcoming offer, if the
399
+ # upcoming offer does not have a specified end date. Otherwise, this field will
400
+ # be empty. * If the entitlement is in ENTITLEMENT_ACTIVE,
401
+ # ENTITLEMENT_PENDING_CANCELLATION, ENTITLEMENT_PENDING_PLAN_CHANGE, or
402
+ # ENTITLEMENT_PENDING_PLAN_CHANGE_APPROVAL state, then this field will be
403
+ # populated with the duration of the current offer if the current offer is does
404
+ # not have a specific end date. Otherwise, this field will be empty. * If the
405
+ # entitlement is in ENTITLEMENT_CANCELLED state, then this field will be
406
+ # populated with the duration of the latest offer the order was associated with
407
+ # if that offer does not have a specific end date. Otherwise, this field will be
408
+ # empty.
361
409
  # Corresponds to the JSON property `offerDuration`
362
410
  # @return [String]
363
411
  attr_accessor :offer_duration
364
412
 
365
- # Output only. End time for the Offer association corresponding to this
366
- # entitlement. The field is only populated if the entitlement is currently
367
- # associated with an Offer.
413
+ # Output only. End time for the Offer associated with this entitlement. Note
414
+ # that this field value can change over time. This occurs naturally even if the
415
+ # offer is not changed, due to auto renewal. * If the entitlement is in
416
+ # ENTITLEMENT_ACTIVATION_REQUESTED state, then: * If the entitlement is not yet
417
+ # approved, then this field will be populated with the expected end time of the
418
+ # upcoming offer (in the future) if the upcoming offer has a specified end date.
419
+ # Otherwise this field will be empty. * If the entitlement is approved, then
420
+ # this field will always be populated with the expected end time of the upcoming
421
+ # offer (in the future). This means both this field, and the offer_duration
422
+ # field, can co-exist. * If the entitlement is in ENTITLEMENT_ACTIVE or
423
+ # ENTITLEMENT_PENDING_CANCELLATION state, then this field will be populated with
424
+ # the actual expected end time of the current offer (in the futre). Meaning,
425
+ # this field will be set, regardless of whether the offer has a specific end
426
+ # date or a duration. This means both this field, and the offer_duration field,
427
+ # can co-exist. * If the entitlement is in
428
+ # ENTITLEMENT_PENDING_PLAN_CHANGE_APPROVAL or ENTITLEMENT_PENDING_PLAN_CHANGE
429
+ # state: * If the current offer has already ended and became pure PAYG, then
430
+ # this field reflects the ACTUAL end time of the current offer (in the past). *
431
+ # Otherwise, then this is the EXPECTED end date of the current offer (in the
432
+ # future). * If the entitlement is in ENTITLEMENT_CANCELLED state, then this
433
+ # field will be populated with the ACTUAL end time of the latest offer the order
434
+ # was associated with (in the past). If the entitlement was cancelled before any
435
+ # offer started, then this field will be empty.
368
436
  # Corresponds to the JSON property `offerEndTime`
369
437
  # @return [String]
370
438
  attr_accessor :offer_end_time
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudcommerceprocurementV1
18
18
  # Version of the google-apis-cloudcommerceprocurement_v1 gem
19
- GEM_VERSION = "0.2.0"
19
+ GEM_VERSION = "0.3.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 = "20250831"
25
+ REVISION = "20250907"
26
26
  end
27
27
  end
28
28
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudcommerceprocurement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.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-cloudcommerceprocurement_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudcommerceprocurement_v1/v0.2.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudcommerceprocurement_v1/v0.3.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudcommerceprocurement_v1
62
62
  rdoc_options: []
63
63
  require_paths: