You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/google-api-services-cloudcommerceprocurement/v1/2.0.0/com/google/api/services/cloudcommerceprocurement/v1/CloudCommercePartnerProcurementService.java
+20-19Lines changed: 20 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -1476,8 +1476,8 @@ public List setParent(java.lang.String parent) {
1476
1476
* Supported query attributes are * `account` * `customer_billing_account` with value in the
1477
1477
* format of: `billingAccounts/{id}` * `product_external_name` * `quote_external_name` *
Copy file name to clipboardExpand all lines: clients/google-api-services-cloudcommerceprocurement/v1/2.0.0/com/google/api/services/cloudcommerceprocurement/v1/model/ApproveEntitlementPlanChangeRequest.java
Copy file name to clipboardExpand all lines: clients/google-api-services-cloudcommerceprocurement/v1/2.0.0/com/google/api/services/cloudcommerceprocurement/v1/model/Entitlement.java
+42-45Lines changed: 42 additions & 45 deletions
Original file line number
Diff line number
Diff line change
@@ -38,12 +38,12 @@ public final class Entitlement extends com.google.api.client.json.GenericJson {
38
38
privatejava.lang.Stringaccount;
39
39
40
40
/**
41
-
* Output only. The reason the entitlement was cancelled. If this entitlement was not cancelled,
42
-
* this field will be empty. Possible values include "unknown", "expired", "user-cancelled",
43
-
* "account-closed", "billing-disabled" (if the customer has manually disabled billing to their
44
-
* resources), "user-aborted", and "migrated" (if the entitlement has migrated across products).
45
-
* Values of this field are subject to change and should not be relied upon for technical
46
-
* integration.
41
+
* Output only. The reason the entitlement was cancelled. If this entitlement wasn't cancelled,
42
+
* this field is empty. Possible values include "unknown", "expired", "user-cancelled", "account-
43
+
* closed", "billing-disabled" (if the customer has manually disabled billing to their resources),
44
+
* "user-aborted", and "migrated" (if the entitlement has migrated across products). Values of
45
+
* this field are subject to change, and we recommend that you don't build your technical
46
+
* integration to rely on these fields.
47
47
* The value may be {@code null}.
48
48
*/
49
49
@com.google.api.client.util.Key
@@ -106,26 +106,25 @@ public final class Entitlement extends com.google.api.client.json.GenericJson {
106
106
107
107
/**
108
108
* Output only. The end time of the new offer. If the offer was created with a term instead of a
109
-
* specified end date, this field is empty. This field will be populated even if the entitlement
110
-
* is not active yet. If there is no upcoming offer, the field will be empty.
109
+
* specified end date, this field is empty. This field is populated even if the entitlement isn't
110
+
* active yet. If there's no upcoming offer, the field is be empty.
111
111
* The value may be {@code null}.
112
112
*/
113
113
@com.google.api.client.util.Key
114
114
privateStringnewOfferEndTime;
115
115
116
116
/**
117
-
* Output only. The timestamp when the new offer will become effective. This field will be
118
-
* populated even if the entitlement is not active yet. If there is no upcoming offer, the field
119
-
* will be empty.
117
+
* Output only. The timestamp when the new offer becomes effective. This field is populated even
118
+
* if the entitlement isn't active yet. If there's no upcoming offer, the field is empty.
120
119
* The value may be {@code null}.
121
120
*/
122
121
@com.google.api.client.util.Key
123
122
privateStringnewOfferStartTime;
124
123
125
124
/**
126
125
* Output only. The name of the offer the entitlement is switching to upon a pending plan change.
127
-
* Only exists if the pending plan change is moving to an offer. This field is not populated for
128
-
* entitlements which are not active yet. Format:
126
+
* Only exists if the pending plan change is moving to an offer. This field isn't populated for
127
+
* entitlements which aren't active yet. Format:
129
128
* 'projects/{project}/services/{service}/privateOffers/{offer-id}' OR
130
129
* 'projects/{project}/services/{service}/standardOffers/{offer-id}', depending on whether the
131
130
* offer is private or public. The {service} in the name is the listing service of the offer. It
@@ -138,8 +137,8 @@ public final class Entitlement extends com.google.api.client.json.GenericJson {
138
137
privatejava.lang.StringnewPendingOffer;
139
138
140
139
/**
141
-
* Output only. The offer duration of the new offer in ISO 8601 duration format. This field is not
142
-
* populated for entitlements which are not active yet, only for pending offer changes. If the
140
+
* Output only. The duration of the new offer, in ISO 8601 duration format. This field isn't
141
+
* populated for entitlements which aren't active yet, only for pending offer changes. If the
143
142
* offer was created with a specified end date instead of a duration, this field is empty.
144
143
* The value may be {@code null}.
145
144
*/
@@ -280,25 +279,25 @@ public Entitlement setAccount(java.lang.String account) {
280
279
}
281
280
282
281
/**
283
-
* Output only. The reason the entitlement was cancelled. If this entitlement was not cancelled,
284
-
* this field will be empty. Possible values include "unknown", "expired", "user-cancelled",
285
-
* "account-closed", "billing-disabled" (if the customer has manually disabled billing to their
286
-
* resources), "user-aborted", and "migrated" (if the entitlement has migrated across products).
287
-
* Values of this field are subject to change and should not be relied upon for technical
288
-
* integration.
282
+
* Output only. The reason the entitlement was cancelled. If this entitlement wasn't cancelled,
283
+
* this field is empty. Possible values include "unknown", "expired", "user-cancelled", "account-
284
+
* closed", "billing-disabled" (if the customer has manually disabled billing to their resources),
285
+
* "user-aborted", and "migrated" (if the entitlement has migrated across products). Values of
286
+
* this field are subject to change, and we recommend that you don't build your technical
287
+
* integration to rely on these fields.
289
288
* @return value or {@code null} for none
290
289
*/
291
290
publicjava.lang.StringgetCancellationReason() {
292
291
returncancellationReason;
293
292
}
294
293
295
294
/**
296
-
* Output only. The reason the entitlement was cancelled. If this entitlement was not cancelled,
297
-
* this field will be empty. Possible values include "unknown", "expired", "user-cancelled",
298
-
* "account-closed", "billing-disabled" (if the customer has manually disabled billing to their
299
-
* resources), "user-aborted", and "migrated" (if the entitlement has migrated across products).
300
-
* Values of this field are subject to change and should not be relied upon for technical
301
-
* integration.
295
+
* Output only. The reason the entitlement was cancelled. If this entitlement wasn't cancelled,
296
+
* this field is empty. Possible values include "unknown", "expired", "user-cancelled", "account-
297
+
* closed", "billing-disabled" (if the customer has manually disabled billing to their resources),
298
+
* "user-aborted", and "migrated" (if the entitlement has migrated across products). Values of
299
+
* this field are subject to change, and we recommend that you don't build your technical
300
+
* integration to rely on these fields.
302
301
* @param cancellationReason cancellationReason or {@code null} for none
0 commit comments