• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2020 Google LLC
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     https://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 // Generated by the protocol buffer compiler.  DO NOT EDIT!
17 // source: google/cloud/channel/v1/entitlements.proto
18 
19 package com.google.cloud.channel.v1;
20 
21 public interface ProvisionedServiceOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.channel.v1.ProvisionedService)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * Output only. Provisioning ID of the entitlement. For Google Workspace, this
31    * is the underlying Subscription ID. For Google Cloud Platform, this is the
32    * Billing Account ID of the billing subaccount."
33    * </pre>
34    *
35    * <code>string provisioning_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
36    *
37    * @return The provisioningId.
38    */
getProvisioningId()39   java.lang.String getProvisioningId();
40   /**
41    *
42    *
43    * <pre>
44    * Output only. Provisioning ID of the entitlement. For Google Workspace, this
45    * is the underlying Subscription ID. For Google Cloud Platform, this is the
46    * Billing Account ID of the billing subaccount."
47    * </pre>
48    *
49    * <code>string provisioning_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
50    *
51    * @return The bytes for provisioningId.
52    */
getProvisioningIdBytes()53   com.google.protobuf.ByteString getProvisioningIdBytes();
54 
55   /**
56    *
57    *
58    * <pre>
59    * Output only. The product pertaining to the provisioning resource as
60    * specified in the Offer.
61    * </pre>
62    *
63    * <code>string product_id = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
64    *
65    * @return The productId.
66    */
getProductId()67   java.lang.String getProductId();
68   /**
69    *
70    *
71    * <pre>
72    * Output only. The product pertaining to the provisioning resource as
73    * specified in the Offer.
74    * </pre>
75    *
76    * <code>string product_id = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
77    *
78    * @return The bytes for productId.
79    */
getProductIdBytes()80   com.google.protobuf.ByteString getProductIdBytes();
81 
82   /**
83    *
84    *
85    * <pre>
86    * Output only. The SKU pertaining to the provisioning resource as specified
87    * in the Offer.
88    * </pre>
89    *
90    * <code>string sku_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
91    *
92    * @return The skuId.
93    */
getSkuId()94   java.lang.String getSkuId();
95   /**
96    *
97    *
98    * <pre>
99    * Output only. The SKU pertaining to the provisioning resource as specified
100    * in the Offer.
101    * </pre>
102    *
103    * <code>string sku_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
104    *
105    * @return The bytes for skuId.
106    */
getSkuIdBytes()107   com.google.protobuf.ByteString getSkuIdBytes();
108 }
109