30
30
@ SuppressWarnings ("javadoc" )
31
31
public final class MergeCapacityCommitmentsRequest extends com .google .api .client .json .GenericJson {
32
32
33
+ /**
34
+ * Optional. The optional resulting capacity commitment ID. Capacity commitment name will be
35
+ * generated automatically if this field is empty. This field must only contain lower case
36
+ * alphanumeric characters or dashes. The first and last character cannot be a dash. Max length is
37
+ * 64 characters.
38
+ * The value may be {@code null}.
39
+ */
40
+ @ com .google .api .client .util .Key
41
+ private java .lang .String capacityCommitmentId ;
42
+
33
43
/**
34
44
* Ids of capacity commitments to merge. These capacity commitments must exist under admin project
35
45
* and location specified in the parent. ID is the last portion of capacity commitment name e.g.,
@@ -39,6 +49,29 @@ public final class MergeCapacityCommitmentsRequest extends com.google.api.client
39
49
@ com .google .api .client .util .Key
40
50
private java .util .List <java .lang .String > capacityCommitmentIds ;
41
51
52
+ /**
53
+ * Optional. The optional resulting capacity commitment ID. Capacity commitment name will be
54
+ * generated automatically if this field is empty. This field must only contain lower case
55
+ * alphanumeric characters or dashes. The first and last character cannot be a dash. Max length is
56
+ * 64 characters.
57
+ * @return value or {@code null} for none
58
+ */
59
+ public java .lang .String getCapacityCommitmentId () {
60
+ return capacityCommitmentId ;
61
+ }
62
+
63
+ /**
64
+ * Optional. The optional resulting capacity commitment ID. Capacity commitment name will be
65
+ * generated automatically if this field is empty. This field must only contain lower case
66
+ * alphanumeric characters or dashes. The first and last character cannot be a dash. Max length is
67
+ * 64 characters.
68
+ * @param capacityCommitmentId capacityCommitmentId or {@code null} for none
69
+ */
70
+ public MergeCapacityCommitmentsRequest setCapacityCommitmentId (java .lang .String capacityCommitmentId ) {
71
+ this .capacityCommitmentId = capacityCommitmentId ;
72
+ return this ;
73
+ }
74
+
42
75
/**
43
76
* Ids of capacity commitments to merge. These capacity commitments must exist under admin project
44
77
* and location specified in the parent. ID is the last portion of capacity commitment name e.g.,
0 commit comments